/* ==========================================
   GoldenCares Design System & Tokens
   ========================================== */

:root {
  /* Color Palette */
  --navy-900: #12203F;
  --navy-700: #1C2F55;
  --gold-500: #C99A3C;
  --gold-500-hover: color-mix(in srgb, var(--gold-500) 90%, black);
  --gold-100: #F3E4C2;
  --gold-100-hover: color-mix(in srgb, var(--gold-100) 90%, black);
  --cream-50: #FBF7EF;
  --white: #FFFFFF;
  --ink-800: #2B2A28;
  --ink-500: #6B6862;

  --primary: var(--gold-500);
  --primary-foreground: var(--navy-900);
  --background: var(--cream-50);
  --foreground: var(--navy-900);
  --card: var(--white);
  --card-foreground: var(--ink-800);
  --secondary: var(--gold-100);
  --secondary-foreground: var(--navy-900);
  --muted: #F6EEDC;
  --muted-foreground: var(--ink-500);
  --accent: var(--navy-700);
  --accent-foreground: var(--white);
  --destructive: #B5302D;
  --destructive-foreground: var(--white);
  --border: #E7DCC7;
  --input-bg: #F7EFE0;
  --ring: var(--gold-500);

  --warning-bg: #F8EFD8;
  --warning-border: #E9C976;
  --warning-text: #12203F;
  --warning-icon: var(--gold-500);

  --footer-bg: var(--navy-900);
  --footer-text: var(--cream-50);

  /* Typography Scale */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Spacing Scale */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 48px;
  --section-vertical: 96px;

  --max-content-width: 1280px;
  --max-content-width-narrow: 896px;

  /* Radii */
  --radius-sm: 12px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-round: 999px;

  /* Navigation Height */
  --ticker-height: 36px;
  --nav-height: 84px;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Icon System - single-weight line icons, replaces emoji everywhere */
.icon {
  display: inline-block;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.15em;
}

.icon-xs { width: 13px; height: 13px; }
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 20px; height: 20px; }
.icon-lg { width: 26px; height: 26px; }
.icon-xl { width: 38px; height: 38px; stroke-width: 1.5; }

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
}

body {
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--max-content-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

.container-narrow {
  max-width: var(--max-content-width-narrow);
}

/* Top Marquee Ticker Strip */
.top-ticker {
  background-color: var(--navy-900);
  color: var(--gold-500);
  height: var(--ticker-height);
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(201, 154, 60, 0.2);
}

.marquee-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marquee-slide 25s linear infinite;
  will-change: transform;
}

.top-ticker:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-500);
  flex-shrink: 0;
}

@keyframes marquee-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Header & Navigation Bar */
.main-header {
  position: fixed;
  top: var(--ticker-height);
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  background-color: transparent;
}

.main-header.scrolled {
  background-color: rgba(251, 247, 239, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(18, 32, 63, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  z-index: 100;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy-900);
}

.brand-logo img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-900);
  padding: 8px 4px;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--gold-500);
}

/* Support Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-900);
  cursor: pointer;
  padding: 8px 4px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 25px rgba(18, 32, 63, 0.12);
  padding: 8px 0;
  z-index: 1050;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  color: var(--ink-800);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-item:hover {
  background-color: var(--muted);
  color: var(--gold-500);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-round);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--gold-500);
  color: var(--navy-900);
}

.btn-primary:hover {
  background-color: var(--gold-500-hover);
  box-shadow: 0 4px 12px rgba(201, 154, 60, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--navy-900);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--gold-500);
  background-color: rgba(201, 154, 60, 0.08);
}

.btn-secondary {
  background-color: var(--gold-100);
  color: var(--navy-900);
  border: 1px solid rgba(201, 154, 60, 0.3);
}

.btn-secondary:hover {
  background-color: var(--gold-100-hover);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

/* Mobile Hamburger Button & Menu */
.mobile-menu-btn {
  display: none;
  font-size: 24px;
  color: var(--navy-900);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: calc(var(--ticker-height) + var(--nav-height));
  left: 0;
  right: 0;
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 12px 24px rgba(18, 32, 63, 0.15);
  padding: 20px 24px 32px 24px;
  z-index: 999;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-900);
  padding: 12px 0;
  border-bottom: 1px solid rgba(231, 220, 199, 0.4);
}

