/* ============================================
   AiReply Landing Page Styles
   Premium Indian Enterprise SaaS Design
   ============================================ */

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

:root{
  --navy:#1E293B;
  --navy-light:#334155;
  --accent:#0EA5E9;
  --accent-dark:#0284C7;
  --accent-light:#E0F2FE;
  --success:#16A34A;
  --success-light:#DCFCE7;
  --danger:#DC2626;
  --danger-light:#FEE2E2;
  --warning:#F59E0B;
  --bg-warm:#FAFAF9;
  --bg-white:#FFFFFF;
  --bg-dark:#0F172A;
  --bg-section:#F1F5F9;
  --text-heading:#0F172A;
  --text-body:#475569;
  --text-muted:#94A3B8;
  --text-white:#F8FAFC;
  --border:#E2E8F0;
  --card-shadow:0 1px 3px rgba(0,0,0,0.06),0 1px 2px rgba(0,0,0,0.04);
  --card-shadow-hover:0 10px 25px rgba(0,0,0,0.08),0 4px 10px rgba(0,0,0,0.04);
  --font-display:'Plus Jakarta Sans',sans-serif;
  --font-body:'Plus Jakarta Sans',sans-serif;
  --max-width:1200px;
  --nav-height:72px;
}

html{font-size:16px;scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body.landing-page{
  font-family:var(--font-body);
  color:var(--text-body);
  background:var(--bg-warm);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}

img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit;transition:color .2s}

.landing-container{
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 24px;
}

/* === ANIMATIONS === */
.fade-up{
  opacity:0;
  transform:translateY(30px);
  transition:opacity .6s ease,transform .6s ease;
}
.fade-up.visible{
  opacity:1;
  transform:translateY(0);
}
.fade-up.delay-1{transition-delay:.1s}
.fade-up.delay-2{transition-delay:.2s}
.fade-up.delay-3{transition-delay:.3s}
.fade-up.delay-4{transition-delay:.4s}

/* === NAVIGATION === */
.landing-nav{
  position:fixed;
  top:0;left:0;right:0;
  z-index:1000;
  background:rgba(255,255,255,0.85);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid transparent;
  transition:all .3s ease;
  height:var(--nav-height);
}
.landing-nav.scrolled{
  background:rgba(255,255,255,0.97);
  border-bottom-color:var(--border);
  box-shadow:0 1px 8px rgba(0,0,0,0.04);
}
.nav-inner{
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:100%;
}
.nav-logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-display);
  font-size:1.5rem;
  font-weight:800;
  color:var(--navy);
  letter-spacing:-.03em;
}
.nav-logo-img{
  width:36px;height:36px;
  border-radius:8px;
}
.nav-links{display:flex;align-items:center;gap:4px}
.nav-links a{
  font-size:.9rem;
  font-weight:500;
  color:var(--text-body);
  padding:8px 16px;
  border-radius:8px;
  transition:all .2s;
}
.nav-links a:hover{color:var(--navy);background:var(--bg-section)}
.nav-cta-group{display:flex;align-items:center;gap:12px}
.btn-login{
  font-size:.9rem;
  font-weight:600;
  color:var(--accent-dark)!important;
  padding:8px 16px;
  border-radius:8px;
}
.btn-login:hover{background:var(--accent-light)!important}
.btn-primary{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--accent);
  color:#fff!important;
  font-size:.9rem;
  font-weight:600;
  padding:10px 24px;
  border-radius:10px;
  border:none;
  cursor:pointer;
  transition:all .25s;
  box-shadow:0 2px 8px rgba(14,165,233,0.25);
}
.btn-primary:hover{
  background:var(--accent-dark);
  transform:translateY(-1px);
  box-shadow:0 4px 16px rgba(14,165,233,0.35);
  color:#fff!important;
}
.btn-primary-lg{
  font-size:1.05rem;
  padding:14px 32px;
  border-radius:12px;
}
.btn-outline{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:transparent;
  color:var(--navy);
  font-size:.9rem;
  font-weight:600;
  padding:10px 24px;
  border-radius:10px;
  border:2px solid var(--border);
  cursor:pointer;
  transition:all .25s;
}
.btn-outline:hover{border-color:var(--navy);background:var(--bg-section)}

/* Mobile menu */
.nav-hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;border:none;cursor:pointer;
  padding:8px;
}
.nav-hamburger span{
  display:block;width:22px;height:2px;
  background:var(--navy);border-radius:2px;
  transition:all .3s;
}
.nav-hamburger.active span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.nav-hamburger.active span:nth-child(2){opacity:0}
.nav-hamburger.active span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}

