:root {
  color-scheme: light;
  --ink: #121926;
  --muted: #5b6678;
  --line: #dbe2ea;
  --paper: #ffffff;
  --soft: #f5f8fb;
  --green: #159c63;
  --green-dark: #0b6d47;
  --coral: #ff6f61;
  --blue: #2368d9;
  --shadow: 0 18px 50px rgba(18, 25, 38, .11);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(219, 226, 234, .8);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 16px clamp(20px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}

.brand {
  align-items: center;
  display: inline-flex;
  text-decoration: none;
}

.brand img {
  display: block;
  height: auto;
  max-height: 40px;
  max-width: 196px;
  object-fit: contain;
}

.nav {
  align-items: center;
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
}

.nav a:hover {
  color: var(--ink);
}

.nav .nav-cta {
  background: var(--green);
  border-radius: 8px;
  color: white;
  padding: 9px 14px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: 44px;
  min-height: auto;
  padding: clamp(22px, 3.5vw, 48px) clamp(20px, 5vw, 72px) 44px;
  position: relative;
}

.hero::after {
  background: linear-gradient(90deg, rgba(21, 156, 99, .1), rgba(255, 111, 97, .08), rgba(35, 104, 217, .08));
  bottom: 0;
  content: "";
  height: 1px;
  left: clamp(20px, 5vw, 72px);
  position: absolute;
  right: clamp(20px, 5vw, 72px);
}

.hero-copy {
  align-self: center;
  max-width: 650px;
}

.eyebrow {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  margin: 0 0 12px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(36px, 5.6vw, 72px);
}

h2 {
  font-size: clamp(30px, 4vw, 56px);
}

h3 {
  font-size: 21px;
}

.hero-lead {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  margin: 24px 0 0;
  max-width: 620px;
}

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

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

.button.primary {
  background: var(--green);
  color: #fff;
}

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

.button.secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.button.secondary:hover {
  border-color: var(--green);
}

.button.full {
  width: 100%;
}

.trust-row {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin: 38px 0 0;
}

.trust-row div {
  border-left: 3px solid var(--coral);
  padding-left: 13px;
}

.trust-row dt {
  font-size: 24px;
  font-weight: 900;
}

.trust-row dd {
  color: var(--muted);
  font-size: 13px;
  margin: 2px 0 0;
}

.hero-visual {
  align-self: center;
}

.hero-visual img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
  width: 100%;
}

.section,
.split-section,
.legal-note,
.final-cta {
  padding: clamp(52px, 8vw, 100px) clamp(20px, 5vw, 72px);
}

.intro-band,
.split-section {
  align-items: start;
  background: var(--soft);
  display: grid;
  gap: 34px;
  grid-template-columns: .9fr 1.1fr;
}

.section-text,
.split-section p,
.section-heading p {
  color: var(--muted);
  font-size: 18px;
  margin: 16px 0 0;
}

.section-heading {
  margin-bottom: 30px;
  max-width: 820px;
}

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

.feature-card,
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.feature-card {
  min-height: 230px;
}

.feature-detail-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(18, 25, 38, .06);
  margin-top: 22px;
  padding: 28px;
}

.feature-detail-box h3 {
  margin-bottom: 18px;
}

.feature-detail-list {
  display: grid;
  gap: 12px 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-detail-list li {
  color: var(--muted);
  padding-left: 28px;
  position: relative;
}

.feature-detail-list li::before {
  background: var(--green);
  border-radius: 999px;
  content: "";
  height: 9px;
  left: 3px;
  position: absolute;
  top: .62em;
  width: 9px;
}

.feature-detail-list strong {
  color: var(--ink);
}

.feature-card p,
.price-card p,
.price-card li,
.renewal-box p,
.legal-note p,
.faq p,
.steps p {
  color: var(--muted);
}

.icon {
  align-items: center;
  background: #eef9f4;
  border: 1px solid #ccebdd;
  border-radius: 8px;
  color: var(--green-dark);
  display: inline-flex;
  font-size: 20px;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  margin-bottom: 18px;
  width: 42px;
}

.check-list {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(18, 25, 38, .07);
  list-style: none;
  margin: 0;
  padding: 24px;
}

.check-list li {
  border-bottom: 1px solid var(--line);
  padding: 14px 0 14px 32px;
  position: relative;
}

.check-list li:last-child {
  border-bottom: 0;
}

.check-list li::before {
  color: var(--green);
  content: "+";
  font-weight: 900;
  left: 0;
  position: absolute;
}

.pricing-section {
  background: #fbfcfd;
}

.price-card {
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card.highlighted {
  border-color: var(--green);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.badge {
  background: var(--coral);
  border-radius: 999px;
  color: #fff !important;
  font-size: 12px;
  font-weight: 900;
  margin: 0 0 12px !important;
  padding: 5px 10px;
  text-transform: uppercase;
  width: fit-content;
}

.offer-label {
  background: rgba(21, 156, 99, .1) !important;
  border-radius: 999px;
  color: var(--green-dark) !important;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  margin: 16px 0 0 !important;
  padding: 8px 14px;
  text-transform: uppercase;
  width: fit-content;
}

.price {
  color: var(--ink) !important;
  font-size: 52px;
  font-weight: 950;
  line-height: 1;
  margin: 8px 0 8px !important;
}

.was-price {
  color: #374151 !important;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.15;
  margin: 24px 0 0 !important;
  text-decoration: line-through;
  text-decoration-color: rgba(255, 111, 97, .9);
  text-decoration-thickness: 2px;
  text-decoration-skip-ink: none;
}

.price-note {
  margin: 0 0 18px !important;
}

.price-card ul {
  flex: 1;
  margin: 0 0 24px;
  padding-left: 20px;
}

.price-card li {
  margin: 8px 0;
}

.renewal-box {
  align-items: center;
  background: var(--ink);
  border-radius: var(--radius);
  color: #fff;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin-top: 24px;
  padding: 28px;
}

.renewal-box p {
  color: #d7deea;
  margin: 10px 0 0;
  max-width: 780px;
}

.process {
  background: #fff;
}

.steps {
  counter-reset: item;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps li {
  border-top: 3px solid var(--green);
  padding-top: 18px;
}

.steps span {
  align-items: center;
  background: var(--ink);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  margin-bottom: 14px;
  width: 34px;
}

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

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

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
}

.legal-note {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.legal-note h2,
.legal-note p {
  max-width: 1040px;
}

.final-cta {
  background: linear-gradient(135deg, #effaf5, #fff7f5 55%, #eef4ff);
  text-align: center;
}

.final-cta .button {
  margin-top: 24px;
}

.footer {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding: 26px clamp(20px, 5vw, 72px);
}

.footer p {
  color: var(--muted);
  margin: 0;
}

.footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero,
  .intro-band,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .feature-grid,
  .pricing-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card.highlighted {
    transform: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    overflow-x: auto;
    padding-bottom: 4px;
    width: 100%;
  }

  .brand img {
    max-height: 36px;
    max-width: 176px;
  }

  .hero {
    padding-top: 34px;
  }

  .trust-row,
  .feature-grid,
  .feature-detail-list,
  .pricing-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .renewal-box {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