.mobile-auth-btns {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.mobile-auth-btns .btn {
  flex: 1;
}

/* Page Spacing for fixed header */
main {
  margin-top: calc(var(--ticker-height) + var(--nav-height));
  flex: 1;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-round);
  font-size: 13px;
  font-weight: 600;
  background-color: var(--card);
  border: 1px solid var(--border);
  color: var(--navy-900);
}

.badge-gold {
  background-color: var(--gold-100);
  border-color: rgba(201, 154, 60, 0.4);
  color: var(--navy-900);
}

/* Editorial section eyebrow - a rule + small-caps label, not another pill */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark, #8F6A1B);
}

.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background-color: var(--gold-500);
}

.section-header .eyebrow,
.page-header .eyebrow {
  justify-content: center;
}

/* Hero Section */
.hero-section {
  padding: 64px 0 96px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 54px;
  font-weight: 600;
  line-height: 1.08;
  color: var(--navy-900);
  margin-bottom: 20px;
}

.text-gold {
  color: var(--gold-500);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--ink-500);
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

/* Android App Banner Card */
.playstore-card {
  background-color: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  gap: 16px;
  box-shadow: 0 8px 24px rgba(18, 32, 63, 0.06);
  max-width: 580px;
}

.playstore-card img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.playstore-header {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.playstore-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-900);
}

.playstore-pill {
  background-color: var(--gold-100);
  border: 1px solid rgba(201, 154, 60, 0.5);
  border-radius: var(--radius-round);
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy-900);
}

.playstore-desc {
  font-size: 13px;
  color: var(--ink-800);
  line-height: 1.45;
  margin-bottom: 12px;
}

.playstore-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Hero Media / Video - framed like a kept photograph, not a raw player */
.hero-media {
  position: relative;
  padding: 16px;
}

.hero-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 70% 20%, rgba(201, 154, 60, 0.16), transparent 70%);
  z-index: 0;
}

.hero-media-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(18, 32, 63, 0.16);
  background-color: var(--navy-900);
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 1.33;
}

/* Corner brackets - the frame motif */
.hero-media::after,
.frame-corner {
  content: '';
}

.frame-corner {
  position: absolute;
  width: 26px;
  height: 26px;
  border: 2px solid var(--gold-500);
  z-index: 2;
}

.frame-corner.top-left { top: 0; left: 0; border-right: none; border-bottom: none; }
.frame-corner.bottom-right { bottom: 0; right: 0; border-left: none; border-top: none; }

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark, #8F6A1B);
  margin-bottom: 16px;
}

.hero-kicker::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background-color: var(--gold-500);
}

/* Static Trust Badge Row */
.trust-badge-bar {
  background-color: rgba(243, 228, 194, 0.4);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.trust-badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.trust-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-900);
}

/* Scope Notice Pill */
.notice-container {
  padding: 12px 0;
}

.scope-notice-pill {
  background-color: var(--warning-bg);
  border: 1.2px solid rgba(233, 201, 118, 0.7);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.notice-icon-box {
  background-color: rgba(201, 154, 60, 0.15);
  border-radius: var(--radius-sm);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
}

.notice-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--warning-text);
  margin-bottom: 4px;
}

.notice-text {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--warning-text);
}

/* Value Prop Band */
.value-prop-band {
  background-color: var(--navy-900);
  color: var(--cream-50);
  padding: 80px 0;
}

.value-prop-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 48px;
  align-items: center;
}

.value-prop-heading {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--cream-50);
  margin-bottom: 12px;
}

.value-prop-desc {
  font-size: 17px;
  color: rgba(251, 247, 239, 0.85);
  line-height: 1.6;
}

.value-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.value-card {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1.2px solid rgba(201, 154, 60, 0.25);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  gap: 14px;
}