.mobile-menu{
  display:none;
  position:fixed;
  top:var(--nav-height);left:0;right:0;bottom:0;
  background:var(--bg-white);
  z-index:999;
  padding:24px;
  flex-direction:column;
  gap:8px;
  overflow-y:auto;
}
.mobile-menu.open{display:flex}
.mobile-menu a{
  font-size:1.1rem;font-weight:500;color:var(--text-body);
  padding:14px 16px;border-radius:10px;transition:all .2s;
}
.mobile-menu a:hover{background:var(--bg-section);color:var(--navy)}
.mobile-menu .mobile-cta{
  margin-top:16px;
  display:flex;flex-direction:column;gap:12px;
}

/* === HERO SECTION === */
.hero-section{
  padding-top:calc(var(--nav-height) + 60px);
  padding-bottom:80px;
  background:linear-gradient(180deg,var(--bg-white) 0%,var(--bg-section) 100%);
  position:relative;
  overflow:hidden;
}
.hero-section::before{
  content:'';position:absolute;
  top:-200px;right:-200px;
  width:600px;height:600px;
  background:radial-gradient(circle,rgba(14,165,233,0.06) 0%,transparent 70%);
  border-radius:50%;
}
.hero-section::after{
  content:'';position:absolute;
  bottom:-150px;left:-150px;
  width:500px;height:500px;
  background:radial-gradient(circle,rgba(99,102,241,0.05) 0%,transparent 70%);
  border-radius:50%;
}
.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
  position:relative;
  z-index:1;
}
.hero-text h1{
  font-family:var(--font-display);
  font-size:3.25rem;
  font-weight:800;
  line-height:1.12;
  letter-spacing:-.04em;
  color:var(--text-heading);
  margin-bottom:20px;
}
.hero-text h1 .text-accent{color:var(--accent)}
.hero-text .hero-sub{
  font-size:1.15rem;
  color:var(--text-body);
  line-height:1.7;
  margin-bottom:32px;
  max-width:500px;
}
.hero-actions{display:flex;align-items:center;gap:16px;flex-wrap:wrap}
.hero-note{
  font-size:.825rem;
  color:var(--text-muted);
  margin-top:16px;
}
.hero-note span{margin:0 6px;opacity:.5}

