:root {
  color-scheme: light;
  --bg: #f5f0e7;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #fffdfa;
  --surface-accent: #eef5f0;
  --text: #163126;
  --muted: #5f7668;
  --line: rgba(22, 49, 38, 0.12);
  --accent: #e0603a;
  --accent-strong: #bc4825;
  --accent-soft: rgba(224, 96, 58, 0.14);
  --forest: #194c3e;
  --shadow: 0 24px 60px rgba(15, 35, 28, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(224, 96, 58, 0.18), transparent 34%),
    radial-gradient(circle at 80% 20%, rgba(25, 76, 62, 0.12), transparent 28%),
    linear-gradient(180deg, #f7f2eb 0%, #f0efe8 100%);
}

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

button {
  font: inherit;
}

.page-shell {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 24px auto;
}

.site-header,
.hero-card,
.trust-bar,
.benefits,
.plans-section,
.comparison,
.faq-section,
.site-footer {
  backdrop-filter: blur(16px);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border-radius: 999px;
  position: sticky;
  top: 18px;
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--forest));
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-name,
.footer-brand {
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.brand-tag,
.site-nav a,
.hero-text,
.section-heading p,
.benefit-grid p,
.faq-list p,
.site-footer p,
.snapshot-grid p,
.comparison-grid span,
.plan-copy,
.plan-feature-list li,
.disclaimer p {
  color: var(--muted);
}

.site-nav {
  display: flex;
  gap: 22px;
}

.site-nav a,
.header-cta,
.language-toggle,
.button,
.plan-link,
.site-footer a {
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.language-toggle {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  cursor: pointer;
}

.header-cta,
.button-primary,
.plan-link {
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  border: 1px solid transparent;
}

.header-cta {
  padding: 12px 18px;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  padding: 44px 0 28px;
}

.hero-copy {
  padding: 34px 12px 12px;
}

.eyebrow,
.card-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent-strong);
  margin: 0 0 16px;
}

.hero h1,
.section-heading h2,
.hero-card h2 {
  font-family: "Newsreader", Georgia, serif;
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin: 0;
}

.hero h1 {
  font-size: clamp(3.8rem, 7vw, 6.4rem);
  max-width: 12ch;
}

.hero-text {
  font-size: 1.12rem;
  line-height: 1.7;
  max-width: 56ch;
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  font-weight: 700;
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
  color: var(--text);
  border-radius: 999px;
}

.hero-points {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.hero-points li::before,
.plan-feature-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #f2bf6d);
  flex: none;
}

.hero-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  align-self: stretch;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 253, 250, 0.78)),
    linear-gradient(135deg, rgba(224, 96, 58, 0.08), rgba(25, 76, 62, 0.1));
}

.hero-card h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 24px;
}

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

.snapshot-grid article,
.comparison-grid article,
.benefit-grid article,
.plan-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.snapshot-grid article {
  padding: 20px;
  background: rgba(238, 245, 240, 0.78);
}

.snapshot-grid span,
.comparison-grid strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 6px;
}

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

.trust-bar {
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  margin: 12px 0 28px;
}

.trust-bar div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-bar strong {
  font-size: 1.3rem;
}

.benefits,
.plans-section,
.comparison,
.faq-section,
.site-footer {
  padding: 34px;
  border-radius: var(--radius-xl);
  margin-bottom: 28px;
}

.section-heading {
  max-width: 60ch;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 16px;
}

.section-heading p {
  line-height: 1.7;
}

.benefit-grid,
.plans-grid,
.faq-list {
  display: grid;
  gap: 18px;
}

.benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.benefit-grid article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.6);
}

.benefit-grid h3,
.plan-card h3,
.faq-list summary {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.plans-heading {
  margin-bottom: 26px;
}

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

.plan-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 244, 0.82));
}

.plan-card.featured {
  border-color: rgba(224, 96, 58, 0.45);
  background:
    linear-gradient(180deg, rgba(255, 246, 240, 0.98), rgba(255, 252, 248, 0.88));
}

.plan-topline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.plan-price {
  font-size: 1.6rem;
  font-weight: 800;
}

.plan-copy {
  line-height: 1.7;
  margin: 0;
}

.plan-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.plan-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
}

