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

:root {
  --teal: #0D6E6E;
  --teal-dark: #0A5656;
  --teal-light: #14918E;
  --teal-bg: #E8F6F5;
  --orange: #F97316;
  --orange-dark: #EA580C;
  --orange-light: #FB923C;
  --orange-bg: #FFF7ED;
  --dark: #111827;
  --dark-2: #1F2937;
  --text: #374151;
  --text-light: #6B7280;
  --text-lighter: #9CA3AF;
  --border: #E5E7EB;
  --bg: #FFFFFF;
  --bg-alt: #F9FAFB;
  --white: #FFFFFF;
  --radius: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.06), 0 2px 4px -2px rgba(0,0,0,.04);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.06), 0 4px 6px -4px rgba(0,0,0,.03);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-playful: 'Caveat', cursive;
  --ease: .25s cubic-bezier(.4,0,.2,1);
  --nav-h: 60px;
}

html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body { font-family: var(--font); color: var(--text); line-height: 1.6; background: var(--bg); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3 { font-family: var(--font-display); color: var(--dark); line-height: 1.15; }

/* ==================== BUTTONS ==================== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font); font-weight: 600; font-size: .85rem; border-radius: var(--radius); cursor: pointer; transition: var(--ease); border: 1.5px solid transparent; padding: 10px 24px; }
.btn-sm { padding: 7px 18px; font-size: .8rem; }
.btn-lg { padding: 13px 28px; font-size: .9rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-accent { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-accent:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(13,110,110,.35); }

.btn-outline { background: transparent; color: var(--dark); border-color: var(--border); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-1px); }

/* ==================== NAV ==================== */
.nav { position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); transition: var(--ease); }
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); }

.nav-brand { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--dark); }
.nav-brand span { color: var(--teal); }
.foot-logo { color: var(--white); }
.foot-logo span { color: var(--teal-light); }

.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: .82rem; font-weight: 500; color: var(--text-light); transition: var(--ease); }
.nav-links a:hover { color: var(--teal); }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; color: var(--dark); }
.mobile-nav { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--white); padding: 20px 24px; flex-direction: column; gap: 14px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg); z-index: 99; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: .95rem; font-weight: 500; color: var(--dark); padding: 6px 0; }

/* ==================== HERO ==================== */
.hero { padding: calc(var(--nav-h) + 56px) 0 80px; background: linear-gradient(165deg, var(--teal-bg) 0%, var(--bg) 60%, #f0fafa 100%); }

.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }

.hero-badge { display: inline-block; font-size: .72rem; font-weight: 700; color: var(--teal); background: rgba(13,110,110,.08); padding: 6px 14px; border-radius: 100px; margin-bottom: 16px; letter-spacing: .3px; }
.hero h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 16px; letter-spacing: -.5px; line-height: 1.1; }
.hero-sub { font-size: .98rem; color: var(--text-light); margin-bottom: 28px; line-height: 1.7; max-width: 500px; }
.hero-ctas { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }

