:root {
  --blue-900: #0A1628; --blue-800: #0F2044; --blue-700: #1A3A6E;
  --blue-600: #1A56DB; --blue-500: #3B82F6; --blue-400: #60A5FA;
  --blue-100: #EFF6FF; --blue-50: #F0F7FF;
  --green: #10B981; --green-light: #D1FAE5;
  --amber: #F59E0B; --white: #FFFFFF;
  --gray-50: #F9FAFB; --gray-100: #F3F4F6; --gray-300: #D1D5DB;
  --gray-500: #6B7280; --gray-700: #374151; --gray-900: #111827;
  --font-display: 'Sora', sans-serif; --font-body: 'DM Sans', sans-serif;
}
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--gray-900); overflow-x: hidden; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0 5%; height: 68px; background: rgba(255,255,255,0.85); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(26,86,219,0.08); transition: box-shadow 0.3s; }
nav.scrolled { box-shadow: 0 4px 24px rgba(26,86,219,0.10); }
.nav-logo { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--blue-600); letter-spacing: -0.04em; text-decoration: none; display: flex; align-items: center; gap: 8px; }
.nav-logo-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{transform:scale(1);opacity:1;} 50%{transform:scale(1.4);opacity:0.7;} }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--gray-700); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--blue-600); }
.nav-cta { background: var(--blue-600); color: var(--white) !important; padding: 10px 22px; border-radius: 100px; font-weight: 600 !important; font-size: 0.875rem !important; transition: background 0.2s, transform 0.2s !important; }
.nav-cta:hover { background: var(--blue-700) !important; transform: translateY(-1px); }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 100px 5% 60px; background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 50%, #0D2157 100%); position: relative; overflow: hidden; }
.hero-bg-circle { position: absolute; border-radius: 50%; background: radial-gradient(circle, rgba(59,130,246,0.15), transparent 70%); animation: float-circle 8s ease-in-out infinite; }
.hero-bg-circle.c1 { width: 600px; height: 600px; top: -100px; right: -100px; }
.hero-bg-circle.c2 { width: 400px; height: 400px; bottom: -50px; left: 10%; animation-delay: 3s; }
.hero-bg-circle.c3 { width: 200px; height: 200px; top: 40%; right: 30%; animation-delay: 5s; }
@keyframes float-circle { 0%,100%{transform:translateY(0) scale(1);} 50%{transform:translateY(-30px) scale(1.05);} }
.hero::before { content: ''; position: absolute; inset: 0; }
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; width: 100%; }
.hero-descriptor { font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 12px; animation: fade-up 0.5s ease both; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.3); color: #6EE7B7; padding: 6px 16px; border-radius: 100px; font-size: 0.8rem; font-weight: 600; margin-bottom: 1.5rem; animation: fade-up 0.6s ease both; }
.hero-badge-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; }
.hero-title { font-family: var(--font-display); font-size: clamp(2.5rem, 4.5vw, 4rem); font-weight: 800; color: var(--white); line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 1.5rem; animation: fade-up 0.7s ease 0.1s both; }
.hero-title .accent { color: var(--blue-400); }
.hero-title .green-accent { color: #6EE7B7; }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 2.5rem; animation: fade-up 0.7s ease 0.2s both; }
.hero-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; animation: fade-up 0.7s ease 0.3s both; }
.btn-primary { background: var(--blue-600); color: var(--white); padding: 14px 28px; border-radius: 100px; font-weight: 600; font-size: 0.95rem; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s; box-shadow: 0 4px 20px rgba(26,86,219,0.4); }
.btn-primary:hover { background: var(--blue-500); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,86,219,0.5); }
.btn-ghost { background: rgba(255,255,255,0.08); color: var(--white); border: 1px solid rgba(255,255,255,0.2); padding: 14px 28px; border-radius: 100px; font-weight: 500; font-size: 0.95rem; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s; }
.btn-ghost:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.hero-trust { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; animation: fade-up 0.7s ease 0.4s both; }
.trust-avatars { display: flex; }
.trust-avatar { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--blue-800); background: linear-gradient(135deg, var(--blue-500), var(--blue-700)); margin-left: -8px; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 600; color: white; }
.trust-avatars .trust-avatar:first-child { margin-left: 0; }
.trust-text { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.trust-text strong { color: rgba(255,255,255,0.9); }

/* HERO MOCKUP */
.hero-mockup { position: relative; animation: fade-up 0.8s ease 0.3s both; }
.mockup-card { background: rgba(255,255,255,0.05); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; padding: 28px; animation: float-card 6s ease-in-out infinite; }
@keyframes float-card { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-12px);} }
.mockup-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.mockup-title { font-family: var(--font-display); font-weight: 700; color: white; font-size: 1rem; }
.mockup-tag { background: rgba(16,185,129,0.2); color: #6EE7B7; padding: 4px 12px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; }
.mockup-progress { margin-bottom: 20px; }
.progress-label { display: flex; justify-content: space-between; margin-bottom: 6px; }
.progress-label span { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.progress-label strong { font-size: 0.78rem; color: rgba(255,255,255,0.9); font-weight: 600; }
.progress-bar { height: 6px; background: rgba(255,255,255,0.1); border-radius: 100px; overflow: hidden; }
.progress-fill { height: 100%; width: 65%; border-radius: 100px; background: linear-gradient(90deg, var(--blue-500), var(--green)); animation: progress-anim 2s ease 1s both; }
@keyframes progress-anim { from{width:0;} to{width:65%;} }
.mockup-items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.mockup-item { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.04); padding: 12px 14px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.06); }
.item-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.item-icon.blue { background: rgba(59,130,246,0.2); }
.item-icon.green { background: rgba(16,185,129,0.2); }
.item-icon.amber { background: rgba(245,158,11,0.2); }
.item-info { flex: 1; }
.item-name { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.9); }
.item-sub { font-size: 0.73rem; color: rgba(255,255,255,0.4); margin-top: 2px; }
.item-status { font-size: 0.7rem; font-weight: 600; padding: 3px 10px; border-radius: 100px; }
.status-done { background: rgba(16,185,129,0.2); color: #6EE7B7; }
.status-pending { background: rgba(59,130,246,0.2); color: var(--blue-400); }
.status-new { background: rgba(245,158,11,0.2); color: #FCD34D; }
.mockup-cta { width: 100%; background: var(--blue-600); color: white; border: none; border-radius: 12px; padding: 14px; font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.mockup-cta:hover { background: var(--blue-500); transform: translateY(-1px); }
.float-badge { position: absolute; background: white; border-radius: 14px; padding: 10px 16px; box-shadow: 0 8px 32px rgba(0,0,0,0.2); display: flex; align-items: center; gap: 8px; animation: float-badge 5s ease-in-out infinite; white-space: nowrap; }
.float-badge.b1 { top: -20px; right: -20px; }
.float-badge.b2 { bottom: 20px; left: -30px; animation-delay: 2s; }
@keyframes float-badge { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }
.badge-icon { font-size: 1.1rem; }
.badge-text { font-size: 0.78rem; font-weight: 600; color: var(--gray-900); }
.badge-sub { font-size: 0.68rem; color: var(--gray-500); }

/* SECTIONS SHARED */
section { padding: 100px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-badge { display: inline-block; background: var(--blue-100); color: var(--blue-600); padding: 5px 14px; border-radius: 100px; font-size: 0.78rem; font-weight: 600; margin-bottom: 1rem; letter-spacing: 0.05em; text-transform: uppercase; }
.section-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--gray-900); letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 1rem; }
.section-sub { font-size: 1.05rem; color: var(--gray-500); line-height: 1.7; max-width: 560px; }

/* STATS BAR */
.stats-bar { background: var(--blue-600); padding: 0 5%; }
.stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); padding: 40px 0; }
.stat-item { text-align: center; padding: 20px; border-right: 1px solid rgba(255,255,255,0.15); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: white; line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.65); }

