*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root{
  --blue:#247BA0;
  --blue-light:#8FBCD6;
  --blue-tint:#EAF3F7;
  --coral:#E2725B;
  --coral-dark:#C85A44;
  --grey:#868686;
  --dark:#1E1E1E;
  --off:#F5F5F3;
  --white:#FFFFFF;
  --border:#E3E1DA;
  --head: 'Poppins', sans-serif;
  --body: 'Sora', sans-serif;
}

html{ scroll-behavior:smooth; }

body{
  font-family:var(--body);
  background:var(--off);
  color:var(--dark);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

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

.wrap{ max-width:1240px; margin:0 auto; padding:0 40px; }

h1,h2,h3,h4,h5,h6{ font-family:var(--head); font-weight:700; line-height:1.1; }

.eyebrow{
  font-family:var(--body);
  font-size:12px;
  font-weight:600;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--coral);
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:18px;
}
.eyebrow::before{
  content:"";
  width:22px; height:2px;
  background:var(--coral);
  display:inline-block;
}

/* ===== BUTTONS ===== */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--body);
  font-size:14px;
  font-weight:600;
  letter-spacing:.02em;
  padding:15px 30px;
  border-radius:999px;
  cursor:pointer;
  transition:all .25s ease;
  border:1.5px solid transparent;
  white-space:nowrap;
}
.btn-primary{
  background:var(--coral); color:var(--white);
  padding:6px 6px 6px 26px; gap:16px;
}
.btn-primary:hover{ background:var(--coral-dark); box-shadow:0 10px 24px rgba(226,114,91,.35); }
.btn-icon-box{
  width:34px; height:34px; border-radius:50%; flex-shrink:0;
  background:rgba(255,255,255,.24);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.btn-icon{ width:16px; height:16px; transition:transform .3s ease; }
.btn-primary:hover .btn-icon{ transform:translateX(3px); }
.btn-outline{ background:transparent; color:var(--dark); border-color:var(--dark); }
.btn-outline:hover{ background:var(--dark); color:var(--off); transform:translateY(-2px); }
.btn-outline.light{ border-color:rgba(255,255,255,.5); color:var(--white); }
.btn-outline.light:hover{ background:var(--white); color:var(--dark); }
.btn-lg{ padding:8px 8px 8px 34px; font-size:15.5px; }
.btn-lg .btn-icon-box{ width:40px; height:40px; }
.btn-lg .btn-icon{ width:18px; height:18px; }

/* ===== NAV ===== */
header{
  position:sticky; top:0; z-index:200;
  background:rgba(245,245,243,.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}
nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 40px;
  max-width:1240px; margin:0 auto;
}
.logo{ display:flex; align-items:center; }
.logo img{ height:56px; width:auto; }
.nav-links{ display:flex; align-items:center; gap:34px; }
.nav-links a{ font-size:14px; font-weight:600; color:var(--dark); opacity:.75; transition:opacity .2s; }
.nav-links a:hover, .nav-links a.active{ opacity:1; }
.nav-cta{ display:flex; align-items:center; gap:20px; }

.burger{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:30px; height:30px;
  background:none; border:none;
  cursor:pointer;
}
.burger span{ display:block; width:100%; height:2px; background:var(--dark); border-radius:2px; transition:transform .2s ease, opacity .2s ease; }
.burger.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity:0; }
.burger.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero{
  padding:76px 0 60px;
  background:
    radial-gradient(circle at 85% 12%, rgba(168,187,162,.35), transparent 42%),
    radial-gradient(circle at 100% 60%, rgba(36,123,160,.14), transparent 45%);
}
.hero .wrap{ display:grid; grid-template-columns:1.1fr .9fr; gap:60px; align-items:center; }
.hero-heading{
  font-size:clamp(38px,5.2vw,66px);
  letter-spacing:-.02em;
  color:var(--dark);
  margin-bottom:24px;
}
.hero-heading .bolt{ color:var(--coral); }
.rotate-word{ display:inline-block; color:var(--coral); transition:opacity .25s ease; }
.hero-sub{
  font-size:18px;
  line-height:1.7;
  color:#4a4a4a;
  max-width:500px;
  margin-bottom:36px;
}
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:38px; }
.hero-proof{ display:flex; gap:28px; flex-wrap:wrap; }
.hero-proof div{ display:flex; flex-direction:column; }
.hero-proof strong{ font-family:var(--head); font-size:24px; color:var(--blue); }
.hero-proof span{ font-size:12px; color:var(--grey); letter-spacing:.04em; text-transform:uppercase; }

