:root {
  --brand:#FB762C;
  --brand-hover:#E86520;
  --brand-light:#FEF0E6;
  --brand-muted:#FDCFAE;
  --dark:#1E0A02;
  --brown:#452103;
  --cream:#FDF0D5;
  --gray-50:#FAFAF8;
  --gray-100:#F3F2EF;
  --gray-200:#E8E6E1;
  --gray-300:#D2D0C9;
  --gray-400:#9E9B94;
  --gray-500:#6E6C68;
  --gray-600:#4A4845;
  --gray-700:#2F2D2A;
  --gray-900:#1A1916;
  --success:#16A34A;
  --success-bg:#DCFCE7;
  --r-sm:6px;--r-md:8px;--r-lg:12px;--r-xl:16px;--r-full:9999px;
  --shadow-sm:0 1px 2px rgba(30,10,2,.04),0 1px 6px rgba(30,10,2,.04);
  --shadow-md:0 4px 16px rgba(30,10,2,.08),0 1px 4px rgba(30,10,2,.06);
  --shadow-lg:0 12px 40px rgba(30,10,2,.12),0 2px 8px rgba(30,10,2,.08);
  --font:'Plus Jakarta Sans',sans-serif;
  --t:180ms ease;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{font-family:var(--font);font-size:16px;line-height:1.6;color:var(--gray-900);background:white;-webkit-font-smoothing:antialiased;}
a{color:inherit;text-decoration:none;}
img{max-width:100%;display:block;}

/* ── UTILITIES ── */
.container{max-width:1120px;margin:0 auto;padding:0 24px;}
.flex{display:flex;}.flex-center{display:flex;align-items:center;}
.flex-between{display:flex;align-items:center;justify-content:space-between;}
.gap-2{gap:8px;}.gap-3{gap:12px;}.gap-4{gap:16px;}.gap-6{gap:24px;}.gap-8{gap:32px;}

/* ── BUTTONS ── */
.btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:0 24px;height:44px;border-radius:var(--r-md);
  font-family:var(--font);font-size:15px;font-weight:700;
  cursor:pointer;border:none;transition:all var(--t);white-space:nowrap;
}
.btn:active{transform:scale(.98);}
.btn-primary{background:var(--brand);color:white;}
.btn-primary:hover{background:var(--brand-hover);box-shadow:0 0 0 4px rgba(251,118,44,.2);}
.btn-secondary{background:white;color:var(--gray-700);border:1.5px solid var(--gray-200);}
.btn-secondary:hover{border-color:var(--gray-300);background:var(--gray-50);}
.btn-ghost-dark{background:rgba(255,255,255,.1);color:rgba(253,240,213,.85);border:1.5px solid rgba(255,255,255,.15);}
.btn-ghost-dark:hover{background:rgba(255,255,255,.18);color:var(--cream);}
.btn-lg{height:52px;padding:0 32px;font-size:16px;border-radius:var(--r-lg);}
.btn-sm{height:36px;padding:0 16px;font-size:13.5px;border-radius:var(--r-sm);}

