:root {
  --bg: #f5efe8;
  --bg-soft: #fbf7f2;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: #ffffff;
  --line: rgba(12, 79, 78, 0.12);
  --line-strong: rgba(12, 79, 78, 0.2);
  --text: #183433;
  --muted: #587270;
  --brand: #0f6661;
  --brand-deep: #0b4f4d;
  --brand-soft: #dceee8;
  --gold: #caa872;
  --gold-soft: #f0e2cb;
  --shadow: 0 24px 70px rgba(16, 49, 50, 0.12);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(202, 168, 114, 0.22), transparent 28%),
    radial-gradient(circle at top right, rgba(15, 102, 97, 0.18), transparent 32%),
    linear-gradient(180deg, #fcfaf7 0%, #f4eee7 48%, #f8f4ee 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 102, 97, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 102, 97, 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 46%, transparent 100%);
}

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

.hero,
.content-section,
.trust-band {
  backdrop-filter: blur(12px);
}

.hero {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.68)),
    linear-gradient(180deg, rgba(15, 102, 97, 0.06), rgba(202, 168, 114, 0.04));
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(202, 168, 114, 0.24), transparent 68%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto auto -120px -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 102, 97, 0.12), transparent 70%);
  z-index: 0;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 38px;
  position: relative;
  z-index: 2;
}

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

.brand-mark {
  width: 18px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), var(--brand));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.eyebrow,
.brand-name,
.section-tag,
.ghost-link,
.cta-label,
.card-index,
.process-card span,
.shot-title,
.shot-badge {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow,
.section-tag,
.cta-label {
  margin: 0 0 6px;
  color: var(--brand);
  font-size: 0.74rem;
  font-weight: 800;
}

.brand-name {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 700;
}

.ghost-link {
  color: var(--text);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.parallax-layer {
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.hero-copy h1,
.section-heading h2,
.split-copy h2,
.closing-copy h2 {
  font-family: "Manrope", sans-serif;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 0;
  font-weight: 800;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4.6vw, 4.4rem);
  max-width: 11.5ch;
}

.hero-copy h1 span {
  color: var(--brand);
}

.hero-text,
.section-heading p,
.split-copy > p,
.closing-copy p,
.benefit-card p,
.stacked-points p,
.process-card p,
.value-grid p,
.cta-card p,
.hero-note p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.hero-text {
  max-width: 62ch;
  margin: 24px 0 0;
}

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

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-button {
  color: #f8faf9;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  box-shadow: 0 16px 28px rgba(15, 102, 97, 0.26);
}

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

.primary-button:hover,
.secondary-button:hover,
.tab-button:hover {
  transform: translateY(-2px);
}

.primary-button,
.secondary-button,
.ghost-link,
.benefit-card,
.hero-metrics article,
.hero-card,
.process-card,
.value-grid article,
.chat-shot,
.cta-card,
.trust-band,
.tab-button {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    filter 220ms ease;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.hero-metrics article,
.benefit-card,
.process-card,
.chat-shot,
.value-grid article,
.cta-card,
.trust-band,
.hero-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-metrics article {
  padding: 18px;
  border-radius: 22px;
}

.hero-metrics article:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 50px rgba(16, 49, 50, 0.16);
}

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

.hero-metrics span {
  display: block;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.93rem;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)),
    linear-gradient(135deg, rgba(15, 102, 97, 0.08), rgba(202, 168, 114, 0.06));
}

.hero-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 50px rgba(16, 49, 50, 0.14);
}

.hero-card-header,
.shot-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-card-header {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--brand-deep);
  margin-bottom: 18px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #43b486;
  box-shadow: 0 0 0 6px rgba(67, 180, 134, 0.13);
}

.chat-window,
.chat-shot {
  border-radius: 24px;
  overflow: hidden;
  background: #f7f8f7;
}

.window-top {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  background: #eef1ee;
}

.window-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #c4d0cd;
}

.chat-body,
.shot-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
}

.message {
  max-width: 88%;
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 0.98rem;
  line-height: 1.6;
}

.message p {
  margin: 0;
}

.incoming {
  align-self: flex-start;
  background: #ffffff;
  border: 1px solid rgba(24, 52, 51, 0.08);
}

.outgoing {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--brand) 0%, #1d7d78 100%);
  color: #ffffff;
}

.hero-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(15, 102, 97, 0.08);
}

.hero-note p {
  margin: 0;
}

.trust-band,
.content-section {
  margin-top: 24px;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 18px 22px;
  border-radius: 26px;
  color: var(--brand-deep);
  font-weight: 700;
  font-size: 0.94rem;
}

.content-section {
  padding: 34px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.7));
  box-shadow: var(--shadow);
}

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

.section-heading.narrow {
  max-width: 70ch;
}

.section-heading h2,
.split-copy h2,
.closing-copy h2 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  margin-bottom: 14px;
}

