:root {
  --ink: #101616;
  --muted: #5e6c69;
  --soft: #edf5f2;
  --line: #d8e4df;
  --panel: #ffffff;
  --deep: #071112;
  --teal: #0f8f83;
  --teal-dark: #087065;
  --red: #d9212f;
  --gold: #f3ba4d;
  --navy: #102c33;
  --shadow: 0 18px 48px rgba(7, 17, 18, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f8fbfa;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(216, 228, 223, 0.9);
  box-shadow: 0 8px 30px rgba(7, 17, 18, 0.05);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.hero-stats,
.final-cta {
  display: flex;
  align-items: center;
}

.brand {
  flex: 0 0 auto;
  white-space: nowrap;
}

.brand-logo {
  width: clamp(184px, 18vw, 226px);
  height: auto;
}

.nav-links {
  gap: 24px;
  color: #2d3b38;
  font-size: 0.95rem;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--teal-dark);
}

.header-cta,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 750;
  line-height: 1.15;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  padding: 11px 18px;
  color: #ffffff;
  background: var(--deep);
}

.button {
  padding: 14px 22px;
}

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

.button.primary {
  color: #ffffff;
  background: var(--teal);
  box-shadow: 0 12px 28px rgba(15, 143, 131, 0.28);
}

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

.button.secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.button.full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: clamp(620px, calc(100vh - 92px), 700px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: var(--deep);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    radial-gradient(circle at 50% 32%, rgba(15, 143, 131, 0.2), rgba(15, 143, 131, 0) 33%),
    linear-gradient(90deg, rgba(7, 17, 18, 0.97) 0%, rgba(7, 17, 18, 0.84) 38%, rgba(7, 17, 18, 0.34) 74%, rgba(7, 17, 18, 0.68) 100%),
    linear-gradient(180deg, rgba(7, 17, 18, 0.08) 0%, rgba(7, 17, 18, 0.84) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 5vw, 72px);
  padding: 34px 0 26px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.final-cta .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(2.2rem, 4.8vw, 4.1rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
}

h3 {
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.trust-row li {
  padding: 7px 12px;
  border: 1px solid rgba(243, 186, 77, 0.32);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(243, 186, 77, 0.1);
  font-size: 0.86rem;
  font-weight: 750;
}

.hero-stats {
  flex-wrap: wrap;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
}

.hero-stats div {
  width: min(190px, 100%);
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(8px);
}

.hero-stats dt {
  font-size: 1.55rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.section {
  padding: 88px clamp(18px, 5vw, 72px);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: -1px 0 0;
  padding: 0 clamp(18px, 5vw, 72px);
  background: var(--line);
}

.proof-strip div {
  min-height: 104px;
  padding: 24px;
  background: #ffffff;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  color: var(--deep);
  font-size: 1.04rem;
}

.proof-strip span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.95rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-grid,
.pricing-grid,
.content-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

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

.feature-card,
.price-card,
.content-panel,
.process-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 26px rgba(7, 17, 18, 0.06);
}

.feature-card,
.price-card,
.content-panel,
.process-grid article,
.final-cta {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover,
.price-card:hover,
.content-panel:hover,
.process-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 143, 131, 0.32);
  box-shadow: 0 18px 42px rgba(7, 17, 18, 0.1);
}

.feature-card {
  padding: 28px;
}

.icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--teal);
  font-weight: 900;
  font-size: 0.82rem;
}

.feature-card p,
.price-card p,
.split-copy,
.faq-list p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 6vw, 88px);
  background: var(--soft);
}

.seo-content {
  background: #ffffff;
}

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

.content-panel {
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(15, 143, 131, 0.08), rgba(15, 143, 131, 0)),
    #ffffff;
}

.content-panel.accent {
  background:
    linear-gradient(180deg, rgba(217, 33, 47, 0.08), rgba(217, 33, 47, 0)),
    #ffffff;
}

.content-panel p {
  margin: 16px 0 22px;
  color: var(--muted);
}

.content-panel a {
  color: var(--teal-dark);
  font-weight: 850;
}

.split-copy p {
  margin-top: 0;
  font-size: 1.08rem;
}

.check-list,
.price-card ul {
  padding: 0;
  list-style: none;
}

.check-list {
  margin: 24px 0 0;
}

.check-list li,
.price-card li {
  position: relative;
  padding-left: 28px;
}

.check-list li + li,
.price-card li + li {
  margin-top: 12px;
}

.check-list li::before,
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.packages {
  background: #ffffff;
}

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px;
  overflow: hidden;
}

.price-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--red));
}

.plan-label {
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(15, 143, 131, 0.1);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.price-card.featured {
  border-color: rgba(15, 143, 131, 0.45);
  box-shadow: var(--shadow);
}

.badge {
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--red);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.price-card.featured .badge {
  position: absolute;
  top: 18px;
  right: 18px;
}

.price-card.featured .plan-label {
  margin-right: 96px;
}

.price-top p {
  margin: 12px 0 0;
}

.price-card ul {
  margin: 0;
  flex: 1;
}

.comparison {
  background: #f8fbfa;
}

.process {
  background: var(--soft);
}

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

.process-grid article {
  padding: 28px;
}

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--navy);
  font-weight: 900;
}

.process-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  color: #ffffff;
  background: var(--deep);
}

tr:last-child td {
  border-bottom: 0;
}

.faq {
  background: #ffffff;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 820;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.final-cta {
  justify-content: space-between;
  gap: 24px;
  margin: 0 clamp(18px, 5vw, 72px) 88px;
  padding: 34px;
  border-radius: 8px;
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 34%, rgba(243, 186, 77, 0.18), rgba(243, 186, 77, 0) 28%),
    linear-gradient(135deg, var(--deep), #0b3d39 58%, #12423c);
  box-shadow: var(--shadow);
}

.final-cta p {
  max-width: 650px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: clamp(620px, calc(100vh - 92px), 700px);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 17, 18, 0.95) 0%, rgba(7, 17, 18, 0.72) 62%, rgba(7, 17, 18, 0.5) 100%),
      linear-gradient(180deg, rgba(7, 17, 18, 0.08) 0%, rgba(7, 17, 18, 0.82) 100%);
  }

  .feature-grid,
  .pricing-grid,
  .split-section,
  .content-grid,
  .process-grid,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    padding: 0;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand-logo {
    width: 142px;
  }

  .header-cta {
    padding: 10px 14px;
  }

  .hero {
    min-height: clamp(700px, calc(100vh - 92px), 780px);
  }

  .hero-media img {
    object-position: 64% center;
  }

  .hero-content {
    width: calc(100% - 28px);
    margin-left: 14px;
    padding: 56px 0 42px;
  }

  .button {
    width: 100%;
  }

  .hero-stats div {
    width: auto;
  }

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

  .hero-stats div {
    padding: 10px 8px;
  }

  .hero-stats dt {
    font-size: 1.1rem;
  }

  .hero-stats dd {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .section {
    padding: 64px 16px;
  }

  .proof-strip div,
  .content-panel,
  .process-grid article {
    padding: 22px;
  }

  .feature-card,
  .price-card {
    padding: 22px;
  }

  .final-cta {
    align-items: stretch;
    flex-direction: column;
    margin: 0 16px 64px;
    padding: 26px;
  }

  .site-footer {
    flex-direction: column;
  }
}