/* HOW IT WORKS */
.how { background: var(--gray-50); }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.how-card { background: white; border-radius: 20px; padding: 36px 30px; border: 1px solid var(--gray-100); position: relative; overflow: hidden; transition: all 0.3s; opacity: 0; transform: translateY(40px); }
.how-card.visible { opacity: 1; transform: translateY(0); }
.how-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(26,86,219,0.1); border-color: var(--blue-100); }
.how-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue-600), var(--blue-400)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.how-card:hover::before { transform: scaleX(1); }
.step-number { font-family: var(--font-display); font-size: 3.5rem; font-weight: 800; color: var(--blue-100); line-height: 1; margin-bottom: 16px; }
.step-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--blue-100); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 20px; }
.step-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.step-desc { font-size: 0.9rem; color: var(--gray-500); line-height: 1.65; }

/* TAX TYPES */
.tax-types { background: white; }
.tax-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; }
.tax-card { border-radius: 20px; padding: 36px; border: 1.5px solid var(--gray-100); cursor: pointer; transition: all 0.3s; opacity: 0; transform: translateY(30px); position: relative; overflow: hidden; }
.tax-card.visible { opacity: 1; transform: translateY(0); }
.tax-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,86,219,0.04), transparent); opacity: 0; transition: opacity 0.3s; }
.tax-card:hover { transform: translateY(-4px); border-color: var(--blue-200); box-shadow: 0 12px 40px rgba(26,86,219,0.08); }
.tax-card:hover::after { opacity: 1; }
.tax-icon-wrap { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 20px; }
.tax-abbr { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; padding: 4px 12px; border-radius: 100px; margin-bottom: 12px; display: inline-block; }
.tax-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.tax-desc { font-size: 0.875rem; color: var(--gray-500); line-height: 1.65; }
.tax-arrow { position: absolute; right: 24px; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; border-radius: 50%; background: var(--gray-100); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: all 0.2s; }
.tax-card:hover .tax-arrow { background: var(--blue-600); transform: translateY(-50%) translateX(2px); }
.tax-card:hover .tax-arrow svg path { stroke: white; }
.tc-blue .tax-icon-wrap { background: var(--blue-100); }
.tc-blue .tax-abbr { background: var(--blue-100); color: var(--blue-600); }
.tc-green .tax-icon-wrap { background: var(--green-light); }
.tc-green .tax-abbr { background: var(--green-light); color: #065F46; }
.tc-amber .tax-icon-wrap { background: #FEF3C7; }
.tc-amber .tax-abbr { background: #FEF3C7; color: #92400E; }
.tc-purple .tax-icon-wrap { background: #EDE9FE; }
.tc-purple .tax-abbr { background: #EDE9FE; color: #5B21B6; }

/* FEATURES */
.features { background: var(--blue-900); overflow: hidden; position: relative; }
.features::before { content: ''; position: absolute; inset: 0; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; position: relative; z-index: 1; }
.feature-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 32px; transition: all 0.3s; opacity: 0; transform: translateY(30px); }
.feature-card.visible { opacity: 1; transform: translateY(0); }
.feature-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(59,130,246,0.3); transform: translateY(-4px); }
.feature-icon { font-size: 2rem; margin-bottom: 20px; display: block; }
.feature-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: white; margin-bottom: 8px; }
.feature-desc { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.65; }
.features .section-title { color: white; }
.features .section-badge { background: rgba(59,130,246,0.2); color: var(--blue-400); }
.features .section-sub { color: rgba(255,255,255,0.5); }

/* TESTIMONIALS */
.testimonials { background: var(--gray-50); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testi-card { background: white; border-radius: 20px; padding: 32px; border: 1px solid var(--gray-100); transition: all 0.3s; opacity: 0; transform: translateY(30px); }
.testi-card.visible { opacity: 1; transform: translateY(0); }
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.testi-stars { color: var(--amber); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text { font-size: 0.9rem; color: var(--gray-700); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-500), var(--blue-700)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: white; font-size: 0.85rem; }
.testi-name { font-weight: 600; font-size: 0.875rem; color: var(--gray-900); }
.testi-role { font-size: 0.775rem; color: var(--gray-500); }

/* PRICING */
.pricing { background: white; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; align-items: start; }
.price-card { border-radius: 24px; padding: 36px; border: 1.5px solid var(--gray-100); transition: all 0.3s; opacity: 0; transform: translateY(30px); position: relative; }
.price-card.visible { opacity: 1; transform: translateY(0); }
.price-card.featured { background: var(--blue-600); border-color: var(--blue-600); transform: scale(1.03); box-shadow: 0 20px 60px rgba(26,86,219,0.3); }
.price-card.featured.visible { transform: scale(1.03); }
.price-popular { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--green); color: white; font-size: 0.72rem; font-weight: 700; padding: 4px 16px; border-radius: 100px; letter-spacing: 0.08em; text-transform: uppercase; }
.price-plan { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-500); margin-bottom: 16px; }
.price-card.featured .price-plan { color: rgba(255,255,255,0.7); }
.price-amount { font-family: var(--font-display); font-size: 2.8rem; font-weight: 800; color: var(--gray-900); line-height: 1; margin-bottom: 4px; }
.price-card.featured .price-amount { color: white; }
.price-period { font-size: 0.82rem; color: var(--gray-500); margin-bottom: 28px; }
.price-card.featured .price-period { color: rgba(255,255,255,0.6); }
.price-divider { height: 1px; background: var(--gray-100); margin-bottom: 24px; }
.price-card.featured .price-divider { background: rgba(255,255,255,0.15); }
.price-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 12px; }
.price-features li { font-size: 0.875rem; color: var(--gray-600); display: flex; align-items: center; gap: 10px; }
.price-card.featured .price-features li { color: rgba(255,255,255,0.85); }
.price-features li::before { content: '\2713'; width: 20px; height: 20px; background: var(--green-light); color: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; flex-shrink: 0; }
.price-card.featured .price-features li::before { background: rgba(16,185,129,0.25); color: #6EE7B7; }
.price-btn { width: 100%; padding: 14px; border-radius: 12px; border: none; font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }
.price-btn-outline { background: transparent; border: 1.5px solid var(--blue-200) !important; color: var(--blue-600); }
.price-btn-outline:hover { background: var(--blue-50); }
.price-btn-fill { background: white; color: var(--blue-600); box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.price-btn-fill:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.price-btn-solid { background: var(--blue-600); color: white; }
.price-btn-solid:hover { background: var(--blue-700); transform: translateY(-1px); }

/* CTA BANNER */
.cta-banner { background: linear-gradient(135deg, var(--blue-700), var(--blue-900)); padding: 80px 5%; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(59,130,246,0.2), transparent 70%); }
.cta-banner-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; color: white; letter-spacing: -0.03em; margin-bottom: 1rem; line-height: 1.15; }
.cta-sub { font-size: 1rem; color: rgba(255,255,255,0.6); margin-bottom: 2rem; line-height: 1.6; }