.hero-art{ position:relative; aspect-ratio:1/1; }
.art-card{
  position:absolute; inset:6%;
  background:var(--dark);
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 30px 70px rgba(30,30,30,.25);
}
.art-card .grid-bg{
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size:32px 32px;
}
.art-blob{
  position:absolute; width:55%; aspect-ratio:1/1;
  background:radial-gradient(circle, var(--blue) 0%, transparent 70%);
  top:-8%; right:-8%; opacity:.35; filter:blur(14px);
}
.art-bolt{
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:26%;
  animation:float 5s ease-in-out infinite;
}
.art-bolt svg{ width:100%; filter:drop-shadow(0 12px 26px rgba(226,114,91,.4)); }
@keyframes float{ 0%,100%{ transform:translate(-50%,-50%) translateY(0); } 50%{ transform:translate(-50%,-50%) translateY(-10px); } }
.art-tag{
  position:absolute; bottom:26px; left:26px; right:26px;
  display:flex; justify-content:space-between; align-items:center;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  border-radius:14px;
  padding:14px 18px;
  backdrop-filter:blur(6px);
}
.art-tag span{ font-size:12px; color:#fff; font-weight:600; letter-spacing:.05em; }
.art-tag .dot{ width:8px; height:8px; border-radius:50%; background:var(--blue-light); box-shadow:0 0 0 4px rgba(143,188,214,.25); }
.art-tag-row{ display:flex; align-items:center; gap:10px; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero{ padding:52px 0 44px; text-align:center; }
.page-hero .eyebrow{ justify-content:center; }
.page-hero h1{ font-size:clamp(32px,4.6vw,52px); margin-bottom:18px; }
.page-hero p{ font-size:17px; line-height:1.7; color:var(--grey); max-width:640px; margin:0 auto; }

/* ===== SECTION HEADERS ===== */
.section-head{ max-width:640px; margin:0 auto 40px; text-align:center; }
.section-head h2{ font-size:clamp(28px,3.4vw,42px); color:var(--dark); margin-bottom:16px; }
.section-head p{ font-size:16px; color:var(--grey); line-height:1.7; }

/* ===== PAIN POINTS ===== */
.pain{ background:var(--blue-tint); padding:72px 0; }
.pain-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-bottom:56px; }
.pain-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:18px;
  padding:30px 24px;
  font-family:var(--head);
  font-weight:600;
  font-size:16px;
  line-height:1.4;
  color:var(--dark);
  transition:transform .25s ease, box-shadow .25s ease;
}
.pain-card:hover{ transform:translateY(-6px); box-shadow:0 20px 40px rgba(36,123,160,.14); }
.pain-copy{ max-width:820px; margin:0 auto; text-align:center; font-size:17px; line-height:1.8; color:#3d3d3d; }
.pain-copy strong{ color:var(--dark); }
.pain-cta{ text-align:center; margin-top:40px; }

/* ===== SERVICES ===== */
.services-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.services-grid.wide{ grid-template-columns:repeat(2,1fr); }
.service-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:20px;
  padding:34px 28px;
  transition:transform .25s ease, box-shadow .25s ease;
}
.service-card:hover{ transform:translateY(-6px); box-shadow:0 20px 40px rgba(36,123,160,.14); }
.service-card h3{ font-size:19px; margin-bottom:10px; }
.service-card p{ font-size:14.5px; line-height:1.7; color:var(--grey); margin-bottom:14px; }
.service-card .for{ font-size:12.5px; color:var(--blue); font-weight:600; }
.service-card .for span{ color:var(--grey); font-weight:400; }
.service-card a.learn{ font-size:13px; font-weight:600; color:var(--coral); display:inline-block; margin-top:14px; }

.example-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:20px;
  padding:30px 26px;
}
.example-card .tag{ font-size:11.5px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--blue); margin-bottom:12px; }
.example-card h3{ font-size:17px; margin-bottom:10px; }
.example-card p{ font-size:14px; line-height:1.7; color:var(--grey); }

.build-pair{ display:flex; flex-direction:column; align-items:center; }
.build-pair .service-card, .build-pair .example-card{ width:100%; }
.build-pair .service-card{ margin-bottom:0; }
.pair-arrow{ font-size:18px; color:var(--blue); line-height:1; margin:6px 0; }
.build-pair a.learn{ margin-top:14px; }

