/* Google Fonts - Work Sans */
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@200;300;400;500;600;700&display=swap');

/* ========================================
   CSS VARIABLES & RESET
   ======================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colors */
  --color-bg: #FFFFFF;
  --color-bg-secondary: #F8F9FA;
  --color-bg-card: #F4F4F4;
  --color-primary: #081A2B;
  --color-text: #081A2B;
  --color-text-muted: rgba(8, 26, 43, 0.6);
  --color-border: #EBEBEB;
  --color-divider: rgba(8, 26, 43, 0.1);

  /* CTA Colors */
  --color-cta-start: #B93C42;
  --color-cta-end: #99034F;
  --gradient-cta: linear-gradient(90deg, #B93C42 0%, #99034F 100%);

  /* Rainbow Gradients */
  --gradient-sparkle: linear-gradient(90deg, #05B1D3 0%, #566BDD 27.88%, #9720DD 50%, #FA6D3F 74.52%, #F8DB00 100%);
  --gradient-ring: linear-gradient(90deg, #F8DB00 0.24%, #FA6D3F 24.56%, #CE409B 41.44%, #9720DD 61.3%, #566BDD 82.81%, #204FB4 100%);

  /* Typography */
  --font-primary: 'Work Sans', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;

  /* Safe areas */
  --safe-area-top: env(safe-area-inset-top, 0px);
  --safe-area-bottom: env(safe-area-inset-bottom, 0px);

  /* Container */
  --container-max: 480px;
  --container-padding: 1.5rem;
}

html {
  overscroll-behavior: none;
}

html, body, #root {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  background: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  -webkit-user-select: none;
  user-select: none;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
}

input, textarea {
  -webkit-user-select: text;
  user-select: text;
}

* {
  -webkit-tap-highlight-color: transparent;
}

/* ========================================
   LAYOUT - RESPONSIVE CONTAINER
   ======================================== */

.app,
.login-page,
.countdown-page,
.settings-page,
.jahresprogramm-page,
.voice-chat-page,
.payment-page,
.jp-snap-page,
.call-booking-page {
  width: 100%;
  max-width: var(--container-max);
  min-height: 100vh;
  margin: 0 auto;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Desktop: add shadow and spacing */
@media (min-width: 768px) {
  body {
    background: var(--color-bg);
    padding: var(--spacing-lg) 0;
  }

  .app,
  .login-page,
  .countdown-page,
  .settings-page,
  .jahresprogramm-page,
  .voice-chat-page,
  .payment-page,
  .jp-snap-page,
  .call-booking-page {
    min-height: calc(100vh - 4rem);
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(8, 26, 43, 0.08);
    overflow: hidden;
  }
}

/* ========================================
   HEADER
   ======================================== */

.header,
.page-header,
.login-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) var(--container-padding);
  padding-top: calc(var(--spacing-sm) + var(--safe-area-top));
  position: relative;
  z-index: 10;
}

.login-header {
  justify-content: center;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-sparkle {
  width: 40px;
  height: 40px;
  background: var(--gradient-sparkle);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath d='M208,144a15.78,15.78,0,0,1-10.42,14.94L146,178l-19.06,51.62a15.92,15.92,0,0,1-29.88,0L78,178l-51.62-19a15.92,15.92,0,0,1,0-29.88L78,110l19.06-51.62a15.92,15.92,0,0,1,29.88,0L146,110l51.62,19.06A15.78,15.78,0,0,1,208,144Z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath d='M208,144a15.78,15.78,0,0,1-10.42,14.94L146,178l-19.06,51.62a15.92,15.92,0,0,1-29.88,0L78,178l-51.62-19a15.92,15.92,0,0,1,0-29.88L78,110l19.06-51.62a15.92,15.92,0,0,1,29.88,0L146,110l51.62,19.06A15.78,15.78,0,0,1,208,144Z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-primary);
}

.menu-btn,
.back-btn {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-btn svg,
.back-btn svg {
  width: 24px;
  height: 24px;
}

.page-title {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--color-primary);
  text-align: center;
  flex: 1;
}

.divider {
  height: 1px;
  background: var(--color-divider);
  margin: 0 var(--container-padding);
}

/* ========================================
   SNOWFLAKES BACKGROUND
   ======================================== */

.snowflakes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.snowflake-animated {
  position: absolute;
  top: -60px;
  color: rgba(155, 205, 245, 0.12);
  pointer-events: none;
  animation: snowfall linear infinite;
  will-change: transform;
}

.snowflake-animated svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  animation: snowflakeSpin 8s linear infinite;
}

@keyframes snowfall {
  0% { transform: translateY(-60px) translateX(0); }
  100% { transform: translateY(110vh) translateX(0); }
}

@keyframes snowflakeSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ========================================
   LANDING PAGE
   ======================================== */

.hero-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.hero-content {
  padding: var(--spacing-md) var(--container-padding);
  text-align: center;
  position: relative;
  z-index: 5;
}

.hero-title {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.5px;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.hero-description {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 320px;
  margin: 0 auto var(--spacing-md);
}

/* ========================================
   SWIPE BUTTON
   ======================================== */

.swipe-cta {
  position: relative;
  width: calc(100% - 3rem);
  max-width: 320px;
  height: 56px;
  margin: 0 auto var(--spacing-lg);
  background: var(--color-bg-card);
  border-radius: 28px;
  border: none;
  overflow: hidden;
  cursor: pointer;
  touch-action: pan-x;
  z-index: 10;
  -webkit-user-select: none;
  user-select: none;
}

.swipe-cta-completed {
  pointer-events: none;
}

.swipe-cta-slider {
  position: absolute;
  left: 4px;
  top: 4px;
  bottom: 4px;
  width: 80px;
  background: var(--gradient-cta);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  z-index: 2;
  will-change: transform;
  transition: box-shadow 0.2s ease;
}

.swipe-cta-slider-dragging {
  cursor: grabbing;
  transform: scale(1.02);
}

.swipe-cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}

.swipe-cta-arrow svg {
  width: 24px;
  height: 24px;
}

.swipe-cta-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-primary);
  padding-left: 2.5rem;
  z-index: 1;
  transition: opacity 0.1s ease;
  pointer-events: none;
}

/* ========================================
   CTA BUTTON (SOLID)
   ======================================== */

.cta-button,
.jp-cta-button,
.jp-snap-cta,
.checkout-cta-button,
.login-submit-btn,
.payment-result-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 3rem);
  max-width: 320px;
  height: 52px;
  margin: var(--spacing-sm) auto;
  background: var(--gradient-cta);
  border: none;
  border-radius: 26px;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: white;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover:not(:disabled),
.jp-cta-button:hover:not(:disabled),
.jp-snap-cta:hover:not(:disabled),
.checkout-cta-button:hover:not(:disabled),
.login-submit-btn:hover:not(:disabled),
.payment-result-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(185, 60, 66, 0.35);
}

.cta-button:active:not(:disabled),
.login-submit-btn:active:not(:disabled) {
  transform: translateY(0);
}

.cta-button:disabled,
.login-submit-btn:disabled,
.checkout-cta-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ========================================
   COUNTDOWN PAGE
   ======================================== */

.countdown-page {
  overflow-y: auto;
}

.profile-circle-container {
  display: flex;
  justify-content: center;
  padding: var(--spacing-lg) 0;
  position: relative;
  z-index: 5;
}

.profile-ring-wrapper {
  position: relative;
  width: 220px;
  height: 220px;
}

.progress-ring {
  position: absolute;
  top: -8px;
  left: -8px;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  pointer-events: none;
}

.progress-ring-fill {
  z-index: 1;
}

.progress-ring-circle {
  transition: stroke-dashoffset 1s ease-out;
}

.profile-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-bg);
}

.profile-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.countdown-content {
  text-align: center;
  padding: var(--spacing-sm) var(--container-padding);
  position: relative;
  z-index: 5;
}

.countdown-label-small,
.countdown-label-large {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: var(--spacing-xs);
}

.countdown-timer-large {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0.25rem;
  margin: var(--spacing-sm) auto;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}

