/* ============================================================
   FinPro Advisory — Premium Finance Landing Page
   Theme: Deep Navy × Antique Gold × Ivory
   ============================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --navy-950:  #04090F;
  --navy-900:  #07121E;
  --navy-800:  #0D1F33;
  --navy-700:  #122843;
  --navy-600:  #1A3A5C;
  --navy-500:  #234D79;

  --gold-400:  #F0C055;
  --gold-500:  #D4A843;
  --gold-600:  #B88B2A;
  --gold-700:  #8C6518;

  --ivory:     #F5F0E6;
  --ivory-dim: #C8BFA8;
  --white:     #FFFFFF;

  --text-primary:   #F5F0E6;
  --text-secondary: #9EB3C8;
  --text-muted:     #5C7A94;

  --border:    rgba(212, 168, 67, 0.15);
  --border-hi: rgba(212, 168, 67, 0.35);

  --shadow-gold: 0 0 40px rgba(212, 168, 67, 0.12);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.45);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Jost', 'Segoe UI', sans-serif;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-body);
  background: var(--navy-900);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy-900); }
::-webkit-scrollbar-thumb { background: var(--gold-600); border-radius: 10px; }

/* ---------- UTILITY ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section--alt {
  background: var(--navy-950);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-950);
  border-color: var(--gold-400);
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.25);
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-400), #F8D070);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 168, 67, 0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(245, 240, 230, 0.3);
}
.btn--ghost:hover {
  border-color: var(--gold-500);
  color: var(--gold-400);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--gold-400);
  border-color: var(--border-hi);
}
.btn--outline:hover {
  background: rgba(212, 168, 67, 0.1);
  border-color: var(--gold-500);
  transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; }
.btn--lg { padding: 16px 36px; font-size: 1rem; }

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- SECTION HEADERS ---------- */
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-500);
  border: 1px solid var(--border-hi);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--ivory);
  line-height: 1.25;
  margin-bottom: 14px;
}
.section-title em {
  font-style: italic;
  color: var(--gold-400);
}

.section-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 300;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background 0.4s ease, border-bottom 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(7, 18, 30, 0.95);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ivory);
}
.nav-logo .logo-mark { font-size: 1.4rem; color: var(--gold-400); }
.nav-logo em { font-style: italic; color: var(--gold-400); }  

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-secondary);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--gold-400); }

.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-950);
  padding: 9px 20px;
  font-weight: 600;
  border-radius: var(--radius-sm);
}
.nav-links .nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212, 168, 67, 0.4);
  color: var(--navy-950);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ivory);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, #112138 0%, var(--navy-900) 70%);
}

#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero-glow--left {
  background: radial-gradient(circle, rgba(212, 168, 67, 0.1) 0%, transparent 70%);
  top: -100px; left: -100px;
}
.hero-glow--right {
  background: radial-gradient(circle, rgba(35, 77, 121, 0.4) 0%, transparent 70%);
  bottom: -100px; right: -100px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: 120px 24px 80px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 20px;
  display: block;
  transition-delay: 0.1s;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--ivory);
  margin-bottom: 24px;
  transition-delay: 0.2s;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-400);
  position: relative;
}
.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
  border-radius: 2px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 36px;
  font-weight: 300;
  transition-delay: 0.3s;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  transition-delay: 0.4s;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 28px 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(13, 31, 51, 0.6);
  backdrop-filter: blur(10px);
  transition-delay: 0.5s;
}

.stat {
  text-align: center;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-top: 6px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-500), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================================
   ITR SECTION
   ============================================================ */
.itr-types {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 56px;
}

.itr-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 58, 92, 0.5);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 0.9rem;
  color: var(--ivory-dim);
  font-weight: 400;
  transition: var(--transition);
}
.itr-pill:hover {
  border-color: var(--gold-500);
  color: var(--gold-400);
  background: rgba(212, 168, 67, 0.06);
  transform: translateY(-2px);
}

