:root {
  --bg: #081017;
  --bg-soft: #0d1822;
  --surface: #ffffff;
  --surface-soft: #f5f8fb;
  --text: #12202c;
  --text-light: #e8f1f7;
  --muted: #5c6b77;
  --line: #dfe6ed;
  --brand: #179de8;
  --brand-deep: #0d6aa1;
  --brand-soft: rgba(23, 157, 232, 0.12);
  --accent: #0f141a;
  --success: #19c37d;
  --shadow: 0 24px 70px rgba(8, 16, 23, 0.12);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f7fbfe 0%, #ffffff 35%, #f8fafc 100%);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3, h4 { margin: 0 0 1rem; line-height: 1.1; letter-spacing: -0.03em; }
h1 { font-size: clamp(2.75rem, 5vw, 4.7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.35rem; }
ul { margin: 0; padding-left: 1.25rem; }

.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }
.section { padding: 5.5rem 0; position: relative; }
.section-alt { background: linear-gradient(180deg, #f3f8fc 0%, #ffffff 100%); }
.section-accent {
  background: linear-gradient(135deg, #0a1620 0%, #102536 45%, #0b1722 100%);
  color: var(--text-light);
}
.narrow { max-width: 780px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  padding: .45rem .85rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow.light { background: rgba(255,255,255,.12); color: #dff4ff; }
.announcement-bar {
  background: #0c1720;
  color: #d7e6f0;
  text-align: center;
  padding: .7rem 1rem;
  font-size: .94rem;
}
.announcement-bar p { margin: 0; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.86);
  border-bottom: 1px solid rgba(18, 32, 44, 0.08);
  backdrop-filter: blur(18px);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .9rem;
  min-width: 0;
}
.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: contain;
}
.brand-name {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
}
.brand-subtitle {
  display: block;
  color: var(--muted);
  font-size: .88rem;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-weight: 600;
}
.site-nav a:not(.btn) { color: #364451; }
.site-nav a:not(.btn):hover { color: var(--brand-deep); }
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: .35rem;
}
.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--text);
  border-radius: 99px;
  margin: 4px 0;
}

.hero {
  overflow: hidden;
  padding-top: 4.6rem;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(22px);
  z-index: -1;
}
.hero::before {
  width: 460px;
  height: 460px;
  top: -160px;
  right: -100px;
  background: radial-gradient(circle, rgba(23,157,232,.28) 0%, rgba(23,157,232,0) 70%);
}
.hero::after {
  width: 420px;
  height: 420px;
  left: -180px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(12, 23, 32, .1) 0%, rgba(12, 23, 32, 0) 70%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 2rem;
  align-items: center;
}
.hero-lead {
  font-size: clamp(1.1rem, 2vw, 1.34rem);
  max-width: 760px;
  color: #34424d;
}
.hero-points {
  display: grid;
  gap: .9rem;
  margin: 1.7rem 0 2rem;
}
.hero-points div {
  position: relative;
  padding-left: 1.5rem;
  font-weight: 600;
}
.hero-points div::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62rem;
  width: .65rem;
  height: .65rem;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 6px var(--brand-soft);
}
.hero-actions,
.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.trust-mini {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  color: var(--muted);
  font-size: .95rem;
}
.card {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(23, 44, 64, .08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card {
  display: grid;
  gap: 1rem;
}
.badge-card,
.stat-card {
  padding: 1.6rem;
}
.small-label {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  color: var(--brand-deep);
  margin-bottom: .85rem;
}
.badge-card ul {
  display: grid;
  gap: .8rem;
  color: #34424d;
}
.stat-card h2 { font-size: 1.55rem; }
.stat-price {
  display: inline-flex;
  margin-top: .5rem;
  padding: .45rem .8rem;
  border-radius: 999px;
  background: #0d1822;
  color: white;
  font-weight: 800;
}
.section-heading { margin-bottom: 2.4rem; }
.section-heading p { color: #435360; font-size: 1.06rem; }
.pain-grid,
.service-grid,
.proof-grid,
.testimonial-grid {
  display: grid;
  gap: 1.2rem;
}
.pain-grid,
.service-grid,
.proof-grid,
.testimonial-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.info-card,
.service-card,
.proof-card,
.testimonial-card,
.pricing-card,
.form-panel,
.industry-panel,
.process-box {
  background: var(--surface);
  border: 1px solid rgba(18,32,44,.08);
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(14, 28, 38, 0.06);
}
.info-card,
.service-card,
.proof-card,
.testimonial-card {
  padding: 1.5rem;
}
.info-card p,
.service-card p,
.proof-card p,
.testimonial-card p { color: #4a5965; }
.service-card {
  position: relative;
  overflow: hidden;
}
.service-number {
  display: inline-flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-weight: 800;
  margin-bottom: 1rem;
}
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 2rem;
  align-items: start;
}
.fit-points {
  display: grid;
  gap: 1rem;
}
.fit-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.industry-panel { padding: 1.6rem; }
.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.industry-list span,
.pricing-tag {
  display: inline-flex;
  padding: .55rem .85rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-weight: 700;
  font-size: .88rem;
}
.warning-box {
  padding: 1.2rem;
  background: #f5f8fb;
  border-radius: 18px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}
.pricing-card {
  padding: 1.7rem;
  display: flex;
  flex-direction: column;
}
.pricing-card .price {
  font-size: 2rem;
  font-weight: 800;
  margin: .4rem 0 .9rem;
}
.pricing-card ul {
  margin: 0 0 1.6rem;
  color: #465664;
  display: grid;
  gap: .65rem;
}
.pricing-card.featured {
  border: 2px solid rgba(23, 157, 232, .35);
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(23,157,232,.16);
}
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta-band h2 { max-width: 720px; }
.process-box { padding: 1.7rem; margin-top: 2rem; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.process-grid div {
  padding: 1rem;
  background: var(--surface-soft);
  border-radius: 18px;
}
.process-grid span {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0d1822;
  color: white;
  font-weight: 800;
  margin-bottom: .85rem;
}
.disclosure { font-size: .96rem; color: #63727d; }
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.testimonial-card footer {
  color: var(--brand-deep);
  font-weight: 700;
  font-size: .95rem;
}
.faq-wrap { display: grid; gap: 1rem; }
.faq-list {
  display: grid;
  gap: .9rem;
}
.faq-list details {
  background: white;
  border: 1px solid rgba(18,32,44,.08);
  border-radius: 18px;
  padding: 1.1rem 1.2rem;
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  padding-right: 1.4rem;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--brand-deep);
  font-size: 1.2rem;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p {
  margin-top: .85rem;
  color: #4a5965;
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
  gap: 2rem;
}
.contact-cards {
  display: grid;
  gap: .9rem;
  margin: 1.5rem 0;
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: white;
  border: 1px solid rgba(18,32,44,.08);
}
.contact-card span { color: var(--muted); font-size: .94rem; }
.contact-card strong { font-size: 1.05rem; }
.address-box {
  padding: 1.2rem;
  background: #0d1822;
  color: var(--text-light);
  border-radius: 20px;
}
.form-panel { padding: 1.6rem; }
.form-row { display: grid; gap: .45rem; margin-bottom: 1rem; }
.form-row.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
label { font-weight: 700; font-size: .96rem; }
input,
select,
textarea {
  width: 100%;
  font: inherit;
  padding: .95rem 1rem;
  border: 1px solid #d4dde5;
  border-radius: 14px;
  background: #fbfdff;
  color: var(--text);
}
input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(23,157,232,.12);
}
.form-note { color: var(--muted); font-size: .92rem; margin-top: .9rem; }
.hidden-field { display: none; }
.site-footer {
  background: #0b1620;
  color: #dbe8f2;
  padding: 3.2rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .8fr;
  gap: 2rem;
}
.footer-brand { margin-bottom: 1rem; }
.site-footer h3 { font-size: 1.05rem; }
.site-footer ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: .55rem;
}
.site-footer a:hover { color: #8bd6ff; }
.footer-bottom {
  border-top: 1px solid rgba(219, 232, 242, 0.12);
  margin-top: 2rem;
  padding-top: 1.4rem;
  color: #96a7b7;
  font-size: .95rem;
}
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--success);
  color: white;
  box-shadow: 0 20px 40px rgba(25, 195, 125, 0.3);
  z-index: 30;
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 50px rgba(25, 195, 125, 0.38);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: currentColor; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 52px;
  padding: .95rem 1.3rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-block { width: 100%; }
.btn-sm { min-height: 44px; padding: .72rem 1rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, #0d79ba 100%);
  color: white;
  box-shadow: 0 14px 30px rgba(23,157,232,.22);
}
.btn-secondary {
  background: white;
  border: 1px solid rgba(18,32,44,.12);
  color: var(--text);
}
.btn-outline {
  background: transparent;
  border: 1px solid rgba(18,32,44,.14);
}
.btn-light {
  background: white;
  color: #0b1722;
}
.btn-ghost-light {
  border: 1px solid rgba(255,255,255,.22);
  color: white;
}
.thank-you-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #f3f8fc 0%, #ffffff 100%);
}
.thank-you-wrap { width: min(100% - 2rem, 720px); }
.thank-you-card {
  padding: 2rem;
  text-align: center;
}
.thank-you-logo {
  width: 84px;
  margin: 0 auto 1rem;
}
.center-actions { justify-content: center; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.fade-up,
.fade-up-delay {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up-delay { transition-delay: .12s; }
.fade-up.visible,
.fade-up-delay.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .two-column,
  .contact-grid,
  .footer-grid,
  .pain-grid,
  .service-grid,
  .proof-grid,
  .testimonial-grid,
  .pricing-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-grid,
  .two-column,
  .contact-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 760px) {
  .section { padding: 4.2rem 0; }
  h1 { font-size: 2.55rem; }
  h2 { font-size: 1.95rem; }
  .nav-toggle { display: inline-block; }
  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + .6rem);
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(18,32,44,.08);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.is-open { display: flex; }
  .site-nav .btn { width: 100%; }
  .pain-grid,
  .service-grid,
  .proof-grid,
  .testimonial-grid,
  .pricing-grid,
  .process-grid,
  .footer-grid,
  .form-row.two-up { grid-template-columns: 1fr; }
  .fit-item { grid-template-columns: 1fr; gap: .35rem; }
  .whatsapp-float {
    width: 58px;
    height: 58px;
    right: 14px;
    bottom: 14px;
  }
}