.trust-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-badge { font-size: .72rem; font-weight: 600; color: var(--text-light); background: var(--white); border: 1px solid var(--border); padding: 5px 12px; border-radius: 100px; }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-screen { width: 100%; background: var(--white); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg), 0 0 0 1px var(--border); overflow: hidden; }
.screen-bar { display: flex; gap: 5px; padding: 12px 16px; background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.screen-bar span { width: 8px; height: 8px; border-radius: 50%; background: var(--border); }
.screen-body { padding: 20px; }
.screen-hero-block { background: linear-gradient(135deg, var(--teal-bg), #e0f2f1); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 20px; margin-bottom: 16px; }
.screen-line { height: 8px; border-radius: 4px; margin-bottom: 8px; }
.screen-line.lg { width: 75%; background: rgba(13,110,110,.15); }
.screen-line.md { width: 45%; background: rgba(13,110,110,.08); }
.screen-btn-row { display: flex; gap: 8px; margin-top: 16px; }
.screen-btn { height: 24px; border-radius: 5px; width: 80px; }
.screen-btn.accent { background: var(--teal); opacity: .7; }
.screen-btn.outline { background: transparent; border: 1.5px solid var(--border); }
.screen-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.screen-card { height: 56px; border-radius: var(--radius); background: var(--bg-alt); border: 1px solid var(--border); }

.hero-float { position: absolute; background: var(--white); border-radius: var(--radius); padding: 8px 14px; box-shadow: var(--shadow-md); border: 1px solid var(--border); font-size: .72rem; font-weight: 600; color: var(--teal); display: flex; align-items: center; gap: 6px; animation: float 3s ease-in-out infinite; }
.hero-float svg { color: var(--teal); }
.float-1 { top: 24px; right: -12px; }
.float-2 { bottom: 32px; left: -12px; animation-delay: 1.5s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ==================== SECTION COMMON ==================== */
.section-header { text-align: center; max-width: 560px; margin: 0 auto 52px; }
.section-label { font-size: 1.15rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--teal); margin-bottom: 10px; text-align: center; font-family: var(--font-playful); }
.section-header h2 { font-size: 1.95rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -.3px; }
.section-sub { font-size: .92rem; color: var(--text-light); }

/* ==================== NICHES ==================== */
.niches { padding: 80px 0; background: var(--bg-alt); }
.niches-scroll { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.niche-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px 20px; text-align: center; transition: var(--ease); }
.niche-card:hover { box-shadow: var(--shadow-md); border-color: var(--teal-light); transform: translateY(-2px); }
.niche-icon { color: var(--teal); margin-bottom: 12px; }
.niche-card h3 { font-size: .88rem; margin-bottom: 4px; }
.niche-card p { font-size: .75rem; color: var(--text-lighter); }

/* ==================== WHY BENTO ==================== */
.why { padding: 80px 0; }
.why-bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: 14px; }

.wb-card { border-radius: var(--radius-xl); padding: 32px 28px; position: relative; overflow: hidden; transition: transform var(--ease), box-shadow var(--ease); }
.wb-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.wb-wide { grid-column: span 2; }

/* Dark card */
.wb-dark { background: var(--dark); }
.wb-dark h3 { color: var(--white); font-size: 1.35rem; font-weight: 800; margin-bottom: 10px; line-height: 1.2; }
.wb-dark p { color: #9CA3AF; font-size: .88rem; line-height: 1.65; }

/* Teal card */
.wb-teal { background: var(--teal); }
.wb-teal h3 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.wb-teal p { color: rgba(255,255,255,.75); font-size: .83rem; line-height: 1.55; }

/* Light card */
.wb-light { background: var(--bg-alt); border: 1px solid var(--border); }
.wb-light h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.wb-light p { font-size: .83rem; color: var(--text-light); line-height: 1.55; }

/* White border card */
.wb-border { background: var(--white); border: 1.5px solid var(--border); }
.wb-border h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.wb-border p { font-size: .83rem; color: var(--text-light); line-height: 1.55; }

/* Soft teal card */
.wb-soft { background: var(--teal-bg); border: 1px solid rgba(13,110,110,.15); }
.wb-soft h3 { font-size: 1rem; font-weight: 700; color: var(--teal-dark); margin-bottom: 8px; }
.wb-soft p { font-size: .83rem; color: var(--text-light); line-height: 1.55; }

/* Decorations */
.wb-deco { position: absolute; top: -10px; right: -10px; pointer-events: none; }
.wb-tag { display: inline-block; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--teal-light); background: rgba(13,110,110,.2); padding: 4px 10px; border-radius: 100px; margin-bottom: 16px; }
.wb-stat { font-family: var(--font-display); font-size: 3.5rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 12px; letter-spacing: -2px; }
.wb-stat-sm { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--teal); line-height: 1; margin-bottom: 12px; letter-spacing: -2px; }
.wb-icon { color: var(--teal); margin-bottom: 14px; }
.wb-soft .wb-icon { color: var(--teal); }

/* Dark mode overrides */
[data-theme="dark"] .wb-light { background: #1c2128; border-color: var(--border); }
[data-theme="dark"] .wb-light h3 { color: var(--dark); }
[data-theme="dark"] .wb-border { background: #161b22; border-color: var(--border); }
[data-theme="dark"] .wb-border h3 { color: var(--dark); }
[data-theme="dark"] .wb-soft { background: #0c2020; }

/* Responsive */
@media (max-width: 768px) { .why-bento { grid-template-columns: 1fr; } .wb-wide { grid-column: span 1; } }
@media (min-width: 769px) and (max-width: 1024px) { .why-bento { grid-template-columns: repeat(2, 1fr); } .wb-wide { grid-column: span 2; } }

/* ==================== PACKAGES ==================== */
.packages { padding: 80px 0; background: var(--bg-alt); }

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

.pricing-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-xl); padding: 36px 28px; position: relative; transition: var(--ease); }
.pricing-card:hover { box-shadow: var(--shadow-md); }
.pricing-card.featured { border-color: var(--teal); box-shadow: 0 0 0 1px var(--teal), var(--shadow-md); }

.featured-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--dark); color: var(--white); padding: 5px 16px; border-radius: 100px; font-size: .72rem; font-weight: 700; white-space: nowrap; }

