@font-face {
  font-family: "InterFallback";
  src: local("Inter"), local("Segoe UI"), local("Arial");
  font-display: swap;
}

:root {
  --bg: #f7faf9;
  --surface: #ffffff;
  --surface-soft: #edf7f5;
  --ink: #10201d;
  --muted: #5f716c;
  --line: #dbe9e5;
  --primary: #0f766e;
  --primary-dark: #0b5953;
  --primary-soft: #d7f2ed;
  --accent: #f59e0b;
  --shadow: 0 22px 60px rgba(15, 42, 38, 0.12);
  --shadow-soft: 0 12px 30px rgba(15, 42, 38, 0.08);
  --radius: 26px;
  --radius-sm: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: InterFallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

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

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

h1 {
  font-size: clamp(2.55rem, 6vw, 5.55rem);
}

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

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--primary);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 1000;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(247, 250, 249, 0.88);
  border-bottom: 1px solid rgba(219, 233, 229, 0.7);
}

.header-shell {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img,
.footer-logo {
  filter: saturate(0.8);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #314641;
  font-size: 0.95rem;
  font-weight: 650;
}

.site-nav a {
  position: relative;
}

.site-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--primary);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav > a:not(.btn):hover::after,
.site-nav > a:not(.btn):focus-visible::after {
  transform: scaleX(1);
}

.nav-login {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 99px;
  margin: 5px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 750;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  white-space: nowrap;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 16px 32px rgba(15, 118, 110, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--primary-dark);
}

.btn-secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

.btn-small {
  min-height: 40px;
  padding-inline: 16px;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0 78px;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.65;
  pointer-events: none;
}

