/* =========================================================
   Aaj Ke Bhav — World-Class Design System & Stylesheet
   Palette: Executive Navy (#0B1D4F), Mandi Gold (#D99A06), Warm Cream (#FAF8F5)
   Typography: Plus Jakarta Sans (Headings) + Inter (Body)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Noto+Sans+Devanagari:wght@500;600;700;800&display=swap');

:root {
  /* Color Palette Tokens */
  --navy-deep: #131F40;
  --navy: #182B62;
  --navy-mid: #192F6D;
  --navy-light: #1E3A8A;
  --navy-tint: #EFF4FF;

  --gold: #D99A06;
  /* Main Golden */
  --gold-light: #E1A106;
  /* Light Golden */
  --gold-bright: #E1A106;
  /* Light Golden */
  --gold-dark: #B67A06;
  /* Dark Golden */
  --gold-tint: rgba(217, 154, 6, 0.12);
  --gold-glow: rgba(217, 154, 6, 0.25);

  --emerald: #10B981;
  --emerald-tint: #D1FAE5;
  --rose: #EF4444;
  --rose-tint: #FEE2E2;

  --cream: #FFF6E6;
  --white: #FFFFFF;
  --ink: #0F172A;
  --muted: #475569;
  --muted-light: #94A3B8;
  --line: #E2E8F0;
  --line-warm: #E7E2D7;

  /* Glassmorphism & Elevation */
  --glass-bg: rgba(255, 255, 255, 0.78);
  --glass-navy: rgba(11, 29, 79, 0.88);
  --glass-border: rgba(11, 29, 79, 0.08);
  --glass-light-border: rgba(255, 255, 255, 0.16);

  --shadow-sm: 0 2px 4px rgba(11, 29, 79, 0.04), 0 1px 2px rgba(11, 29, 79, 0.02);
  --shadow-md: 0 10px 25px -5px rgba(11, 29, 79, 0.08), 0 4px 10px -4px rgba(11, 29, 79, 0.04);
  --shadow-lg: 0 20px 40px -10px rgba(11, 29, 79, 0.16), 0 8px 16px -6px rgba(11, 29, 79, 0.08);
  --shadow-glow: 0 0 30px rgba(245, 158, 11, 0.25);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --container: 1200px;
  --nav-h: 76px;
  --font-heading: 'Plus Jakarta Sans', 'Noto Sans Devanagari', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', 'Noto Sans Devanagari', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Typography Hierarchy */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  margin: 0 0 0.5em;
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 800;
}

h1 {
  font-size: clamp(2.4rem, 4vw + 1rem, 3.8rem);
}

h2 {
  font-size: clamp(1.85rem, 2.2vw + 1rem, 2.75rem);
}

h3 {
  font-size: clamp(1.25rem, 1.2vw + 0.8rem, 1.5rem);
}

h4 {
  font-size: 1.125rem;
  font-weight: 700;
}

p {
  margin: 0 0 1em;
  color: var(--muted);
}

.lede {
  font-size: clamp(1.05rem, 1vw + 0.8rem, 1.2rem);
  max-width: 680px;
  color: var(--muted);
  line-height: 1.65;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
}

.section--tight {
  padding: 48px 0;
}

.section--navy {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  color: var(--white);
}

.section--navy h1,
.section--navy h2,
.section--navy h3 {
  color: var(--white);
}

.section--navy p {
  color: rgba(255, 255, 255, 0.78);
}

.section--cream {
  background: linear-gradient(180deg, #FFF6E6 0%, #FFF9EF 35%, #FFFDFA 75%, #FFFEFD 100%);
}

.section--white {
  background: var(--white);
}

.eyebrow-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-dark);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.eyebrow-mark::before {
  content: "";
  width: 18px;
  height: 3px;
  background: var(--gold);
  display: inline-block;
  border-radius: 99px;
}

.section--navy .eyebrow-mark {
  color: var(--gold-light);
}

.head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  user-select: none;
  background-clip: padding-box;
  -webkit-background-clip: padding-box;
  overflow: hidden;
}