/* ── BADGE ── */
.badge-pill{
  display:inline-flex;align-items:center;gap:6px;
  padding:5px 14px;border-radius:var(--r-full);
  font-size:13px;font-weight:700;
}
.badge-brand{background:var(--brand-light);color:var(--brand-hover);}
.badge-dark{background:rgba(251,118,44,.15);color:var(--brand);}
.badge-success{background:var(--success-bg);color:#14532D;}

/* ── NAVBAR ── */
.navbar{
  position:fixed;top:0;left:0;right:0;z-index:100;
  padding:0 24px;height:64px;
  display:flex;align-items:center;justify-content:space-between;
  background:rgba(30,10,2,.92);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.navbar-logo{
  display:flex;align-items:center;gap:10px;
  font-size:19px;font-weight:800;color:var(--cream);letter-spacing:-.3px;
}
.navbar-logo-icon{
  width:32px;height:32px;background:var(--brand);border-radius:8px;
  display:flex;align-items:center;justify-content:center;
  font-size:16px;font-weight:800;color:white;
}
.navbar-links{display:flex;align-items:center;gap:4px;}
.navbar-link{
  padding:8px 14px;border-radius:var(--r-md);font-size:14px;font-weight:600;
  color:rgba(253,240,213,.6);transition:color var(--t),background var(--t);
  cursor:pointer;
}
.navbar-link:hover{color:var(--cream);background:rgba(255,255,255,.07);}
.navbar-actions{display:flex;align-items:center;gap:10px;}
.navbar-login{font-size:14px;font-weight:600;color:rgba(253,240,213,.7);padding:8px 14px;transition:color var(--t);}
.navbar-login:hover{color:var(--cream);}

/* ── HERO ── */
.hero{
  background:var(--dark);
  padding:140px 0 100px;
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:'';
  position:absolute;top:-200px;right:-100px;
  width:600px;height:600px;
  background:radial-gradient(circle,rgba(251,118,44,.12) 0%,transparent 70%);
  pointer-events:none;
}
.hero::after{
  content:'';
  position:absolute;bottom:-150px;left:-50px;
  width:500px;height:500px;
  background:radial-gradient(circle,rgba(251,118,44,.07) 0%,transparent 70%);
  pointer-events:none;
}
.hero-content{position:relative;z-index:1;}
.hero-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(251,118,44,.15);border:1px solid rgba(251,118,44,.25);
  border-radius:var(--r-full);padding:6px 16px;
  font-size:13px;font-weight:700;color:var(--brand);
  margin-bottom:28px;
}
.hero-badge-dot{width:6px;height:6px;border-radius:50%;background:var(--brand);}
.hero-title{
  font-size:clamp(42px,6vw,72px);font-weight:800;
  color:white;letter-spacing:-1.5px;line-height:1.05;
  margin-bottom:24px;
  max-width:800px;
}
.hero-title em{
  font-style:normal;
  color:var(--brand);
}
.hero-subtitle{
  font-size:clamp(16px,2.5vw,20px);color:rgba(253,240,213,.6);
  line-height:1.6;max-width:580px;margin-bottom:40px;font-weight:400;
}
.hero-actions{display:flex;align-items:center;gap:14px;flex-wrap:wrap;margin-bottom:56px;}
.hero-social-proof{
  display:flex;align-items:center;gap:10px;
  font-size:13.5px;color:rgba(253,240,213,.45);
}
.hero-avatars{display:flex;}
.hero-avatar{
  width:28px;height:28px;border-radius:50%;border:2px solid var(--dark);
  background:var(--brand);display:flex;align-items:center;justify-content:center;
  font-size:10px;font-weight:800;color:white;margin-left:-6px;flex-shrink:0;
}
.hero-avatar:first-child{margin-left:0;}
.hero-avatar:nth-child(2){background:#2563EB;}
.hero-avatar:nth-child(3){background:#16A34A;}
.hero-avatar:nth-child(4){background:#7C3AED;}

/* Hero mockup */
.hero-mockup{
  margin-top:64px;
  position:relative;
}
.hero-mockup-browser{
  background:var(--gray-900);
  border-radius:var(--r-xl);
  overflow:hidden;
  box-shadow:0 40px 80px rgba(0,0,0,.5),0 0 0 1px rgba(255,255,255,.06);
}
.hero-mockup-bar{
  background:#2A2825;
  padding:12px 16px;
  display:flex;align-items:center;gap:8px;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.mockup-dot{width:10px;height:10px;border-radius:50%;}
.mockup-dot-red{background:#FF5F57;}
.mockup-dot-yellow{background:#FEBC2E;}
.mockup-dot-green{background:#28C840;}
.mockup-url{
  flex:1;margin:0 12px;background:rgba(255,255,255,.06);
  border-radius:5px;padding:5px 12px;font-size:12px;color:rgba(255,255,255,.35);
  font-family:monospace;text-align:center;
}
.mockup-screen{
  background:var(--gray-50);
  display:flex;min-height:400px;
}
.mockup-sidebar{
  width:180px;background:var(--dark);padding:12px 0;flex-shrink:0;
}
.mockup-sidebar-logo{
  padding:8px 12px 12px;font-size:13px;font-weight:800;color:var(--cream);
  display:flex;align-items:center;gap:6px;
}
.mockup-sidebar-logo-icon{
  width:20px;height:20px;background:var(--brand);border-radius:5px;
  display:flex;align-items:center;justify-content:center;font-size:10px;color:white;font-weight:800;
}
.mockup-sb-item{
  padding:6px 10px;margin:1px 6px;border-radius:5px;
  font-size:10px;font-weight:600;color:rgba(253,240,213,.4);
  display:flex;align-items:center;gap:6px;
}
.mockup-sb-item.active{background:rgba(251,118,44,.2);color:var(--brand);}
.mockup-sb-dot{width:6px;height:6px;border-radius:50%;background:currentColor;flex-shrink:0;}
.mockup-content{flex:1;padding:20px;overflow:hidden;}
.mockup-page-title{font-size:14px;font-weight:800;color:var(--gray-900);margin-bottom:4px;letter-spacing:-.3px;}
.mockup-page-sub{font-size:10px;color:var(--gray-400);margin-bottom:14px;}
.mockup-grid-3{display:grid;grid-template-columns:1fr 1fr 1fr;gap:8px;margin-bottom:12px;}
.mockup-action{
  border-radius:6px;padding:10px 12px;font-size:10px;font-weight:700;color:white;
  display:flex;align-items:center;gap:5px;
}
.mockup-stat{
  background:white;border:1px solid var(--gray-200);border-radius:6px;
  padding:10px 12px;
}
.mockup-stat-label{font-size:9px;color:var(--gray-400);font-weight:600;margin-bottom:3px;}
.mockup-stat-value{font-size:16px;font-weight:800;color:var(--gray-900);letter-spacing:-.5px;}
.mockup-stat-sub{font-size:8px;color:var(--gray-400);margin-top:1px;}
.mockup-grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:6px;margin-bottom:12px;}
.mockup-card{background:white;border:1px solid var(--gray-200);border-radius:6px;padding:10px 12px;}
.mockup-card-title{font-size:9.5px;font-weight:700;color:var(--gray-900);margin-bottom:6px;}
.mockup-rdv{display:flex;align-items:center;justify-content:space-between;margin-bottom:5px;}
.mockup-rdv-name{font-size:9px;font-weight:600;color:var(--gray-900);}
.mockup-badge-sm{font-size:8px;font-weight:700;padding:2px 6px;border-radius:var(--r-full);}
.mockup-badge-warning{background:var(--brand-light);color:var(--brand-hover);}
.mockup-badge-success{background:var(--success-bg);color:#14532D;}
.mockup-timer{
  margin:6px 8px;background:rgba(251,118,44,.15);border:1px solid rgba(251,118,44,.25);
  border-radius:7px;padding:8px 10px;
}
.mockup-timer-time{font-size:14px;font-weight:800;color:var(--brand);font-variant-numeric:tabular-nums;}
.mockup-timer-label{font-size:8px;color:rgba(253,240,213,.6);margin-top:2px;}

/* ── PROOF BAR ── */
.proof-bar{
  background:var(--gray-50);border-top:1px solid var(--gray-200);border-bottom:1px solid var(--gray-200);
  padding:18px 0;
}
.proof-bar-inner{
  display:flex;align-items:center;justify-content:center;gap:48px;flex-wrap:wrap;
}
.proof-stat{text-align:center;}
.proof-stat-value{font-size:28px;font-weight:800;color:var(--gray-900);letter-spacing:-.5px;}
.proof-stat-label{font-size:13px;color:var(--gray-400);font-weight:500;margin-top:2px;}

/* ── SECTIONS ── */
section{padding:96px 0;}
.section-badge{
  display:inline-flex;align-items:center;gap:6px;
  background:var(--brand-light);color:var(--brand-hover);
  border-radius:var(--r-full);padding:5px 14px;
  font-size:12.5px;font-weight:700;margin-bottom:16px;
}
.section-title{
  font-size:clamp(30px,4vw,44px);font-weight:800;
  color:var(--gray-900);letter-spacing:-.8px;line-height:1.1;
  margin-bottom:16px;
}
.section-subtitle{
  font-size:18px;color:var(--gray-500);line-height:1.6;
  max-width:560px;font-weight:400;
}
.text-center{text-align:center;}
.mx-auto{margin-left:auto;margin-right:auto;}

/* ── ROI SECTION ── */
.roi-section{background:var(--dark);overflow:hidden;position:relative;}
.roi-section::before{
  content:'';position:absolute;top:0;left:50%;transform:translateX(-50%);
  width:800px;height:400px;
  background:radial-gradient(ellipse,rgba(251,118,44,.1) 0%,transparent 70%);
  pointer-events:none;
}
.roi-grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;position:relative;}
.roi-left{}
.roi-title{
  font-size:clamp(28px,4vw,44px);font-weight:800;
  color:white;letter-spacing:-.8px;line-height:1.1;margin-bottom:20px;
}
.roi-title em{font-style:normal;color:var(--brand);}
.roi-subtitle{font-size:17px;color:rgba(253,240,213,.55);line-height:1.6;margin-bottom:36px;}
.roi-stats{display:flex;flex-direction:column;gap:16px;}
.roi-stat{
  display:flex;align-items:center;gap:16px;
  background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);
  border-radius:var(--r-lg);padding:18px 20px;
}
.roi-stat-icon{
  width:44px;height:44px;border-radius:var(--r-md);
  background:rgba(251,118,44,.15);border:1px solid rgba(251,118,44,.2);
  display:flex;align-items:center;justify-content:center;
  font-size:20px;flex-shrink:0;
}
.roi-stat-label{font-size:13px;color:rgba(253,240,213,.45);font-weight:500;}
.roi-stat-value{font-size:18px;font-weight:800;color:white;margin-top:2px;letter-spacing:-.3px;}

/* ROI Calculator */
.roi-calc{
  background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.1);
  border-radius:var(--r-xl);padding:32px;
}
.roi-calc-title{font-size:16px;font-weight:700;color:white;margin-bottom:24px;}
.roi-slider-group{margin-bottom:20px;}
.roi-slider-label{
  display:flex;justify-content:space-between;
  font-size:13.5px;font-weight:600;color:rgba(253,240,213,.6);margin-bottom:10px;
}
.roi-slider-label span{color:var(--brand);font-size:15px;}
.roi-slider{
  width:100%;height:4px;border-radius:2px;
  background:rgba(255,255,255,.1);
  -webkit-appearance:none;outline:none;cursor:pointer;
}
.roi-slider::-webkit-slider-thumb{
  -webkit-appearance:none;width:18px;height:18px;border-radius:50%;
  background:var(--brand);cursor:pointer;border:2px solid white;
  box-shadow:0 2px 6px rgba(251,118,44,.4);
}
.roi-result{
  background:rgba(251,118,44,.12);border:1px solid rgba(251,118,44,.2);
  border-radius:var(--r-lg);padding:20px;margin-top:24px;text-align:center;
}
.roi-result-label{font-size:12.5px;color:rgba(253,240,213,.5);font-weight:600;margin-bottom:6px;}
.roi-result-value{font-size:36px;font-weight:800;color:var(--brand);letter-spacing:-.5px;font-variant-numeric:tabular-nums;}
.roi-result-sub{font-size:12.5px;color:rgba(253,240,213,.4);margin-top:4px;}

/* ── FEATURES ── */
.features-grid{
  display:grid;grid-template-columns:1fr 1fr 1fr;gap:24px;
}
.feature-card{
  background:var(--gray-50);border:1px solid var(--gray-200);
  border-radius:var(--r-xl);padding:28px;
  transition:border-color var(--t),transform var(--t),box-shadow var(--t);
}
.feature-card:hover{
  border-color:var(--brand-muted);transform:translateY(-2px);
  box-shadow:var(--shadow-md);
}
.feature-icon{
  width:48px;height:48px;border-radius:var(--r-lg);
  display:flex;align-items:center;justify-content:center;
  font-size:22px;margin-bottom:18px;
}
.feature-title{font-size:18px;font-weight:800;color:var(--gray-900);margin-bottom:10px;letter-spacing:-.2px;}
.feature-desc{font-size:14.5px;color:var(--gray-500);line-height:1.6;}
.feature-tag{
  display:inline-flex;align-items:center;gap:5px;margin-top:14px;
  font-size:12px;font-weight:700;color:var(--brand);
  background:var(--brand-light);padding:4px 10px;border-radius:var(--r-full);
}

/* ── HOW IT WORKS ── */
.steps{display:flex;flex-direction:column;gap:0;max-width:680px;margin:0 auto;}
.step{
  display:flex;gap:24px;padding:32px 0;
  border-bottom:1px solid var(--gray-100);
}
.step:last-child{border-bottom:none;}
.step-num{
  width:36px;height:36px;border-radius:50%;background:var(--brand);
  color:white;font-size:14px;font-weight:800;
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
  margin-top:2px;
}
.step-content{}
.step-title{font-size:18px;font-weight:800;color:var(--gray-900);margin-bottom:8px;}
.step-desc{font-size:15px;color:var(--gray-500);line-height:1.6;}

/* ── TESTIMONIALS ── */
.testimonials-grid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:20px;}
.testimonial{
  background:var(--gray-50);border:1px solid var(--gray-200);
  border-radius:var(--r-xl);padding:28px;
}
.testimonial-stars{color:var(--brand);font-size:14px;letter-spacing:2px;margin-bottom:14px;}
.testimonial-text{font-size:15px;color:var(--gray-700);line-height:1.65;margin-bottom:20px;font-style:italic;}
.testimonial-author{display:flex;align-items:center;gap:12px;}
.testimonial-avatar{
  width:40px;height:40px;border-radius:50%;background:var(--dark);
  display:flex;align-items:center;justify-content:center;
  font-size:13px;font-weight:800;color:var(--cream);flex-shrink:0;
}
.testimonial-name{font-size:14px;font-weight:700;color:var(--gray-900);}
.testimonial-role{font-size:12.5px;color:var(--gray-400);}

/* ── PRICING ── */
.pricing-grid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:20px;max-width:880px;margin:0 auto;}
.pricing-card{
  background:white;border:1.5px solid var(--gray-200);
  border-radius:var(--r-xl);padding:32px;
  transition:all var(--t);
}
.pricing-card:hover{border-color:var(--brand-muted);box-shadow:var(--shadow-md);}
.pricing-card.featured{
  background:var(--dark);border-color:var(--brand);
  transform:scale(1.03);box-shadow:var(--shadow-lg);
}
.pricing-label{font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--gray-400);margin-bottom:8px;}
.pricing-card.featured .pricing-label{color:var(--brand);}
.pricing-name{font-size:20px;font-weight:800;color:var(--gray-900);margin-bottom:12px;}
.pricing-card.featured .pricing-name{color:white;}
.pricing-price{
  font-size:40px;font-weight:800;letter-spacing:-1px;color:var(--gray-900);
  margin-bottom:4px;line-height:1;
}
.pricing-card.featured .pricing-price{color:white;}
.pricing-price sup{font-size:20px;font-weight:700;vertical-align:top;margin-top:8px;}
.pricing-price span{font-size:15px;font-weight:500;color:var(--gray-400);}
.pricing-card.featured .pricing-price span{color:rgba(253,240,213,.5);}
.pricing-period{font-size:13px;color:var(--gray-400);margin-bottom:24px;}
.pricing-card.featured .pricing-period{color:rgba(253,240,213,.4);}
.pricing-divider{height:1px;background:var(--gray-100);margin:24px 0;}
.pricing-card.featured .pricing-divider{background:rgba(255,255,255,.08);}
.pricing-features{display:flex;flex-direction:column;gap:10px;margin-bottom:28px;}
.pricing-feature{
  display:flex;align-items:center;gap:10px;
  font-size:14px;color:var(--gray-700);
}
.pricing-card.featured .pricing-feature{color:rgba(253,240,213,.75);}
.pricing-feature-icon{
  width:18px;height:18px;border-radius:50%;background:var(--success-bg);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:10px;color:var(--success);
}
.pricing-card.featured .pricing-feature-icon{background:rgba(251,118,44,.2);color:var(--brand);}
.pricing-badge{
  display:inline-block;background:var(--brand);color:white;
  font-size:11px;font-weight:700;padding:3px 10px;border-radius:var(--r-full);
  margin-bottom:8px;
}

/* ── CTA SECTION ── */
.cta-section{
  background:var(--dark);text-align:center;position:relative;overflow:hidden;
}
.cta-section::before{
  content:'';position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  width:700px;height:400px;
  background:radial-gradient(ellipse,rgba(251,118,44,.15) 0%,transparent 70%);
  pointer-events:none;
}
.cta-title{
  font-size:clamp(32px,5vw,52px);font-weight:800;color:white;
  letter-spacing:-1px;line-height:1.1;margin-bottom:16px;
  position:relative;
}
.cta-title em{font-style:normal;color:var(--brand);}
.cta-subtitle{font-size:18px;color:rgba(253,240,213,.55);margin-bottom:40px;position:relative;}
.cta-note{font-size:13px;color:rgba(253,240,213,.35);margin-top:16px;position:relative;}

/* ── FOOTER ── */
.footer{background:#120600;padding:48px 0 32px;border-top:1px solid rgba(255,255,255,.06);}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px;margin-bottom:48px;}
.footer-brand-name{font-size:18px;font-weight:800;color:var(--cream);margin-bottom:10px;display:flex;align-items:center;gap:8px;}
.footer-brand-icon{width:26px;height:26px;background:var(--brand);border-radius:6px;display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:800;color:white;}
.footer-brand-desc{font-size:14px;color:rgba(253,240,213,.4);line-height:1.6;max-width:260px;}
.footer-col-title{font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:rgba(253,240,213,.35);margin-bottom:14px;}
.footer-links{display:flex;flex-direction:column;gap:8px;}
.footer-link{font-size:14px;color:rgba(253,240,213,.5);transition:color var(--t);}
.footer-link:hover{color:var(--cream);}
.footer-bottom{
  padding-top:24px;border-top:1px solid rgba(255,255,255,.06);
  display:flex;align-items:center;justify-content:space-between;
  font-size:13px;color:rgba(253,240,213,.3);
}

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .features-grid{grid-template-columns:1fr 1fr;}
  .testimonials-grid{grid-template-columns:1fr 1fr;}
  .roi-grid{grid-template-columns:1fr;gap:40px;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .pricing-grid{grid-template-columns:1fr;}
  .pricing-card.featured{transform:none;}
}
@media(max-width:768px){
  .navbar-links{display:none;}
  .hero{padding:100px 0 60px;}
  .hero-title{font-size:36px;}
  .features-grid{grid-template-columns:1fr;}
  .testimonials-grid{grid-template-columns:1fr;}
  .proof-bar-inner{gap:24px;}
  .footer-grid{grid-template-columns:1fr;}
  section{padding:64px 0;}
}

/* ── GRID-3 & CARD ── */
.grid-3{display:grid;grid-template-columns:1fr 1fr 1fr;gap:16px;}
.card{background:white;border:1.5px solid var(--gray-200);border-radius:var(--r-xl);padding:28px;transition:border-color var(--t),box-shadow var(--t);}
.card:hover{border-color:var(--brand-muted);box-shadow:var(--shadow-md);}
@media(max-width:1024px){.grid-3{grid-template-columns:1fr 1fr;}}
@media(max-width:768px){.grid-3{grid-template-columns:1fr;}}

/* ── PAIN CARDS ── */
.pain-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.pain-card{background:var(--gray-50);border:1px solid var(--gray-200);border-radius:var(--r-xl);padding:24px;}
.pain-icon{font-size:28px;margin-bottom:12px;}
.pain-title{font-size:16px;font-weight:800;color:var(--gray-900);margin-bottom:8px;}
.pain-desc{font-size:14.5px;color:var(--gray-500);line-height:1.6;}

/* ── PAGE SEO HERO ── */
.seo-hero{background:var(--dark);padding:120px 0 80px;position:relative;overflow:hidden;}
.seo-hero::before{content:'';position:absolute;top:-200px;right:-100px;width:600px;height:600px;background:radial-gradient(circle,rgba(251,118,44,.1) 0%,transparent 70%);pointer-events:none;}
.seo-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(251,118,44,.15);border:1px solid rgba(251,118,44,.25);border-radius:var(--r-full);padding:6px 16px;font-size:13px;font-weight:700;color:var(--brand);margin-bottom:20px;}
.seo-title{font-size:clamp(32px,5vw,56px);font-weight:800;color:white;letter-spacing:-1px;line-height:1.08;margin-bottom:20px;}
.seo-title em{font-style:normal;color:var(--brand);}
.seo-subtitle{font-size:18px;color:rgba(253,240,213,.6);max-width:600px;line-height:1.65;margin-bottom:36px;}

/* ── HOSTING BADGE ── */
.hosting-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(22,163,74,.15);border:1px solid rgba(22,163,74,.25);border-radius:var(--r-full);padding:6px 16px;font-size:13px;font-weight:700;color:#16A34A;}

/* ── FAQ ACCORDION CSS ONLY ── */
.faq{display:flex;flex-direction:column;gap:0;max-width:720px;margin:0 auto;}
.faq details{border-bottom:1px solid var(--gray-100);}
.faq details:last-child{border-bottom:none;}
.faq summary{padding:20px 0;font-size:16px;font-weight:700;color:var(--gray-900);cursor:pointer;list-style:none;display:flex;justify-content:space-between;align-items:center;}
.faq summary::-webkit-details-marker{display:none;}
.faq summary::after{content:'↓';color:var(--gray-400);font-size:14px;transition:transform 180ms ease;flex-shrink:0;}
.faq details[open] summary::after{transform:rotate(180deg);}
.faq-answer{padding:0 0 20px;font-size:15px;color:var(--gray-600);line-height:1.7;}

/* ── CTA BAND ── */
.cta-band{background:var(--dark);padding:64px 0;text-align:center;position:relative;overflow:hidden;}
.cta-band::before{content:'';position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:600px;height:300px;background:radial-gradient(ellipse,rgba(251,118,44,.12) 0%,transparent 70%);pointer-events:none;}
.cta-band-title{font-size:clamp(24px,4vw,38px);font-weight:800;color:white;letter-spacing:-.5px;margin-bottom:12px;position:relative;}
.cta-band-title em{font-style:normal;color:var(--brand);}
.cta-band-sub{font-size:16px;color:rgba(253,240,213,.55);margin-bottom:28px;position:relative;}

@media(max-width:768px){
  .pain-grid{grid-template-columns:1fr;}
  .seo-hero{padding:100px 0 60px;}
}

/* ── ERROR PAGES ── */
.error-page{min-height:100vh;display:flex;flex-direction:column;align-items:center;justify-content:center;background:var(--dark);padding:40px 24px;text-align:center;position:relative;overflow:hidden;}
.error-page::before{content:'';position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:600px;height:600px;background:radial-gradient(circle,rgba(251,118,44,.08) 0%,transparent 70%);pointer-events:none;}
.error-code{font-size:clamp(100px,20vw,180px);font-weight:800;color:rgba(251,118,44,.15);letter-spacing:-8px;line-height:1;margin-bottom:0;position:relative;}
.error-icon{font-size:56px;margin-bottom:20px;position:relative;}
.error-title{font-size:clamp(24px,4vw,36px);font-weight:800;color:white;letter-spacing:-.5px;margin-bottom:12px;position:relative;}
.error-desc{font-size:17px;color:rgba(253,240,213,.55);max-width:480px;line-height:1.65;margin-bottom:36px;position:relative;}
.error-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:center;position:relative;}
.error-links{display:flex;gap:24px;flex-wrap:wrap;justify-content:center;margin-top:32px;position:relative;}
.error-link{font-size:14px;color:rgba(253,240,213,.4);transition:color 180ms ease;}
.error-link:hover{color:rgba(253,240,213,.8);}
.error-contact-box{margin-top:40px;background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.06);border-radius:var(--r-lg);padding:16px 24px;max-width:400px;font-size:12.5px;color:rgba(253,240,213,.35);line-height:1.6;position:relative;}
.error-contact-box a{color:var(--brand);}