.countdown-number {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1px;
  color: var(--color-primary);
}

.countdown-label {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

.countdown-separator {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-top: 0.1rem;
}

/* ========================================
   MENU
   ======================================== */

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 100;
}

.menu-backdrop-open {
  opacity: 1;
  visibility: visible;
}

.menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 360px;
  background: var(--color-bg);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 101;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.menu-panel-open {
  transform: translateX(0);
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) var(--container-padding);
  padding-top: calc(var(--spacing-sm) + var(--safe-area-top));
}

.menu-close-btn {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-close-btn svg {
  width: 24px;
  height: 24px;
}

.menu-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: var(--spacing-lg) var(--container-padding);
  gap: var(--spacing-md);
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: opacity 0.2s ease;
}

.menu-item:hover {
  opacity: 0.7;
}

.menu-item-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
}

.menu-item-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-primary);
}

.menu-item-label {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--color-primary);
}

.menu-footer {
  padding: var(--spacing-md) var(--container-padding);
  padding-bottom: calc(var(--spacing-md) + var(--safe-area-bottom));
}

.menu-footer-links {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

.menu-footer-links a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.menu-footer-links a:hover {
  color: var(--color-primary);
}

.menu-footer-separator {
  display: none;
}

.menu-footer-copyright {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* ========================================
   SETTINGS PAGE
   ======================================== */

.settings-content {
  flex: 1;
  padding: var(--spacing-md) var(--container-padding);
  overflow-y: auto;
}

.settings-section {
  margin-bottom: var(--spacing-lg);
}

.settings-section-title {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-xs);
  padding-left: 0.5rem;
}

.settings-group {
  background: var(--color-bg-card);
  border-radius: 16px;
  overflow: hidden;
}

.settings-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  border-bottom: 1px solid var(--color-divider);
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}

.settings-item:last-child {
  border-bottom: none;
}

.settings-item:hover {
  background: rgba(0, 0, 0, 0.02);
}

.settings-item-label {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-primary);
}

.settings-toggle {
  width: 52px;
  height: 28px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  position: relative;
  transition: background 0.2s;
}

.settings-toggle-on {
  background: var(--gradient-cta);
}

.settings-toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.settings-toggle-on .settings-toggle-thumb {
  transform: translateX(24px);
}

.settings-logout-btn {
  width: 100%;
  padding: 1rem;
  margin-top: var(--spacing-sm);
  background: rgba(185, 60, 66, 0.1);
  border: 1px solid var(--color-cta-start);
  border-radius: 12px;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-cta-start);
  cursor: pointer;
  transition: background 0.2s;
}

.settings-logout-btn:hover {
  background: rgba(185, 60, 66, 0.2);
}

.settings-version {
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
}

/* ========================================
   JAHRESPROGRAMM PAGE - SNAP SCROLL
   ======================================== */

.jp-snap-page {
  height: 100vh;
  overflow: hidden;
}

@media (min-width: 768px) {
  .jp-snap-page {
    height: calc(100vh - 4rem);
  }
}

.jp-snap-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) var(--container-padding);
  padding-top: calc(var(--spacing-sm) + var(--safe-area-top));
  background: linear-gradient(180deg, var(--color-bg) 0%, rgba(255, 255, 255, 0.9) 70%, transparent 100%);
}

.jp-snap-indicators {
  position: fixed;
  right: calc(50% - min(50vw, 240px) + 12px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 767px) {
  .jp-snap-indicators {
    right: 12px;
  }
}

.jp-snap-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(8, 26, 43, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.jp-snap-dot-active {
  background: var(--color-primary);
  transform: scale(1.25);
}

.jp-snap-container {
  flex: 1;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.jp-snap-container::-webkit-scrollbar {
  display: none;
}

.jp-snap-slide {
  height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px var(--container-padding) 60px;
  position: relative;
}

@media (min-width: 768px) {
  .jp-snap-slide {
    height: calc(100vh - 4rem);
  }
}

.jp-snap-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 340px;
}

.jp-snap-title {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.5px;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.jp-snap-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-md);
}

.jp-snap-section-title {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
}

.jp-snap-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: var(--spacing-md);
}

.jp-snap-text p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-primary);
  margin: 0;
}

.jp-snap-highlight {
  font-weight: 500;
  background: var(--color-bg-card);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border-left: 3px solid var(--color-cta-start);
}

.jp-snap-image {
  width: 100%;
  max-width: 280px;
  margin: var(--spacing-sm) 0;
  border-radius: 12px;
  overflow: hidden;
}

.jp-snap-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.jp-snap-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted);
  animation: bounceHint 2s ease-in-out infinite;
}

.jp-snap-scroll-hint span {
  font-size: 0.75rem;
}

@keyframes bounceHint {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Benefits section */
.jp-snap-benefits {
  background: var(--color-bg-card);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: var(--spacing-md);
  width: 100%;
  text-align: left;
}

.jp-snap-benefits-intro {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.jp-snap-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.jp-snap-benefits li {
  font-size: 0.9rem;
  color: var(--color-primary);
  padding-left: 1.25rem;
  position: relative;
}

.jp-snap-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: 500;
}

/* Steps */
.jp-snap-intro {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-sm);
}

.jp-snap-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-bottom: var(--spacing-md);
}

.jp-snap-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--color-bg-card);
  border-radius: 10px;
  padding: 12px 14px;
  text-align: left;
}

.jp-snap-step-num {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--gradient-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 0.875rem;
  color: white;
}

.jp-snap-step h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-primary);
  margin: 0 0 2px 0;
}

.jp-snap-step p {
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--color-text-muted);
  margin: 0;
}

/* Final CTA */
.jp-snap-final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  width: 100%;
}

.jp-snap-price {
  font-size: 1rem;
  color: var(--color-primary);
  margin: 0;
}

.jp-header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ========================================
   VOICE CHAT PAGE
   ======================================== */

.voice-chat-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--spacing-lg) var(--container-padding);
}

.voice-avatar-container {
  margin-bottom: var(--spacing-md);
}

.voice-avatar-ring {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  transition: all 0.3s ease;
}

.voice-avatar-ring-listening {
  padding: 6px;
  background: var(--gradient-sparkle);
  animation: pulseRing 1s ease-in-out infinite;
}

.voice-avatar-ring-speaking {
  padding: 6px;
  background: linear-gradient(90deg, #F8DB00, #FA6D3F, #9720DD);
  animation: pulseRing 1.5s ease-in-out infinite;
}

@keyframes pulseRing {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

.voice-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-bg);
}

.voice-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.voice-status {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.voice-name {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.voice-subtitle {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.voice-instructions {
  text-align: center;
  max-width: 300px;
  margin-bottom: var(--spacing-lg);
}

.voice-instructions p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.voice-tips {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.voice-tips li {
  font-size: 0.85rem;
  color: var(--color-primary);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.voice-tips li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-cta-start);
}

/* Voice Mic Button */
.voice-mic-btn {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-cta);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  margin: var(--spacing-sm) 0 var(--spacing-lg);
  overflow: hidden;
}

.voice-mic-btn:hover:not(:disabled) {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(185, 60, 66, 0.5);
}

.voice-mic-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.voice-mic-btn-active {
  animation: micPulse 1s ease-in-out infinite;
}

.voice-mic-btn-processing {
  background: linear-gradient(90deg, #566BDD, #9720DD);
  animation: micProcessing 1.5s linear infinite;
}

@keyframes micPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196, 30, 58, 0.6); }
  50% { box-shadow: 0 0 0 20px rgba(196, 30, 58, 0); }
}

@keyframes micProcessing {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

.voice-mic-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.voice-mic-btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  pointer-events: none;
}

.voice-mic-btn-active .voice-mic-btn-ripple {
  animation: rippleEffect 1s ease-out infinite;
}

@keyframes rippleEffect {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.4; }
  100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* Voice Subtitles */
.voice-subtitle-container {
  max-width: 320px;
  padding: 1rem 1.5rem;
  background: var(--color-bg-card);
  border-radius: 16px;
  animation: subtitleFadeIn 0.4s ease-out;
}