.value-card-icon {
  background-color: rgba(201, 154, 60, 0.2);
  border-radius: var(--radius-sm);
  padding: 8px;
  height: max-content;
  color: var(--gold-500);
  font-size: 20px;
}

.value-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--cream-50);
  margin-bottom: 4px;
}

.value-card-text {
  font-size: 12.5px;
  line-height: 1.4;
  color: rgba(251, 247, 239, 0.75);
}

/* Services & Stats Section */
.section {
  padding: var(--section-vertical) 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px auto;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--navy-900);
  margin: 16px 0 12px 0;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 18px;
  color: var(--ink-500);
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.service-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 154, 60, 0.45);
  box-shadow: 0 16px 32px rgba(18, 32, 63, 0.08);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-category {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.service-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.service-desc {
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.5;
  margin-bottom: 20px;
  flex: 1;
}

.service-options {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

}

.service-option-chip {
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy-900);
}

.service-price {
  color: var(--gold-500);
  font-weight: 700;
}

/* Stats Card Container */
.stats-card {
  background-color: var(--navy-900);
  border-radius: var(--radius-xl);
  border: 1.2px solid rgba(201, 154, 60, 0.25);
  padding: 48px 32px;
  text-align: center;
  color: var(--cream-50);
  margin-top: 56px;
}

.stats-card-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
}

.stats-card-sub {
  font-size: 15px;
  color: rgba(251, 247, 239, 0.75);
  margin-bottom: 36px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.stat-item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(251, 247, 239, 0.1);
  border-radius: var(--radius-md);
  padding: 24px 16px;
}

.stat-number {
  font-size: 34px;
  font-weight: 700;
  color: var(--gold-500);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: rgba(251, 247, 239, 0.75);
}

.stats-disclaimer {
  font-size: 12px;
  font-style: italic;
  color: rgba(251, 247, 239, 0.5);
  margin-top: 24px;
}

/* How It Works */
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.step-card {
  position: relative;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px 28px;
  text-align: center;
  overflow: hidden;
}

/* Large ghost numeral behind the icon - the sequence is real (3 literal steps),
   so the number stays, but as a watermark rather than a floating badge */
.step-number {
  position: absolute;
  top: -10px;
  right: 4px;
  font-family: var(--font-serif);
  font-size: 96px;
  font-weight: 600;
  line-height: 1;
  color: var(--gold-100);
  z-index: 0;
  user-select: none;
}

.step-icon-circle {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  background-color: var(--gold-100);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  margin-bottom: 16px;
}

.step-card h3, .step-card p {
  position: relative;
  z-index: 1;
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 15px;
  color: var(--ink-500);
  line-height: 1.55;
}

/* CTA & Contact Form Section */
.cta-banner {
  background: linear-gradient(135deg, rgba(243, 228, 194, 0.6) 0%, var(--cream-50) 100%);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  box-shadow: 0 12px 32px rgba(18, 32, 63, 0.08);
  margin-bottom: 64px;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-desc {
  font-size: 17px;
  color: var(--ink-800);
  line-height: 1.6;
  margin-bottom: 28px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-info-tile {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--navy-900);
}

.contact-info-tile span {
  color: var(--gold-500);
  font-size: 18px;
}

/* Form Styles */
.form-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 12px 28px rgba(18, 32, 63, 0.06);
}

.form-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

/* Tawk customer support panel */
.tawk-card {
  width: 100%;
  min-height: 520px;
  padding: 0;
  overflow: hidden;

  background: var(--card);
  border: 1px solid rgba(201, 154, 60, 0.18);
  border-radius: 24px;

  box-shadow:
    0 18px 45px rgba(30, 25, 15, 0.08);

  display: flex;
  align-items: stretch;
}

#tawk_6a4564a84d46a91d40d758d5 {
  width: 100%;
  min-height: 520px;
  position: relative;
  z-index: 1;
}

/* Keep the Tawk iframe contained */
.tawk-card iframe {
  width: 100% !important;
  min-height: 520px !important;
  border: 0 !important;
  border-radius: 24px !important;
}