.btn-gold {
  background: linear-gradient(135deg, #E1A106 0%, #D99A06 50%, #B67A06 100%);
  color: var(--navy-deep);
  box-shadow: 0 4px 14px rgba(217, 154, 6, 0.35);
  border: none;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217, 154, 6, 0.45);
  background: linear-gradient(135deg, #E1A106 0%, #D99A06 60%, #B67A06 100%);
}

.btn-gold:active {
  transform: translateY(0);
}

.btn-navy {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  color: var(--white);
  box-shadow: var(--shadow-sm);
  border: none;
}

.btn-navy:hover {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.06);
}

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

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.84rem;
  border-radius: 999px;
}

.btn-block {
  width: 100%;
}

.btn[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}

/* Site Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(250, 248, 245, 0.84);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid rgba(11, 29, 79, 0.06);
  transition: all 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--navy);
  font-size: 1.1rem;
}

.brand img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 9px 18px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
  transition: all 0.2s ease;
}

.nav-links a:hover {
  background: var(--navy-tint);
  color: var(--navy-light);
}

.nav-links a.active {
  background: var(--navy);
  color: var(--white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--navy);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.nav-toggle:hover {
  background: var(--navy-tint);
}

.nav-links .nav-mobile-cta {
  display: none;
}

@media (max-width: 900px) {
  .site-header {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(255, 255, 255, 0.98);
    position: sticky;
    top: 0;
    z-index: 9999;
    overflow: visible !important;
  }

  .nav-inner {
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-actions .btn-desktop {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: -24px;
    width: calc(100% + 48px);
    max-height: calc(100vh - 100%);
    max-height: calc(100dvh - 100%);
    min-height: 360px;
    background: #FAF8F5;
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px 36px;
    gap: 10px;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.22s ease, visibility 0.22s;
    overflow-y: auto;
    z-index: 9999;
    border-top: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(11, 29, 79, 0.25);
  }

  body.nav-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    padding: 14px 20px;
    font-size: 1.05rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--navy);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
  }

  .nav-links a::after {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--muted-light);
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
  }

  .nav-links a.active::after {
    color: var(--gold-light);
  }

  .nav-links .nav-mobile-cta {
    display: block;
    margin-top: 12px;
  }
}

/* Live Ticker Bar (Executive Light & Gold Design) */
.ticker-bar {
  background: var(--white);
  color: var(--navy);
  overflow: hidden;
  border-bottom: 1.5px solid var(--line-warm);
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 16px rgba(11, 29, 79, 0.04);
}

.ticker-badge {
  background: var(--navy-tint);
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.76rem;
  padding: 6px 14px;
  letter-spacing: 0.05em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
  margin: 0 12px 0 16px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  box-shadow: 0 2px 8px rgba(11, 29, 79, 0.06);
  flex-shrink: 0;
}

.ticker-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: #EF4444;
  border-radius: 50%;
  animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }

  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

.ticker {
  overflow: hidden;
  flex: 1;
  display: flex;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 36s linear infinite;
}

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

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  border-right: 1px solid var(--line);
  color: var(--navy);
}

.ticker-item i {
  color: var(--gold-dark);
  font-size: 0.95rem;
}

.ticker-item .badge-trend i {
  color: inherit;
}

.ticker-item .up {
  color: #059669;
  background: #ECFDF5;
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.ticker-item .down {
  color: #DC2626;
  background: #FEF2F2;
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Hero Section */
.hero {
  position: relative;
  padding: clamp(50px, 7vw, 90px) 0 clamp(60px, 8vw, 100px);
  background: var(--cream);
  overflow: hidden;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  width: 100%;
  opacity: 0.6;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px 6px 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.hero-tag span {
  background: var(--gold);
  color: var(--navy-deep);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.74rem;
  font-weight: 800;
}

.hero h1 .accent {
  background: linear-gradient(120deg, var(--gold-dark) 0%, var(--gold) 40%, var(--gold-bright) 70%, var(--gold-dark) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gold-shimmer 6s linear infinite;
}

@keyframes gold-shimmer {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line-warm);
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
}

.hero-trust-item strong {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.1;
}

.hero-trust-item span {
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 600;
}

.hero-art {
  position: relative;
}

.hero-art-main {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  transition: transform 0.4s ease;
}

.hero-art-main:hover {
  transform: scale(1.01);
}

.rate-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 0.88rem;
  border: 1px solid var(--line);
  animation: float-bob 4s ease-in-out infinite alternate;
  z-index: 5;
}

.rate-float.f1 {
  top: 20px;
  left: -20px;
}

.rate-float.f2 {
  bottom: 20px;
  right: -15px;
  animation-delay: 2s;
}

.rate-float .ic {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-tint);
  color: var(--navy);
  font-size: 1.1rem;
}

.rate-float small {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.76rem;
  margin-top: 2px;
}

@keyframes float-bob {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-8px);
  }
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .rate-float {
    position: static;
    margin-top: 12px;
    animation: none;
  }

  .hero-art {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
}

