﻿:root {
  --ink: #14201a;
  --muted: #5c6b63;
  --line: #dfe6e2;
  --paper: #f7f9f8;
  --white: #fff;
  --teal: #0f766e;
  --green: #178642;
  --blue: #2563eb;
  --red: #c73535;
  --gold: #c48416;
  --shadow: 0 18px 42px rgba(20, 32, 26, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 12px clamp(18px, 4vw, 64px);
  background: rgba(247, 249, 248, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: max-content;
}

.brand span {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--teal);
  font-weight: 900;
}

.brand strong { font-size: 18px; }

nav {
  display: flex;
  gap: 18px;
  margin-left: auto;
  color: var(--muted);
  font-size: 15px;
}

nav a, .header-cta { text-decoration: none; font-weight: 700; }
.header-cta {
  color: #fff;
  background: var(--teal);
  padding: 9px 15px;
  border-radius: 8px;
}

.hero {
  position: relative;
  min-height: 410px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #15241d;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .34;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 27, 22, .94), rgba(12, 27, 22, .72), rgba(12, 27, 22, .28));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 46px clamp(18px, 5vw, 78px) 44px;
  color: #fff;
}

.eyebrow, .section-kicker {
  margin: 0 0 12px;
  color: #55d6a2;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 13px;
}

.hero h1 {
  margin: 0;
  max-width: 640px;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.08;
}

.lead {
  max-width: 570px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.9);
  font-size: 16px;
}

.hero-actions, .trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
}

.btn.primary { background: var(--teal); color: #fff; }
.btn.light { background: #fff; color: var(--ink); }

.trust-row span {
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 8px;
  padding: 8px 12px;
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.1);
}

.section {
  padding: 62px clamp(18px, 5vw, 78px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 560px);
  gap: 32px;
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1.08;
}

h3 { margin: 0 0 10px; font-size: 22px; }
p { color: var(--muted); }

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

.feature-grid article, .package-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(20, 32, 26, .05);
}

.feature-grid article span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  margin-bottom: 18px;
  color: #fff;
  background: var(--teal);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: 34px;
  align-items: center;
  background: #eef7f4;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.screen-image {
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.check-list, .package-grid ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li, .package-grid li {
  padding-left: 28px;
  position: relative;
  color: var(--muted);
}

.check-list li::before, .package-grid li::before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 4px;
  border-radius: 50%;
  background: var(--green);
}

.section-heading { max-width: 760px; margin-bottom: 24px; }
.package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
}

.package-grid article { display: grid; gap: 10px; }
.package-grid .featured { border-color: var(--teal); box-shadow: var(--shadow); }
.price { font-size: 30px; color: var(--ink); font-weight: 900; margin: 0; }
.package-grid a { color: var(--teal); font-weight: 900; text-decoration: none; }

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, .72fr);
  gap: 34px;
  align-items: start;
}

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

.contact-notes span {
  border-left: 4px solid var(--teal);
  background: #fff;
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--muted);
}
.contact-notes strong { color: var(--ink); margin-right: 8px; }
.contact-notes a { color: var(--teal); font-weight: 900; text-decoration: none; }

.lead-form {
  display: grid;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 800;
}

.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  font: inherit;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding: 24px clamp(18px, 5vw, 78px);
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
}

.site-footer strong { color: var(--ink); }
.site-footer a { margin-left: auto; color: var(--teal); font-weight: 900; text-decoration: none; }

.thanks-page { min-height: 100vh; display: grid; align-content: center; max-width: 760px; }
.thanks-page h1 { font-size: clamp(34px, 4vw, 52px); margin: 0; }
.thanks-actions .btn.light { border-color: var(--line); }

@media (max-width: 960px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  nav { margin-left: 0; flex-wrap: wrap; }
  .header-cta { position: absolute; right: 18px; top: 14px; }
  .hero { min-height: 430px; }
  .intro, .split, .contact-section { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .site-header nav { display: none; }
  .header-cta { position: static; }
  .hero { min-height: 390px; }
  .hero-content { padding-top: 38px; padding-bottom: 38px; }
  .hero-actions .btn { width: 100%; }
  .trust-row span { width: calc(50% - 6px); text-align: center; }
  .feature-grid, .package-grid { grid-template-columns: 1fr; }
  .site-footer a { margin-left: 0; }
}