/* FOOTER */
footer { background: var(--blue-900); padding: 60px 5% 30px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 2rem; }
.footer-logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: white; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.4); line-height: 1.65; max-width: 260px; }
.footer-col-title { font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.25); }
.footer-partner { font-size: 0.78rem; color: rgba(255,255,255,0.3); display: flex; align-items: center; gap: 8px; }
.partner-badge { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); padding: 4px 10px; border-radius: 6px; font-size: 0.72rem; color: rgba(255,255,255,0.4); }

/* ANIMATIONS */
@keyframes fade-up { from{opacity:0;transform:translateY(30px);} to{opacity:1;transform:translateY(0);} }
.scroll-reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-mockup { display: none; }
  .how-grid, .features-grid, .pricing-grid { grid-template-columns: 1fr; }
  .tax-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}

/* ── Tax Brackets Section ─────────────────────────────────────── */
.tax-brackets { padding: 100px 0; background: var(--blue-50); }
.brackets-table-wrap { max-width: 900px; margin: 0 auto; }
.brackets-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.brackets-table thead { background: var(--blue-900); color: white; }
.brackets-table th { padding: 16px 24px; text-align: left; font-family: var(--font-display); font-size: 13px; font-weight: 600; letter-spacing: 0.02em; }
.brackets-table td { padding: 14px 24px; font-size: 14px; color: var(--gray-700); border-bottom: 1px solid var(--gray-100); }
.brackets-table tbody tr:last-child td { border-bottom: none; }
.brackets-table tbody tr:hover { background: var(--blue-50); }
.brackets-table td strong { color: var(--blue-600); font-weight: 700; }
.brackets-note { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.brackets-note p { font-size: 13.5px; color: var(--gray-700); line-height: 1.6; background: var(--white); padding: 14px 20px; border-radius: 12px; border-left: 4px solid var(--blue-500); }
@media (max-width: 700px) {
  .brackets-table th, .brackets-table td { padding: 10px 14px; font-size: 12.5px; }
  .brackets-table-wrap { overflow-x: auto; }
}

/* ── TaxProMax Section ────────────────────────────────────────── */
.taxpromax-section { padding: 100px 0; }
.taxpromax-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.taxpromax-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: 20px; padding: 36px 28px; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.taxpromax-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.taxpromax-icon { font-size: 40px; margin-bottom: 16px; }
.taxpromax-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.taxpromax-desc { font-size: 14px; color: var(--gray-500); line-height: 1.65; }
@media (max-width: 800px) {
  .taxpromax-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}
