*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
:root{
  --blue:#0038d1;
  --orange:#fd7f11;
  --navy:#0b033b;
  --white:#ffffff;
  --off:#f4f3ff;
  --light-blue:#e8eeff;
  --text:#0b033b;
  --muted:#5a5580;
  --border:rgba(11,3,59,0.1);
  --font-body:'Inter',system-ui,sans-serif;
  --font-display:'Akt',sans-serif;
}
html{scroll-behavior:smooth}
body{
  font-family:var(--font-body);font-size:1.0625rem;
  color:var(--text);background:var(--white);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
p,li,label,input,select,textarea{
  font-family:var(--font-body);
  font-size:1.0625rem;
  line-height:1.7;
  letter-spacing:0.01em;
}
h1,h2,h3,h4,.syne{font-family:var(--font-display);letter-spacing:normal}

/* NAV */
nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  display:flex;align-items:center;justify-content:space-between;
  padding:1.25rem 5%;
  background:rgba(0,56,209,0.97);
  backdrop-filter:blur(8px);
}
.nav-logo{
  display:flex;align-items:center;
  text-decoration:none;line-height:0;
  flex-shrink:0;
}
.nav-logo img{
  height:50px;width:auto;
  display:block;
  filter:brightness(0) invert(1);
}
.nav-links{display:flex;align-items:center;gap:2rem}
.nav-links a{color:rgba(255,255,255,0.75);text-decoration:none;font-size:0.9rem;font-weight:400;transition:color 0.2s}
.nav-links a:hover{color:#fff}
.nav-cta{
  background:var(--orange);color:#fff;
  padding:0.55rem 1.25rem;border-radius:4px;
  font-weight:500;font-size:0.875rem;text-decoration:none;
  transition:background 0.2s,transform 0.1s;
}
.nav-cta:hover{background:#e06c00;transform:translateY(-1px)}

/* HERO */
.hero{
  background:var(--blue);
  min-height:100vh;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  padding:8rem 5% 5rem;
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:'';position:absolute;
  top:-200px;right:-200px;
  width:600px;height:600px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.06);
}
.hero::after{
  content:'';position:absolute;
  top:-100px;right:-100px;
  width:400px;height:400px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.08);
}
.hero-tag{
  display:inline-flex;align-items:center;gap:0.5rem;
  background:rgb(212 0 0 / 35%);
  color:rgba(255,255,255,0.9);
  font-size:0.78rem;font-weight:500;letter-spacing:0.08em;text-transform:uppercase;
  padding:0.4rem 0.875rem;border-radius:100px;
  border:1px solid rgba(255,255,255,0.2);
  margin-bottom:1.5rem;
  width:fit-content;
}
.hero-tag::before{content:'';width:6px;height:6px;background:var(--orange);border-radius:50%;display:inline-block}
.hero h1{
  font-size:clamp(2.6rem,5vw,5rem);
  font-weight:800;
  color:#fff;
  line-height:1.05;
  letter-spacing:-0.03em;
  margin-bottom:1.25rem;
}
.hero h1 em{font-style:normal;color:var(--orange)}
.hero-sub{
  color:rgba(255,255,255,0.7);
  font-size:1.175rem;
  line-height:1.65;
  max-width:480px;
  margin-bottom:2rem;
}
.hero-actions{display:flex;align-items:center;gap:1rem;flex-wrap:wrap}
.btn-primary{
  background:var(--orange);color:#fff;
  padding:0.875rem 2rem;border-radius:4px;
  font-weight:600;font-size:1rem;font-family:var(--font-display);
  text-decoration:none;display:inline-flex;align-items:center;gap:0.5rem;
  transition:background 0.2s,transform 0.15s;
  border:none;cursor:pointer;
}
.btn-primary:hover{background:#e06c00;transform:translateY(-2px)}
.btn-primary::after{content:'→'}
.btn-ghost{
  color:rgba(255,255,255,0.8);font-size:0.9rem;
  text-decoration:none;font-weight:400;
  border-bottom:1px solid rgba(255,255,255,0.3);
  padding-bottom:2px;
  transition:color 0.2s,border-color 0.2s;
}
.btn-ghost:hover{color:#fff;border-color:rgba(255,255,255,0.8)}
.hero-proof{
  display:flex;align-items:center;gap:1rem;
  margin-top:2.5rem;
  padding-top:2rem;
  border-top:1px solid rgba(255,255,255,0.1);
}
.proof-avatars{display:flex}
.proof-avatars span{
  width:36px;height:36px;border-radius:50%;
  background:var(--navy);border:2px solid var(--blue);
  display:flex;align-items:center;justify-content:center;
  font-size:0.7rem;font-weight:600;color:#fff;
  margin-left:-10px;font-family:var(--font-display);
}
.proof-avatars span:first-child{margin-left:0}
.proof-text{font-size:0.82rem;color:rgba(255,255,255,0.65);line-height:1.4}
.proof-text strong{color:#fff;display:block;font-weight:500}
.hero-visual{
  position:relative;display:flex;flex-direction:column;gap:1rem;
  padding-left:3rem;
  z-index:1;
}
.stat-card{
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:12px;padding:1.25rem 1.5rem;
  backdrop-filter:blur(10px);
  animation:float 6s ease-in-out infinite;
}
.stat-card:nth-child(2){animation-delay:-2s;margin-left:2rem}
.stat-card:nth-child(3){animation-delay:-4s}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}
.stat-card .label{font-size:0.75rem;color:rgba(255,255,255,0.55);text-transform:uppercase;letter-spacing:0.06em;margin-bottom:0.5rem}
.stat-card .value{font-family:var(--font-display);font-size:1.75rem;font-weight:800;color:#fff}
.stat-card .value span{font-size:0.875rem;color:rgba(255,255,255,0.6);font-weight:400;font-family:var(--font-body)}
.stat-card .trend{font-size:0.78rem;color:#4ade80;margin-top:0.25rem}

/* LOGO BAR */
.logo-bar{
  background:var(--navy);
  padding:1.5rem 5%;
  overflow:hidden;
}
.logo-bar-inner{
  display:flex;align-items:center;gap:3rem;
  animation:scroll-logos 20s linear infinite;
  width:max-content;
}
@keyframes scroll-logos{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}
.logo-item{
  font-family:var(--font-display);font-weight:700;
  font-size:0.8rem;letter-spacing:0.1em;text-transform:uppercase;
  color:rgba(255,255,255,0.35);white-space:nowrap;
}
.logo-dot{color:var(--orange);margin:0 0.25rem}

/* PROBLEM SECTION */
.problem{
  padding:6rem 5%;
  background:var(--off);
}
.section-label{
  font-size:0.75rem;font-weight:600;letter-spacing:0.12em;text-transform:uppercase;
  color:var(--orange);margin-bottom:1rem;
}
.problem h2{
  font-size:clamp(2rem,4vw,3rem);font-weight:800;
  letter-spacing:-0.03em;line-height:1.1;
  margin-bottom:1rem;max-width:700px;
}
.problem-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1.5rem;margin-top:3.5rem;
}
.problem-card{
  background:#fff;border-radius:12px;
  padding:2rem;border:1px solid var(--border);
  position:relative;overflow:hidden;
  transition:transform 0.2s,box-shadow 0.2s;
}
.problem-card:hover{transform:translateY(-4px);box-shadow:0 20px 60px rgba(0,56,209,0.1)}
.problem-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:3px;
  background:var(--blue);
}
.problem-card.accent::before{background:var(--orange)}
.problem-card .icon{
  width:44px;height:44px;background:var(--light-blue);border-radius:8px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:1rem;font-size:1.25rem;
}
.problem-card h3{font-size:1.1rem;font-weight:700;margin-bottom:0.5rem;letter-spacing:-0.02em}
.problem-card p{font-size:1rem;color:var(--muted);line-height:1.65}

/* HOW IT WORKS */
.how{padding:6rem 5%;background:#fff}
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;margin-top:4rem;position:relative}
.steps::before{
  content:'';position:absolute;top:28px;left:calc(12.5% + 28px);right:calc(12.5% + 28px);
  height:1px;background:var(--border);z-index:0;
}
.step{text-align:center;position:relative;z-index:1}
.step-num{
  width:56px;height:56px;border-radius:50%;
  background:var(--blue);color:#fff;
  font-family:var(--font-display);font-weight:800;font-size:1.1rem;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 1.25rem;
}
.step:nth-child(2) .step-num{background:var(--orange)}
.step:nth-child(3) .step-num{background:var(--navy)}
.step:nth-child(4) .step-num{background:var(--blue)}
.step h3{font-size:1rem;font-weight:700;margin-bottom:0.5rem}
.step p{font-size:0.9375rem;color:var(--muted);line-height:1.65}

/* PRICING */
.pricing{
  padding:6rem 5%;
  background:var(--navy);
  position:relative;overflow:hidden;
}
.pricing::before{
  content:'';position:absolute;
  bottom:-300px;left:-200px;
  width:700px;height:700px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(0,56,209,0.4) 0%,transparent 70%);
}
.pricing .section-label{color:var(--orange)}
.pricing h2{
  font-size:clamp(2rem,4vw,3rem);font-weight:800;
  letter-spacing:-0.03em;line-height:1.1;
  color:#fff;margin-bottom:0.75rem;
}
.pricing-sub{color:rgba(255,255,255,0.6);font-size:1.0625rem;margin-bottom:3.5rem;max-width:500px}
.pricing-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1.5rem;position:relative;z-index:1;
}
.price-card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:16px;padding:2.5rem 2rem;
  transition:transform 0.2s;
  position:relative;
}
.price-card:hover{transform:translateY(-4px)}
.price-card.popular{
  background:var(--blue);
  border-color:rgba(255,255,255,0.25);
  transform:scale(1.02);
}
.price-card.popular:hover{transform:scale(1.02) translateY(-4px)}
.popular-badge{
  position:absolute;top:-1px;left:50%;transform:translateX(-50%);
  background:var(--orange);color:#fff;
  font-size:0.7rem;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;
  padding:0.35rem 1.25rem;border-radius:0 0 8px 8px;
  white-space:nowrap;
}
.plan-name{
  font-family:var(--font-display);font-weight:700;font-size:1rem;
  letter-spacing:0.05em;text-transform:uppercase;
  color:rgba(255,255,255,0.6);margin-bottom:1rem;
}
.plan-price{
  font-family:var(--font-display);font-weight:800;
  font-size:3.25rem;letter-spacing:-0.04em;
  color:#fff;line-height:1;margin-bottom:0.25rem;
}
.plan-price sup{font-size:1.25rem;vertical-align:super}
.plan-price sub{font-size:0.875rem;font-weight:400;color:rgba(255,255,255,0.5)}
.plan-tagline{color:rgba(255,255,255,0.55);font-size:0.9375rem;margin-bottom:2rem;padding-bottom:2rem;border-bottom:1px solid rgba(255,255,255,0.1)}
.plan-features{list-style:none;display:flex;flex-direction:column;gap:0.75rem;margin-bottom:2rem}
.plan-features li{
  display:flex;align-items:flex-start;gap:0.625rem;
  font-size:0.9375rem;color:rgba(255,255,255,0.8);line-height:1.45;
}
.plan-features li::before{
  content:'✓';
  color:var(--orange);font-weight:700;
  font-size:0.875rem;flex-shrink:0;margin-top:0.05rem;
}
.plan-features li.x::before{content:'–';color:rgba(255,255,255,0.3)}
.plan-features li.x{color:rgba(255,255,255,0.35)}
.plan-cta{
  display:block;text-align:center;
  padding:0.875rem;border-radius:6px;
  font-family:var(--font-display);font-weight:700;font-size:0.925rem;
  text-decoration:none;transition:all 0.2s;
  border:1.5px solid rgba(255,255,255,0.25);
  color:#fff;
}
.plan-cta:hover{background:rgba(255,255,255,0.1)}
.price-card.popular .plan-cta{background:var(--orange);border-color:var(--orange)}
.price-card.popular .plan-cta:hover{background:#e06c00}

/* RETAINER ADD-ON STRIP */
.retainer-strip{
  background:linear-gradient(135deg,rgba(255,255,255,0.07) 0%,rgba(253,127,17,0.1) 100%);
  border:1.5px solid rgba(253,127,17,0.3);
  border-radius:16px;
  padding:2.5rem;
  margin-top:3rem;
  position:relative;z-index:1;
  display:grid;
  grid-template-columns:1fr auto;
  gap:2rem;
  align-items:center;
  box-shadow:0 12px 40px rgba(0,0,0,0.2);
}
.retainer-strip::before{
  content:'Optional add-on';
  position:absolute;top:-0.65rem;left:1.5rem;
  background:var(--orange);color:#fff;
  font-size:0.65rem;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;
  padding:0.3rem 0.75rem;border-radius:100px;
}
.retainer-strip h3{
  font-size:1.15rem;font-weight:800;color:#fff;
  letter-spacing:-0.02em;margin-bottom:0.5rem;line-height:1.35;
}
.retainer-strip p{color:rgba(255,255,255,0.7);font-size:0.9375rem;line-height:1.65;max-width:520px}
.retainer-strip p strong{color:#fff;font-weight:600}
.retainer-options{display:flex;gap:1rem;flex-wrap:wrap;justify-content:flex-end;align-items:center}
.retainer-pill{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.18);
  border-radius:100px;
  padding:0.625rem 1.35rem;
  text-align:center;white-space:nowrap;
  transition:border-color 0.2s,background 0.2s;
}
.retainer-pill .r-price{
  font-family:var(--font-display);font-weight:800;
  color:#fff;font-size:1.1rem;display:block;
}
.retainer-pill .r-label{
  font-size:0.72rem;color:rgba(255,255,255,0.55);
  text-transform:uppercase;letter-spacing:0.06em;
}
.retainer-pill.featured{
  background:var(--orange);border-color:var(--orange);
  box-shadow:0 4px 24px rgba(253,127,17,0.35);
}
.retainer-pill.featured .r-label{color:rgba(255,255,255,0.85)}

/* RESULTS */
.results{padding:6rem 5%;background:var(--off)}
.results-grid{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center}
.results-stats{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem}
.result-stat{
  background:#fff;border-radius:12px;padding:1.75rem;
  border:1px solid var(--border);
}
.result-stat .number{
  font-family:var(--font-display);font-size:2.75rem;font-weight:800;
  color:var(--blue);letter-spacing:-0.04em;line-height:1;margin-bottom:0.25rem;
}
.result-stat .label{font-size:0.85rem;color:var(--muted);line-height:1.4}
.results-text h2{
  font-size:clamp(1.75rem,3vw,2.5rem);font-weight:800;
  letter-spacing:-0.03em;line-height:1.15;
  margin-bottom:1rem;
}
.results-text p{font-size:1.025rem;color:var(--muted);line-height:1.7;margin-bottom:1.5rem}
.result-list{list-style:none;display:flex;flex-direction:column;gap:0.75rem;margin-bottom:2rem}
.result-list li{
  display:flex;align-items:flex-start;gap:0.75rem;
  font-size:1rem;color:var(--text);line-height:1.55;
}
.result-list li::before{
  content:'';width:8px;height:8px;border-radius:50%;
  background:var(--orange);flex-shrink:0;margin-top:0.35rem;
}

/* FAQ */
.faq{padding:6rem 5%;background:#fff}
.faq-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;margin-top:3.5rem}
.faq-item{
  border:1px solid var(--border);border-radius:10px;
  padding:1.5rem;transition:border-color 0.2s;
}
.faq-item:hover{border-color:var(--blue)}
.faq-item h4{font-size:0.95rem;font-weight:700;margin-bottom:0.625rem;letter-spacing:-0.01em}
.faq-item p{font-size:0.9375rem;color:var(--muted);line-height:1.7}

/* CONTACT */
.contact{
  padding:6rem 5%;
  background:var(--blue);
  display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:start;
}
.contact-text h2{
  font-size:clamp(2rem,3.5vw,3rem);font-weight:800;
  color:#fff;letter-spacing:-0.03em;line-height:1.1;
  margin-bottom:1rem;
}
.contact-text p{color:rgba(255,255,255,0.7);font-size:1.0625rem;line-height:1.7;margin-bottom:2rem}
.contact-details{display:flex;flex-direction:column;gap:1rem}
.contact-item{
  display:flex;align-items:center;gap:0.875rem;
  color:rgba(255,255,255,0.8);font-size:0.9375rem;
}
.contact-icon{
  width:36px;height:36px;background:rgba(255,255,255,0.1);
  border-radius:8px;display:flex;align-items:center;justify-content:center;
  font-size:1rem;flex-shrink:0;
}
.contact-form{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.15);
  border-radius:16px;padding:2.5rem;
  position:relative;
}
.form-honey{
  position:absolute;left:-9999px;width:1px;height:1px;
  opacity:0;pointer-events:none;
}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.form-group{margin-bottom:1.25rem}
.form-group label{
  display:block;font-size:0.8rem;font-weight:500;
  color:rgba(255,255,255,0.65);margin-bottom:0.4rem;
  letter-spacing:0.03em;text-transform:uppercase;
}
.form-group label .req{color:var(--orange);font-weight:700}
.form-group input,
.form-group select,
.form-group textarea{
  width:100%;padding:0.75rem 1rem;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.15);
  border-radius:6px;color:#fff;font-size:1rem;
  font-family:var(--font-body);
  transition:border-color 0.2s,background 0.2s;
  outline:none;
}
.form-group input::placeholder,
.form-group textarea::placeholder{color:rgba(255,255,255,0.35)}
.form-group select option{background:var(--navy);color:#fff}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  border-color:rgba(255,255,255,0.4);
  background:rgba(255,255,255,0.12);
}
.form-group input:user-invalid,
.form-group select:user-invalid,
.form-group textarea:user-invalid{
  border-color:rgba(231,76,60,0.75);
}
.form-group textarea{min-height:100px;resize:vertical}
.form-submit{
  width:100%;padding:1rem;
  background:var(--orange);color:#fff;
  border:none;border-radius:6px;
  font-family:var(--font-display);font-weight:700;font-size:1rem;
  cursor:pointer;transition:background 0.2s,transform 0.1s;
  display:flex;align-items:center;justify-content:center;gap:0.5rem;
}
.form-submit:hover:not(:disabled){background:#e06c00;transform:translateY(-1px)}
.form-submit:disabled{opacity:0.85;cursor:wait;transform:none}
.form-submit::after{content:'→'}

/* FOOTER */
footer{
  background:var(--navy);
  padding:3rem 5% 2rem;
}
.footer-top{
  display:flex;justify-content:space-between;align-items:start;
  padding-bottom:2rem;border-bottom:1px solid rgba(255,255,255,0.08);
  margin-bottom:2rem;
}
.footer-logo{
  display:inline-block;
  margin-bottom:0.5rem;
  line-height:0;
  text-decoration:none;
}
.footer-logo img{
  height:50px;width:auto;
  display:block;
  filter:brightness(0) invert(1);
}
.footer-brand p{font-size:0.9375rem;color:rgba(255,255,255,0.4);max-width:220px;line-height:1.65}
.footer-links{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.footer-col h5{
  font-size:0.75rem;font-weight:700;letter-spacing:0.1em;
  text-transform:uppercase;color:rgba(255,255,255,0.4);
  margin-bottom:0.875rem;
}
.footer-col a{
  display:block;font-size:0.875rem;color:rgba(255,255,255,0.6);
  text-decoration:none;margin-bottom:0.5rem;
  transition:color 0.2s;
}
.footer-col a:hover{color:#fff}
.footer-bottom{
  display:flex;justify-content:space-between;align-items:center;
  font-size:0.8rem;color:rgba(255,255,255,0.35);
}

/* RESPONSIVE */
@media(max-width:900px){
  .hero{grid-template-columns:1fr;padding-top:7rem}
  .hero-visual{padding-left:0;display:grid;grid-template-columns:repeat(3,1fr);margin-top:3rem}
  .stat-card:nth-child(2){margin-left:0}
  .problem-grid{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr 1fr}
  .pricing-grid{grid-template-columns:1fr;max-width:420px;margin:0 auto}
  .price-card.popular{transform:none}
  .results-grid{grid-template-columns:1fr}
  .faq-grid{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}
  .footer-top{flex-direction:column;gap:2rem}
  .footer-links{grid-template-columns:1fr 1fr}
  .retainer-strip{
    grid-template-columns:1fr;
    gap:1.75rem;
    align-items:start;
    padding:2rem 1.5rem 1.5rem;
  }
  .retainer-options{
    justify-content:flex-start;
    width:100%;
  }
}
@media(max-width:600px){
  .nav-links{display:none}
  .hero-visual{grid-template-columns:1fr;display:flex;flex-direction:column}
  .steps{grid-template-columns:1fr}
  .steps::before{display:none}
  .form-row{grid-template-columns:1fr}
  .results-stats{grid-template-columns:1fr 1fr}
  .footer-links{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;gap:0.5rem;text-align:center}
  .retainer-strip{
    padding:2rem 1.25rem 1.25rem;
    margin-top:2rem;
    border-width:2px;
    box-shadow:0 8px 32px rgba(0,0,0,0.3);
  }
  .retainer-strip h3{font-size:1.2rem}
  .retainer-strip p{max-width:none;font-size:1rem}
  .retainer-options{
    flex-direction:column;
    align-items:stretch;
    gap:0.75rem;
  }
  .retainer-pill{
    width:100%;
    white-space:normal;
    border-radius:10px;
    padding:1rem 1.25rem;
    display:flex;
    justify-content:space-between;
    align-items:center;
    text-align:left;
  }
  .retainer-pill .r-price{
    font-size:1.2rem;
    display:block;
    flex-shrink:0;
  }
  .retainer-pill .r-label{
    text-align:right;
    font-size:0.68rem;
    line-height:1.3;
    max-width:55%;
  }
  .retainer-pill.featured{
    order:-1;
    padding:1.15rem 1.25rem;
    box-shadow:0 6px 28px rgba(253,127,17,0.4);
  }
}