/* --- PRICING CARDS --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--navy-800);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  opacity: 0;
  transition: var(--transition);
}
.pricing-card:hover::before { opacity: 1; }
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hi);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}

.pricing-card--featured {
  border-color: var(--gold-600);
  background: linear-gradient(150deg, var(--navy-700) 0%, var(--navy-800) 100%);
}
.pricing-card--featured::before { opacity: 1; }

.pricing-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-950);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.pricing-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.pricing-name {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 20px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.pricing-currency {
  font-size: 1.3rem;
  color: var(--gold-500);
  font-weight: 600;
}

.pricing-figure {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-features {
  margin-bottom: 32px;
}
.pricing-features li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-features li:last-child { border-bottom: none; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--navy-800);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  background: radial-gradient(circle at 0% 0%, rgba(212, 168, 67, 0.05), transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hi);
  box-shadow: var(--shadow-card);
}
.service-card:hover::after { opacity: 1; }

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid var(--border-hi);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon { font-size: 1.5rem; }

.service-name {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.price-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.price-value {
  font-weight: 600;
  color: var(--gold-400);
  font-size: 1rem;
}
.price-value small {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* ============================================================
   GST SECTION
   ============================================================ */
.gst-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.gst-card {
  background: var(--navy-800);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.gst-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hi);
  box-shadow: var(--shadow-card);
}

.gst-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.gst-emoji { font-size: 2rem; line-height: 1; flex-shrink: 0; margin-top: 2px; }

.gst-name {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 4px;
}

.gst-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.gst-price {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.gst-price strong {
  color: var(--gold-400);
  font-size: 1.25rem;
  font-family: var(--ff-display);
  font-weight: 700;
}

.gst-bar {
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
  width: 0;
  transition: width 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.gst-card.in-view .gst-bar { width: 65%; }

/* ============================================================
   DIGITAL SIGNATURE
   ============================================================ */
.dsc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.dsc-card {
  background: var(--navy-800);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.dsc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--border-hi);
}

.dsc-card--mid {
  border-color: var(--gold-600);
  background: linear-gradient(160deg, var(--navy-700) 0%, var(--navy-800) 100%);
  transform: scale(1.02);
  box-shadow: var(--shadow-gold);
}
.dsc-card--mid:hover { transform: scale(1.02) translateY(-6px); }

.dsc-icon { font-size: 2.6rem; margin-bottom: 16px; }

.dsc-name {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.badge-chip {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: rgba(212, 168, 67, 0.15);
  color: var(--gold-400);
  border: 1px solid var(--border-hi);
  border-radius: 100px;
  padding: 2px 10px;
}

.dsc-price {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-400);
  margin-bottom: 14px;
}

.dsc-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* ============================================================
   MCA SECTION
   ============================================================ */
.mca-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-bottom: 52px;
}

.mca-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: var(--navy-800);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.mca-item:hover {
  border-color: var(--border-hi);
  transform: translateX(4px);
  background: rgba(17, 33, 51, 0.7);
}

.mca-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-500);
  flex-shrink: 0;
  margin-top: 6px;
  box-shadow: 0 0 8px rgba(212, 168, 67, 0.5);
}

.mca-title {
  font-family: var(--ff-display);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 5px;
}

.mca-sub {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.mca-cta {
  text-align: center;
  padding: 40px;
  border: 1px dashed var(--border-hi);
  border-radius: var(--radius-lg);
  background: rgba(212, 168, 67, 0.03);
}
.mca-cta p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  text-align: center;
}

.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(212, 168, 67, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.2;
  margin: 16px 0 18px;
}

.cta-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-weight: 300;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-950);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

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

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.6;
}

.footer-links h4 {
  font-family: var(--ff-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-400);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.footer-links ul li {
  margin-bottom: 10px;
}
.footer-links ul li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-links ul li a:hover { color: var(--gold-400); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(7, 18, 30, 0.98);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; width: 100%; }

  .hamburger { display: flex; }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }
  .stat { padding: 0; }
  .stat-divider { width: 80px; height: 1px; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
  .services-grid { grid-template-columns: 1fr; }
  .gst-grid { grid-template-columns: 1fr; }
  .dsc-grid { grid-template-columns: 1fr; }
  .mca-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .dsc-card--mid { transform: none; }
  .dsc-card--mid:hover { transform: translateY(-6px); }

  .hero-actions { gap: 12px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-trust { gap: 16px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-stats { padding: 20px 16px; }
  .stat-num { font-size: 1.8rem; }
  .btn--lg { padding: 14px 28px; font-size: 0.95rem; }
  .pricing-card { padding: 28px 24px; }
}

/* ============================================================
   MICRO ANIMATIONS
   ============================================================ */
@keyframes floatUp {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

.pricing-card--featured { animation: floatUp 4s ease-in-out infinite; }

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

.btn--gold {
  background-size: 200%;
}
