
:root {
  --navy: #0b2d4d;
  --blue: #1769aa;
  --blue-2: #2d89c8;
  --ink: #13202b;
  --muted: #5d6b78;
  --light: #f4f8fb;
  --line: #dce6ee;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(11, 45, 77, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1140px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(220,230,238,.9);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand img {
  width: 210px;
  height: auto;
  object-fit: contain;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { text-decoration: none; font-weight: 600; }
.nav-cta { background: var(--navy); color: white; padding: 11px 18px; border-radius: 10px; }
.menu-button { display: none; border: 0; background: none; font-size: 28px; }

.hero {
  padding: 90px 0 70px;
  background:
    radial-gradient(circle at 85% 20%, rgba(45,137,200,.13), transparent 32%),
    linear-gradient(180deg, #fff, #f7fbfe);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  font-weight: 800;
  color: var(--blue);
}
.hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.03;
  letter-spacing: -.055em;
  color: var(--navy);
}
.hero-copy {
  margin: 24px 0 28px;
  max-width: 700px;
  font-size: 1.14rem;
  color: var(--muted);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 10px;
  text-decoration: none;
  border: 0;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.primary { background: var(--blue); color: var(--white); box-shadow: 0 12px 25px rgba(23,105,170,.23); }
.secondary { background: white; color: var(--navy); border: 1px solid var(--line); }
.trust-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 26px; color: var(--muted); font-size: .93rem; }

.hero-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(1deg);
}
.browser-bar { padding: 14px 16px; background: #eef4f8; display: flex; gap: 7px; }
.browser-bar i { width: 9px; height: 9px; border-radius: 50%; background: #a7b9c7; }
.mock-site {
  padding: 54px 42px 58px;
  background: linear-gradient(145deg, var(--navy), #134f7f);
  color: white;
  min-height: 420px;
}
.mock-badge {
  display: inline-block;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.25);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.mock-site h2 { font-size: 2.5rem; line-height: 1.1; margin: 28px 0 18px; }
.mock-site p { color: rgba(255,255,255,.78); }
.mock-site a { display: inline-block; margin-top: 20px; color: white; font-weight: 800; }

.stats-strip { background: var(--navy); color: white; }
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.stats-grid div { padding: 26px 28px; border-right: 1px solid rgba(255,255,255,.13); }
.stats-grid div:last-child { border-right: 0; }
.stats-grid strong, .stats-grid span { display: block; }
.stats-grid span { color: rgba(255,255,255,.7); font-size: .9rem; margin-top: 3px; }

.section { padding: 95px 0; }
.alt { background: var(--light); }
.section-title {
  margin: 0 0 40px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -.04em;
}
.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(11,45,77,.06);
}
.icon { color: var(--blue); font-weight: 800; margin-bottom: 28px; }
.service-card h3 { color: var(--navy); font-size: 1.4rem; }
.service-card p { color: var(--muted); }
.service-card ul { padding-left: 18px; color: var(--muted); }

.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.step {
  background: white;
  padding: 28px;
  border-radius: 15px;
  border: 1px solid var(--line);
}
.step span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e9f4fb;
  color: var(--blue);
  font-weight: 800;
}
.step h3 { color: var(--navy); }
.step p { color: var(--muted); }

.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; }
.about-copy { font-size: 1.08rem; color: var(--muted); }