.voice-subtitle-text {
  font-size: 0.9rem;
  color: var(--color-primary);
  line-height: 1.5;
  text-align: center;
  margin: 0;
}

@keyframes subtitleFadeIn {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ========================================
   PAYMENT PAGE
   ======================================== */

.checkout-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: var(--spacing-sm) var(--container-padding) var(--spacing-lg);
  overflow-y: auto;
}

.checkout-product-card {
  display: flex;
  gap: 1rem;
  background: var(--color-bg-card);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: var(--spacing-md);
}

.checkout-product-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.checkout-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.checkout-product-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-primary);
  margin: 0 0 4px 0;
}

.checkout-product-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
}

.checkout-price-section {
  background: var(--color-bg-card);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: var(--spacing-md);
}

.checkout-price-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  padding: 0.5rem 0;
}

.checkout-price-row:not(:last-child) {
  border-bottom: 1px solid var(--color-border);
}

.checkout-price-total {
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--color-primary);
  padding-top: 0.75rem;
}

.checkout-features {
  margin-bottom: var(--spacing-md);
}

.checkout-features h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-primary);
  margin: 0 0 0.75rem 0;
}

.checkout-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checkout-features li {
  font-size: 0.9rem;
  color: var(--color-primary);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.checkout-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: 500;
}

.checkout-secure-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-sm);
}

.checkout-secure-info svg {
  opacity: 0.7;
  color: var(--color-primary);
}

.checkout-spinner {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.checkout-terms {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  text-align: center;
  margin: 0;
}

/* Payment Result Modal */
.payment-result-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.payment-result-modal {
  background: var(--color-bg);
  border-radius: 20px;
  padding: var(--spacing-lg);
  max-width: 300px;
  width: 90%;
  text-align: center;
  animation: slideUp 0.3s ease-out;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.payment-result-icon {
  margin-bottom: var(--spacing-md);
  animation: iconPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.payment-result-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-primary);
  margin: 0 0 var(--spacing-sm) 0;
}

.payment-result-message {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0 0 var(--spacing-md) 0;
}

/* ========================================
   LOGIN PAGE
   ======================================== */

.login-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: var(--spacing-lg) var(--container-padding);
  position: relative;
  z-index: 2;
}

.login-title {
  font-size: 1.75rem;
  font-weight: 500;
  text-align: center;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.login-description {
  font-size: 0.9rem;
  text-align: center;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.login-mode-toggle {
  display: flex;
  background: var(--color-bg-card);
  border-radius: 25px;
  padding: 4px;
  margin-bottom: var(--spacing-md);
}

.login-mode-btn {
  flex: 1;
  padding: 10px 16px;
  border: none;
  border-radius: 22px;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.login-mode-btn.active {
  background: var(--color-primary);
  color: white;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(8, 26, 43, 0.2);
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.login-input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-primary);
  background: var(--color-bg-card);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.login-input:focus {
  outline: none;
  border-color: rgba(8, 26, 43, 0.3);
  box-shadow: 0 0 0 3px rgba(8, 26, 43, 0.1);
}

.login-input::placeholder {
  color: var(--color-text-muted);
}

.login-error {
  color: #FF6B6B;
  font-size: 0.85rem;
  text-align: center;
  margin: 0;
}

/* Login Sent State */
.login-sent {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--spacing-lg) 0;
  animation: loginFadeIn 0.4s ease-out forwards;
}

@keyframes loginFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.login-sent-icon {
  width: 80px;
  height: 80px;
  background: var(--color-bg-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  animation: iconPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes iconPop {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.login-sent-icon svg {
  width: 48px;
  height: 48px;
}

.login-sent-icon svg path {
  fill: var(--color-primary);
}

.login-sent-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.login-sent-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-md);
}

.login-sent-text strong {
  font-weight: 500;
  color: var(--color-primary);
}

.login-reset-btn {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.login-reset-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.login-toggle-btn {
  margin-top: var(--spacing-sm);
  padding: 8px 16px;
  background: transparent;
  border: none;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s;
}

.login-toggle-btn:hover {
  color: var(--color-primary);
}

/* Login - Clerk redirect styles */
.login-redirecting {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  min-height: 200px;
}

.login-spinner,
.auth-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-cta-start);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.auth-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  gap: var(--spacing-md);
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-primary);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.login-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.login-clerk-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 3rem);
  max-width: 320px;
  height: 52px;
  margin: var(--spacing-sm) auto;
  background: var(--color-primary);
  border: none;
  border-radius: 26px;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.login-clerk-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(8, 26, 43, 0.25);
}

.login-divider {
  display: flex;
  align-items: center;
  width: calc(100% - 3rem);
  max-width: 320px;
  margin: var(--spacing-md) auto;
  gap: var(--spacing-sm);
}

.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

.login-divider span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: lowercase;
}

/* ========================================
   CALL BOOKING PAGE
   ======================================== */

.call-booking-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: var(--spacing-md) var(--container-padding);
  padding-bottom: calc(var(--spacing-xl) + var(--safe-area-bottom));
  overflow-y: auto;
  background: var(--color-bg);
  min-height: 0;
}

.call-booking-page {
  background: var(--color-bg);
}

.booking-intro {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.booking-intro h2 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-primary);
  margin: 0 0 var(--spacing-xs) 0;
}

.booking-intro p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
}

.booking-back-link {
  background: none;
  border: none;
  font-family: var(--font-primary);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 0;
  margin-bottom: var(--spacing-sm);
  transition: color 0.2s;
}

.booking-back-link:hover {
  color: var(--color-primary);
}

/* Date Selection */
.booking-dates {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-sm);
}

.booking-date-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: var(--spacing-sm);
  background: var(--color-bg-card);
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.booking-date-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.booking-date-day {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-primary);
}

.booking-date-slots {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Unified Booking Layout */
.booking-unified {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.booking-section {
  border-bottom: 1px solid var(--color-divider);
  padding-bottom: var(--spacing-sm);
}

.booking-section:last-of-type {
  border-bottom: none;
}

.booking-section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--color-cta-start);
  margin-bottom: 4px;
}

.booking-section-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-primary);
}

/* Calendar */
.calendar-container {
  background: var(--color-bg);
  border-radius: 12px;
  padding: var(--spacing-xs) 0;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--spacing-sm);
}

.calendar-month {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-primary);
}

.calendar-nav {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--color-text-muted);
  border-radius: 8px;
  transition: all 0.2s;
}

.calendar-nav:hover {
  background: var(--color-bg-card);
  color: var(--color-primary);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 8px;
}

.calendar-weekday {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-align: center;
  padding: 4px 0;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-text-muted);
  background: none;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.15s;
}

.calendar-day-empty {
  cursor: default;
}

.calendar-day-past {
  color: rgba(8, 26, 43, 0.25);
  cursor: not-allowed;
}

.calendar-day-future {
  color: var(--color-text-muted);
  cursor: pointer;
}

.calendar-day-future:hover {
  background: var(--color-bg-card);
}

.calendar-day-available {
  color: var(--color-primary);
  font-weight: 500;
}

.calendar-day-available:hover {
  background: var(--color-bg-card);
}

.calendar-day-selected {
  background: var(--color-cta-start);
  color: white;
  font-weight: 600;
}

.calendar-day-selected:hover {
  background: var(--color-cta-start);
}

.calendar-day-today {
  position: relative;
}

.calendar-day-today::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--color-cta-start);
  border-radius: 50%;
}

.calendar-day-selected.calendar-day-today::after {
  background: white;
}

/* Time Slots Wrapper with Scroll Buttons */
.time-slots-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.time-slots-scroll-btn {
  width: 100%;
  padding: 6px;
  background: var(--color-bg-card);
  border: none;
  border-radius: 8px;
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.time-slots-scroll-btn:hover {
  background: var(--color-divider);
}

.time-slots-scroll-btn:active {
  background: var(--color-cta-start);
  color: white;
}

/* Time Slots Grid */
.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-height: 180px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
}

.time-slots-grid::-webkit-scrollbar {
  display: none;
}