.hero-section::before {
  width: 520px;
  height: 520px;
  right: -180px;
  top: -150px;
  background: radial-gradient(circle, #b8efe7 0, rgba(184, 239, 231, 0) 68%);
}

.hero-section::after {
  width: 360px;
  height: 360px;
  left: -130px;
  bottom: -130px;
  background: radial-gradient(circle, #fde7ba 0, rgba(253, 231, 186, 0) 68%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 58px;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid rgba(15, 118, 110, 0.12);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 850;
  border-radius: 999px;
  padding: 7px 11px;
  margin-bottom: 18px;
}

.hero-lead {
  margin-top: 24px;
  font-size: clamp(1.05rem, 2vw, 1.26rem);
  max-width: 660px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 24px;
  color: #35504a;
  font-size: 0.92rem;
  font-weight: 650;
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.product-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(219, 233, 229, 0.85);
  box-shadow: var(--shadow);
  border-radius: 28px;
  overflow: hidden;
}

.product-card-main {
  transform: rotate(1.5deg);
}

.product-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #22c55e; }

.window-title {
  margin-left: 8px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.dashboard-preview {
  display: grid;
  grid-template-columns: 78px 1fr;
  min-height: 390px;
  background: linear-gradient(135deg, #f9fffd 0%, #eef8f6 100%);
}

.side-menu {
  padding: 24px 18px;
  display: grid;
  align-content: start;
  gap: 14px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.side-menu span {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: #dcebe8;
}

.side-menu .active {
  background: var(--primary);
}

.preview-content {
  padding: 30px;
}

.preview-topline {
  width: 58%;
  height: 18px;
  border-radius: 99px;
  background: #c9dfdb;
  margin-bottom: 24px;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.kpi-row div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

.kpi-row strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
}

.kpi-row span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.preview-columns {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin-top: 20px;
}

.preview-list,
.preview-panel {
  min-height: 190px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.preview-list span,
.preview-panel span {
  display: block;
  height: 16px;
  border-radius: 99px;
  background: #dcebe8;
}

.preview-list span:nth-child(1) { width: 84%; }
.preview-list span:nth-child(2) { width: 62%; }
.preview-list span:nth-child(3) { width: 75%; }
.preview-list span:nth-child(4) { width: 48%; }
.preview-panel span:nth-child(1) { width: 70%; height: 70px; border-radius: 18px; background: #d7f2ed; }
.preview-panel span:nth-child(2) { width: 80%; }
.preview-panel span:nth-child(3) { width: 54%; }

.floating-card {
  position: absolute;
  width: min(240px, 48%);
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.floating-card strong {
  display: block;
  line-height: 1.15;
  margin-bottom: 6px;
}

.floating-card span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.floating-card-ai {
  left: -24px;
  bottom: 44px;
}

.floating-card-sales {
  right: -8px;
  top: 50px;
}

.section {
  padding: 86px 0;
}

.section-soft {
  background: var(--surface-soft);
}

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

.section-heading h2 + p,
.split-heading p,
.image-band p,
.faq-grid > div > p,
.cta-card p {
  margin-top: 18px;
  font-size: 1.05rem;
}

.benefit-grid,
.module-grid,
.proof-grid {
  display: grid;
  gap: 18px;
}

.benefit-grid {
  grid-template-columns: repeat(4, 1fr);
}

.benefit-card,
.module-card,
.proof-card,
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.benefit-card {
  padding: 26px;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 14px;
  font-weight: 850;
}

.benefit-card h3,
.module-card h3 {
  margin-bottom: 12px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 42px;
  align-items: end;
  margin-bottom: 42px;
}

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

.module-card {
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.module-card-accent {
  background: linear-gradient(135deg, #ffffff 0%, #eafffb 100%);
}

.module-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 42px;
  padding-inline: 10px;
  margin-bottom: 22px;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.module-card ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.module-card li {
  position: relative;
  padding-left: 22px;
  color: #425c56;
  font-size: 0.95rem;
}

.module-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--primary);
}

.image-band {
  background: #10201d;
  color: #fff;
  overflow: hidden;
}

.image-band p,
.image-band .eyebrow {
  color: #cde3de;
}

.image-band .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

.image-band-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 62px;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.audience-list span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 750;
}

.photo-stack {
  position: relative;
  min-height: 450px;
}

.photo-stack img {
  position: absolute;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.photo-main {
  width: 74%;
  height: 390px;
  right: 0;
  top: 0;
}

.photo-secondary {
  width: 44%;
  height: 250px;
  left: 0;
  bottom: 8px;
  border: 8px solid #10201d;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: steps;
}

.timeline article {
  position: relative;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.timeline article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
  font-weight: 900;
}

.timeline h3 {
  margin-bottom: 12px;
}

.proof-section {
  padding-top: 0;
}

.proof-grid {
  grid-template-columns: repeat(4, 1fr);
}

.proof-card {
  padding: 24px;
}

.proof-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.proof-card span {
  color: var(--muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 54px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 850;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--primary);
  font-size: 1.3rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  padding: 0 24px 24px;
}

.cta-section {
  padding: 0 0 92px;
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, #0f766e 0%, #10201d 100%);
  color: #fff;
  border-radius: 34px;
  padding: clamp(32px, 5vw, 58px);
  box-shadow: var(--shadow);
}

.cta-card p,
.cta-card .eyebrow {
  color: #d8f2ed;
}

.cta-card .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

.cta-actions {
  display: grid;
  gap: 12px;
}

.subpage-hero {
  padding: 86px 0 44px;
  background: var(--surface-soft);
}

.subpage-hero p {
  max-width: 780px;
  margin-top: 18px;
  font-size: 1.1rem;
}

.content-page {
  max-width: 860px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: clamp(28px, 5vw, 52px);
}

.content-page h2 {
  font-size: 1.8rem;
  margin: 28px 0 12px;
}

.content-page h2:first-child {
  margin-top: 0;
}

.content-page ul {
  color: var(--muted);
  margin-bottom: 28px;
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 58px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 220px 220px;
  gap: 42px;
}

.footer-grid h2 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  color: #314641;
}

.footer-grid a {
  display: block;
  color: var(--muted);
  margin-top: 9px;
  font-weight: 650;
}

.footer-grid p {
  max-width: 460px;
  margin-top: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 1040px) {
  .hero-grid,
  .split-heading,
  .image-band-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 460px;
  }

  .benefit-grid,
  .timeline,
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cta-card {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    inset: 78px 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 12px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 14px;
  }

  .site-nav .btn {
    margin-top: 8px;
  }

  .hero-section {
    padding-top: 60px;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero-visual {
    min-height: 400px;
  }

  .product-card-main {
    transform: none;
  }

  .dashboard-preview {
    grid-template-columns: 56px 1fr;
  }

  .preview-content {
    padding: 22px;
  }

  .kpi-row,
  .preview-columns {
    grid-template-columns: 1fr;
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .benefit-grid,
  .module-grid,
  .timeline,
  .proof-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .photo-stack {
    min-height: 360px;
  }

  .photo-main {
    width: 82%;
    height: 300px;
  }

  .photo-secondary {
    width: 52%;
    height: 190px;
  }

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

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .header-shell {
    height: 70px;
  }

  .site-nav {
    top: 70px;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 62px 0;
  }

  .side-menu {
    display: none;
  }

  .dashboard-preview {
    grid-template-columns: 1fr;
    min-height: 320px;
  }

  .photo-stack {
    min-height: 300px;
  }

  .photo-main {
    width: 100%;
    height: 250px;
  }

  .photo-secondary {
    display: none;
  }
}


.language-switch {
    display: inline-flex;
    gap: .25rem;
    align-items: center;
    padding: .2rem;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 999px;
    background: rgba(255, 255, 255, .75);
}

.lang-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.2rem;
    padding: .35rem .55rem;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 800;
    color: var(--muted);
}

.lang-pill.active {
    color: var(--ink);
    background: rgba(15, 118, 110, .12);
}

.page-hero {
    padding: 8.5rem 0 4rem;
    background: radial-gradient(circle at top left, rgba(20, 184, 166, .18), transparent 34rem), linear-gradient(180deg, #f8fffd 0%, #ffffff 100%);
}

.page-hero.compact .container {
    max-width: 820px;
}

.prose-card {
    max-width: 860px;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: var(--shadow-soft);
}

.prose-card h2 {
    margin-top: 1.5rem;
}

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

@media (max-width: 900px) {
    .benefit-grid.three {
        grid-template-columns: 1fr;
    }

    .language-switch {
        width: max-content;
    }
}

/* Pricing */
.pricing-hero .hero-actions {
  margin-top: 28px;
}

.pricing-preview-section {
  position: relative;
  overflow: hidden;
}

.pricing-preview-grid,
.pricing-grid,
.ai-pricing-grid,
.ai-limit-grid {
  display: grid;
  gap: 18px;
}

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

.pricing-mini-card,
.pricing-card,
.ai-limit-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.pricing-mini-card {
  padding: 24px;
  display: grid;
  gap: 14px;
  min-height: 245px;
}

.pricing-mini-card span,
.pricing-card-head h3,
.ai-price-block span {
  font-weight: 850;
  color: var(--ink);
}

.pricing-mini-card strong {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.pricing-mini-card strong small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pricing-mini-card em,
.yearly-price {
  color: var(--primary);
  font-style: normal;
  font-weight: 800;
}

.pricing-mini-card-featured,
.pricing-card-featured {
  border-color: rgba(15, 118, 110, 0.28);
  background: linear-gradient(180deg, #ffffff 0%, #effcf9 100%);
}

.pricing-mini-card-ai {
  color: #fff;
  background: linear-gradient(135deg, #10201d 0%, #0f766e 100%);
  border-color: transparent;
}

.pricing-mini-card-ai span,
.pricing-mini-card-ai strong,
.pricing-mini-card-ai p,
.pricing-mini-card-ai em {
  color: #fff;
}

.pricing-preview-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
}

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

.pricing-card {
  position: relative;
  padding: clamp(26px, 4vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pricing-card-head p {
  margin-top: 10px;
}

.pricing-ribbon {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #fff;
  background: var(--primary);
  font-size: 0.78rem;
  font-weight: 850;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-currency {
  color: var(--primary);
  font-size: 1.8rem;
  font-weight: 850;
}

.price-line strong {
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.price-line span:last-child {
  color: var(--muted);
  font-weight: 750;
}

.yearly-price {
  margin-top: -12px;
}

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

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: #425c56;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 900;
}

.pricing-card .btn {
  margin-top: auto;
}

.ai-pricing-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
}

.ai-pricing-card {
  color: #fff;
  background: radial-gradient(circle at top right, rgba(20, 184, 166, 0.32), transparent 30rem), linear-gradient(135deg, #10201d 0%, #0f766e 100%);
  border-color: transparent;
}

.ai-pricing-card h2,
.ai-pricing-card h3,
.ai-pricing-card p,
.ai-pricing-card .eyebrow,
.ai-pricing-card .feature-list li,
.ai-pricing-card .feature-list li::before {
  color: #fff;
}

.ai-pricing-card .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.ai-price-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.ai-price-block strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.ai-price-block small {
  color: #d8f2ed;
  font-weight: 750;
}

.ai-price-block p {
  color: #d8f2ed;
}

.ai-limit-panel {
  padding: clamp(26px, 4vw, 36px);
}

.ai-limit-panel h3 {
  margin-bottom: 22px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.ai-limit-grid {
  grid-template-columns: 1fr;
}

.ai-limit-grid div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.ai-limit-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 1.05rem;
}

.final-cta {
  padding-top: 0;
}

.final-cta-card {
  text-align: center;
  padding: clamp(34px, 6vw, 64px);
  border-radius: 34px;
  color: #fff;
  background: linear-gradient(135deg, #0f766e 0%, #10201d 100%);
  box-shadow: var(--shadow);
}

.final-cta-card p,
.final-cta-card .eyebrow {
  color: #d8f2ed;
}

.final-cta-card .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

.final-cta-card h2 + p {
  max-width: 760px;
  margin: 18px auto 0;
}

.hero-actions.centered {
  justify-content: center;
  margin-top: 28px;
}

@media (max-width: 1040px) {
  .pricing-preview-grid,
  .pricing-grid,
  .ai-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ai-pricing-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .pricing-preview-grid,
  .pricing-grid,
  .ai-pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-preview-footer,
  .ai-price-block {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .pricing-preview-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-ribbon {
    position: static;
    width: max-content;
    margin-bottom: -8px;
  }
}