.section-heading p {
  margin: 0;
}

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

.benefit-card {
  padding: 24px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 102, 97, 0.22);
  box-shadow: 0 28px 48px rgba(16, 49, 50, 0.14);
}

.benefit-card::after {
  content: "";
  position: absolute;
  inset: auto -50px -80px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(202, 168, 114, 0.16), transparent 68%);
}

.card-index,
.process-card span,
.shot-title,
.shot-badge {
  font-size: 0.76rem;
  font-weight: 800;
}

.card-index {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold);
}

.benefit-card h3,
.stacked-points h3,
.process-card h3,
.cta-card h3 {
  font-size: 1.15rem;
  line-height: 1.35;
  margin: 0 0 10px;
}

.benefit-card p,
.stacked-points p,
.process-card p,
.value-grid p,
.cta-card p {
  margin: 0;
}

.split-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: start;
}

.stacked-points {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.stacked-points article,
.process-card article {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.stacked-points article:last-child,
.process-card article:last-child {
  border-bottom: 0;
}

.process-card {
  position: relative;
  padding: 22px 24px;
  border-radius: 28px;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 48px rgba(16, 49, 50, 0.14);
}

.process-line {
  position: absolute;
  left: 28px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, rgba(202, 168, 114, 0.7), rgba(15, 102, 97, 0.7));
  opacity: 0.45;
}

.process-card article {
  padding-left: 24px;
  position: relative;
}

.process-card article::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 22px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--brand));
  box-shadow: 0 0 0 5px rgba(15, 102, 97, 0.08);
}

.process-card span,
.shot-title {
  color: var(--gold);
}

.language-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.tab-button {
  appearance: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  border-radius: 999px;
  min-height: 46px;
  padding: 12px 18px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.tab-button.active {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #ffffff;
  border-color: transparent;
}

.tab-button:hover {
  box-shadow: 0 10px 24px rgba(16, 49, 50, 0.1);
}

.chat-gallery {
  margin-top: 22px;
}

.chat-panel {
  display: none;
}

.chat-panel.active {
  display: block;
  animation: fadeIn 240ms ease;
}

.chat-shot {
  padding: 18px;
  border-radius: 28px;
}

.chat-shot:hover {
  transform: translateY(-4px) scale(1.005);
  border-color: rgba(15, 102, 97, 0.2);
  box-shadow: 0 28px 48px rgba(16, 49, 50, 0.14);
}

.shot-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: #88673b;
}

.shot-body {
  margin-top: 16px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, #f2f4f3 0%, #fbfcfb 100%);
}

.value-strip {
  background:
    linear-gradient(180deg, rgba(15, 102, 97, 0.08), rgba(255, 255, 255, 0.76));
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.value-grid article {
  padding: 22px;
  border-radius: 24px;
}

.value-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 102, 97, 0.2);
  box-shadow: 0 24px 42px rgba(16, 49, 50, 0.13);
}

.value-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.closing-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.cta-card {
  padding: 26px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(12, 79, 78, 0.94), rgba(15, 102, 97, 0.88)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  color: #f4fbfa;
}

.cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 52px rgba(16, 49, 50, 0.18);
}

.ghost-link:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 102, 97, 0.22);
  box-shadow: 0 16px 28px rgba(16, 49, 50, 0.08);
}

.trust-band:hover {
  transform: translateY(-2px);
}

.reveal-up {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.benefit-grid .benefit-card:nth-child(1),
.value-grid article:nth-child(1) {
  --reveal-delay: 40ms;
}

.benefit-grid .benefit-card:nth-child(2),
.value-grid article:nth-child(2) {
  --reveal-delay: 100ms;
}

.benefit-grid .benefit-card:nth-child(3),
.value-grid article:nth-child(3) {
  --reveal-delay: 160ms;
}

.benefit-grid .benefit-card:nth-child(4),
.value-grid article:nth-child(4) {
  --reveal-delay: 220ms;
}

.benefit-grid .benefit-card:nth-child(5) {
  --reveal-delay: 280ms;
}

.benefit-grid .benefit-card:nth-child(6) {
  --reveal-delay: 340ms;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.feature-card {
  padding: 24px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.74));
  box-shadow: var(--shadow);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 102, 97, 0.22);
  box-shadow: 0 28px 48px rgba(16, 49, 50, 0.14);
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  line-height: 1.35;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.dashboard-mockup {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  gap: 18px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78));
  box-shadow: var(--shadow);
}

.dashboard-sidebar,
.dashboard-main,
.conversation-card,
.review-card,
.comparison-card,
.safety-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.dashboard-sidebar {
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(12, 79, 78, 0.96), rgba(15, 102, 97, 0.9));
  color: #f5fbfb;
}

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

.brand-mark.small {
  width: 12px;
  height: 36px;
}

.dashboard-brand strong {
  display: block;
}

.dashboard-brand p,
.dashboard-label,
.review-label,
.comparison-label {
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
}