.time-slot-btn {
  padding: 10px 8px;
  background: var(--color-bg-card);
  border: 2px solid transparent;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-primary);
  cursor: pointer;
  transition: all 0.15s;
}

.time-slot-btn:hover {
  border-color: var(--color-primary);
}

.time-slot-btn-selected {
  background: var(--color-cta-start);
  color: white;
  border-color: var(--color-cta-start);
}

.time-slot-btn-selected:hover {
  border-color: var(--color-cta-start);
}

.no-slots-msg {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-align: center;
  padding: var(--spacing-sm) 0;
}

/* Booking Notes */
.booking-notes {
  width: 100%;
  padding: 12px 14px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: var(--color-primary);
  resize: none;
  transition: border-color 0.2s;
}

.booking-notes:focus {
  outline: none;
  border-color: var(--color-primary);
}

.booking-notes::placeholder {
  color: var(--color-text-muted);
}

.booking-unified .cta-button {
  margin-top: var(--spacing-sm);
}

/* Booking Form */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.booking-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-sm);
}

.booking-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-primary);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.booking-input:focus {
  outline: none;
  border-color: rgba(8, 26, 43, 0.3);
  box-shadow: 0 0 0 3px rgba(8, 26, 43, 0.1);
}

.booking-input::placeholder {
  color: var(--color-text-muted);
}

.booking-textarea {
  resize: none;
  min-height: 80px;
}

/* Loading & Status States */
.booking-loading {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  padding: var(--spacing-xl) 0;
}

.booking-loading p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.booking-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--color-bg-card);
  border-top-color: var(--color-cta-start);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.booking-success,
.booking-error {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--spacing-lg) 0;
}

.booking-success-icon,
.booking-error-icon {
  margin-bottom: var(--spacing-md);
  animation: iconPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.booking-success-title,
.booking-error-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-primary);
  margin: 0 0 var(--spacing-sm) 0;
}

.booking-success-text,
.booking-error-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0 0 var(--spacing-xs) 0;
}

.booking-success-subtext {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0 0 var(--spacing-md) 0;
}

.booking-no-slots {
  text-align: center;
  padding: var(--spacing-lg) 0;
}

.booking-no-slots p {
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-md);
}

.booking-refresh-btn {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.booking-refresh-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.booking-error-msg {
  color: #FF6B6B;
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: var(--spacing-sm);
}

/* ========================================
   PAGE TRANSITIONS
   ======================================== */

.page-enter {
  animation: pageEnter 0.4s ease-out forwards;
}

.page-exit {
  animation: pageExit 0.3s ease-in forwards;
}

@keyframes pageEnter {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pageExit {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(-20px); }
}

.auth-enter {
  animation: authEnter 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes authEnter {
  from { opacity: 0; transform: scale(0.98) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.spacer {
  flex: 1;
}

/* ========================================
   PROFILE MODAL
   ======================================== */

.profile-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  animation: fadeIn 0.2s ease;
}

.profile-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 32px);
  max-width: 480px;
  max-height: calc(100vh - 64px);
  background: var(--color-bg);
  border-radius: 16px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  animation: modalSlideIn 0.3s ease;
  overflow: hidden;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translate(-50%, -48%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.profile-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md) var(--spacing-lg);
  border-bottom: 1px solid var(--color-divider);
}

.profile-modal-header h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0;
}

.profile-modal-close {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--color-bg-card);
  border-radius: 50%;
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.profile-modal-close:hover {
  background: var(--color-divider);
}

.profile-modal-content {
  flex: 1;
  overflow-y: auto;
  padding: var(--spacing-lg);
}

.profile-loading,
.profile-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.profile-loading p,
.profile-error p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.profile-retry-btn {
  padding: 10px 20px;
  background: var(--color-cta-start);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
}

.profile-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.profile-form-row {
  display: flex;
  gap: var(--spacing-sm);
}

.profile-form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.profile-form-group-large {
  flex: 2;
}

.profile-form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.profile-form-group input {
  padding: 12px;
  background: var(--color-bg-card);
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--color-primary);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.profile-form-group input:focus {
  outline: none;
  border-color: var(--color-cta-start);
  box-shadow: 0 0 0 3px rgba(185, 60, 66, 0.1);
}

.profile-form-group input::placeholder {
  color: var(--color-text-muted);
}

.profile-input-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.profile-input-hint {
  font-size: 0.7rem;
  color: var(--color-text-muted);
}

.profile-message {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  text-align: center;
}

.profile-message-error {
  background: rgba(255, 107, 107, 0.1);
  color: #FF6B6B;
}

.profile-message-success {
  background: rgba(76, 175, 80, 0.1);
  color: #4CAF50;
}

.profile-save-btn {
  padding: 14px;
  background: linear-gradient(135deg, var(--color-cta-start), var(--color-cta-end));
  color: white;
  border: none;
  border-radius: 12px;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: var(--spacing-sm);
}

.profile-save-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(185, 60, 66, 0.3);
}

.profile-save-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* ========================================
   DESKTOP QR BLOCK
   ======================================== */

.desktop-qr-block {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.desktop-qr-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--spacing-xl);
  max-width: 400px;
}

.desktop-qr-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--spacing-xl);
}

.desktop-qr-logo .logo-sparkle {
  width: 48px;
  height: 48px;
}

.desktop-qr-logo .logo-text {
  font-size: 1.5rem;
  color: white;
}

.desktop-qr-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: white;
  margin: 0 0 var(--spacing-sm) 0;
  line-height: 1.3;
}

.desktop-qr-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 var(--spacing-lg) 0;
  line-height: 1.5;
}

.desktop-qr-code {
  width: 200px;
  height: 200px;
  background: white;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: var(--spacing-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.desktop-qr-code img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.desktop-qr-url {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  word-break: break-all;
}

/* ========================================
   START PAGE - SALES LANDING
   ======================================== */

.start-page {
  min-height: 100vh;
  background: var(--color-bg);
  position: relative;
  overflow-x: hidden;
}

/* Ambient Background */
.start-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.start-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.start-orb-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(185, 60, 66, 0.3), rgba(153, 3, 79, 0.2));
  top: -100px;
  right: -100px;
  animation: orbFloat 20s ease-in-out infinite;
}

.start-orb-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(86, 107, 221, 0.2), rgba(151, 32, 221, 0.15));
  bottom: 10%;
  left: -50px;
  animation: orbFloat 25s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.1); }
}

/* Navigation */
.start-nav {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) var(--container-padding);
  padding-top: calc(var(--spacing-md) + var(--safe-area-top));
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.start-nav.start-visible {
  opacity: 1;
  transform: translateY(0);
}

.start-logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
}

.start-logo-ki {
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.start-nav-link {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.2s;
}

.start-nav-link:hover {
  background: var(--color-bg-card);
  color: var(--color-primary);
}

/* Hero Section */
.start-hero {
  position: relative;
  z-index: 5;
  padding: var(--spacing-lg) var(--container-padding);
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.start-hero.start-visible {
  opacity: 1;
  transform: translateY(0);
}

.start-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #4CAF50;
  margin-bottom: var(--spacing-md);
}

.start-badge-pulse {
  width: 8px;
  height: 8px;
  background: #4CAF50;
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.start-title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-primary);
  margin: 0 0 var(--spacing-sm) 0;
}

.start-title-accent {
  display: block;
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.start-subtitle {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0 0 var(--spacing-lg) 0;
}

/* Form */
.start-form {
  margin-bottom: var(--spacing-lg);
}

.start-form-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.start-input {
  flex: 1;
  padding: 14px 18px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-primary);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.start-input:focus {
  outline: none;
  border-color: var(--color-cta-start);
  box-shadow: 0 0 0 3px rgba(185, 60, 66, 0.1);
}

.start-input::placeholder {
  color: var(--color-text-muted);
}

.start-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--gradient-cta);
  border: none;
  border-radius: 12px;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  color: white;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.start-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(185, 60, 66, 0.35);
}

.start-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.start-btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.start-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.start-error {
  color: #FF6B6B;
  font-size: 0.85rem;
  margin: 8px 0 0 0;
}