.cta-band { padding: 65px 0; background: linear-gradient(135deg, var(--blue), var(--navy)); color: white; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-inner h2 { margin: 0; max-width: 720px; font-size: clamp(2rem,4vw,3.2rem); line-height: 1.08; }
.light { color: rgba(255,255,255,.72); }
.light-button { background: white; color: var(--navy); white-space: nowrap; }

.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: start; }
.contact-grid > div > p { color: var(--muted); }
.contact-details { display: grid; gap: 8px; margin-top: 30px; }
.contact-details a { color: var(--blue); font-weight: 800; text-decoration: none; }
.contact-form {
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form label { display: grid; gap: 7px; font-weight: 700; font-size: .93rem; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  border: 1px solid #cfdce6;
  background: white;
  border-radius: 9px;
  padding: 13px 14px;
  font: inherit;
}
.full { grid-column: 1 / -1; }
.form-note { margin: 0; color: var(--muted); font-size: .82rem; }

footer { background: #091f35; color: rgba(255,255,255,.75); padding: 30px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; }
.footer-grid > a { justify-self: end; color: white; text-decoration: none; }
.footer-brand { color: white; }
.footer-brand img { width: 180px; height: auto; }

@media (max-width: 900px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-grid > a { justify-self: center; }
  .footer-brand { justify-content: center; }
}
@media (max-width: 700px) {
  .nav-links {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 72px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 18px;
    flex-direction: column;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .menu-button { display: block; }
  .hero { padding-top: 60px; }
  .mock-site { min-height: auto; padding: 40px 28px; }
  .mock-site h2 { font-size: 2rem; }
  .steps { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form label { grid-column: 1; }
}


.pricing-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .82rem;
}

@media (max-width: 700px) {
  .brand img { width: 170px; }
  }


/* Polished Brevo contact form */
.brevo-form-wrap {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  overflow: visible;
  box-shadow: 0 14px 38px rgba(11,45,77,.08);
}

.brevo-form-wrap .sib-form {
  padding: 0 !important;
  background: transparent !important;
  text-align: left !important;
}

.brevo-form-wrap .sib-form-container,
.brevo-form-wrap #sib-container,
.brevo-form-wrap .sib-form-message-panel {
  width: 100% !important;
  max-width: 100% !important;
}

.brevo-form-wrap #sib-container {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-align: left !important;
}

.brevo-form-wrap .sib-form-block {
  padding: 8px 0 !important;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif !important;
}

.brevo-form-wrap .sib-form-block p {
  margin: 0;
  color: var(--navy);
}

.brevo-form-wrap .entry__label,
.brevo-form-wrap .entry__choice span,
.brevo-form-wrap .entry__specification {
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif !important;
}

.brevo-form-wrap .entry__label {
  color: var(--navy) !important;
  font-size: .95rem !important;
  font-weight: 700 !important;
  margin-bottom: 7px !important;
}

.brevo-form-wrap .entry__field {
  border: 1px solid #cfdce6 !important;
  border-radius: 10px !important;
  background: var(--white) !important;
  box-shadow: none !important;
}

.brevo-form-wrap input.input,
.brevo-form-wrap textarea.input,
.brevo-form-wrap select.input {
  width: 100% !important;
  min-height: 50px !important;
  padding: 13px 14px !important;
  border: 0 !important;
  border-radius: 10px !important;
  background: transparent !important;
  color: var(--ink) !important;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif !important;
  font-size: 1rem !important;
}

.brevo-form-wrap textarea.input {
  min-height: 150px !important;
  resize: vertical;
}

.brevo-form-wrap .entry__field:focus-within {
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 3px rgba(23,105,170,.12) !important;
}

.brevo-form-wrap .sib-sms-input {
  gap: 8px;
}

.brevo-form-wrap .sib-sms-input .entry__field:first-child {
  flex: 0 0 105px;
}

.brevo-form-wrap .entry__choice {
  margin: 9px 0 !important;
}

.brevo-form-wrap .entry__choice label {
  display: flex !important;
  align-items: center;
  gap: 9px;
  cursor: pointer;
}

.brevo-form-wrap .entry__specification {
  color: var(--muted) !important;
  font-size: .82rem !important;
}

.brevo-form-wrap .sib-form-block__button {
  display: inline-flex !important;
  width: 100% !important;
  min-height: 52px !important;
  align-items: center;
  justify-content: center;
  padding: 0 22px !important;
  border-radius: 10px !important;
  background: var(--blue) !important;
  color: var(--white) !important;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  text-align: center !important;
  box-shadow: 0 12px 25px rgba(23,105,170,.23);
  cursor: pointer;
}

.brevo-form-wrap .sib-form-block__button:hover {
  filter: brightness(.94);
}

.brevo-form-wrap .sib-form-message-panel {
  margin-bottom: 18px !important;
  border-radius: 10px !important;
}

@media (max-width: 700px) {
  .brevo-form-wrap {
    padding: 20px;
  }

  .brevo-form-wrap .sib-sms-input {
    align-items: stretch;
  }
}


/* Cleaner spacing for Brevo service radio options */
.brevo-form-wrap .sib-radiobutton-group .entry__choice {
  margin: 12px 0 !important;
}

.brevo-form-wrap .sib-radiobutton-group .entry__choice label {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  width: fit-content;
  cursor: pointer;
}

.brevo-form-wrap .sib-radiobutton-group .input_replaced {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none;
}

.brevo-form-wrap .sib-radiobutton-group .radio-button {
  display: inline-block !important;
  flex: 0 0 20px !important;
  width: 20px !important;
  height: 20px !important;
  margin: 0 !important;
  border: 2px solid #9fb2c3 !important;
  border-radius: 50% !important;
  background: #fff !important;
  box-sizing: border-box !important;
}

.brevo-form-wrap .sib-radiobutton-group .input_replaced:checked + .radio-button {
  border-color: var(--blue) !important;
  box-shadow: inset 0 0 0 4px #fff !important;
  background: var(--blue) !important;
}

.brevo-form-wrap .sib-radiobutton-group .radio-button + span {
  display: inline-block !important;
  line-height: 1.4 !important;
  margin: 0 !important;
}