.pricing-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.plan-tagline { font-size: .82rem; color: var(--text-light); margin-bottom: 20px; }

.price { display: flex; align-items: baseline; gap: 1px; margin-bottom: 4px; }
.rupee { font-size: 1.1rem; font-weight: 700; color: var(--dark); }
.amount { font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; color: var(--dark); line-height: 1; }
.period { font-size: .85rem; color: var(--text-lighter); margin-left: 3px; }
.price-note { display: block; font-size: .75rem; color: var(--text-lighter); margin-bottom: 20px; }

.plan-features { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.plan-features li { font-size: .84rem; padding-left: 22px; position: relative; color: var(--text); }
.plan-features li::before { content: ''; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; border-radius: 50%; background: var(--border); }
.plan-features li.highlight { color: var(--teal-dark); font-weight: 600; }
.plan-features li.highlight::before { background: var(--teal); }

.plan-best { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--border); font-size: .78rem; color: var(--text-lighter); }
.custom-price { font-size: 2rem; font-weight: 800; color: var(--dark); font-family: var(--font-display); line-height: 1; margin: 8px 0 4px; display: block; }

/* Method badge (AI-built / Coded / Bespoke) */
.plan-method { display: inline-block; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--teal-dark); background: var(--teal-bg); border: 1px solid rgba(13,110,110,.18); padding: 3px 10px; border-radius: 100px; margin-bottom: 10px; }
.plan-method-light { color: rgba(255,255,255,.85); background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.2); }

/* Add-ons */
.addons-wrap { margin-top: 36px; }
.addons-label { font-family: var(--font-playful); font-size: 1.1rem; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 2px; text-align: center; margin-bottom: 16px; }
.addons-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.addon-card { background: var(--white); border: 1.5px dashed var(--border); border-radius: var(--radius-xl); padding: 28px 26px; transition: var(--ease); }
.addon-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); }
.addon-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.addon-card h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.addon-sub { font-size: .78rem; color: var(--text-light); }
.addon-price { text-align: right; white-space: nowrap; font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--dark); line-height: 1; flex-shrink: 0; }
.addon-price .rupee { font-size: .9rem; font-weight: 700; vertical-align: super; }
.addon-period { font-size: .72rem; font-weight: 500; color: var(--text-lighter); display: block; text-align: right; margin-top: 2px; font-family: var(--font); }
.addon-features { display: flex; flex-direction: column; gap: 8px; }
.addon-features li { font-size: .82rem; color: var(--text-light); padding-left: 18px; position: relative; line-height: 1.5; }
.addon-features li::before { content: ''; position: absolute; left: 0; top: 7px; width: 5px; height: 5px; border-radius: 50%; background: var(--teal); opacity: .5; }

/* Pricing footer note */
.pricing-footer-note { max-width: 560px; margin: 28px auto 0; text-align: center; font-size: .88rem; color: var(--text-light); line-height: 1.7; }
.pricing-footer-link { color: var(--teal); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(13,110,110,.3); text-underline-offset: 2px; transition: var(--ease); }
.pricing-footer-link:hover { color: var(--teal-dark); }

/* Responsive */
@media (max-width: 768px) { .addons-grid { grid-template-columns: 1fr; } .addon-header { flex-direction: column; gap: 8px; } .addon-price { text-align: left; } }
.custom-desc { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); }
.custom-desc p { font-size: .88rem; color: var(--text-light); line-height: 1.7; }