.start-form-hint {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: 0;
}

.start-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: var(--spacing-md);
  background: rgba(76, 175, 80, 0.1);
  border-radius: 12px;
  margin-bottom: var(--spacing-lg);
}

.start-success-icon {
  width: 48px;
  height: 48px;
  background: #4CAF50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.start-success p {
  margin: 0;
  color: var(--color-primary);
  font-weight: 500;
}

/* Visual / Avatar */
.start-visual {
  margin-top: var(--spacing-md);
}

.start-avatar-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto var(--spacing-sm);
}

.start-avatar-glow {
  position: absolute;
  inset: -10px;
  background: var(--gradient-cta);
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(20px);
  animation: avatarGlow 3s ease-in-out infinite;
}

@keyframes avatarGlow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.1); }
}

.start-avatar {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--gradient-cta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 600;
  color: white;
  box-shadow: 0 8px 32px rgba(185, 60, 66, 0.3);
}

.start-avatar-wave {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: var(--color-cta-start);
}

.start-avatar-text {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--color-text-muted);
  margin: var(--spacing-sm) 0 0 0;
}

/* Trust Section */
.start-trust {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-lg) var(--container-padding);
  background: var(--color-bg-card);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.start-trust.start-visible {
  opacity: 1;
  transform: translateY(0);
}

.start-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.start-trust-value {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
}

.start-trust-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.start-trust-dot {
  width: 4px;
  height: 4px;
  background: var(--color-border);
  border-radius: 50%;
}

/* Features Section */
.start-features {
  position: relative;
  z-index: 5;
  padding: var(--spacing-xl) var(--container-padding);
  max-width: 480px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
}

.start-features.start-visible {
  opacity: 1;
  transform: translateY(0);
}

.start-section-title {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  color: var(--color-primary);
  margin: 0 0 var(--spacing-lg) 0;
}

.start-section-title span {
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.start-features-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.start-feature {
  display: flex;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  background: var(--color-bg-card);
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.start-feature:hover {
  transform: translateX(4px);
  box-shadow: -4px 0 0 var(--color-cta-start);
}

.start-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(185, 60, 66, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cta-start);
  flex-shrink: 0;
}

.start-feature-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-primary);
  margin: 0 0 2px 0;
}

.start-feature-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.4;
}

/* Steps Section */
.start-steps {
  position: relative;
  z-index: 5;
  padding: var(--spacing-xl) var(--container-padding);
  background: var(--color-bg-card);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}

.start-steps.start-visible {
  opacity: 1;
  transform: translateY(0);
}

.start-steps-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 400px;
  margin: 0 auto;
}

.start-step {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  width: 100%;
}

.start-step-num {
  width: 36px;
  height: 36px;
  background: var(--gradient-cta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
}

.start-step-content h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-primary);
  margin: 0 0 2px 0;
}

.start-step-content p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.4;
}

.start-step-line {
  width: 2px;
  height: 24px;
  background: var(--color-border);
  margin: 4px 0 4px 17px;
}

/* Quote Section */
.start-quote {
  position: relative;
  z-index: 5;
  padding: var(--spacing-xl) var(--container-padding);
  max-width: 480px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.7s, transform 0.8s ease 0.7s;
}

.start-quote.start-visible {
  opacity: 1;
  transform: translateY(0);
}

.start-quote-card {
  background: var(--color-bg-card);
  border-radius: 16px;
  padding: var(--spacing-lg);
  position: relative;
}

.start-quote-card svg {
  position: absolute;
  top: var(--spacing-sm);
  left: var(--spacing-sm);
}

.start-quote-card blockquote {
  font-size: 1rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-primary);
  margin: 0 0 var(--spacing-md) 0;
  padding-left: var(--spacing-sm);
}

.start-quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.start-quote-avatar {
  width: 40px;
  height: 40px;
  background: var(--gradient-cta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: white;
}

.start-quote-name {
  display: block;
  font-weight: 500;
  color: var(--color-primary);
}

.start-quote-role {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Final CTA Section */
.start-cta {
  position: relative;
  z-index: 5;
  padding: var(--spacing-xl) var(--container-padding);
  text-align: center;
  background: linear-gradient(180deg, var(--color-bg-card) 0%, var(--color-bg) 100%);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.8s, transform 0.8s ease 0.8s;
}

.start-cta.start-visible {
  opacity: 1;
  transform: translateY(0);
}

.start-cta h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 var(--spacing-xs) 0;
}

.start-cta p {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin: 0 0 var(--spacing-md) 0;
}

/* Footer */
.start-footer {
  position: relative;
  z-index: 5;
  padding: var(--spacing-lg) var(--container-padding);
  padding-bottom: calc(var(--spacing-lg) + var(--safe-area-bottom));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  text-align: center;
}

.start-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.start-logo-small {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
}

.start-footer-by {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.start-footer-links {
  display: flex;
  gap: var(--spacing-md);
}

.start-footer-links a {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.start-footer-links a:hover {
  color: var(--color-primary);
}

/* ========================================
   PROGRAMME PAGE - Voice Chat Interface
   ======================================== */

/* Additional CSS Variables for programme pages */
:root {
  --color-background: var(--color-bg);
  --color-surface: var(--color-bg-card);
  --color-surface-light: #E8E8E8;
  --color-error: #DC2626;
  --color-primary-dark: #051219;
}

/* ========================================
   VOICE PAGE - Dark Theme (Figma Design)
   ======================================== */

.voice-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #081A2B;
  color: #FFFFFF;
}

/* Voice Header */
.voice-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: #081A2B;
}

.voice-header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.voice-header-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
}

.voice-header-menu {
  padding: 0.5rem;
  color: #FFFFFF;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.voice-header-menu:hover {
  opacity: 0.8;
}

/* Voice Main Content */
.voice-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Voice Loading State */
.voice-page.voice-loading {
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.voice-loading-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255,255,255,0.2);
  border-top-color: #C084FC;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.voice-loading-text {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}

/* Voice Error State */
.voice-page.voice-error {
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.voice-error-card {
  max-width: 400px;
  width: 100%;
  text-align: center;
  background: rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.voice-error-emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.voice-error-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.voice-error-message {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}

.voice-error-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #B93C42, #99034F);
  color: white;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.voice-error-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(185, 60, 66, 0.4);
}

/* ========================================
   APP PAGE LAYOUT - Shared across all pages
   ======================================== */

.app-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #081A2B;
  color: #FFFFFF;
}

/* App Header */
.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  padding-top: calc(1rem + var(--safe-area-top));
  background: #081A2B;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.app-header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.app-header-logo:hover {
  opacity: 0.85;
}

.app-header-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
}

.app-header-menu {
  padding: 0.5rem;
  color: #FFFFFF;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.app-header-menu:hover {
  opacity: 0.8;
}

/* App Main Content */
.app-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.app-main.app-loading {
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.app-main.app-error {
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

/* Loading Spinner */
.loading-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: #C084FC;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loading-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

/* Error Card */
.error-card {
  max-width: 400px;
  width: 100%;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.error-emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.error-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.error-message {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.error-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #B93C42, #99034F);
  color: white;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.error-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(185, 60, 66, 0.4);
}

/* ========================================
   SIDEBAR - Slides in from right
   ======================================== */

.sidebar-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  max-width: 85vw;
  background: #FFFFFF;
  z-index: 101;
  display: flex;
  flex-direction: column;
  animation: slideIn 0.3s ease;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
}

@keyframes slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  padding-top: calc(1rem + var(--safe-area-top));
  border-bottom: 1px solid #E5E7EB;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #081A2B;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.sidebar-logo:hover {
  opacity: 0.8;
}

.sidebar-close {
  padding: 0.5rem;
  color: #6B7280;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.sidebar-close:hover {
  color: #081A2B;
}

.sidebar-nav {
  flex: 1;
  padding: 1rem 0;
  overflow-y: auto;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  color: #374151;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.sidebar-item:hover {
  background: #F3F4F6;
}

.sidebar-item.active {
  color: #081A2B;
  font-weight: 600;
  background: #F3F4F6;
}

.sidebar-item svg {
  flex-shrink: 0;
}

.sidebar-footer {
  padding: 1rem 1.25rem;
  padding-bottom: calc(1rem + var(--safe-area-bottom));
  border-top: 1px solid #E5E7EB;
}

.sidebar-footer-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.sidebar-footer-links a {
  font-size: 0.75rem;
  color: #6B7280;
  text-decoration: none;
}

.sidebar-footer-links a:hover {
  color: #374151;
  text-decoration: underline;
}

.sidebar-footer-copy {
  font-size: 0.75rem;
  color: #9CA3AF;
}

/* ========================================
   DASHBOARD - Programme entry page
   ======================================== */

.dashboard-main {
  padding: 1.5rem;
  gap: 2rem;
}

.dashboard-welcome {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 0;
}

.dashboard-avatar {
  margin-bottom: 1rem;
}

.dashboard-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.dashboard-subtitle {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
}

.dashboard-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dashboard-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  text-decoration: none;
  color: #FFFFFF;
  transition: background 0.2s, transform 0.1s;
}