/* Trust Badges Strip */
.trust-badges-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 10;
  margin-top: -40px;
  /* Pull it slightly into the hero */
}

@media (max-width: 900px) {
  .trust-badges-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .trust-badges-strip {
    grid-template-columns: 1fr;
  }
}

.trust-badge-card {
  background: var(--white);
  border: 1.5px solid var(--line-warm);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trust-badge-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.trust-badge-card .icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 16px;
}

.trust-badge-card .icon-circle.navy {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
}

.trust-badge-card .icon-circle.gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
}

.trust-badge-card strong {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--navy-deep);
  margin-bottom: 4px;
}

.trust-badge-card span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Mandi Dashboard & Price Table Widget */
.mandi-dashboard {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: clamp(20px, 4vw, 32px);
  margin-top: 24px;
}

.dash-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.dash-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  max-width: 100%;
}

.dash-tab {
  padding: 8px 16px;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--cream);
  color: var(--navy);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.dash-tab.active,
.dash-tab:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.dash-search {
  position: relative;
  min-width: 240px;
}

.dash-search input {
  width: 100%;
  padding: 9px 14px 9px 38px;
  border-radius: 99px;
  border: 1.5px solid var(--line);
  font-size: 0.88rem;
  outline: none;
  background: var(--cream);
  transition: border-color 0.2s ease;
}

.dash-search input:focus {
  border-color: var(--navy);
  background: var(--white);
}

.dash-search i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-light);
  font-size: 0.88rem;
}

.mandi-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}

.mandi-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
}

.mandi-table th {
  background: var(--navy-tint);
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 14px 18px;
  border-bottom: 1.5px solid var(--line);
  white-space: nowrap;
}

.mandi-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  vertical-align: middle;
}

.mandi-table tbody tr {
  transition: background-color 0.15s ease;
}

.mandi-table tbody tr:hover {
  background-color: var(--cream);
}

.mandi-table tbody tr:last-child td {
  border-bottom: none;
}

.badge-trend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 700;
}

.badge-trend.up {
  background: var(--emerald-tint);
  color: #047857;
}

.badge-trend.down {
  background: var(--rose-tint);
  color: #B91C1C;
}

/* Stat Strip Section */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-warm);
  border: 1px solid var(--line-warm);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.stat-cell {
  background: var(--white);
  padding: 32px 24px;
  text-align: center;
}

.stat-cell strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 2.5vw + 1rem, 2.75rem);
  color: var(--navy);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-cell span {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
}

.section--navy .stat-strip {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.12);
}

.section--navy .stat-cell {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.section--navy .stat-cell strong {
  color: var(--gold-light);
}

.section--navy .stat-cell span {
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 768px) {
  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stat-strip {
    grid-template-columns: 1fr;
  }
}

/* Audience Grid & Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

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

@media (max-width: 980px) {

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

@media (max-width: 640px) {

  .grid-3,
  .grid-4,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.audience-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.icon-badge {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}

.icon-badge.gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
}

.icon-badge.outline {
  background: var(--white);
  border: 1.5px solid var(--line);
  color: var(--navy);
}

.audience-card ul {
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.audience-card ul li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.93rem;
  color: var(--ink);
}

.audience-card ul li i {
  color: var(--gold-dark);
  margin-top: 3px;
  font-size: 0.88rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.92rem;
  margin-top: auto;
}

.card-link i {
  transition: transform 0.2s ease;
}

.card-link:hover i {
  transform: translateX(4px);
}

/* Feature Cards */
.feature-card {
  padding: 30px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: all 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 29, 79, 0.12);
}