/* ===== PROCESS ===== */
.process{ padding:72px 0; }
.process-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:28px; }
.process-card{ position:relative; padding-top:20px; }
.process-card .step-num{
  font-family:var(--head); font-weight:800; font-size:46px;
  color:transparent; -webkit-text-stroke:1.5px var(--blue-light);
  margin-bottom:18px; display:block;
}
.process-card h3{ font-size:19px; margin-bottom:12px; color:var(--dark); }
.process-card p{ font-size:14.5px; line-height:1.7; color:var(--grey); }
.process-card::after{
  content:"";
  position:absolute; top:24px; left:-14px;
  width:8px; height:8px; border-radius:50%;
  background:var(--coral);
  display:none;
}
@media(min-width:901px){ .process-card::after{ display:block; } }

/* ===== GUARANTEES ===== */
.guarantees{ background:var(--off); padding:72px 0; }
.guarantee-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.guarantee-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:20px;
  padding:38px 32px;
}
.guarantee-card h3{ font-size:19px; margin-bottom:12px; color:var(--dark); }
.guarantee-card p{ font-size:14.5px; line-height:1.7; color:var(--grey); }

/* ===== STATS ===== */
.stats{ padding:68px 0; }
.stats-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:30px; text-align:center; }
.stat-num{ font-family:var(--head); font-size:50px; font-weight:800; color:var(--blue); }
.stat-num.coral{ color:var(--coral); }
.stat-label{ font-family:var(--head); font-weight:600; font-size:16px; margin:10px 0 8px; }
.stat-desc{ font-size:14px; color:var(--grey); line-height:1.6; max-width:280px; margin:0 auto; }

/* ===== PRICING / CONTACT PANEL WRAPPER ===== */
.pricing{ background:var(--off); padding:72px 0; }

/* ===== CASE STUDIES ===== */
.case-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:26px; }
.case-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:22px;
  padding:36px 34px;
  display:flex; flex-direction:column;
}
.case-tag{ font-size:11.5px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--blue); margin-bottom:14px; }
.case-card h3{ font-size:21px; margin-bottom:14px; }
.case-metric{ font-family:var(--head); font-size:34px; font-weight:800; color:var(--coral); margin-bottom:6px; }
.case-metric-label{ font-size:12.5px; color:var(--grey); text-transform:uppercase; letter-spacing:.06em; margin-bottom:22px; }
.case-block{ margin-bottom:14px; }
.case-block .label{ font-family:var(--head); font-size:12.5px; font-weight:700; color:var(--dark); margin-bottom:4px; }
.case-block p{ font-size:14px; line-height:1.7; color:var(--grey); }
.case-card a.visit{ margin-top:auto; padding-top:16px; font-size:13px; font-weight:600; color:var(--coral); }