.dashboard-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.dashboard-card:active {
  transform: translateY(0);
}

.dashboard-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dashboard-card-icon.voice {
  background: linear-gradient(135deg, #B93C42, #99034F);
}

.dashboard-card-icon.chat {
  background: linear-gradient(135deg, #818CF8, #A78BFA);
}

.dashboard-card-content {
  flex: 1;
}

.dashboard-card-content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.dashboard-card-content p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.dashboard-card svg:last-child {
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

/* ========================================
   LEGACY - Menu Sidebar (keeping for compatibility)
   ======================================== */

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  animation: fadeIn 0.2s ease;
}

.menu-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  max-width: 85vw;
  background: #FFFFFF;
  z-index: 101;
  display: flex;
  flex-direction: column;
  animation: slideIn 0.3s ease;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
}

.menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #E5E7EB;
}

.menu-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #081A2B;
}

.menu-close {
  padding: 0.5rem;
  color: #6B7280;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.menu-close:hover {
  color: #081A2B;
}

.menu-nav {
  flex: 1;
  padding: 1rem 0;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  color: #374151;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.menu-item:hover {
  background: #F3F4F6;
}

.menu-item.active {
  color: #081A2B;
  font-weight: 600;
  background: #F3F4F6;
}

.menu-item svg {
  flex-shrink: 0;
}

.menu-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid #E5E7EB;
}

.menu-footer-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.menu-footer-links a {
  font-size: 0.75rem;
  color: #6B7280;
  text-decoration: none;
}

.menu-footer-links a:hover {
  color: #374151;
  text-decoration: underline;
}

.menu-footer-copy {
  font-size: 0.75rem;
  color: #9CA3AF;
}

/* ========================================
   LEGACY - Programme Page (keeping for compatibility)
   ======================================== */

.programme-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #081A2B;
}

.programme-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.programme-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.programme-loading {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #081A2B;
  gap: 1rem;
}

.programme-loading-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255,255,255,0.2);
  border-top-color: #C084FC;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.programme-loading-text {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}

.programme-error {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: #081A2B;
}

.programme-error-card {
  max-width: 400px;
  width: 100%;
  text-align: center;
  background: var(--color-surface);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.programme-error-emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.programme-error-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.programme-error-message {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.programme-error-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--color-cta-start), var(--color-cta-end));
  color: white;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.programme-error-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(185, 60, 66, 0.3);
}

/* ========================================
   VOICE CHAT COMPONENT
   ======================================== */

.voice-chat {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Voice Only View */
.voice-only-view {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg);
  position: relative;
}

.voice-status-text {
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

/* Voice Transcript View */
.voice-transcript-view {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.transcript-area {
  flex: 1;
  overflow-y: auto;
  padding: var(--spacing-sm);
}

.transcript-empty {
  text-align: center;
  color: var(--color-text-muted);
  margin-top: var(--spacing-lg);
}

.transcript-messages {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

/* Transcript Bubble */
.transcript-bubble {
  display: flex;
}

.transcript-bubble.user {
  justify-content: flex-end;
}

.transcript-bubble.agent {
  justify-content: flex-start;
}

.transcript-bubble-content {
  max-width: 80%;
  border-radius: 1rem;
  padding: var(--spacing-xs) var(--spacing-sm);
}

.transcript-bubble.user .transcript-bubble-content {
  background: var(--color-primary);
  color: var(--color-bg);
}

.transcript-bubble.agent .transcript-bubble-content {
  background: var(--color-surface);
  color: var(--color-text);
}

/* Voice Bottom Bar */
.voice-bottom-bar {
  padding: var(--spacing-sm);
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
}

.voice-bottom-bar.with-input {
  justify-content: flex-start;
}

.voice-bottom-status {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  width: 6rem;
  text-align: center;
}

/* Voice Button */
.voice-button {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  color: white;
}

.voice-button.small {
  width: 3rem;
  height: 3rem;
}

.voice-button.idle {
  background: var(--color-primary);
}

.voice-button.idle:hover {
  background: var(--color-primary-dark);
}

.voice-button.active {
  background: var(--color-error);
}

.voice-button.active:hover {
  background: #B91C1C;
}

.voice-button.connecting {
  opacity: 0.5;
  cursor: wait;
}

.voice-button.speaking {
  animation: voice-pulse 1.5s ease-in-out infinite;
}

@keyframes voice-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(185, 60, 66, 0.4);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(185, 60, 66, 0);
  }
}

.voice-button-spinner {
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid white;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Text Input Form */
.voice-text-form {
  flex: 1;
  display: flex;
  gap: var(--spacing-xs);
}

.voice-text-input {
  flex: 1;
}

.voice-text-submit {
  padding: 0 var(--spacing-sm);
}

/* History Button */
.history-button {
  padding: var(--spacing-xs);
  color: var(--color-text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.history-button:hover {
  color: var(--color-text);
}

.history-button.absolute {
  position: absolute;
  top: var(--spacing-sm);
  right: var(--spacing-sm);
}

/* History Panel */
.history-panel-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
}

.history-panel {
  width: 20rem;
  background: var(--color-surface);
  height: 100%;
  overflow-y: auto;
}

.history-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-sm);
  border-bottom: 1px solid var(--color-border);
}

.history-panel-title {
  font-weight: 600;
}

.history-panel-close {
  color: var(--color-text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.history-panel-close:hover {
  color: var(--color-text);
}

.history-panel-list {
  padding: var(--spacing-sm);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.history-panel-empty {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.history-item {
  width: 100%;
  text-align: left;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.history-item:hover {
  background: var(--color-surface-light);
}

.history-item-title {
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.history-item-date {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.history-panel-backdrop {
  flex: 1;
  cursor: pointer;
}

/* ========================================
   TAILWIND UTILITY CLASSES (for compatibility)
   ======================================== */

/* Display */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-1 { flex: 1 1 0%; }
.inline-flex { display: inline-flex; }
.hidden { display: none; }
.block { display: block; }

/* Alignment */
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }

/* Sizing */
.min-h-screen { min-height: 100vh; }
.h-full { height: 100%; }
.w-full { width: 100%; }
.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }
.w-24 { width: 6rem; }
.h-24 { height: 6rem; }
.w-80 { width: 20rem; }
.max-w-md { max-width: 28rem; }
.max-w-\[80\%\] { max-width: 80%; }

/* Spacing */
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { inset: 0; }
.top-4 { top: 1rem; }
.right-4 { right: 1rem; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* Borders */
.border-t { border-top: 1px solid var(--color-border); }
.border-b { border-bottom: 1px solid var(--color-border); }
.rounded-full { border-radius: 9999px; }
.rounded-2xl { border-radius: 1rem; }
.rounded-lg { border-radius: 0.5rem; }

/* Background & Colors */
.bg-black\/80 { background: rgba(0, 0, 0, 0.8); }

/* Typography */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Overflow */
.overflow-y-auto { overflow-y: auto; }
.overflow-hidden { overflow: hidden; }

/* Effects */
.opacity-50 { opacity: 0.5; }
.cursor-wait { cursor: wait; }
.pointer-events-none { pointer-events: none; }

/* Transitions */
.transition-all { transition: all 0.2s; }
.transition-colors { transition: color 0.2s, background-color 0.2s; }

/* Animation */
.animate-spin {
  animation: spin 1s linear infinite;
}

/* Voice pulse animation (used by VoiceChat) */
.voice-pulse {
  animation: voice-pulse 1.5s ease-in-out infinite;
}

/* Jana Avatar Image */
.jana-avatar-img {
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid transparent;
  background:
    linear-gradient(#081A2B, #081A2B) padding-box,
    linear-gradient(135deg, #818CF8, #C084FC, #F472B6) border-box;
}

/* ========================================
   SETTINGS PAGE
   ======================================== */

.settings-page {
  background: #081A2B;
}

.settings-main {
  padding: 1.5rem;
  padding-bottom: calc(2rem + var(--safe-area-bottom));
}

.settings-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

/* Profile Card */
.settings-profile-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  margin-bottom: 1.5rem;
}

.settings-profile-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #818CF8, #C084FC);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.settings-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.settings-profile-initials {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
}

.settings-profile-info {
  flex: 1;
  min-width: 0;
}

.settings-profile-name {
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 0.25rem 0;
}

.settings-profile-email {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Settings Options */
.settings-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.settings-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
  text-align: left;
}

.settings-option:hover {
  background: rgba(255, 255, 255, 0.12);
}

.settings-option-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.settings-option-left svg {
  color: rgba(255, 255, 255, 0.7);
}

.settings-option-left span {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #FFFFFF;
}

.settings-option > svg {
  color: rgba(255, 255, 255, 0.4);
}

/* Logout Button */
.settings-logout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 50px;
  color: #EF4444;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.settings-logout-btn:hover {
  background: rgba(239, 68, 68, 0.25);
}

/* Version */
.settings-version {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  margin-top: 1.5rem;
}

/* ========================================
   VOICE CHAT COMPONENT - Figma Design
   ======================================== */

/* Container */
.vc-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  min-height: 0;
}

/* ----------------------------------------
   VOICE ONLY VIEW
   ---------------------------------------- */

.vc-voice-only {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem;
}

/* Avatar Section */
.vc-avatar-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2rem;
  gap: 1rem;
}

.vc-avatar {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vc-avatar svg {
  width: 80px;
  height: 80px;
  position: relative;
  z-index: 3;
}

.vc-avatar-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(129, 140, 248, 0.4) 0%, transparent 70%);
  filter: blur(20px);
  transform: scale(1.2);
  opacity: 0.6;
  transition: opacity 0.3s, transform 0.3s;
}

.vc-avatar.speaking .vc-avatar-glow {
  opacity: 1;
  transform: scale(1.4);
  animation: glow-pulse 1.5s ease-in-out infinite;
}

.vc-avatar-ring {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 3px solid transparent;
  background: linear-gradient(135deg, #818CF8, #C084FC) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.8;
}

.vc-avatar.speaking .vc-avatar-ring {
  animation: ring-pulse 2s ease-in-out infinite;
}

.vc-avatar-inner {
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1E293B, #0F172A);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.vc-avatar-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #FFFFFF;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1.2); }
  50% { opacity: 1; transform: scale(1.5); }
}

@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 1; }
}

/* Waveform Section */
.vc-waveform-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 1rem;
}

.vc-status-text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

/* Large Waveform */
.vc-waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 80px;
  width: 100%;
  max-width: 300px;
}