.feature-card h3 {
  font-size: 1.1rem;
  margin: 18px 0 10px;
}

.feature-card p {
  font-size: 0.92rem;
  margin: 0;
}

/* Steps Timeline & Animated Progress Bar */
.steps-wrapper {
  position: relative;
  padding-top: 20px;
}

.steps-progress-bar {
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 4px;
  background: var(--line-warm);
  border-radius: 99px;
  z-index: 1;
}

.steps-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-dark));
  border-radius: 99px;
  box-shadow: 0 0 12px var(--gold-glow);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .steps-progress-bar {
    display: none;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  position: relative;
  padding: 34px 24px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--line);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.step:hover,
.step.active {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
  background: var(--white);
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-tint);
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.3s ease;
  border: 2px solid var(--line);
}

.step.active .step-num,
.step:hover .step-num {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
  border-color: var(--gold-dark);
  box-shadow: 0 0 16px var(--gold-glow);
  transform: scale(1.1);
}

.step h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.step.active h3 {
  color: var(--navy-deep);
}

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

/* Executive App Download CTA Banner */
.app-banner {
  background: linear-gradient(180deg, #FFF6E6 0%, #FFF9EF 35%, #FFFDFA 75%, #FFFEFD 100%);
  border-radius: var(--radius-xl);
  padding: clamp(36px, 6vw, 60px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  color: var(--navy);
  position: relative;
  overflow: hidden;
  border: 1.5px solid rgba(225, 161, 6, 0.3);
  box-shadow: 0 20px 50px rgba(4, 11, 30, 0.08), 0 0 30px rgba(217, 154, 6, 0.1);
}

.app-banner::before {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 161, 6, 0.18), transparent 70%);
  pointer-events: none;
}

.app-banner::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 161, 6, 0.22), transparent 70%);
  pointer-events: none;
}

.app-banner .tag-pill {
  background: rgba(225, 161, 6, 0.12);
  color: var(--gold-dark);
  border: 1px solid rgba(225, 161, 6, 0.4);
  padding: 6px 16px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.04em;
  box-shadow: 0 0 12px rgba(217, 154, 6, 0.1);
}

.app-banner h2 {
  color: var(--navy);
  font-size: clamp(1.8rem, 2.8vw + 1rem, 2.6rem);
  margin-bottom: 16px;
  line-height: 1.2;
}

.app-banner h2 .accent {
  background: linear-gradient(120deg, #B67A06 0%, #D99A06 50%, #E1A106 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.app-banner p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 580px;
  margin-bottom: 28px;
}

.store-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  z-index: 2;
  position: relative;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1.5px solid rgba(225, 161, 6, 0.35);
  padding: 14px 24px;
  border-radius: 16px;
  font-size: 0.88rem;
  color: var(--navy);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(24, 43, 98, 0.08);
}

.store-btn:hover {
  background: linear-gradient(135deg, rgba(225, 161, 6, 0.14), rgba(217, 154, 6, 0.08));
  border-color: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(217, 154, 6, 0.25);
  color: var(--navy);
}

.store-btn i {
  font-size: 1.8rem;
  color: var(--gold-dark);
  transition: transform 0.2s ease;
}

.store-btn:hover i {
  transform: scale(1.1);
}

.store-btn strong {
  display: block;
  font-size: 1rem;
  font-family: var(--font-heading);
  color: var(--navy);
}