/* ── COMPARISON TABLE ── */
.compare { padding: 80px 0; background: var(--white); }
.compare-table-wrap { overflow-x: auto; margin-top: 40px; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.compare-table thead tr { border-bottom: 2px solid var(--border); }
.compare-table th, .compare-table td { padding: 16px 20px; text-align: left; vertical-align: middle; }
.compare-feature-col { width: 34%; }
.compare-seenly-col { width: 33%; background: var(--teal-bg); border-left: 2px solid var(--teal); border-right: 1px solid rgba(13,110,110,.12); }
.compare-diy-col { width: 33%; background: #fafafa; }
.compare-brand { display: block; font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; color: var(--dark); letter-spacing: -.5px; }
.compare-brand em { color: var(--teal); font-style: normal; }
.compare-diy-label { display: block; font-size: .78rem; font-weight: 600; color: var(--text-light); line-height: 1.4; }
.compare-badge { display: inline-block; margin-top: 6px; padding: 3px 10px; border-radius: 100px; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; background: var(--teal); color: var(--white); }
.compare-badge.diy { background: var(--border); color: var(--text-light); }
.compare-table tbody tr { border-bottom: 1px solid var(--border); transition: background .15s; }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover td { background: rgba(13,110,110,.03); }
.compare-table tbody tr:hover .compare-seenly { background: rgba(13,110,110,.08); }
.compare-feature { font-size: .88rem; font-weight: 600; color: var(--text); }
.compare-seenly { background: rgba(13,110,110,.04); border-left: 2px solid var(--teal); border-right: 1px solid rgba(13,110,110,.08); }
.compare-diy { background: transparent; }
.cmp-yes { display: flex; align-items: flex-start; gap: 8px; font-size: .84rem; color: var(--teal-dark); font-weight: 500; }
.cmp-yes::before { content: ''; flex-shrink: 0; width: 16px; height: 16px; margin-top: 1px; background: var(--teal); border-radius: 50%; background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.cmp-no { display: flex; align-items: flex-start; gap: 8px; font-size: .84rem; color: var(--text-light); }
.cmp-no::before { content: ''; flex-shrink: 0; width: 16px; height: 16px; margin-top: 1px; background: #e5e7eb; border-radius: 50%; background-image: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7M7 1L1 7' stroke='%239ca3af' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.compare-note { text-align: center; margin-top: 24px; font-size: .9rem; font-style: italic; color: var(--text-light); }
@media (max-width: 600px) { .compare-table th, .compare-table td { padding: 12px 14px; } .compare-feature { font-size: .8rem; } .cmp-yes, .cmp-no { font-size: .78rem; } }

/* ==================== HOW ==================== */
.how { padding: 80px 0; }

.steps-flow { display: flex; align-items: center; gap: 0; padding: 16px 0 32px; }
.step-flow-item { flex: 1; text-align: center; padding: 0 12px; }
.step-flow-num { font-family: var(--font-display); font-size: 4.5rem; font-weight: 800; color: var(--teal); line-height: 1; margin-bottom: 16px; display: block; opacity: .22; letter-spacing: -2px; }
.step-flow-item h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.step-flow-item p { font-size: .83rem; color: var(--text-light); line-height: 1.65; max-width: 220px; margin: 0 auto; min-height: 112px; }
.step-flow-arrow { flex-shrink: 0; color: var(--teal); opacity: .6; display: flex; align-items: center; justify-content: center; }

/* ==================== PORTFOLIO ==================== */
.portfolio { padding: 80px 0; background: var(--bg-alt); }

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

.portfolio-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: var(--ease); }
.portfolio-card:hover { box-shadow: var(--shadow-md); }

.portfolio-img { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--teal-bg), #e0f2f1); display: flex; align-items: center; justify-content: center; font-size: .82rem; color: var(--text-lighter); text-align: center; }

.portfolio-info { padding: 20px; }
.portfolio-type { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--teal); margin-bottom: 6px; display: block; }
.portfolio-info h3 { font-size: 1rem; margin-bottom: 6px; }
.portfolio-info p { font-size: .82rem; color: var(--text-light); line-height: 1.5; }

/* ==================== STORIES ==================== */
.stories { padding: 80px 0; }
.stories-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.story-card { background: var(--white); padding: 28px 24px; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.story-metric { font-size: .75rem; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px; }
.story-card > p { font-size: .88rem; color: var(--text); line-height: 1.65; margin-bottom: 18px; }

.story-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--teal-bg); color: var(--teal); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .78rem; flex-shrink: 0; }
.story-author strong { display: block; font-size: .85rem; color: var(--dark); }
.story-author span { font-size: .75rem; color: var(--text-lighter); }

/* ==================== STATS ==================== */
.stats { padding: 60px 0; background: var(--dark); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: var(--white); line-height: 1; display: inline; }
.stat-suffix { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--teal-light); display: inline; margin-left: 1px; }
.stat-label { font-size: .78rem; color: #9CA3AF; margin-top: 6px; }

/* ==================== FAQ ==================== */
.faq { padding: 80px 0; background: var(--bg-alt); }
.faq-list { max-width: 660px; margin: 0 auto; display: flex; flex-direction: column; gap: 6px; }

.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--white); transition: var(--ease); }
.faq-item.active { border-color: var(--teal-light); }