.plan-link {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  padding: 15px 22px;
  font-weight: 800;
}

.comparison-grid {
  margin-top: 24px;
}

.comparison-grid article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.64);
}

.faq-list details {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  margin: 12px 0 0;
  line-height: 1.7;
}

.disclaimer {
  margin-top: 18px;
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  background: rgba(25, 76, 62, 0.08);
  border: 1px solid rgba(25, 76, 62, 0.18);
}

.disclaimer-title {
  color: var(--text) !important;
  font-weight: 800;
  margin: 0 0 10px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-footer a {
  font-weight: 800;
  color: var(--accent-strong);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--accent-strong);
}

.header-cta:hover,
.header-cta:focus-visible,
.button-primary:hover,
.button-primary:focus-visible,
.plan-link:hover,
.plan-link:focus-visible {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.language-toggle:hover,
.language-toggle:focus-visible {
  background: #fff;
  border-color: rgba(22, 49, 38, 0.24);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(224, 96, 58, 0.34);
  outline-offset: 4px;
}

@media (max-width: 1080px) {
  .hero,
  .plans-grid,
  .benefit-grid,
  .comparison-grid,
  .trust-bar {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .site-header {
    border-radius: 28px;
    flex-wrap: wrap;
    position: static;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--content-width));
    margin: 10px auto 24px;
  }

  .site-header,
  .benefits,
  .plans-section,
  .comparison,
  .faq-section,
  .site-footer,
  .hero-card,
  .trust-bar {
    padding: 20px;
  }

  .site-nav,
  .header-actions,
  .hero-actions,
  .trust-bar,
  .benefit-grid,
  .plans-grid,
  .comparison-grid,
  .site-footer,
  .snapshot-grid {
    grid-template-columns: 1fr;
  }

  .site-nav,
  .header-actions,
  .hero-actions,
  .site-footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .header-actions,
  .hero-actions {
    width: 100%;
  }

  .header-cta,
  .button,
  .plan-link {
    width: 100%;
  }

  .hero-copy {
    padding: 14px 0 0;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 14vw, 4.4rem);
  }

  .section-heading h2,
  .hero-card h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .plan-topline {
    flex-direction: column;
    align-items: flex-start;
  }
}:root {
  --bg: #f7f1e8;
  --surface: rgba(255, 252, 247, 0.88);
  --surface-strong: #fffaf2;
  --ink: #11243a;
  --muted: #5f6d7f;
  --line: rgba(17, 36, 58, 0.12);
  --accent: #d66b2d;
  --accent-deep: #b75218;
  --accent-soft: #f5caa7;
  --teal: #1f6b68;
  --shadow: 0 22px 60px rgba(17, 36, 58, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(214, 107, 45, 0.22), transparent 28%),
    radial-gradient(circle at top right, rgba(31, 107, 104, 0.18), transparent 25%),
    linear-gradient(180deg, #fffaf2 0%, var(--bg) 50%, #efe5d8 100%);
}

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

button,
a {
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(214, 107, 45, 0.35);
  outline-offset: 3px;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 40px;
}

.site-header,
.hero-panel,
.trust-band,
.plans-section,
.benefits-section,
.faq-section,
.site-footer {
  backdrop-filter: blur(12px);
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.82);
  box-shadow: 0 12px 36px rgba(17, 36, 58, 0.08);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--teal));
  color: #fff;
  font-weight: 800;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.9rem;
  color: var(--muted);
}

.brand-copy strong,
.section-heading h2,
.hero-copy h1,
.faq-list h3,
.benefits-grid h3,
.plan-title {
  font-family: "Fraunces", serif;
}

.site-nav,
.header-actions,
.language-switcher,
.hero-actions,
.footer-links {
  display: flex;
  align-items: center;
}

.site-nav {
  gap: 18px;
  color: var(--muted);
}

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

.header-actions {
  gap: 12px;
}

.language-switcher {
  padding: 4px;
  gap: 4px;
  border-radius: 999px;
  background: rgba(17, 36, 58, 0.06);
}