.app-banner-art {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.app-art-card {
  position: relative;
  padding: 28px 32px;
  background: linear-gradient(145deg, #E1A106 0%, #D99A06 55%, #B8860B 100%);
  border: 1.5px solid rgba(225, 161, 6, 0.4);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 40px rgba(184, 134, 11, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.app-art-card img {
  max-height: 220px;
  width: auto;
  filter: drop-shadow(0 14px 28px rgba(19, 31, 64, 0.35));
  transition: transform 0.35s ease;
}

.app-art-card:hover img {
  transform: scale(1.06) rotate(1.5deg);
}

.app-badge-float {
  position: absolute;
  bottom: -16px;
  background: var(--white);
  color: var(--navy-deep);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 8px 20px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.app-badge-float i {
  color: var(--gold-dark);
}

@media (max-width: 860px) {
  .app-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 36px 20px;
  }

  .app-banner p {
    margin-left: auto;
    margin-right: auto;
  }

  .store-row {
    justify-content: center;
  }

  .app-banner-art {
    order: -1;
  }
}

/* Quotes / Testimonials */
.quote-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.quote-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.quote-card i.fa-quote-left {
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.quote-card p {
  flex-grow: 1;
  font-size: 0.96rem;
  line-height: 1.6;
}

.quote-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.avatar-mono {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
}

.quote-person strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--navy);
}

.quote-person span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Page Hero (Inner Pages - Matching Homepage Theme) */
.page-hero {
  position: relative;
  background: var(--cream);
  color: var(--ink);
  padding: clamp(50px, 6vw, 80px) 0 clamp(50px, 6vw, 80px);
  overflow: hidden;
  border-bottom: 1px solid var(--line-warm);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--navy);
  font-weight: 700;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--gold-dark);
}

.breadcrumb span {
  color: var(--gold-dark);
  font-weight: 800;
}

.breadcrumb i {
  color: var(--muted-light);
}

.page-hero h1 {
  color: var(--navy);
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 3.5vw + 1rem, 3.5rem);
}

.page-hero h1 .accent {
  background: linear-gradient(120deg, var(--gold-dark) 0%, var(--gold) 40%, var(--gold-bright) 70%, var(--gold-dark) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gold-shimmer 6s linear infinite;
}

.page-hero p {
  color: var(--muted);
  max-width: 680px;
  font-size: clamp(1.05rem, 1vw + 0.8rem, 1.2rem);
  line-height: 1.65;
}

/* Services Roles Layout */
.role-row {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
}

.role-row:last-child {
  border-bottom: none;
}

.role-row.reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.role-row.reverse> :first-child {
  order: 2;
}

.role-row.reverse> :last-child {
  order: 1;
}

.role-visual {
  background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  color: var(--white);
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1.5px solid rgba(225, 161, 6, 0.28);
  box-shadow: 0 16px 40px rgba(4, 11, 30, 0.35), 0 0 25px rgba(217, 154, 6, 0.12);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.role-visual:hover {
  transform: translateY(-5px);
  border-color: var(--gold-light);
  box-shadow: 0 20px 50px rgba(4, 11, 30, 0.45), 0 0 35px rgba(217, 154, 6, 0.25);
}

.role-visual,
.role-visual h3 {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.role-visual h3 .accent {
  background: linear-gradient(120deg, #E1A106 0%, #D99A06 50%, #FDE047 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.role-visual p {
  color: rgba(255, 255, 255, 0.84) !important;
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.role-visual .role-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(225, 161, 6, 0.22), rgba(217, 154, 6, 0.1));
  border: 1px solid rgba(225, 161, 6, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.role-visual .role-number {
  position: absolute;
  right: 24px;
  top: 16px;
  font-size: 4.2rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: rgba(225, 161, 6, 0.15);
  pointer-events: none;
}

.role-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--gold-dark);
  background: var(--gold-tint);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.role-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin: 24px 0 28px;
}

.role-feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.93rem;
  color: var(--ink);
}

.role-feature-list li i {
  color: var(--gold-dark);
  margin-top: 3px;
}

@media (max-width: 900px) {

  .role-row,
  .role-row.reverse {
    grid-template-columns: 1fr;
  }

  .role-row.reverse> :first-child {
    order: 1;
  }

  .role-row.reverse> :last-child {
    order: 2;
  }

  .role-feature-list {
    grid-template-columns: 1fr;
  }
}

/* Feature Comparison Table */
.table-scroll {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  text-align: left;
}

.compare-table th,
.compare-table td {
  padding: 18px 24px;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--line);
}

.compare-table thead th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  white-space: nowrap;
}

.compare-table tbody tr:hover {
  background: var(--cream);
}

.compare-table td i {
  color: var(--emerald);
  font-size: 1.1rem;
}