/* ===== TESTIMONIALS ===== */
.testimonials{ padding:72px 0; }
.t-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.t-card{ background:var(--white); border:1px solid var(--border); border-radius:20px; padding:32px 28px; }
.t-quote{ font-size:14.5px; line-height:1.75; color:#3d3d3d; margin-bottom:24px; }
.t-name{ font-family:var(--head); font-weight:700; font-size:15px; color:var(--dark); }
.t-role{ font-size:12.5px; color:var(--grey); margin-top:2px; }

/* ===== ABOUT PAGE ===== */
.bio{ padding:20px 0 72px; }
.bio .wrap{ display:grid; grid-template-columns:.8fr 1.2fr; gap:60px; align-items:center; }
.bio-photo{ border-radius:24px; overflow:hidden; box-shadow:0 24px 50px rgba(30,30,30,.15); }
.bio-photo img{ width:100%; height:100%; object-fit:cover; }
.bio-copy h1{ font-size:clamp(30px,4vw,44px); margin-bottom:20px; }
.bio-copy p{ font-size:15.5px; line-height:1.8; color:#3d3d3d; margin-bottom:18px; }
.bio-copy p strong{ color:var(--dark); }
.credential-list{ margin-top:24px; display:flex; flex-direction:column; gap:10px; }
.credential-list li{ font-size:14px; display:flex; gap:10px; align-items:flex-start; }
.credential-list li::before{ content:"⚡"; color:var(--coral); font-size:12px; margin-top:3px; }

/* ===== LEGAL PAGES ===== */
.legal{ padding:16px 0 80px; }
.legal .wrap{ max-width:820px; }
.legal p{ font-size:15px; line-height:1.8; color:#3d3d3d; margin-bottom:16px; }
.legal h2{ font-size:21px; margin:40px 0 14px; }
.legal h2:first-of-type{ margin-top:0; }
.legal ul{ margin:0 0 16px; padding-left:22px; list-style:disc; }
.legal li{ font-size:15px; line-height:1.8; color:#3d3d3d; margin-bottom:6px; }
.legal .updated{ font-size:13px; color:var(--grey); margin-bottom:36px; }
.legal a{ color:var(--blue); font-weight:600; }

/* ===== FAQ ===== */
.faq-list{
  max-width:1040px; margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  grid-auto-flow:column;
  grid-template-rows:repeat(4,auto);
  gap:20px 28px;
}
.faq-item{ background:var(--white); border:1px solid var(--border); border-radius:16px; padding:26px 28px; }
.faq-item h3{ font-family:var(--head); font-weight:600; font-size:16px; margin-bottom:10px; }
.faq-item p{ font-size:14.5px; line-height:1.75; color:var(--grey); }

/* ===== CONTACT ===== */
.contact-panel{
  max-width:680px; margin:0 auto;
  background:var(--white);
  border:1px solid var(--border);
  border-radius:26px;
  padding:56px;
  text-align:center;
}
.contact-panel .bolt-badge{ width:56px; margin:0 auto 24px; }
.contact-panel h2{ font-size:clamp(24px,3vw,32px); margin-bottom:14px; }
.contact-panel p{ font-size:15.5px; color:var(--grey); line-height:1.7; margin-bottom:32px; }
.contact-actions{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-bottom:28px; }
.contact-alt{ font-size:13.5px; color:var(--grey); }
.contact-alt a{ color:var(--blue); font-weight:600; }

/* ===== FINAL CTA ===== */
.final-cta{
  background:var(--blue-tint);
  padding:64px 0;
  color:var(--dark);
}
.final-cta-inner{
  display:flex; align-items:center; justify-content:space-between; gap:40px;
  flex-wrap:wrap;
}
.final-cta h2{ font-size:clamp(26px,3vw,36px); max-width:520px; }
.final-cta p{ font-size:15px; color:var(--grey); margin-top:12px; max-width:480px; }
.final-cta .actions{ display:flex; gap:14px; flex-wrap:wrap; }

/* ===== FOOTER ===== */
footer{ border-top:1px solid var(--border); padding:50px 0 34px; }
.footer-top{ display:flex; justify-content:space-between; align-items:flex-start; flex-wrap:wrap; gap:40px; margin-bottom:34px; }
.footer-logo img{ height:48px; margin-bottom:14px; }
.footer-tagline{ font-size:13px; color:var(--grey); max-width:220px; }
.footer-cols{ display:flex; gap:60px; flex-wrap:wrap; }
.footer-col h4{ font-family:var(--head); font-size:13px; margin-bottom:16px; color:var(--dark); }
.footer-col ul{ display:flex; flex-direction:column; gap:10px; }
.footer-col a{ font-size:13.5px; color:var(--grey); font-weight:600; }
.footer-col a:hover{ color:var(--dark); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px; font-size:12.5px; color:var(--grey); padding-top:26px; border-top:1px solid var(--border); }
.footer-bottom a{ color:var(--grey); }
.footer-bottom a:hover{ color:var(--blue); }
.footer-legal{ display:flex; gap:18px; }

/* ===== RESPONSIVE ===== */
@media(max-width:1000px){
  .pain-grid, .process-grid, .guarantee-grid, .stats-grid, .t-grid{ grid-template-columns:repeat(2,1fr); }
  .services-grid{ grid-template-columns:repeat(2,1fr); }
  .case-grid{ grid-template-columns:1fr; }
  .hero .wrap{ grid-template-columns:1fr; }
  .hero-art{ max-width:420px; margin:0 auto; }
  .bio .wrap{ grid-template-columns:1fr; }
  .bio-photo{ max-width:360px; margin:0 auto; }
  .faq-list{ grid-template-columns:1fr; grid-auto-flow:row; grid-template-rows:none; }
}
@media(max-width:720px){
  .wrap{ padding:0 22px; }
  nav{ padding:10px 22px; }
  .logo img{ height:44px; }
  .nav-links{
    display:none;
    position:absolute; top:100%; left:0; right:0;
    background:var(--off);
    border-bottom:1px solid var(--border);
    flex-direction:column;
    align-items:flex-start;
    padding:20px 22px;
    gap:18px;
  }
  .nav-links.open{ display:flex; }
  .burger{ display:flex; }
  .hero{ padding:48px 0 40px; }
  .page-hero{ padding:40px 0 34px; }
  .pain, .process, .guarantees, .stats, .pricing, .testimonials, .credibility, .services-section{ padding:48px 0; }
  .pain-grid, .process-grid, .guarantee-grid, .stats-grid, .t-grid, .services-grid{ grid-template-columns:1fr; }
  .final-cta{ padding:44px 0; }
  .price-panel{ padding:38px 26px; }
  .contact-panel{ padding:38px 26px; }
  .footer-cols{ gap:34px; }
}
