:root {
  --navy: #152641;
  --navy-deep: #0e1f3b;
  --blue: #026bfd;
  --purple: #7120fc;
  --orange: #fd613a;
  --ink: #101828;
  --muted: #667085;
  --line: #e6e9ef;
  --soft: #f6f8fc;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(16, 24, 40, 0.12);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container { width: min(calc(100% - 36px), var(--max)); margin: 0 auto; }
.section { padding: 84px 0; }
.section-sm { padding: 54px 0; }
.bg-soft { background: var(--soft); }
.bg-navy { background: linear-gradient(135deg, var(--navy-deep), var(--navy)); color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(2, 107, 253, 0.09);
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow.hot { background: rgba(253, 97, 58, .12); color: #d94720; }

h1, h2, h3 { line-height: 1.08; margin: 0 0 18px; letter-spacing: -0.03em; }
h1 { font-size: clamp(2.55rem, 7vw, 5.65rem); }
h2 { font-size: clamp(2rem, 4.8vw, 3.8rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
p { margin: 0 0 18px; }
.lead { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--muted); max-width: 720px; }
.muted { color: var(--muted); }
.small { font-size: .91rem; }

.gradient-text {
  background: linear-gradient(90deg, var(--blue), var(--purple), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(230,233,239,.8);
}
.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; color: var(--navy); }
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand span { line-height: 1.02; }
.brand small { display: block; color: var(--muted); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 24px; font-weight: 700; font-size: .94rem; }
.nav-links a:hover { color: var(--blue); }
.nav-toggle { display: none; border: 0; background: transparent; font-size: 1.7rem; cursor: pointer; color: var(--navy); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(16,24,40,.12); }
.btn-primary { color: var(--white); background: linear-gradient(90deg, var(--blue), var(--purple)); }
.btn-orange { color: var(--white); background: var(--orange); }
.btn-ghost { color: var(--navy); border-color: #d7deea; background: var(--white); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-block { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 70px;
  background:
    radial-gradient(circle at 85% 18%, rgba(113,32,252,.16), transparent 30%),
    radial-gradient(circle at 15% 75%, rgba(2,107,253,.13), transparent 27%),
    linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  right: -220px;
  bottom: -220px;
  background: rgba(253,97,58,.10);
  filter: blur(2px);
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 54px; align-items: center; }
.hero h1 { color: var(--navy); max-width: 820px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 20px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 12px 18px; color: var(--muted); font-weight: 700; font-size: .92rem; }
.hero-proof span::before { content: "✓"; color: var(--blue); margin-right: 7px; font-weight: 900; }

.hero-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.hero-card img { border-radius: 20px; }
.offer-strip {
  margin-top: 18px;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: linear-gradient(90deg, rgba(2,107,253,.08), rgba(113,32,252,.08));
  border: 1px solid rgba(113,32,252,.12);
}
.offer-strip strong { display: block; color: var(--navy); font-size: 1.06rem; }

.stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 30px; }
.stat { padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,255,255,.88); }
.stat b { display: block; font-size: 1.45rem; color: var(--navy); }
.stat span { color: var(--muted); font-size: .87rem; }

.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.card {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 8px 28px rgba(16,24,40,.055);
}
.card .icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 1.35rem;
  background: linear-gradient(135deg, rgba(2,107,253,.12), rgba(113,32,252,.12));
}

.steps { counter-reset: step; }
.step { position: relative; padding-left: 70px; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: var(--white);
  font-weight: 900;
}

.plan-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: stretch; }
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 30px;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(16,24,40,.06);
}
.plan.featured { border: 2px solid var(--purple); transform: translateY(-8px); box-shadow: var(--shadow); }
.plan-badge { position: absolute; top: -13px; right: 20px; padding: 7px 12px; border-radius: 999px; background: var(--orange); color: white; font-size: .75rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.price { display: flex; align-items: flex-end; gap: 8px; margin: 8px 0 18px; }
.price strong { font-size: 2.8rem; line-height: 1; color: var(--navy); }
.price span { color: var(--muted); padding-bottom: 5px; }
.feature-list { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.feature-list li { position: relative; padding: 8px 0 8px 28px; color: #344054; }
.feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 900; }

.funnel-cta {
  border-radius: 30px;
  padding: 44px;
  background: linear-gradient(120deg, var(--navy-deep), #18355d 55%, #2d246d);
  color: var(--white);
  overflow: hidden;
  position: relative;
}
.funnel-cta::after { content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%; background: rgba(253,97,58,.16); right: -60px; top: -70px; }
.funnel-cta p { color: rgba(255,255,255,.78); max-width: 760px; }

.page-hero { padding: 72px 0 54px; background: linear-gradient(180deg,#fff,#f7f9fd); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); color: var(--navy); }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 34px; align-items: start; }
.contact-card { background: var(--navy); color: var(--white); border-radius: var(--radius); padding: 30px; }
.contact-card a { color: #b8d4ff; font-weight: 800; }
.contact-card p { color: rgba(255,255,255,.78); }
.form-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; background: var(--white); box-shadow: 0 10px 34px rgba(16,24,40,.06); }
.form-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.field { margin-bottom: 16px; }
label { display: block; margin-bottom: 7px; font-weight: 800; color: #344054; }
input, textarea, select {
  width: 100%;
  border: 1px solid #cfd6e2;
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(2,107,253,.09); }
textarea { min-height: 150px; resize: vertical; }
.checkbox { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: var(--muted); }
.checkbox input { width: auto; margin-top: 5px; }
.honeypot { position: absolute !important; left: -5000px !important; }

.prose { max-width: 860px; }
.prose h2 { margin-top: 38px; font-size: 1.8rem; }
.prose h3 { margin-top: 28px; font-size: 1.25rem; }
.prose ul { padding-left: 22px; }
.prose a { color: var(--blue); text-decoration: underline; }

.footer { background: #0b1730; color: var(--white); padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 30px; }
.footer p, .footer a { color: rgba(255,255,255,.72); }
.footer a:hover { color: var(--white); }
.footer-links { display: grid; gap: 8px; }
.footer-bottom { margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: rgba(255,255,255,.56); font-size: .86rem; }

.mobile-cta { display: none; }
.notice { padding: 14px 16px; border-radius: 12px; background: #fff8e8; border: 1px solid #f3dfac; color: #714b05; }

@media (max-width: 900px) {
  .hero-grid, .contact-grid, .grid-2 { grid-template-columns: 1fr; }
  .grid-3, .plan-grid { grid-template-columns: 1fr; }
  .plan.featured { transform: none; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    padding: 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-links .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .mobile-cta {
    display: block;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
  }
  body { padding-bottom: 74px; }
}

@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .hero { padding-top: 54px; }
  .hero-card, .card, .plan, .form-card, .contact-card { padding: 22px; }
  .funnel-cta { padding: 30px 22px; }
  .brand span { font-size: .9rem; }
}


/* Free website / website refresh promotional blocks */
.website-bonus-mini {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(253,97,58,.28);
  background: linear-gradient(105deg, rgba(253,97,58,.10), rgba(111,38,255,.08));
  color: var(--navy);
  transition: transform .18s ease, box-shadow .18s ease;
}
.website-bonus-mini:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(21,38,65,.10); }
.website-bonus-mini strong { color: var(--orange); letter-spacing: .02em; }
.website-bonus-mini span { color: var(--muted); font-size: .94rem; }

.website-offer { background: linear-gradient(135deg,#0b1730 0%,#152641 56%,#342078 100%); color:#fff; }
.website-offer h2 { color:#fff; }
.website-offer .lead { color:rgba(255,255,255,.80); }
.website-offer-grid { display:grid; grid-template-columns:1.12fr .88fr; gap:56px; align-items:center; }
.website-offer .website-list li { color:rgba(255,255,255,.88); }
.website-offer .website-list li::before { color:#fff; }
.website-offer .btn-ghost { border-color:rgba(255,255,255,.36); color:#fff; }
.website-offer .btn-ghost:hover { background:rgba(255,255,255,.10); }
.website-offer .small { color:rgba(255,255,255,.60); max-width:760px; }
.website-visual { position:relative; padding:24px 10px 32px; }
.browser-mock { border-radius:20px; background:#fff; box-shadow:0 30px 70px rgba(0,0,0,.35); overflow:hidden; transform:rotate(1.5deg); }
.browser-top { height:42px; background:#edf1f7; display:flex; gap:8px; align-items:center; padding:0 15px; }
.browser-top i { display:block; width:10px; height:10px; border-radius:50%; background:#c7cfdb; }
.browser-page { min-height:310px; padding:48px 36px; background:radial-gradient(circle at 80% 15%,rgba(111,38,255,.14),transparent 34%), linear-gradient(180deg,#fff,#f6f8fc); color:var(--navy); }
.browser-page strong { display:block; max-width:430px; font-size:clamp(1.8rem,3vw,3rem); line-height:1.03; margin:10px 0 14px; }
.browser-page p { color:var(--muted); }
.mock-label { font-size:.75rem; font-weight:900; letter-spacing:.14em; color:var(--blue); }
.mock-button { display:inline-block; margin-top:18px; padding:11px 16px; border-radius:10px; background:var(--orange); color:#fff; font-weight:900; font-size:.82rem; }
.website-stamp { position:absolute; right:-8px; bottom:2px; transform:rotate(-7deg); border-radius:50%; width:126px; height:126px; display:grid; place-items:center; text-align:center; padding:20px; background:var(--orange); color:#fff; font-weight:1000; line-height:1.05; box-shadow:0 16px 32px rgba(253,97,58,.35); border:5px solid rgba(255,255,255,.9); }
.website-bonus-banner { display:flex; justify-content:space-between; gap:30px; align-items:center; margin-bottom:38px; padding:28px 30px; border-radius:22px; background:linear-gradient(110deg,#fff3ee,#f3edff); border:1px solid rgba(111,38,255,.12); }
.website-bonus-banner h2 { font-size:clamp(1.6rem,3vw,2.4rem); margin:6px 0 8px; }
.website-bonus-banner p { margin:0; color:var(--muted); max-width:760px; }
.contact-bonus { display:grid; gap:4px; margin-top:24px; padding:16px; border-radius:14px; background:rgba(255,255,255,.09); border:1px solid rgba(255,255,255,.16); }
.contact-bonus strong { color:#ffb8a6; }
.contact-bonus span { color:rgba(255,255,255,.78); font-size:.92rem; }

@media (max-width: 900px) {
  .website-offer-grid { grid-template-columns:1fr; gap:30px; }
  .website-bonus-banner { flex-direction:column; align-items:flex-start; }
  .website-bonus-banner .btn { width:100%; }
}