/* Contact Section & Form */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
}

@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.info-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 26px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(11, 29, 79, 0.05);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-light);
  box-shadow: 0 16px 36px rgba(217, 154, 6, 0.18);
}

.info-card:hover::before {
  opacity: 1;
}

.info-card .icon-badge {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-dark) 100%);
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(217, 154, 6, 0.3);
  transition: transform 0.3s ease;
}

.info-card:hover .icon-badge {
  transform: scale(1.08) rotate(-4deg);
}

.info-card h4 {
  margin: 0 0 6px;
  font-size: 1.08rem;
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 800;
}

.info-card p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.55;
}

.info-card a {
  color: var(--navy);
  font-weight: 800;
  transition: color 0.2s ease;
}

.info-card a:hover {
  color: var(--gold-dark);
}

.form-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 48px);
  box-shadow: 0 20px 50px rgba(11, 29, 79, 0.08), 0 0 30px rgba(217, 154, 6, 0.08);
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 15px 18px;
  border-radius: 14px;
  border: 1.5px solid var(--line);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(217, 154, 6, 0.18);
  background: var(--white);
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.field-error {
  font-size: 0.8rem;
  color: var(--rose);
  margin-top: 6px;
  display: none;
  font-weight: 600;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--rose);
  background: var(--rose-tint);
}

.field.has-error .field-error {
  display: block;
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 12px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 14px;
  background: var(--emerald-tint);
  border: 1px solid #A7F3D0;
  color: #065F46;
  padding: 18px 20px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.94rem;
  margin-top: 20px;
}

.form-success.show {
  display: flex;
}

.form-success i {
  font-size: 1.4rem;
  color: var(--emerald);
}

.map-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1.5px solid var(--line-warm);
  box-shadow: 0 16px 40px rgba(11, 29, 79, 0.08);
}

.map-card iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item.open {
  border-color: var(--gold-light);
  box-shadow: 0 10px 28px rgba(217, 154, 6, 0.15);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.02rem;
  cursor: pointer;
}

.faq-q i {
  color: var(--gold-dark);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open {
  border-color: rgba(11, 29, 79, 0.25);
  box-shadow: var(--shadow-sm);
}

.faq-item.open .faq-q i {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-a p {
  padding: 0 24px 22px;
  font-size: 0.95rem;
  margin: 0;
  color: var(--muted);
}

/* Modal Popup Dialog */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 11, 30, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 520px;
  width: 100%;
  padding: 36px 30px;
  position: relative;
  transform: scale(0.92);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-lg);
}

.modal-overlay.open .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--navy);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.modal-close:hover {
  background: var(--line);
}

/* Site Footer */
.site-footer {
  background: linear-gradient(180deg, #FFF6E6 0%, #FFF9EF 35%, #FFFDFA 75%, #FFFEFD 100%);
  color: var(--muted);
  padding: 80px 0 32px;
  border-top: 1px solid var(--line-warm);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 0.8fr 1fr;
  gap: 32px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-warm);
}

.footer-brand img {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-bottom: 18px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(24, 43, 98, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-2px);
}

.footer-col h4 {
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 0.92rem;
  color: var(--muted);
}

.footer-col a:hover {
  color: var(--gold-dark);
}

.footer-col .contact-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.footer-col .contact-line i {
  color: var(--gold-dark);
  margin-top: 3px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 0.82rem;
  color: var(--muted-light);
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Animations & Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(11, 29, 79, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.9);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 800;
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  background: var(--navy);
  color: var(--gold-light);
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 30px rgba(217, 154, 6, 0.45);
}

.back-to-top i {
  color: var(--gold-light);
  font-size: 1.15rem;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
  filter: drop-shadow(0 2px 4px rgba(217, 154, 6, 0.4));
  z-index: 2;
  position: relative;
}

.back-to-top:hover i {
  transform: translateY(-3px) scale(1.15);
  color: var(--gold-bright);
}

.back-to-top svg.progress-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  pointer-events: none;
}

.progress-ring-circle {
  transition: stroke-dashoffset 0.1s linear;
}

/* =========================================================
   Aaj Ke Bhav — World-Class Design System & Stylesheet
   ========================================================= */

