:root {
  --bg: #f5f7fa;
  --surface: #ffffff;
  --surface-soft: #f0f6fb;
  --ink: #111827;
  --muted: #64748b;
  --muted-2: #94a3b8;
  --line: rgba(15, 23, 42, 0.1);
  --brand: #1997e8;
  --brand-dark: #0b72b4;
  --brand-soft: #e3f4ff;
  --navy: #0d1b2a;
  --green: #16a34a;
  --amber: #f59e0b;
  --red: #dc2626;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow-soft: 0 20px 60px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 14px 35px rgba(15, 23, 42, 0.08);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  min-height: 100vh;
  overflow-x: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 247, 250, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.header-inner {
  width: min(var(--container), calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-name {
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-sub {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--brand-dark);
  background: var(--brand-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 14px 30px rgba(25, 151, 232, 0.3);
}

.button-primary:hover {
  background: var(--brand-dark);
}

.button-ghost {
  color: #0f172a;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
}

.button-dark {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 14px 30px rgba(13, 27, 42, 0.24);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 690px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.88), rgba(7, 17, 31, 0.58), rgba(7, 17, 31, 0.24)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  z-index: -1;
  background: linear-gradient(0deg, var(--bg), rgba(245, 247, 250, 0));
}

.hero-inner {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 116px 0 190px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 800;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero-lead {
  max-width: 670px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(var(--container), calc(100% - 40px));
  margin: -118px auto 0;
  position: relative;
  z-index: 4;
}

.proof-card {
  min-height: 112px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
}

.proof-card strong {
  display: block;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
}

.proof-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.section {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 78px 0 0;
}

.section-tight {
  padding-top: 48px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section h2 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.section-desc {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.audience-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(4, 14, 26, 0.28), rgba(4, 14, 26, 0.78)),
    var(--card-image);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.audience-card:hover {
  transform: translateY(-3px);
  transition: transform 0.2s ease;
}

.audience-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.audience-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.45;
}

.audience-link {
  width: max-content;
  margin-top: 22px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #0f172a;
  background: #fff;
  font-size: 13px;
  font-weight: 850;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.offer-card,
.step-card,
.faq-card,
.stat-card {
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  color: var(--brand-dark);
  background: var(--brand-soft);
  font-weight: 900;
}

.feature-card h3,
.offer-card h3,
.step-card h3,
.faq-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.feature-card p,
.offer-card p,
.step-card p,
.faq-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 18px;
  align-items: stretch;
}

.image-panel {
  min-height: 430px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(6, 18, 33, 0.08), rgba(6, 18, 33, 0.48)),
    var(--panel-image);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
}

.text-panel {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.text-panel h2 {
  font-size: clamp(30px, 3vw, 44px);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #334155;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--brand-soft);
}

.check-list li::after {
  content: "✓";
  position: absolute;
  left: 6px;
  top: 2px;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 900;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--brand);
  font-weight: 900;
}

.page-hero {
  position: relative;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.88), rgba(7, 17, 31, 0.58), rgba(7, 17, 31, 0.16)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.page-hero-inner {
  width: min(var(--container), calc(100% - 40px));
  min-height: 530px;
  margin: 0 auto;
  padding: 96px 0 110px;
  display: flex;
  align-items: center;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 21px;
  line-height: 1.45;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb a {
  color: #fff;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: -54px;
  position: relative;
  z-index: 4;
}

.stat-card strong {
  display: block;
  color: var(--brand-dark);
  font-size: 30px;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.offer-card.accent {
  color: #fff;
  background: linear-gradient(135deg, #0b72b4, #1997e8);
}

.offer-card.accent p {
  color: rgba(255, 255, 255, 0.86);
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.comparison-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.comparison-card h3 {
  margin: 0 0 16px;
  font-size: 22px;
}

.comparison-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.5;
}

.cta-band {
  width: min(var(--container), calc(100% - 40px));
  margin: 82px auto 0;
  padding: 42px;
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    linear-gradient(100deg, rgba(7, 17, 31, 0.9), rgba(10, 81, 132, 0.82)),
    var(--cta-image);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
}

.cta-band h2 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.cta-band p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.5;
}

.contact-section {
  width: min(var(--container), calc(100% - 40px));
  margin: 22px auto 0;
  padding: 42px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
}

.contact-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.contact-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.contact-points {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-points span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #334155;
  font-weight: 750;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  padding: 20px 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.contact-details-label {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-details-link {
  color: var(--ink);
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
}

.contact-details-link:hover {
  color: #0f766e;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
}

.contact-modal-panel {
  position: relative;
  width: min(480px, 100%);
  padding: 32px 28px 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.contact-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  color: #64748b;
  font-size: 28px;
  line-height: 1;
  background: #f1f5f9;
  cursor: pointer;
}

.contact-modal-close:hover {
  background: #e2e8f0;
  color: var(--ink);
}

.contact-modal-kicker {
  margin: 0;
  color: #0f766e;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-modal-panel h2 {
  margin: 10px 0 0;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.contact-modal-copy {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.contact-details-modal {
  margin-top: 22px;
}

body.contact-modal-open {
  overflow: hidden;
}

.lead-form {
  display: grid;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: #334155;
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid rgba(15, 23, 42, 0.13);
  border-radius: 16px;
  color: var(--ink);
  background: #f8fafc;
  font-family: inherit;
  font-size: 15px;
  outline: none;
}

.field textarea {
  min-height: 116px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(25, 151, 232, 0.7);
  box-shadow: 0 0 0 4px rgba(25, 151, 232, 0.12);
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.form-status {
  display: none;
  color: var(--green);
  font-weight: 800;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  color: #c0392b;
}

.site-footer {
  width: min(var(--container), calc(100% - 40px));
  margin: 42px auto 0;
  padding: 28px 0 44px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a:hover {
  color: var(--brand-dark);
}

@media (max-width: 1180px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 14px 0;
    align-items: stretch;
  }

  .brand {
    order: 1;
    width: 100%;
  }

  .header-actions {
    order: 2;
    width: 100%;
  }

  .main-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .hero-proof,
  .stat-row,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .header-inner,
  .section,
  .hero-inner,
  .hero-proof,
  .page-hero-inner,
  .stat-row,
  .cta-band,
  .contact-section,
  .site-footer {
    width: min(100% - 24px, var(--container));
  }

  .header-actions .button {
    flex: 1;
  }

  .hero {
    min-height: 680px;
  }

  .hero-inner {
    padding-top: 72px;
  }

  .hero-proof,
  .audience-grid,
  .feature-grid,
  .split,
  .steps,
  .stat-row,
  .offer-grid,
  .comparison,
  .contact-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .section-head,
  .site-footer {
    display: grid;
  }

  .contact-section,
  .cta-band {
    padding: 26px;
  }
}