.vc-waveform-bar {
  width: 4px;
  height: 4px;
  background: linear-gradient(180deg, #818CF8 0%, #C084FC 50%, #F472B6 100%);
  border-radius: 2px;
  transition: height 0.15s ease;
}

.vc-waveform.active .vc-waveform-bar {
  animation: waveform-dance 0.8s ease-in-out infinite alternate;
}

@keyframes waveform-dance {
  0% { height: 8px; }
  25% { height: 40px; }
  50% { height: 24px; }
  75% { height: 60px; }
  100% { height: 16px; }
}

/* ----------------------------------------
   BOTTOM BAR - Figma Design
   ---------------------------------------- */

.vc-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  padding-bottom: calc(1rem + var(--safe-area-bottom));
  background: rgba(8, 26, 43, 0.9);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  gap: 1rem;
}

.vc-bottom-bar.text-only {
  padding: 0.75rem 1rem;
  padding-bottom: calc(0.75rem + var(--safe-area-bottom));
}

/* Action Buttons */
.vc-action-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.1s;
  flex-shrink: 0;
}

.vc-action-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

.vc-action-btn:active {
  transform: scale(0.95);
}

.vc-trash-btn {
  background: rgba(239, 68, 68, 0.15);
  color: rgba(239, 68, 68, 0.8);
}

.vc-trash-btn:hover {
  background: rgba(239, 68, 68, 0.25);
  color: #EF4444;
}

/* Mini Waveform (in bottom bar) */
.vc-mini-waveform {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 200px;
}

.vc-mini-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  height: 32px;
}

.vc-mini-wave-bar {
  width: 3px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  transition: height 0.1s ease, background 0.2s;
}

.vc-mini-wave.active .vc-mini-wave-bar {
  background: linear-gradient(180deg, #818CF8, #C084FC);
  animation: mini-wave 0.6s ease-in-out infinite alternate;
}

@keyframes mini-wave {
  0% { height: 4px; }
  50% { height: 20px; }
  100% { height: 8px; }
}

/* Mic Button - Gradient per Figma */
.vc-mic-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #B93C42 0%, #99034F 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(185, 60, 66, 0.4);
  transition: transform 0.15s, box-shadow 0.15s;
  flex-shrink: 0;
}

.vc-mic-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(185, 60, 66, 0.5);
}

.vc-mic-btn:active {
  transform: scale(0.95);
}

.vc-mic-btn.active {
  background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.5);
}

.vc-mic-btn.connecting {
  opacity: 0.7;
  cursor: wait;
}

.vc-mic-btn:disabled {
  cursor: not-allowed;
}

.vc-spinner {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* ----------------------------------------
   TRANSCRIPT / CHAT VIEW
   ---------------------------------------- */

.vc-transcript-view {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

/* Chat Header */
.vc-chat-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vc-chat-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1E293B, #0F172A);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
}

.vc-chat-avatar::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: linear-gradient(135deg, #818CF8, #C084FC);
  z-index: -1;
}

.vc-chat-avatar.speaking::before {
  animation: ring-pulse 1.5s ease-in-out infinite;
}

.vc-chat-avatar svg {
  width: 28px;
  height: 28px;
}

.vc-chat-info {
  flex: 1;
}

.vc-chat-name {
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
}

.vc-chat-status {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Messages Area */
.vc-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 0;
}

.vc-empty-state {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vc-empty-state p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9375rem;
}

/* Message Bubbles */
.vc-message {
  display: flex;
  gap: 0.5rem;
  max-width: 85%;
}

.vc-message.user {
  flex-direction: row-reverse;
  align-self: flex-end;
}

.vc-message.agent {
  align-self: flex-start;
}

.vc-message-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1E293B, #0F172A);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vc-message-avatar svg {
  width: 20px;
  height: 20px;
}

.vc-message-bubble {
  padding: 0.75rem 1rem;
  border-radius: 16px;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.vc-message.user .vc-message-bubble {
  background: linear-gradient(135deg, #818CF8, #A78BFA);
  color: #FFFFFF;
  border-bottom-right-radius: 4px;
}

.vc-message.agent .vc-message-bubble {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border-bottom-left-radius: 4px;
}

.vc-message-bubble p {
  margin: 0;
}

/* Text Input Form */
.vc-text-form {
  flex: 1;
  display: flex;
  gap: 0.5rem;
  max-width: 100%;
}

.vc-text-form.full {
  flex: 1;
}

.vc-text-input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.vc-text-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.vc-text-input:focus {
  border-color: rgba(129, 140, 248, 0.5);
  background: rgba(255, 255, 255, 0.15);
}

.vc-send-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #818CF8, #A78BFA);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.2s;
  flex-shrink: 0;
}

.vc-send-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(129, 140, 248, 0.4);
}