/* Hero visual - Platform hub */
.hero-visual{position:relative}
.platform-hub{
  width:100%;max-width:480px;margin:0 auto;
  position:relative;
}
.hub-center{
  width:120px;height:120px;
  background:linear-gradient(135deg,var(--accent),#6366F1);
  border-radius:24px;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto;
  box-shadow:0 20px 60px rgba(14,165,233,0.2);
  position:relative;z-index:2;
}
.hub-center span{color:#fff;font-size:2rem;font-weight:800;font-family:var(--font-display)}
.hub-cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-top:-20px;
  padding-top:40px;
}
.hub-card{
  background:var(--bg-white);
  border:1px solid var(--border);
  border-radius:16px;
  padding:20px;
  text-align:center;
  box-shadow:var(--card-shadow);
  transition:all .3s;
}
.hub-card:hover{
  box-shadow:var(--card-shadow-hover);
  transform:translateY(-4px);
}
.hub-card .hub-icon{
  font-size:1.75rem;
  margin-bottom:8px;
}
.hub-card h4{
  font-family:var(--font-display);
  font-size:.85rem;
  font-weight:700;
  color:var(--text-heading);
  margin-bottom:4px;
}
.hub-card p{font-size:.75rem;color:var(--text-muted)}
.hub-card .badge{
  display:inline-block;
  font-size:.6rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.05em;
  padding:2px 8px;
  border-radius:4px;
  margin-top:8px;
}
.badge-live{background:var(--success-light);color:var(--success)}
.badge-new{background:var(--accent-light);color:var(--accent-dark)}
.badge-soon{background:#FEF3C7;color:#D97706}

/* === SECTION COMMON === */
.landing-section{padding:80px 0}
.section-dark{background:var(--bg-dark);color:var(--text-white)}
.section-gray{background:var(--bg-section)}
.section-white{background:var(--bg-white)}
.section-warm{background:var(--bg-warm)}

.section-header{
  text-align:center;
  margin-bottom:48px;
  max-width:700px;
  margin-left:auto;
  margin-right:auto;
}
.section-label{
  display:inline-block;
  font-size:.75rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.1em;
  color:var(--accent);
  margin-bottom:12px;
  padding:4px 12px;
  background:var(--accent-light);
  border-radius:20px;
}
.section-dark .section-label{background:rgba(14,165,233,0.15)}
.section-header h2{
  font-family:var(--font-display);
  font-size:2.25rem;
  font-weight:800;
  color:var(--text-heading);
  line-height:1.2;
  letter-spacing:-.03em;
  margin-bottom:16px;
}
.section-dark .section-header h2{color:var(--text-white)}
.section-header p{
  font-size:1.05rem;
  color:var(--text-body);
  line-height:1.7;
}
.section-dark .section-header p{color:var(--text-muted)}

/* === PROBLEM SECTION === */
.problem-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
  margin-bottom:40px;
}
.problem-card{
  background:var(--bg-white);
  border:1px solid var(--border);
  border-radius:16px;
  padding:28px 24px;
  display:flex;gap:16px;
  align-items:flex-start;
  transition:all .3s;
}
.problem-card:hover{box-shadow:var(--card-shadow-hover);transform:translateY(-2px)}
.problem-card .p-icon{
  font-size:2rem;
  flex-shrink:0;
  width:52px;height:52px;
  background:var(--bg-section);
  border-radius:12px;
  display:flex;align-items:center;justify-content:center;
}
.problem-card h3{
  font-family:var(--font-display);
  font-size:1rem;
  font-weight:700;
  color:var(--text-heading);
  margin-bottom:6px;
}
.problem-card p{font-size:.9rem;color:var(--text-body)}
.problem-quote{
  text-align:center;
  font-size:1.15rem;
  color:var(--text-body);
  font-style:italic;
  max-width:620px;
  margin:0 auto;
  padding:32px;
  background:var(--bg-white);
  border-radius:16px;
  border-left:4px solid var(--accent);
}

/* === PILLARS SECTION === */
.pillars-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}
.pillar-card{
  background:var(--bg-white);
  border:1px solid var(--border);
  border-radius:20px;
  padding:32px 28px;
  transition:all .3s;
  position:relative;
  overflow:hidden;
}
.pillar-card:hover{
  box-shadow:var(--card-shadow-hover);
  transform:translateY(-4px);
}
.pillar-card::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:4px;
}
.pillar-card:nth-child(1)::before{background:linear-gradient(90deg,#25D366,#128C7E)}
.pillar-card:nth-child(2)::before{background:linear-gradient(90deg,#6366F1,#A855F7)}
.pillar-card:nth-child(3)::before{background:linear-gradient(90deg,#F59E0B,#EF4444)}
.pillar-card:nth-child(4)::before{background:linear-gradient(90deg,var(--accent),#06B6D4)}

.pillar-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:20px;
}
.pillar-header h3{
  font-family:var(--font-display);
  font-size:1.2rem;
  font-weight:700;
  color:var(--text-heading);
  display:flex;
  align-items:center;
  gap:10px;
}
.pillar-header h3 .p-emoji{font-size:1.5rem}
.pillar-features{list-style:none;margin-bottom:20px}
.pillar-features li{
  font-size:.9rem;
  color:var(--text-body);
  padding:6px 0;
  padding-left:24px;
  position:relative;
}
.pillar-features li::before{
  content:'';
  position:absolute;left:0;top:12px;
  width:8px;height:8px;
  background:var(--accent);
  border-radius:50%;
  opacity:.6;
}

/* WhatsApp mockup inside pillar */
.wa-mini{
  background:#ECE5DD;
  border-radius:12px;
  padding:12px;
  font-size:.78rem;
}
.wa-mini-msg{
  max-width:85%;
  padding:8px 12px;
  border-radius:8px;
  margin-bottom:6px;
  line-height:1.5;
}
.wa-mini-in{
  background:#fff;
  align-self:flex-start;
  border-top-left-radius:0;
}
.wa-mini-out{
  background:#DCF8C6;
  margin-left:auto;
  border-top-right-radius:0;
}
.wa-mini-time{
  font-size:.6rem;
  color:#999;
  text-align:right;
  margin-top:2px;
}

/* Image gen mockup */
.img-gen-mockup{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:8px;
}
.img-gen-card{
  background:linear-gradient(135deg,var(--bg-section),var(--accent-light));
  border-radius:10px;
  padding:16px 12px;
  text-align:center;
  font-size:.72rem;
  font-weight:600;
  color:var(--text-heading);
  border:1px solid var(--border);
}
.img-gen-card .ig-icon{font-size:1.5rem;margin-bottom:4px}

/* Ad mockup */
.ad-mockup{
  background:var(--bg-white);
  border:1px solid var(--border);
  border-radius:10px;
  padding:14px;
  font-size:.78rem;
}
.ad-mockup .ad-label{
  font-size:.6rem;
  font-weight:700;
  color:var(--success);
  text-transform:uppercase;
  letter-spacing:.05em;
  margin-bottom:6px;
}
.ad-mockup .ad-title{
  font-weight:700;
  color:var(--accent-dark);
  margin-bottom:4px;
}
.ad-mockup .ad-desc{color:var(--text-body);margin-bottom:6px}
.ad-mockup .ad-url{color:var(--success);font-size:.7rem}

/* Calendar mockup */
.cal-mockup{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:4px;
}
.cal-day{
  background:var(--bg-section);
  border-radius:6px;
  padding:6px 4px;
  text-align:center;
  font-size:.6rem;
  color:var(--text-muted);
}
.cal-day.has-post{
  background:var(--accent-light);
  color:var(--accent-dark);
  font-weight:600;
}
.cal-day.has-post::after{
  content:'';display:block;
  width:4px;height:4px;
  background:var(--accent);
  border-radius:50%;
  margin:2px auto 0;
}

/* === HOW IT WORKS === */
.steps-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
  position:relative;
}
.steps-grid::before{
  content:'';
  position:absolute;
  top:48px;
  left:calc(16.67% + 24px);
  right:calc(16.67% + 24px);
  height:2px;
  background:linear-gradient(90deg,var(--accent),var(--border),var(--accent));
}
.step-card{
  text-align:center;
  position:relative;
  z-index:1;
}
.step-num{
  width:64px;height:64px;
  border-radius:50%;
  background:var(--bg-white);
  border:3px solid var(--accent);
  color:var(--accent);
  font-family:var(--font-display);
  font-size:1.5rem;
  font-weight:800;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 20px;
}
.step-card h3{
  font-family:var(--font-display);
  font-size:1.05rem;
  font-weight:700;
  color:var(--text-heading);
  margin-bottom:8px;
}
.step-card p{font-size:.9rem;color:var(--text-body);max-width:280px;margin:0 auto}

/* === FEATURES GRID === */
.features-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.feature-card{
  background:var(--bg-white);
  border:1px solid var(--border);
  border-radius:16px;
  padding:24px 20px;
  transition:all .3s;
}
.feature-card:hover{
  box-shadow:var(--card-shadow-hover);
  transform:translateY(-3px);
}
.feature-card .f-icon{
  font-size:1.75rem;
  margin-bottom:12px;
}
.feature-card h4{
  font-family:var(--font-display);
  font-size:.95rem;
  font-weight:700;
  color:var(--text-heading);
  margin-bottom:6px;
}
.feature-card p{font-size:.825rem;color:var(--text-body);line-height:1.6}

/* === COMPLIANCE SECTION === */
.compliance-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
  margin-bottom:40px;
}
.compliance-col{
  background:var(--bg-white);
  border-radius:16px;
  padding:32px 28px;
  border:1px solid var(--border);
}
.compliance-col.allows{border-top:4px solid var(--success)}
.compliance-col.blocks{border-top:4px solid var(--danger)}
.compliance-col h3{
  font-family:var(--font-display);
  font-size:1.1rem;
  font-weight:700;
  margin-bottom:16px;
  display:flex;align-items:center;gap:8px;
}
.compliance-col.allows h3{color:var(--success)}
.compliance-col.blocks h3{color:var(--danger)}
.compliance-list{list-style:none}
.compliance-list li{
  font-size:.9rem;
  padding:8px 0;
  padding-left:28px;
  position:relative;
  color:var(--text-body);
  border-bottom:1px solid var(--bg-section);
}
.compliance-list li:last-child{border-bottom:none}
.compliance-list li::before{
  position:absolute;left:0;top:10px;
  font-size:.9rem;
}
.allows .compliance-list li::before{content:'✓';color:var(--success);font-weight:700}
.blocks .compliance-list li::before{content:'✕';color:var(--danger);font-weight:700}
.compliance-footer{
  text-align:center;
  font-size:.85rem;
  color:var(--text-muted);
  padding:20px;
  background:var(--bg-white);
  border-radius:12px;
  border:1px solid var(--border);
}

/* === PRICING SECTION === */
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-bottom:60px;
}
.pricing-card{
  background:var(--bg-white);
  border:1px solid var(--border);
  border-radius:20px;
  padding:32px 24px;
  text-align:center;
  transition:all .3s;
  position:relative;
}
.pricing-card:hover{
  box-shadow:var(--card-shadow-hover);
  transform:translateY(-4px);
}
.pricing-card.popular{
  border:2px solid var(--accent);
  box-shadow:0 8px 30px rgba(14,165,233,0.12);
}
.pricing-card.popular::before{
  content:'POPULAR';
  position:absolute;
  top:-12px;left:50%;transform:translateX(-50%);
  background:var(--accent);
  color:#fff;
  font-size:.65rem;
  font-weight:700;
  letter-spacing:.1em;
  padding:4px 16px;
  border-radius:20px;
}
.pricing-card .plan-name{
  font-family:var(--font-display);
  font-size:1rem;
  font-weight:700;
  color:var(--text-heading);
  margin-bottom:8px;
}
.pricing-card .plan-price{
  font-family:var(--font-display);
  font-size:2.5rem;
  font-weight:800;
  color:var(--text-heading);
  line-height:1;
  margin-bottom:4px;
}
.pricing-card .plan-price .currency{font-size:1.25rem;vertical-align:super}
.pricing-card .plan-period{
  font-size:.8rem;
  color:var(--text-muted);
  margin-bottom:8px;
}
.pricing-card .plan-credits{
  font-size:.8rem;
  color:var(--accent-dark);
  font-weight:600;
  padding:8px;
  background:var(--accent-light);
  border-radius:8px;
  margin-bottom:20px;
}
.pricing-card .plan-features{
  list-style:none;
  text-align:left;
  margin-bottom:24px;
}
.pricing-card .plan-features li{
  font-size:.825rem;
  color:var(--text-body);
  padding:6px 0;
  padding-left:22px;
  position:relative;
}
.pricing-card .plan-features li::before{
  content:'✓';
  position:absolute;left:0;
  color:var(--success);
  font-weight:700;
  font-size:.8rem;
}
.pricing-card .plan-features li.disabled{
  color:var(--text-muted);
  text-decoration:line-through;
  opacity:.5;
}
.pricing-card .plan-features li.disabled::before{content:'—';color:var(--text-muted)}
.pricing-card .plan-btn{
  display:block;
  width:100%;
  padding:12px;
  border-radius:10px;
  font-size:.9rem;
  font-weight:600;
  text-align:center;
  border:2px solid var(--border);
  color:var(--text-heading);
  background:transparent;
  cursor:pointer;
  transition:all .25s;
}
.pricing-card .plan-btn:hover{
  border-color:var(--accent);
  color:var(--accent);
  background:var(--accent-light);
}
.pricing-card.popular .plan-btn{
  background:var(--accent);
  color:#fff;
  border-color:var(--accent);
}
.pricing-card.popular .plan-btn:hover{
  background:var(--accent-dark);
  border-color:var(--accent-dark);
}

/* Comparison Table */
.comparison-wrapper{
  overflow-x:auto;
  margin-bottom:60px;
  -webkit-overflow-scrolling:touch;
}
.comparison-table{
  width:100%;
  border-collapse:collapse;
  background:var(--bg-white);
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--border);
  min-width:700px;
}
.comparison-table thead{background:var(--navy)}
.comparison-table th{
  padding:16px 20px;
  font-family:var(--font-display);
  font-size:.85rem;
  font-weight:700;
  color:var(--text-white);
  text-align:center;
}
.comparison-table th:first-child{text-align:left}
.comparison-table td{
  padding:12px 20px;
  font-size:.85rem;
  text-align:center;
  border-bottom:1px solid var(--bg-section);
  color:var(--text-body);
}
.comparison-table td:first-child{
  text-align:left;
  font-weight:500;
  color:var(--text-heading);
}
.comparison-table tbody tr:hover{background:var(--bg-section)}
.comparison-table .check{color:var(--success);font-weight:700}
.comparison-table .dash{color:var(--text-muted)}

/* Top-up packs */
.topup-section{margin-top:40px}
.topup-section h3{
  font-family:var(--font-display);
  font-size:1.25rem;
  font-weight:700;
  color:var(--text-heading);
  text-align:center;
  margin-bottom:8px;
}
.topup-note{
  text-align:center;
  font-size:.9rem;
  color:var(--text-muted);
  margin-bottom:24px;
}
.topup-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.topup-card{
  background:var(--bg-white);
  border:1px solid var(--border);
  border-radius:14px;
  padding:24px 20px;
  text-align:center;
  transition:all .3s;
}
.topup-card:hover{box-shadow:var(--card-shadow-hover);transform:translateY(-2px)}
.topup-card .tp-name{
  font-family:var(--font-display);
  font-size:.85rem;
  font-weight:700;
  color:var(--text-heading);
  margin-bottom:4px;
}
.topup-card .tp-credits{font-size:.8rem;color:var(--text-muted);margin-bottom:12px}
.topup-card .tp-price{
  font-family:var(--font-display);
  font-size:1.5rem;
  font-weight:800;
  color:var(--text-heading);
}
.topup-card .tp-rate{
  font-size:.75rem;
  color:var(--accent-dark);
  font-weight:600;
  margin-top:4px;
}

/* === SPECIALTIES === */
.specialties-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:16px;
  margin-bottom:32px;
}
.specialty-card{
  background:var(--bg-white);
  border:1px solid var(--border);
  border-radius:14px;
  padding:20px 12px;
  text-align:center;
  transition:all .3s;
}
.specialty-card:hover{box-shadow:var(--card-shadow-hover);transform:translateY(-2px)}
.specialty-card .s-icon{font-size:2rem;margin-bottom:8px}
.specialty-card p{font-size:.8rem;font-weight:600;color:var(--text-heading)}
.specialties-footer{
  text-align:center;
  font-size:1rem;
  color:var(--text-body);
  font-weight:500;
}

/* === FAQ SECTION === */
.faq-list{max-width:800px;margin:0 auto}
.faq-item{
  background:var(--bg-white);
  border:1px solid var(--border);
  border-radius:14px;
  margin-bottom:12px;
  overflow:hidden;
  transition:all .3s;
}
.faq-item:hover{box-shadow:var(--card-shadow)}
.faq-q{
  padding:20px 24px;
  font-family:var(--font-display);
  font-size:.95rem;
  font-weight:600;
  color:var(--text-heading);
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  background:none;border:none;width:100%;text-align:left;
}
.faq-q::after{
  content:'+';
  font-size:1.5rem;
  font-weight:300;
  color:var(--text-muted);
  transition:transform .3s;
  flex-shrink:0;
}
.faq-item.open .faq-q::after{
  content:'-';
  transform:rotate(0deg);
}
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease,padding .3s ease;
}
.faq-item.open .faq-a{
  max-height:300px;
}
.faq-a-inner{
  padding:0 24px 20px;
  font-size:.9rem;
  color:var(--text-body);
  line-height:1.7;
}

/* === CTA BANNER === */
.cta-banner{
  padding:80px 0;
  background:var(--bg-dark);
  text-align:center;
}
.cta-banner h2{
  font-family:var(--font-display);
  font-size:2rem;
  font-weight:800;
  color:var(--text-white);
  margin-bottom:16px;
  line-height:1.3;
  max-width:700px;
  margin-left:auto;
  margin-right:auto;
}
.cta-banner p{
  font-size:1.05rem;
  color:var(--text-muted);
  margin-bottom:32px;
  max-width:550px;
  margin-left:auto;
  margin-right:auto;
}
.cta-banner .btn-primary{
  font-size:1.1rem;
  padding:16px 40px;
}
.cta-banner .cta-note{
  font-size:.825rem;
  color:var(--text-muted);
  margin-top:16px;
}
.cta-banner .cta-note span{margin:0 6px;opacity:.4}

/* === FOOTER === */
.landing-footer{
  background:var(--navy);
  padding:60px 0 32px;
}
.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:40px;
  margin-bottom:40px;
}
.footer-brand .footer-logo{
  font-family:var(--font-display);
  font-size:1.35rem;
  font-weight:800;
  color:var(--text-white);
  margin-bottom:12px;
  display:flex;align-items:center;gap:10px;
}
.footer-logo-img{
  width:32px;height:32px;
  border-radius:6px;
}
.footer-brand p{font-size:.875rem;color:var(--text-muted);line-height:1.6;max-width:280px}
.footer-col h4{
  font-family:var(--font-display);
  font-size:.8rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--text-muted);
  margin-bottom:16px;
}
.footer-col a{
  display:block;
  font-size:.875rem;
  color:#CBD5E1;
  padding:4px 0;
  transition:color .2s;
}
.footer-col a:hover{color:var(--accent)}
.footer-bottom{
  border-top:1px solid var(--navy-light);
  padding-top:24px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.footer-bottom p{font-size:.8rem;color:var(--text-muted)}
.footer-bottom a{color:var(--text-muted);font-size:.8rem;margin-left:20px}
.footer-bottom a:hover{color:var(--accent)}

/* =============================================
   RESPONSIVE
   ============================================= */

@media(max-width:1024px){
  .hero-text h1{font-size:2.5rem}
  .features-grid{grid-template-columns:repeat(3,1fr)}
  .pricing-grid{grid-template-columns:repeat(2,1fr)}
  .topup-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .specialties-grid{grid-template-columns:repeat(4,1fr)}
}

@media(max-width:768px){
  :root{--nav-height:64px}

  .nav-links,.nav-cta-group{display:none}
  .nav-hamburger{display:flex}

  .hero-grid{grid-template-columns:1fr;gap:40px;text-align:center}
  .hero-text h1{font-size:2rem}
  .hero-text .hero-sub{margin:0 auto 28px;font-size:1.05rem}
  .hero-actions{justify-content:center}
  .hero-note{text-align:center}
  .platform-hub{max-width:360px}

  .landing-section{padding:60px 0}
  .section-header h2{font-size:1.75rem}

  .problem-grid{grid-template-columns:1fr}
  .pillars-grid{grid-template-columns:1fr}
  .steps-grid{grid-template-columns:1fr;gap:32px}
  .steps-grid::before{display:none}
  .features-grid{grid-template-columns:repeat(2,1fr);gap:12px}
  .compliance-grid{grid-template-columns:1fr}
  .pricing-grid{grid-template-columns:1fr;max-width:400px;margin-left:auto;margin-right:auto}
  .topup-grid{grid-template-columns:repeat(2,1fr)}
  .specialties-grid{grid-template-columns:repeat(3,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .footer-bottom{flex-direction:column;gap:12px;text-align:center}

  .cta-banner h2{font-size:1.5rem}
  .comparison-wrapper{margin:0 -24px;padding:0 24px}
}

@media(max-width:480px){
  .landing-container{padding:0 16px}
  .hero-text h1{font-size:1.7rem}
  .hero-actions{flex-direction:column;width:100%}
  .hero-actions .btn-primary,.hero-actions .btn-outline{width:100%;justify-content:center}
  .features-grid{grid-template-columns:1fr}
  .specialties-grid{grid-template-columns:repeat(2,1fr)}
  .topup-grid{grid-template-columns:1fr}
  .hub-cards{gap:10px}
  .footer-grid{grid-template-columns:1fr}
}

/* === ADS API PAGE === */
.subpage-hero{
  padding-top:calc(var(--nav-height) + 48px);
  padding-bottom:48px;
  background:var(--bg-section);
}
.subpage-hero h1{
  font-family:var(--font-display);
  font-size:2.25rem;
  font-weight:800;
  color:var(--text-heading);
  line-height:1.2;
  margin-bottom:16px;
}
.subpage-hero p{font-size:1.05rem;color:var(--text-body);max-width:700px}

.content-section{padding:48px 0}
.content-section h2{
  font-family:var(--font-display);
  font-size:1.75rem;
  font-weight:800;
  color:var(--text-heading);
  margin-bottom:16px;
}
.content-section h3{
  font-family:var(--font-display);
  font-size:1.2rem;
  font-weight:700;
  color:var(--text-heading);
  margin-bottom:12px;
  margin-top:24px;
}
.content-section p{
  font-size:.95rem;
  color:var(--text-body);
  line-height:1.7;
  margin-bottom:16px;
}
.content-section ul,.content-section ol{
  margin-bottom:16px;
  padding-left:24px;
}
.content-section li{
  font-size:.95rem;
  color:var(--text-body);
  line-height:1.7;
  margin-bottom:8px;
}

/* API table */
.api-table{
  width:100%;
  border-collapse:collapse;
  margin:24px 0;
  background:var(--bg-white);
  border-radius:12px;
  overflow:hidden;
  border:1px solid var(--border);
}
.api-table th{
  background:var(--navy);
  color:var(--text-white);
  padding:14px 20px;
  font-family:var(--font-display);
  font-size:.85rem;
  font-weight:700;
  text-align:left;
}
.api-table td{
  padding:12px 20px;
  font-size:.875rem;
  color:var(--text-body);
  border-bottom:1px solid var(--bg-section);
}
.api-table tr:hover td{background:var(--bg-section)}
.api-table code{
  background:var(--bg-section);
  padding:2px 8px;
  border-radius:4px;
  font-size:.8rem;
  font-family:'Fira Code',monospace;
}

/* Workflow steps (ads page) */
.workflow-steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin:32px 0;
}
.workflow-step{
  text-align:center;
  padding:24px 16px;
  background:var(--bg-white);
  border:1px solid var(--border);
  border-radius:14px;
  position:relative;
}
.workflow-step::after{
  content:'→';
  position:absolute;
  right:-14px;top:50%;
  transform:translateY(-50%);
  font-size:1.25rem;
  color:var(--text-muted);
}
.workflow-step:last-child::after{display:none}
.workflow-step .ws-num{
  width:36px;height:36px;
  border-radius:50%;
  background:var(--accent);
  color:#fff;
  font-weight:700;
  font-size:.85rem;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 12px;
}
.workflow-step h4{
  font-family:var(--font-display);
  font-size:.85rem;
  font-weight:700;
  color:var(--text-heading);
  margin-bottom:6px;
}
.workflow-step p{font-size:.78rem;color:var(--text-body)}

/* Dashboard mockup */
.dashboard-mockup{
  background:var(--bg-white);
  border:1px solid var(--border);
  border-radius:16px;
  padding:24px;
  margin:32px 0;
  box-shadow:var(--card-shadow);
}
.dm-header{
  display:flex;justify-content:space-between;align-items:center;
  margin-bottom:20px;
  padding-bottom:16px;
  border-bottom:1px solid var(--border);
}
.dm-header h4{
  font-family:var(--font-display);
  font-size:1rem;
  font-weight:700;
  color:var(--text-heading);
}
.dm-form{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.dm-field{
  display:flex;flex-direction:column;gap:6px;
}
.dm-field label{font-size:.75rem;font-weight:600;color:var(--text-muted);text-transform:uppercase;letter-spacing:.05em}
.dm-field .dm-input{
  padding:10px 14px;
  border:1px solid var(--border);
  border-radius:8px;
  font-size:.85rem;
  color:var(--text-body);
  background:var(--bg-section);
}
.dm-field.full{grid-column:1/-1}
.dm-actions{
  grid-column:1/-1;
  display:flex;gap:12px;
  margin-top:8px;
}

/* Dev info */
.dev-info{
  background:var(--bg-section);
  border-radius:14px;
  padding:24px;
  margin:24px 0;
}
.dev-info-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.dev-info-item{
  display:flex;gap:8px;
  font-size:.875rem;
}
.dev-info-item .label{
  font-weight:600;
  color:var(--text-heading);
  min-width:140px;
}
.dev-info-item .value{color:var(--text-body)}

/* === LEGAL PAGES === */
.legal-content{
  max-width:800px;
  margin:0 auto;
  padding:40px 24px 80px;
}
.legal-content h1{
  font-family:var(--font-display);
  font-size:2rem;
  font-weight:800;
  color:var(--text-heading);
  margin-bottom:8px;
}
.legal-content .last-updated{
  font-size:.85rem;
  color:var(--text-muted);
  margin-bottom:32px;
}
.legal-content h2{
  font-family:var(--font-display);
  font-size:1.35rem;
  font-weight:700;
  color:var(--text-heading);
  margin-top:32px;
  margin-bottom:12px;
}
.legal-content p{
  font-size:.95rem;
  color:var(--text-body);
  line-height:1.8;
  margin-bottom:12px;
}
.legal-content ul{
  margin-bottom:16px;
  padding-left:24px;
}
.legal-content li{
  font-size:.95rem;
  color:var(--text-body);
  line-height:1.8;
  margin-bottom:6px;
}

@media(max-width:768px){
  .workflow-steps{grid-template-columns:1fr 1fr}
  .workflow-step::after{display:none}
  .dm-form{grid-template-columns:1fr}
  .dev-info-grid{grid-template-columns:1fr}
  .subpage-hero h1{font-size:1.75rem}
}
@media(max-width:480px){
  .workflow-steps{grid-template-columns:1fr}
}
