:root {
  color-scheme: light;
  --bg: #f7f8fa;
  --bg-muted: #f0f4f1;
  --surface: #ffffff;
  --border: #e2e8f0;
  --ink: #17202a;
  --muted: #475569;
  --muted-2: #64748b;
  --primary: #203a54;
  --primary-hover: #16283d;
  --accent: #5ca66a;
  --accent-hover: #4c8e58;
  --red: #c0392b;
  --shadow: 0 1px 2px rgba(23, 32, 42, 0.06), 0 8px 24px rgba(23, 32, 42, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 100;
}

.skip-link:focus {
  left: 0;
}

.wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.wrap--narrow {
  max-width: 760px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 248, 250, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  text-decoration: none;
}

.brand__tagline {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
  color: var(--primary);
  max-width: 200px;
}

@media (max-width: 480px) {
  .brand__tagline {
    font-size: 9px;
    max-width: 150px;
  }
}

.nav {
  display: none;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}

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

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

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

@media (min-width: 860px) {
  .nav {
    display: flex;
  }
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  padding: 10px 16px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.05s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

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

.btn--primary:hover {
  background: var(--primary-hover);
}

.btn--ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--border);
}

.btn--ghost:hover {
  border-color: var(--primary);
}

.btn--text {
  background: transparent;
  color: var(--primary);
  padding-left: 4px;
  padding-right: 4px;
}

.btn--text:hover {
  text-decoration: underline;
}

.btn--lg {
  padding: 14px 22px;
  font-size: 15px;
}

.btn--block {
  width: 100%;
}

/* Hero */

.hero {
  padding: 56px 0 40px;
}

.hero__inner {
  display: grid;
  gap: 36px;
}

.hero__copy {
  max-width: 620px;
}

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

.hero h1 {
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.15;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}

.lead {
  font-size: 17px;
  color: var(--muted);
  margin: 0 0 26px;
  max-width: 54ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}

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

.hero__art {
  display: flex;
  justify-content: center;
}

.phone-card {
  width: 100%;
  max-width: 360px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 20px;
}

.phone-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  color: var(--muted-2);
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.phone-card__row strong {
  font-size: 18px;
}

.phone-card__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.phone-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
}

.phone-item div {
  display: flex;
  flex-direction: column;
}

.phone-item strong {
  font-size: 14px;
}

.phone-item span {
  font-size: 12px;
  color: var(--muted-2);
}

.phone-item > span {
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

.text-green {
  color: var(--accent);
}

.text-red {
  color: var(--red);
}

.text-muted {
  color: var(--muted-2);
}

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .hero__art {
    justify-content: flex-end;
  }
}

/* Strip */

.strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.strip__inner {
  padding: 16px 20px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

/* Sections */

.section {
  padding: 64px 0;
}

.section--muted {
  background: var(--bg-muted);
}

.section h2 {
  font-size: clamp(24px, 4vw, 32px);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.section-lead {
  color: var(--muted);
  margin: 0 0 36px;
  font-size: 16px;
}

/* Steps */

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

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 14px;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
}

@media (min-width: 780px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Features */

.features {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
}

.feature__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(92, 166, 106, 0.14);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.feature__icon svg {
  width: 20px;
  height: 20px;
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
}

@media (min-width: 620px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Founder */

.founder {
  padding: 56px 0;
  background: var(--primary);
  color: #fff;
}

.founder__inner {
  max-width: 760px;
}

.founder .eyebrow {
  color: #9fd1ac;
}

.founder__quote {
  font-size: clamp(18px, 3vw, 22px);
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}

/* Pricing */

.pricing {
  display: flex;
  justify-content: center;
}

.price-card {
  width: 100%;
  max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 32px;
  text-align: left;
}

.price-card__label {
  margin: 0 0 6px;
  font-weight: 700;
  color: var(--muted-2);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.price-card__value {
  margin: 0 0 20px;
  font-size: 44px;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-card__value span:first-child {
  font-size: 20px;
  font-weight: 700;
}

.price-card__period {
  font-size: 16px;
  font-weight: 600;
  color: var(--muted-2);
  margin-left: 4px;
}

.price-card__list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-card__list li {
  padding-left: 26px;
  position: relative;
  font-size: 14.5px;
  color: var(--ink);
}

.price-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 10px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 10px no-repeat;
}

.price-card__note {
  margin: 14px 0 0;
  font-size: 12.5px;
  color: var(--muted-2);
  text-align: center;
}

/* FAQ */

.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 6px 18px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 14px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--muted-2);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14.5px;
}

/* CTA final */

.cta-final {
  padding: 64px 0 80px;
  text-align: center;
}

.cta-final h2 {
  font-size: clamp(22px, 4vw, 30px);
  margin: 0 0 24px;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 40px 0 20px;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 24px;
}

.site-footer__tagline {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--muted-2);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13.5px;
  font-weight: 600;
}

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

.site-footer__links a:hover {
  color: var(--primary);
}

.site-footer__legal {
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted-2);
}

@media (min-width: 700px) {
  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

/* Legal pages */

.legal h1 {
  font-size: clamp(26px, 4vw, 34px);
  margin: 0 0 6px;
}

.legal__updated {
  color: var(--muted-2);
  font-size: 13px;
  margin: 0 0 32px;
}

.legal h2 {
  font-size: 18px;
  margin: 32px 0 10px;
}

.legal p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0 0 4px;
}