/* --- Medium Desktop & Laptops (max-width: 1200px) --- */
@media (max-width: 1200px) {
  :root {
    --container: 100%;
  }

  .container {
    padding: 0 24px;
  }
}

/* --- Tablets & Small Laptops (max-width: 992px) --- */
@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-tag {
    margin: 0 auto 20px;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

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

  .hero-trust {
    justify-content: center;
    width: 100%;
  }

  .hero-art {
    max-width: 580px;
    margin: 0 auto;
    width: 100%;
  }

  .rate-float {
    position: relative;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    margin-top: 14px;
    width: 100%;
    animation: none;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .role-row,
  .role-row.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .role-row.reverse> :first-child {
    order: 1;
  }

  .role-row.reverse> :last-child {
    order: 2;
  }
}

/* --- Mobile Tablets & Large Phones (max-width: 768px) --- */
@media (max-width: 768px) {
  .section {
    padding: 50px 0;
  }

  .head-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
  }

  .dash-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .dash-tabs {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .dash-tabs::-webkit-scrollbar {
    display: none;
  }

  .dash-tab {
    flex-shrink: 0;
  }

  .dash-search {
    width: 100%;
    min-width: 100%;
  }

  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .app-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 36px 24px;
  }

  .app-banner-art {
    order: -1;
  }

  .store-row {
    justify-content: center;
  }
}

/* --- Mobile Smartphones (max-width: 576px) --- */
@media (max-width: 576px) {
  .container {
    padding: 0 16px;
  }

  .site-header {
    height: 68px;
  }

  :root {
    --nav-h: 68px;
  }

  .brand img {
    height: 50px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .ticker-badge {
    padding: 8px 12px;
    font-size: 0.7rem;
  }

  .ticker-item {
    padding: 8px 16px;
    font-size: 0.82rem;
  }

  .hero {
    padding: 36px 0 48px;
  }

  .hero-tag {
    font-size: 0.78rem;
    padding: 4px 12px 4px 6px;
  }

  .hero-tag span {
    padding: 2px 8px;
    font-size: 0.7rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-trust {
    gap: 16px;
    justify-content: space-around;
  }

  .hero-trust-item strong {
    font-size: 1.3rem;
  }

  .hero-trust-item span {
    font-size: 0.78rem;
  }

  .mandi-dashboard {
    padding: 16px;
    border-radius: var(--radius-md);
  }

  .mandi-table th,
  .mandi-table td {
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .badge-trend {
    padding: 2px 8px;
    font-size: 0.74rem;
  }

  .grid-3,
  .grid-4,
  .grid-2,
  .steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .audience-card,
  .feature-card,
  .step,
  .quote-card,
  .info-card {
    padding: 24px 20px;
    border-radius: var(--radius-md);
  }

  .role-feature-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .form-card {
    padding: 24px 18px;
    border-radius: var(--radius-lg);
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

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

  .store-row {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .store-btn {
    width: 100%;
    justify-content: center;
  }

  .modal-card {
    padding: 28px 20px;
    max-width: 94vw;
  }

  .map-card iframe {
    height: 280px;
  }

  .table-scroll {
    border-radius: var(--radius-md);
  }

  .compare-table {
    min-width: 520px;
  }
}

/* --- Ultra Small Devices (max-width: 360px) --- */
@media (max-width: 360px) {
  .brand img {
    height: 50px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.88rem;
  }

  .stat-strip {
    grid-template-columns: 1fr;
  }

  .stat-cell {
    padding: 20px 14px;
  }

  .stat-cell strong {
    font-size: 1.8rem;
  }
}

/* Legal Pages (Privacy Policy / Terms of Service / Refund Policy) */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 2em;
  padding-top: 0.5em;
  border-top: 1px solid var(--line-warm);
}

.legal-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content p,
.legal-content li {
  line-height: 1.7;
}

.legal-content ul {
  margin: 0 0 1em;
  padding-left: 1.4em;
}

.legal-content li {
  margin-bottom: 0.5em;
}

.legal-content a {
  color: var(--gold-dark);
  font-weight: 600;
}

.legal-content a:hover {
  text-decoration: underline;
}