/* ── AUTH / FORM PAGE ── */
.auth-layout{
  min-height:100vh;display:flex;align-items:center;justify-content:center;
  padding:40px 20px;background:var(--gray-50);
}
.auth-card{
  background:white;border:1px solid var(--gray-200);border-radius:var(--r-xl);
  padding:40px;width:100%;box-shadow:var(--shadow-md);
}
.auth-logo{display:flex;flex-direction:column;align-items:flex-start;margin-bottom:28px;}
.auth-logo-mark{
  width:36px;height:36px;background:var(--brand);border-radius:var(--r-md);
  color:white;font-size:18px;font-weight:800;
  display:flex;align-items:center;justify-content:center;margin-bottom:14px;
}
.auth-title{font-size:20px;font-weight:800;color:var(--gray-900);letter-spacing:-.3px;margin-bottom:6px;}
.auth-sub{font-size:14px;color:var(--gray-500);}
.auth-form{display:flex;flex-direction:column;gap:16px;}
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.field{display:flex;flex-direction:column;gap:6px;}
.field-label{font-size:13.5px;font-weight:600;color:var(--gray-700);}
.input{
  width:100%;height:42px;padding:0 14px;
  border:1.5px solid var(--gray-200);border-radius:var(--r-md);
  font-family:var(--font);font-size:14px;color:var(--gray-900);background:white;
  transition:border-color var(--t),box-shadow var(--t);outline:none;
}
.input:focus{border-color:var(--brand);box-shadow:0 0 0 3px rgba(251,118,44,.12);}
.input--error{border-color:#DC2626;}
textarea.input{height:auto;padding:10px 14px;resize:vertical;}
.sel-wrap{position:relative;}
.sel-wrap::after{
  content:'';position:absolute;right:14px;top:50%;transform:translateY(-50%);
  width:0;height:0;
  border-left:4px solid transparent;border-right:4px solid transparent;
  border-top:5px solid var(--gray-400);pointer-events:none;
}
.select{
  width:100%;height:42px;padding:0 36px 0 14px;
  border:1.5px solid var(--gray-200);border-radius:var(--r-md);
  font-family:var(--font);font-size:14px;color:var(--gray-900);background:white;
  -webkit-appearance:none;appearance:none;outline:none;
  transition:border-color var(--t),box-shadow var(--t);cursor:pointer;
}
.select:focus{border-color:var(--brand);box-shadow:0 0 0 3px rgba(251,118,44,.12);}
@media(max-width:480px){
  .auth-card{padding:24px 20px;}
  .grid-2{grid-template-columns:1fr;}
}

/* ── ANIMATIONS ── */
@keyframes fadeUp{
  from{opacity:0;transform:translateY(20px);}
  to{opacity:1;transform:translateY(0);}
}
.hero-content > *{
  animation:fadeUp .6s ease both;
}
.hero-content > *:nth-child(1){animation-delay:.1s;}
.hero-content > *:nth-child(2){animation-delay:.2s;}
.hero-content > *:nth-child(3){animation-delay:.3s;}
.hero-content > *:nth-child(4){animation-delay:.4s;}
.hero-content > *:nth-child(5){animation-delay:.5s;}
.hero-mockup{animation:fadeUp .8s ease .6s both;}