.dashboard-brand p {
  color: rgba(245, 251, 251, 0.72);
  margin-top: 4px;
}

.dashboard-menu {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.menu-item {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #f5fbfb;
  border-radius: 16px;
  min-height: 44px;
  padding: 10px 14px;
  text-align: left;
  font: inherit;
  font-weight: 700;
}

.menu-item.active {
  background: rgba(255, 255, 255, 0.16);
}

.mini-stats {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

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

.mini-stats strong {
  display: block;
  font-size: 1.4rem;
}

.mini-stats span {
  display: block;
  margin-top: 6px;
  color: rgba(245, 251, 251, 0.78);
  line-height: 1.55;
}

.dashboard-main {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
}

.dashboard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-top h3 {
  margin: 6px 0 0;
  font-size: 1.35rem;
  line-height: 1.25;
}

.dashboard-label,
.review-label,
.comparison-label {
  color: var(--brand);
}

.dashboard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dashboard-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-size: 0.84rem;
  font-weight: 700;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 16px;
  margin-top: 18px;
}

.conversation-card,
.review-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.85);
}

.conversation-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-card {
  display: grid;
  gap: 14px;
}

.review-block {
  padding: 16px;
  border-radius: 18px;
  background: rgba(15, 102, 97, 0.06);
}

.review-block p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.comparison-grid,
.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.comparison-card,
.safety-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.comparison-card:hover,
.safety-card:hover,
.dashboard-mockup:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 48px rgba(16, 49, 50, 0.14);
}

.dashboard-mockup {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.comparison-card h3,
.safety-card h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
  line-height: 1.35;
}

.comparison-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}

.comparison-card.negative {
  background: linear-gradient(180deg, rgba(255, 247, 242, 0.96), rgba(255, 255, 255, 0.86));
}

.comparison-card.positive {
  background: linear-gradient(180deg, rgba(232, 246, 242, 0.96), rgba(255, 255, 255, 0.86));
}

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

.safety-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.pricing-section {
  background:
    linear-gradient(180deg, rgba(202, 168, 114, 0.08), rgba(255, 255, 255, 0.78));
}

.pricing-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  margin-top: 26px;
}

.pricing-main,
.pricing-includes article {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.pricing-main {
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(12, 79, 78, 0.94), rgba(15, 102, 97, 0.88)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  color: #f4fbfa;
}

.pricing-label {
  margin: 0 0 12px;
  color: rgba(244, 251, 250, 0.75);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.price-line strong {
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 1;
}

.price-line span {
  font-size: 1.1rem;
  color: rgba(244, 251, 250, 0.82);
}

.pricing-note {
  margin: 16px 0 0;
  color: rgba(244, 251, 250, 0.82);
  line-height: 1.7;
}

.pricing-includes {
  display: grid;
  gap: 16px;
}

.pricing-includes article {
  padding: 22px;
  border-radius: 22px;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.pricing-includes article:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 102, 97, 0.2);
  box-shadow: 0 24px 42px rgba(16, 49, 50, 0.13);
}

.pricing-includes strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.pricing-includes p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up,
  .reveal-up.is-visible,
  .parallax-layer,
  .primary-button,
  .secondary-button,
  .ghost-link,
  .benefit-card,
  .hero-metrics article,
  .hero-card,
  .process-card,
  .value-grid article,
  .feature-card,
  .chat-shot,
  .cta-card,
  .trust-band,
  .tab-button {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

.cta-card .cta-label,
.cta-card p {
  color: rgba(244, 251, 250, 0.82);
}

.cta-card h3 {
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  line-height: 1.12;
  margin-bottom: 14px;
  font-weight: 800;
}

.full-width {
  width: 100%;
  margin-top: 18px;
  background: linear-gradient(135deg, var(--gold) 0%, #b68d50 100%);
  color: #243230;
  box-shadow: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .hero-grid,
  .split-section,
  .closing-section,
  .benefit-grid,
  .feature-grid,
  .dashboard-mockup,
  .dashboard-grid,
  .comparison-grid,
  .safety-grid,
  .pricing-card,
  .value-grid,
  .trust-band {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .hero,
  .content-section {
    padding: 22px;
    border-radius: 26px;
  }

  .topbar,
  .hero-grid,
  .split-section,
  .closing-section,
  .benefit-grid,
  .feature-grid,
  .dashboard-mockup,
  .dashboard-grid,
  .comparison-grid,
  .safety-grid,
  .pricing-card,
  .value-grid,
  .trust-band {
    grid-template-columns: 1fr;
  }

  .topbar {
    align-items: flex-start;
  }

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

  .hero-actions,
  .language-tabs {
    flex-direction: column;
  }

  .primary-button,
  .secondary-button,
  .tab-button {
    width: 100%;
  }

  .trust-band {
    gap: 10px;
  }

  .message {
    max-width: 100%;
  }
}