.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; background: var(--white); border: none; cursor: pointer; font-family: var(--font); font-size: .9rem; font-weight: 600; color: var(--dark); text-align: left; gap: 12px; transition: background .2s; }
.faq-q:hover { background: var(--bg-alt); }
.faq-toggle { color: var(--text-lighter); transition: transform .3s; flex-shrink: 0; }
.faq-item.active .faq-toggle { transform: rotate(45deg); color: var(--teal); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.active .faq-a { max-height: 250px; }
.faq-a p { padding: 0 20px 16px; font-size: .85rem; color: var(--text-light); line-height: 1.65; }

/* ==================== CTA ==================== */
.cta { padding: 80px 0; background: var(--dark); }
.cta-box { max-width: 520px; margin: 0 auto; text-align: center; }
.cta-availability { display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 600; color: #4ade80; margin-bottom: 24px; }
.cta-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 0 rgba(74,222,128,.5); animation: pulse-dot 2s infinite; flex-shrink: 0; }
@keyframes pulse-dot { 0% { box-shadow: 0 0 0 0 rgba(74,222,128,.5); } 70% { box-shadow: 0 0 0 8px rgba(74,222,128,0); } 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); } }
.cta-box h2 { font-size: 2.2rem; color: var(--white); margin-bottom: 20px; letter-spacing: -.5px; line-height: 1.15; }
.cta-sub { color: #9CA3AF; font-size: .92rem; margin-bottom: 16px; line-height: 1.65; }
.cta-highlight { background: rgba(13,110,110,.35); color: var(--teal-light); padding: 2px 8px; border-radius: 4px; font-weight: 600; }
.cta-cal-btn { font-size: 1rem !important; padding: 12px 36px !important; border-radius: 100px !important; letter-spacing: -.2px; display: inline-flex !important; width: auto !important; }
.cta-note { text-align: center; font-size: .75rem; color: #6B7280; margin-top: 16px; }

/* FAQ highlight mark */
.faq-mark { background: rgba(13,110,110,.15); color: var(--teal-light); padding: 2px 7px; border-radius: 4px; font-weight: 600; font-style: normal; }

/* FAQ still have questions */
.faq-still { max-width: 660px; margin: 20px auto 0; text-align: center; font-size: .88rem; color: var(--text-light); line-height: 1.7; }
.faq-still-link { color: var(--teal); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(13,110,110,.3); text-underline-offset: 2px; transition: var(--ease); }
.faq-still-link:hover { color: var(--teal-dark); text-decoration-color: var(--teal-dark); }

/* ==================== FOOTER ==================== */
.footer { padding: 48px 0 24px; background: var(--dark); color: #9CA3AF; border-top: 1px solid rgba(255,255,255,.06); }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 28px; }

.footer-brand-col p { font-size: .82rem; margin-top: 8px; color: #6B7280; max-width: 260px; }
.trust-logos { display: flex; gap: 10px; margin-top: 16px; }
.trust-logo { font-size: .68rem; font-weight: 600; color: var(--text-lighter); background: rgba(255,255,255,.06); padding: 4px 12px; border-radius: 100px; border: 1px solid rgba(255,255,255,.08); }

.footer-col h4 { font-family: var(--font); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #6B7280; margin-bottom: 14px; }
.footer-col a { display: block; font-size: .82rem; color: #6B7280; margin-bottom: 10px; transition: var(--ease); }
.footer-col a:hover { color: var(--white); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.06); font-size: .75rem; color: #6B7280; }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { color: #6B7280; }
.footer-legal a:hover { color: var(--white); }

/* ==================== WHATSAPP FLOAT ==================== */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 90; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: var(--white); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(37,211,102,.35); transition: var(--ease); }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(37,211,102,.4); }

/* ==================== ANIMATIONS ==================== */
.fade-in { opacity: 0; transform: translateY(16px); transition: opacity .45s ease, transform .45s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 440px; margin: 0 auto; }
  .hero-float { display: none; }
  .niches-scroll { grid-template-columns: repeat(3, 1fr); }
  .steps-flow { flex-direction: column; gap: 8px; align-items: center; }
  .step-flow-arrow { transform: rotate(90deg); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }

  .hero { padding: calc(var(--nav-h) + 36px) 0 56px; }
  .hero h1 { font-size: 1.7rem; }
  .section-header h2 { font-size: 1.5rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .niches-scroll { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }

  .portfolio-grid { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .wa-float { bottom: 16px; right: 16px; width: 50px; height: 50px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.5rem; }
  .niches-scroll { grid-template-columns: 1fr; }
  .amount { font-size: 2.2rem; }
  .cta-box h2 { font-size: 1.4rem; }
  .trust-badges { flex-direction: column; }
}

/* ==================== DARK MODE TOGGLE ==================== */
.dark-toggle { background: none; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 7px 9px; cursor: pointer; color: var(--text-light); display: flex; align-items: center; justify-content: center; transition: var(--ease); }
.dark-toggle:hover { border-color: var(--teal); color: var(--teal); }
.dark-toggle .icon-moon { display: none; }
.dark-toggle .icon-sun { display: block; }
[data-theme="dark"] .dark-toggle .icon-moon { display: block; }
[data-theme="dark"] .dark-toggle .icon-sun { display: none; }

/* ==================== PRICING BUTTON GLOW ==================== */
.pricing-card:not(.featured):hover { border-color: var(--teal); box-shadow: 0 0 0 1px var(--teal), var(--shadow-md); background: var(--teal-bg); }
.pricing-card:not(.featured):hover .btn-outline { background: var(--teal); color: var(--white); border-color: var(--teal); box-shadow: 0 4px 16px rgba(13,110,110,.3); }
.pricing-card.featured .btn-accent:hover { background: var(--teal-dark); border-color: var(--teal-dark); box-shadow: 0 4px 16px rgba(13,110,110,.35); transform: translateY(-1px); }

/* ==================== DARK MODE THEME ==================== */
[data-theme="dark"] {
  --bg: #0d1117;
  --bg-alt: #161b22;
  --white: #161b22;
  --dark: #f0f6fc;
  --dark-2: #21262d;
  --text: #c9d1d9;
  --text-light: #8b949e;
  --text-lighter: #6e7681;
  --border: #30363d;
  --teal-bg: #0c2020;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.5);
  --shadow: 0 1px 3px rgba(0,0,0,.5);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.5);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.5);
}
[data-theme="dark"] body { background: var(--bg); }
[data-theme="dark"] .nav { background: rgba(13,17,23,.95); border-bottom-color: var(--border); }
[data-theme="dark"] .hero { background: linear-gradient(165deg, #0c2020 0%, #0d1117 60%, #0d1a1a 100%); }
[data-theme="dark"] .screen-hero-block { background: linear-gradient(135deg, #0c2020, #0f2a2a); }
[data-theme="dark"] .hero-screen { background: #161b22; box-shadow: var(--shadow-lg), 0 0 0 1px var(--border); }
[data-theme="dark"] .screen-bar { background: #0d1117; border-bottom-color: var(--border); }
[data-theme="dark"] .screen-card { background: #21262d; border-color: var(--border); }
[data-theme="dark"] .hero-float { background: #161b22; border-color: var(--border); }
[data-theme="dark"] .cta { background: #0a0e13; }
[data-theme="dark"] .stats { background: #0a0e13; }
[data-theme="dark"] .footer { background: #0a0e13; border-top-color: rgba(255,255,255,.04); }
[data-theme="dark"] .faq-q { background: var(--bg-alt); color: var(--dark); }
[data-theme="dark"] .faq-q:hover { background: #1c2128; }
[data-theme="dark"] .cta-form input, [data-theme="dark"] .cta-form select { background: #0d1117; border-color: rgba(255,255,255,.1); color: var(--text); }
[data-theme="dark"] .compare-diy-col { background: #1c2128; }
[data-theme="dark"] .mobile-nav { background: #0d1117; border-bottom-color: var(--border); }
[data-theme="dark"] .mobile-nav a { color: var(--text); }
[data-theme="dark"] .author-avatar { background: #1c2128; }
[data-theme="dark"] .portfolio-img { background: linear-gradient(135deg, #0c2020, #0f2a2a); }

/* ==================== PLATFORM OPTIONS ==================== */
.platforms { padding: 80px 0; background: var(--bg-alt); }

.platform-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); margin-top: 40px; }
.platform-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.platform-table thead tr { background: var(--dark); }
.platform-table thead th { padding: 14px 20px; text-align: left; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #9CA3AF; }
.platform-table thead th:last-child { text-align: right; }
.platform-table tbody tr { border-bottom: 1px solid var(--border); transition: background .15s; }
.platform-table tbody tr:last-child { border-bottom: none; }
.platform-table tbody tr:hover td { background: rgba(13,110,110,.03); }
.platform-table tbody td { padding: 16px 20px; font-size: .84rem; color: var(--text); vertical-align: middle; }
.plat-name { font-weight: 700; color: var(--dark); white-space: nowrap; min-width: 120px; }
.plat-price { text-align: right; font-family: var(--font-display); font-weight: 800; color: var(--teal-dark); white-space: nowrap; }
.plat-row-custom td { background: rgba(13,110,110,.04); }
.plat-row-custom .plat-name { color: var(--teal-dark); }
.plat-rec { display: inline-block; margin-left: 8px; font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; background: var(--teal); color: var(--white); padding: 2px 8px; border-radius: 100px; vertical-align: middle; }
.platform-note { margin-top: 20px; font-size: .82rem; color: var(--text-lighter); text-align: center; max-width: 680px; margin-left: auto; margin-right: auto; line-height: 1.6; }

[data-theme="dark"] .platform-table thead tr { background: #0a0e13; }
[data-theme="dark"] .plat-row-custom td { background: #0c2020; }

/* ==================== PRICING CARD ALIGNMENT ==================== */
.pricing-card { display: flex; flex-direction: column; }
.plan-top { min-height: 248px; flex-shrink: 0; }
.pricing-card .btn-block { margin-top: 0; flex-shrink: 0; }
.plan-features { flex: 1; }
.price-from { display: block; font-size: .72rem; font-weight: 600; color: var(--text-lighter); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 2px; min-height: 18px; }
.custom-price { font-size: 2.6rem !important; }

/* ==================== LEGAL MODAL ==================== */
.legal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 200; backdrop-filter: blur(4px); }
.legal-overlay.open { display: block; }
.legal-modal { display: none; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -48%); width: 90%; max-width: 640px; max-height: 82vh; background: var(--white); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); z-index: 201; overflow: hidden; transition: transform .25s ease, opacity .25s ease; }
.legal-modal.open { display: flex; flex-direction: column; transform: translate(-50%, -50%); }
.legal-modal-inner { overflow-y: auto; padding: 40px 36px; }
.legal-close { position: absolute; top: 16px; right: 16px; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 50%; width: 32px; height: 32px; font-size: 1.1rem; cursor: pointer; color: var(--text-light); display: flex; align-items: center; justify-content: center; transition: var(--ease); }
.legal-close:hover { background: var(--border); color: var(--dark); }
#legalContent h2 { font-size: 1.5rem; margin-bottom: 4px; }
.legal-date { font-size: .78rem; color: var(--text-lighter); margin-bottom: 24px; }
#legalContent h3 { font-size: .95rem; font-weight: 700; color: var(--dark); margin: 20px 0 6px; }
#legalContent p, #legalContent li { font-size: .88rem; color: var(--text-light); line-height: 1.7; }
#legalContent ul { padding-left: 20px; list-style: disc; display: flex; flex-direction: column; gap: 4px; margin-bottom: 8px; }
#legalContent a { color: var(--teal); text-decoration: underline; }
[data-theme="dark"] .legal-modal { background: var(--bg-alt); }