/* Mobile */
@media (max-width: 768px) {
  .tawk-card {
    min-height: 500px;
    border-radius: 20px;
  }

  #tawk_6a4564a84d46a91d40d758d5 {
    min-height: 500px;
  }

  .tawk-card iframe {
    min-height: 500px !important;
    border-radius: 20px !important;
  }
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background-color: var(--background);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--navy-900);
  outline: none;
  transition: border-color 0.2s ease;
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--gold-500);
}

.form-textarea {
  resize: vertical;
  min-height: 90px;
}

/* Footer */
.main-footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 64px 0 32px 0;
  border-top: 1px solid rgba(231, 220, 199, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--cream-50);
  margin-bottom: 16px;
}

.footer-brand-title img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
}

.footer-desc {
  font-size: 14px;
  color: rgba(251, 247, 239, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;

}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(251, 247, 239, 0.7);
  margin-bottom: 8px;
}

.footer-heading {
  font-size: 16px;
  font-weight: 600;
  color: var(--cream-50);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link a {
  font-size: 14px;
  color: rgba(251, 247, 239, 0.7);
  transition: color 0.2s ease;
}

.footer-link a:hover {
  color: var(--gold-500);
}

.footer-bottom {
  border-top: 1px solid rgba(251, 247, 239, 0.1);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(251, 247, 239, 0.5);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal-links a {
  color: rgba(251, 247, 239, 0.6);

  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: var(--gold-500);
}

/* Subpage Common Layout */
.page-header {
  padding: 48px 0 32px 0;
  text-align: center;
}

.page-title {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 12px;
}

.page-subtitle {
  font-size: 18px;
  color: var(--ink-500);
  max-width: 600px;
  margin: 0 auto;
}

/* Legal & Document Content Layout */
.doc-container {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 64px;
  box-shadow: 0 8px 24px rgba(18, 32, 63, 0.04);
}

.doc-content h1 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 16px;
}

.doc-content h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--navy-900);
  margin-top: 36px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}

.doc-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-900);
  margin-top: 24px;
  margin-bottom: 12px;
}

.doc-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-800);
  margin-bottom: 16px;
}

.doc-content ul, .doc-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.doc-content li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-800);
  margin-bottom: 8px;
}

.doc-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}

.doc-content th, .doc-content td {
  border: 1px solid var(--border);
  padding: 12px 16px;
  text-align: left;
}

.doc-content th {
  background-color: var(--background);
  font-weight: 600;
  color: var(--navy-900);
}

.doc-content td {
  color: var(--ink-800);
}

/* Partners Page Card */
.partner-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 8px 24px rgba(18, 32, 63, 0.05);
  margin-bottom: 48px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.partner-card:hover {
  border-color: rgba(201, 154, 60, 0.5);
  box-shadow: 0 16px 36px rgba(18, 32, 63, 0.1);
}

.partner-logo-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.partner-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.icon-sliet {
  background-color: rgba(21, 101, 192, 0.1);
  border: 1px solid rgba(21, 101, 192, 0.25);
  color: #1565C0;
}

.icon-iic {
  background-color: rgba(245, 127, 23, 0.1);
  border: 1px solid rgba(245, 127, 23, 0.25);
  color: #F57F17;
}

/* Schedule Coming Soon Page */
.coming-soon-wrapper {
  text-align: center;
  max-width: 540px;
  margin: 64px auto;
}

.coming-soon-icon {
  width: 96px;
  height: 96px;
  background-color: rgba(201, 154, 60, 0.12);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  font-size: 44px;
  margin-bottom: 28px;
}

/* Responsive Breakpoint (768px) */
@media (max-width: 768px) {
  :root {
    --nav-height: 72px;
    --section-vertical: 64px;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .hero-kicker {
    justify-content: center;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .playstore-card {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .value-prop-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .value-cards-grid {
    grid-template-columns: 1fr;
  }

  .services-grid, .how-it-works-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-banner {
    padding: 36px 20px;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .doc-container {
    padding: 24px;
  }

  .doc-content h1 {
    font-size: 26px;
  }
}