.language-button {
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  font: inherit;
  font-weight: 700;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.language-button.is-active {
  color: #fff;
  background: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 14px 30px rgba(214, 107, 45, 0.28);
}

.button-secondary,
.button-ghost {
  border-color: rgba(17, 36, 58, 0.12);
  background: rgba(255, 255, 255, 0.6);
}

.button-ghost {
  color: var(--ink);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 28px;
  align-items: stretch;
  padding: 48px 0 32px;
}

.hero-copy,
.hero-panel,
.plans-section,
.benefits-section,
.faq-section,
.site-footer {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 250, 242, 0.92)),
    linear-gradient(135deg, rgba(214, 107, 45, 0.12), rgba(31, 107, 104, 0.08));
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
}

.hero-copy h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 5.3rem);
  line-height: 0.95;
}

.hero-description,
.section-heading p,
.benefits-grid p,
.faq-list p,
.site-footer p,
.plan-summary,
.plan-features,
.trust-band span,
.hero-card p {
  color: var(--muted);
}

.hero-description {
  max-width: 58ch;
  margin: 22px 0 28px;
  font-size: 1.06rem;
  line-height: 1.75;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.hero-points li,
.hero-stats article,
.trust-band article,
.benefits-grid article,
.faq-list article,
.plan-card {
  border: 1px solid rgba(17, 36, 58, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.hero-points li {
  min-height: 100%;
  padding: 16px;
  border-radius: var(--radius-sm);
  line-height: 1.5;
}

.hero-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(17, 36, 58, 0.96), rgba(20, 57, 92, 0.94)),
    linear-gradient(135deg, rgba(214, 107, 45, 0.2), transparent);
  color: #fff;
}

.hero-card {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-card-label {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin: 0 0 10px;
  font-size: 2rem;
}

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

.hero-stats article {
  padding: 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
}

.hero-stats strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.trust-band,
.benefits-grid,
.faq-list,
.site-footer {
  display: grid;
}

.trust-band {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.trust-band article,
.benefits-grid article,
.faq-list article {
  padding: 20px;
  border-radius: var(--radius-md);
}

.plans-section,
.benefits-section,
.faq-section {
  padding: 34px;
  margin-bottom: 24px;
}

.section-heading {
  max-width: 62ch;
  margin-bottom: 28px;
}

.section-heading.compact {
  margin-bottom: 22px;
}

.section-heading h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.section-heading p:last-child {
  margin-bottom: 0;
  line-height: 1.7;
}

.plans-grid,
.benefits-grid,
.faq-list {
  gap: 16px;
}

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

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
  border-radius: 24px;
}

.plan-card.is-featured {
  background: linear-gradient(180deg, rgba(214, 107, 45, 0.12), rgba(255, 255, 255, 0.82));
  border-color: rgba(214, 107, 45, 0.25);
}

.plan-kicker {
  margin: 0 0 10px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

.plan-title {
  margin: 0 0 10px;
  font-size: 1.9rem;
}

.plan-summary {
  margin: 0;
  line-height: 1.65;
}

.plan-features {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  line-height: 1.55;
}

.plan-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
}

.plan-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}

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

.faq-list h3,
.benefits-grid h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.disclaimer {
  margin-top: 20px;
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(214, 107, 45, 0.08);
}

.disclaimer strong {
  display: inline-block;
  margin-bottom: 8px;
}

.site-footer {
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 24px 28px;
}

.footer-links {
  gap: 18px;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .hero-section,
  .plans-grid,
  .benefits-grid,
  .faq-list,
  .trust-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-section {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 13ch;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 14px;
  }

  .site-header,
  .site-nav,
  .header-actions,
  .hero-points,
  .hero-stats,
  .trust-band,
  .plans-grid,
  .benefits-grid,
  .faq-list,
  .site-footer,
  .plan-card-footer {
    grid-template-columns: 1fr;
  }

  .site-header,
  .header-actions,
  .site-nav,
  .hero-actions,
  .site-footer,
  .plan-card-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .site-header {
    position: static;
    border-radius: 28px;
  }

  .hero-copy,
  .plans-section,
  .benefits-section,
  .faq-section {
    padding: 24px;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.4rem, 13vw, 4rem);
  }

  .button,
  .plan-link {
    width: 100%;
  }

  .hero-actions,
  .header-actions,
  .footer-links {
    width: 100%;
  }
}