.vc-send-btn:active {
  transform: scale(0.95);
}

/* ----------------------------------------
   HISTORY PANEL
   ---------------------------------------- */

.vc-history-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 50;
}

.vc-history-panel {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 280px;
  max-width: 85vw;
  background: #0F172A;
  z-index: 51;
  display: flex;
  flex-direction: column;
  animation: slide-in-left 0.3s ease;
}

@keyframes slide-in-left {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

.vc-history-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vc-history-header h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
}

.vc-history-close {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.vc-history-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

.vc-history-list {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem;
}

.vc-history-empty {
  padding: 2rem 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.vc-history-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  padding: 0.75rem 1rem;
  background: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  text-align: left;
}

.vc-history-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.vc-history-title {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #FFFFFF;
}

.vc-history-date {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================================
   LANDING PAGE TEMPLATE STYLES
   Reusable template for programme landing pages
   ============================================================================ */

.lp-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #0E2C49 0%, #081A2B 100%);
  color: #FFFFFF;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
  position: relative;
}

.lp-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.lp-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}

.lp-orb-1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, #0E2C49 0%, #081A2B 100%);
  top: -200px;
  right: -200px;
}

.lp-orb-2 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #B93C42 0%, #99034F 100%);
  bottom: -150px;
  left: -150px;
  opacity: 0.15;
}

.lp-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  position: relative;
  z-index: 10;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.6s ease;
}

.lp-nav.lp-visible {
  opacity: 1;
  transform: translateY(0);
}

.lp-logo {
  font-size: 1.25rem;
  font-weight: 600;
  color: #FFFFFF;
}

.lp-logo-accent {
  background: linear-gradient(90deg, #B93C42 0%, #99034F 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-nav-link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.lp-nav-link:hover,
.lp-nav-link-active {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
}

.lp-hero {
  padding: 2rem 1.5rem 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.2s;
}

.lp-hero.lp-visible {
  opacity: 1;
  transform: translateY(0);
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: rgba(185, 60, 66, 0.15);
  border: 1px solid rgba(185, 60, 66, 0.3);
  border-radius: 999px;
  font-size: 0.75rem;
  color: #B93C42;
  margin-bottom: 1.5rem;
}

.lp-badge-pulse {
  width: 6px;
  height: 6px;
  background: #B93C42;
  border-radius: 50%;
  animation: lp-pulse 2s ease-in-out infinite;
}

@keyframes lp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.lp-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.lp-title-accent {
  display: block;
  background: linear-gradient(90deg, #B93C42 0%, #99034F 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(90deg, #B93C42 0%, #99034F 100%);
  color: #FFFFFF;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.lp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(185, 60, 66, 0.3);
}

.lp-btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.lp-btn-white {
  background: #FFFFFF;
  color: #1a1a1a;
}

.lp-btn-white:hover {
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.lp-cta-wrapper {
  margin-bottom: 3rem;
}

.lp-visual {
  margin-top: 2rem;
}

.lp-avatar-wrapper {
  position: relative;
  display: inline-block;
}

.lp-avatar-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(185, 60, 66, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: lp-glow 3s ease-in-out infinite;
}

@keyframes lp-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

.lp-avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 600;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}

.lp-avatar-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.lp-avatar-wave {
  color: #B93C42;
  margin-top: 1rem;
}

.lp-avatar-text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin-top: 1rem;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.lp-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.4s;
}

.lp-trust.lp-visible {
  opacity: 1;
  transform: translateY(0);
}

.lp-trust-item-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lp-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-trust-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #B93C42;
}

.lp-trust-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lp-trust-dot {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.lp-section {
  padding: 4rem 1.5rem;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.lp-section.lp-visible {
  opacity: 1;
  transform: translateY(0);
}

.lp-section-pink {
  background: #FFFFFF;
  color: #081A2B;
}

.lp-section-light {
  background: #FFFFFF;
  color: #081A2B;
}

.lp-section-white {
  background: #FFFFFF;
  color: #081A2B;
}

.lp-section-cta {
  background: linear-gradient(180deg, #0E2C49 0%, #081A2B 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 4rem 1.5rem;
}

.lp-section-cta h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.lp-section-cta p {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.lp-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.lp-section-title-accent {
  display: block;
  font-weight: 400;
  font-size: 1.125rem;
  margin-top: 0.5rem;
}

.lp-section-subtitle {
  text-align: center;
  font-size: 0.9375rem;
  opacity: 0.8;
  margin-bottom: 2rem;
}

.lp-section-content {
  max-width: 600px;
  margin: 0 auto;
}

.lp-section-content p {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.lp-section-image {
  margin-top: 2rem;
  text-align: center;
}

.lp-section-image img {
  max-width: 100%;
  border-radius: 16px;
}

.lp-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.lp-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
}

.lp-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #B93C42;
  font-weight: bold;
}

.lp-section-pink .lp-list li::before {
  color: #1a1a1a;
}

.lp-process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 500px;
  margin: 0 auto;
}

.lp-process-step {
  text-align: center;
  padding: 1.5rem;
}

.lp-process-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(90deg, #B93C42 0%, #99034F 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 auto 1rem;
}

.lp-section-pink .lp-process-number {
  background: #FFFFFF;
}

.lp-process-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.lp-process-desc {
  font-size: 0.8125rem;
  opacity: 0.8;
  line-height: 1.5;
}

.lp-features-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 500px;
  margin: 0 auto;
}

.lp-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.lp-feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(232, 180, 184, 0.2) 0%, rgba(212, 165, 165, 0.2) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #B93C42;
}

.lp-section-pink .lp-feature-icon {
  background: rgba(255, 255, 255, 0.3);
  color: #1a1a1a;
}

.lp-feature-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.lp-feature-desc {
  font-size: 0.875rem;
  opacity: 0.7;
  line-height: 1.5;
}

.lp-steps-list {
  max-width: 400px;
  margin: 0 auto;
}

.lp-step-wrapper {
  display: flex;
  flex-direction: column;
}

.lp-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.lp-step-num {
  width: 36px;
  height: 36px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  flex-shrink: 0;
}

.lp-section-light .lp-step-num,
.lp-section-white .lp-step-num {
  background: linear-gradient(90deg, #B93C42 0%, #99034F 100%);
}

.lp-step-content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.lp-step-content p {
  font-size: 0.875rem;
  opacity: 0.8;
  line-height: 1.5;
}

.lp-step-line {
  width: 2px;
  height: 24px;
  background: rgba(255, 255, 255, 0.3);
  margin-left: 17px;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.lp-section-light .lp-step-line,
.lp-section-white .lp-step-line {
  background: rgba(232, 180, 184, 0.5);
}

.lp-quote-card {
  background: linear-gradient(135deg, rgba(232, 180, 184, 0.1) 0%, rgba(212, 165, 165, 0.1) 100%);
  border: 1px solid rgba(232, 180, 184, 0.2);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.lp-section-pink .lp-quote-card {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.lp-quote-card blockquote {
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
  margin: 1rem 0 1.5rem;
}

.lp-quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.lp-quote-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(90deg, #B93C42 0%, #99034F 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #1a1a1a;
}

.lp-quote-name {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
}

.lp-quote-role {
  display: block;
  font-size: 0.75rem;
  opacity: 0.7;
}

.lp-footer {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.lp-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.lp-logo-small {
  font-size: 1rem;
  font-weight: 600;
}

.lp-footer-by {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.lp-footer-links {
  display: flex;
  gap: 1.5rem;
}

.lp-footer-links a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.lp-footer-links a:hover {
  color: #FFFFFF;
}

@media (min-width: 640px) {
  .lp-title {
    font-size: 3rem;
  }

  .lp-section-title {
    font-size: 2rem;
  }

  .lp-process-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 800px;
  }

  .lp-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
  }

  .lp-footer {
    flex-direction: row;
    justify-content: space-between;
  }

  .lp-footer-brand {
    flex-direction: row;
    gap: 0.5rem;
  }
}
