﻿:root {
  --ink: #102033;
  --muted: #607080;
  --faint: #eef4f1;
  --line: #dfe8e4;
  --panel: #ffffff;
  --green: #079868;
  --green-dark: #057451;
  --green-soft: #e8f7f0;
  --green-faint: #f2faf7;
  --shell: min(1120px, calc(100% - 48px));
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

@font-face {
  font-family: 'Matter';
  src: url('fonts/matter/Matter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Matter';
  src: url('fonts/matter/Matter-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Matter';
  src: url('fonts/matter/Matter-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Matter';
  src: url('fonts/matter/Matter-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #fff;
  min-width: 375px;
  font-family:
    Matter,
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  line-height: 1.6;
}

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

button, input, select, textarea {
  font: inherit;
}

button, .button  {
  cursor: pointer;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.82rem;
  white-space: nowrap;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.get-started-button {
  color: var(--green-dark);
    background: #fff;
    border-color: var(--green);
}

section.hero {
  position: relative;
  overflow: hidden;
  min-height: min(80vh, 720px);
  background: #000;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("./images/anonime-hero-bg.png") center/cover no-repeat;
  max-width: 2000px;
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 84px;
  padding: 0 max(24px, calc((100vw - 1120px) / 2));
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(16px);
  transition:
    background-color 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.site-header.is-sticky {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 30px rgba(16, 32, 51, 0.08);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 52px);
  color: var(--ink);
  font-size: 0.78rem;
}

.site-nav a {
  font-size: .9rem;
}

.site-nav a.is-active,
.site-nav a[aria-current='page'] {
  color: var(--green);
  position: relative;
}

.site-nav a.is-active::after,
.site-nav a[aria-current='page']::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

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

.shell {
  width: var(--shell);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  padding-top: 80px;
}

.section {
  padding: 80px 0;
}

.section-title {
  margin: 0 auto 32px;
  color: #142035;
  text-align: center;
  line-height: 1.15;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: #0d1726;
  max-width: 90vw;
}

.section-subtitle {
  margin: 0 auto 56px;
  max-width: min(560px, 88vw);
  color: #6b7280;
  text-align: center;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

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

.brand-logo {
  width: 200px;
  height: auto;
}


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

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

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

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

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

.button:disabled,
button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
  transform: none;
}

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

.button-ghost {
    min-height: 38px;
    color: var(--green-dark);
    background: transparent;
    font-weight: 500;
}

.button-large {
  min-height: 52px;
  padding-inline: 28px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(520px, 1.1fr) minmax(320px, 0.89fr);
  gap: 50px;
  align-items: start;
  min-height: 630px;
  border-top: none;
}

.hero-copy {
  min-width: 0;
  padding-top: 125px;
}

.hero-copy h1 {
  max-width: 530px;
  margin: 0;
  font-size: clamp(3.1rem, 2.4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: 0;
  color: #fff;
}

.hero-copy h1 span {
  position: relative;
  color: var(--green);
  display: inline-block;
}

.hero-copy h1 span::after {
  content: '';
  position: absolute;
  left: -2%;
  bottom: -4px;
  width: 104%;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 12' preserveAspectRatio='none'%3E%3Cpath d='M2 10 Q 50 2 98 10' fill='none' stroke='%23079868' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E")
    no-repeat center/100% 100%;
}

.lead {
  margin: 24px 0 0;
  color: #fbfbfb;
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.play-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
color: var(--green);
  font-size: 0.9rem;
}

.play-link svg {
  height: 20px;
  width: auto;
  fill: var(--green);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 60px 0 0;
  padding: 0;
  color: #fff;
  list-style: none;
  font-size: 0.72rem;
}

.trust-strip li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 145px;
}

.icon-bubble, .mini-icon {
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
}

.icon-bubble {
  width: 32px;
  height: 32px;
}

.icon-bubble svg {
  fill: #fff;
}

.icon-bubble svg.small {
  height: 16px;
}

.mini-icon {
  width: 32px;
  height: 32px;
  color: #fff;
}

.mini-icon svg {
  height: 20px;
}

.section-label {
  color: var(--green);
  text-transform: uppercase;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 auto;
}

.statement-section {
  padding-top: 32px;
  padding-bottom: 18px;
}

.statement-section .shell {
  gap: 0;
}

.privacy-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 28px);
  align-items: stretch;
  margin-top: 28px;
}

.privacy-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 12px 8px;
  text-align: center;
}

.privacy-benefit + .privacy-benefit {
  border-left: 1px solid #e5ece8;
  padding-left: clamp(18px, 2vw, 28px);
}

.privacy-benefit-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--green);
  background: var(--green-faint);
  border-radius: 50%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 24px rgba(7, 152, 104, 0.08);
}

.privacy-benefit-icon svg {
  width: 24px;
  height: 24px;
}

.privacy-benefit-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.privacy-benefit-copy h3 {
    margin: 0 0 12px;
    color: #111827;
    font-size: 1.4rem;
    line-height: 1.25;
    font-weight: 600;
}

.privacy-benefit p {
max-width: 28ch;
    margin: 0 auto 22px;
    color: #5a6675;
    font-size: 0.98rem;
    line-height: 1.55;
}

.avatar {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-right: -9px;
  background:
    radial-gradient(circle at 50% 32%, #ffd2b6 0 20%, transparent 21%),
    linear-gradient(135deg, #24445f, #e78762);
  border: 3px solid #fff;
  border-radius: 50%;
}

.avatar-two {
  background:
    radial-gradient(circle at 50% 32%, #f4c49f 0 20%, transparent 21%),
    linear-gradient(135deg, #17283d, #b86c4f);
}

.avatar-three {
  background:
    radial-gradient(circle at 50% 32%, #ebaf89 0 20%, transparent 21%),
    linear-gradient(135deg, #16354c, #d99776);
}

.statement-image,
.personas-image {
  min-width: 460px;
}

.personas-image {
  /* max-width: 1000px; */
  /* margin: auto; */
}

.problems-section {
  padding-top: 80px;
}

.problems-section .shell {
  border-top: none;
   padding-top: 0;
}


.challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  position: relative;
}

.challenge-card {
  position: relative;
  padding: 32px 26px 28px;
  background: #fff;
  border: 1px solid #e9eef0;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(16, 32, 51, 0.04);
  text-align: center;
}

.challenge-grid > .challenge-card + .challenge-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -28px;
  width: 28px;
  height: 2px;
  background-image: radial-gradient(circle, rgba(7, 152, 104, 0.5) 1px, transparent 1.4px);
  background-size: 7px 2px;
  background-repeat: repeat-x;
  background-position: center;
}

.challenge-grid > .challenge-card + .challenge-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -28px;
  width: 28px;
  height: 6px;
  transform: translateY(-2px);
  background:
    radial-gradient(circle 3px at 3px 3px, var(--green) 99%, transparent 100%) left center / 6px 6px no-repeat,
    radial-gradient(circle 3px at 3px 3px, var(--green) 99%, transparent 100%) right center / 6px 6px no-repeat;
}

.challenge-num {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #0f3a28;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.challenge-icon-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: 170px;
  height: 170px;
  margin: 14px auto 24px;
}

.challenge-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 999px;
  border: 1px solid var(--green);
  transform: translate(-50%, -50%);
}

.challenge-ring-1 { width: 110px; height: 110px; border-color: rgba(7, 152, 104, 0.22); }
.challenge-ring-2 { width: 140px; height: 140px; border-color: rgba(7, 152, 104, 0.13); }
.challenge-ring-3 { width: 170px; height: 170px; border-color: rgba(7, 152, 104, 0.07); }

.challenge-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.95) 0 18%, transparent 19%),
    linear-gradient(180deg, #effaf5 0%, #d8f2e4 58%, #bce6cf 100%);
  border: 6px solid rgba(7, 152, 104, 0.12);
  color: var(--green);
  z-index: 1;
  box-shadow:
    0 16px 28px rgba(7, 152, 104, 0.14),
    0 5px 10px rgba(16, 32, 51, 0.12),
    inset 0 2px 0 rgba(255, 255, 255, 0.9),
    inset 0 -8px 14px rgba(7, 152, 104, 0.06);
  transform: translateY(-1px);
}

.challenge-icon svg {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.45));
}

.challenge-warning {
  position: absolute;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  bottom: calc(50% - 50px);
  left: calc(50% + 22px);
  border-radius: 999px;
  background: #fff;
  border: 2px solid var(--green-soft);
  color: var(--green);
  z-index: 2;
}

.challenge-warning svg {
  width: 14px;
  height: 14px;
}

.challenge-card h3 {
  margin: 0 0 10px;
  color: #0d1726;
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 600;
}

.challenge-card p {
  max-width: 28ch;
  margin: 0 auto 22px;
  color: #5a6675;
  font-size: 0.98rem;
  line-height: 1.55;
}

.challenge-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--green-soft);
  font-size: 0.78rem;
}

.challenge-status .cs-mark {
  color: var(--green);
  font-size: 0.95rem;
  line-height: 1;
}

.challenge-status strong {
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.challenge-status span:last-child {
  color: #6b7280;
}

.statement-section {
  padding-top: 32px;
  padding-bottom: 18px;
}

.statement-section .shell {
  gap: 0;
}

strong {
  font-weight: 600;
}

.persona-card.is-active {
  background: #eefaf4;
  border-color: #8fd2ad;
  box-shadow: inset 0 0 0 1px rgba(7, 152, 104, 0.18);
  transform: translateY(-1px);
  position: relative;
}

.persona-card.is-active::after {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 18px;
  height: 18px;
  content: "";
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 2px #d8f2e6;
}

.persona-card.is-active::before {
  position: absolute;
  top: 14px;
  right: 15px;
  z-index: 1;
  width: 8px;
  height: 4px;
  content: "";
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.persona-card.is-active small {
  color: #fff;
  background: var(--green);
}

.personas-carousel-section {
  position: relative;
  padding-top: 80px;
  padding-bottom: 60px;
  overflow: hidden;
  background: #fff;
}

.personas-carousel-section::before, .personas-carousel-section::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 320px;
  height: 320px;
  background-image: radial-gradient(circle, rgba(7, 152, 104, 0.55) 1.4px, transparent 1.8px);
  background-size: 14px 14px;
  -webkit-mask-image: radial-gradient(circle, #000 30%, transparent 72%);
  mask-image: radial-gradient(circle, #000 30%, transparent 72%);
  transform: translateY(-50%);
  pointer-events: none;
}

.personas-carousel-section::before {
  left: 10%;
}

.personas-carousel-section::after {
  right: 55px;
}

.personas-carousel-section .section-subtitle {
  margin-top: -44px;
}

.personas-carousel {
  position: relative;
  height: 540px;
  margin: 0 auto;
  width: 100%;
  max-width: 1080px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  color: var(--green-dark);
  background: var(--green-soft);
  border: 0;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: background-color 0.18s ease;
}

.carousel-arrow:hover {
  background: rgba(20, 30, 46, 0.78);
  transform: translateY(-50%);
}

.carousel-arrow svg {
  width: 22px;
  height: 22px;
}

.carousel-prev {
  left: 12px;
}

.carousel-next {
  right: 12px;
}

.carousel-stage {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1400px;
}

.carousel-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: 340px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(16, 32, 51, 0.12);
  transform: translateX(-50%);
  transition:
    transform 0.55s cubic-bezier(0.65, 0.05, 0.35, 1),
    opacity 0.45s ease,
    filter 0.45s ease;
  will-change: transform, opacity;
}

.carousel-card.pos-center {
  transform: translateX(-50%) scale(1);
  z-index: 5;
  opacity: 1;
  filter: none;
}

.carousel-card.pos-right {
  transform: translateX(calc(-50% + 270px)) scale(0.82);
  z-index: 3;
  opacity: 0.42;
  filter: saturate(0.7);
}

.carousel-card.pos-left {
  transform: translateX(calc(-50% - 270px)) scale(0.82);
  z-index: 3;
  opacity: 0.42;
  filter: saturate(0.7);
}

.carousel-card.pos-far-right {
  transform: translateX(calc(-50% + 430px)) scale(0.66);
  z-index: 1;
  opacity: 0.18;
  filter: saturate(0.5);
}

.carousel-card.pos-far-left {
  transform: translateX(calc(-50% - 430px)) scale(0.66);
  z-index: 1;
  opacity: 0.18;
  filter: saturate(0.5);
  pointer-events: none;
}

.carousel-card.pos-back {
  transform: translateX(-50%) translateY(-28px) scale(0.62);
  z-index: 1;
  opacity: 0.4;
  filter: saturate(0.55);
  pointer-events: none;
}

.carousel-card.pos-hidden {
  transform: translateX(-50%) scale(0.5);
  opacity: 0;
  pointer-events: none;
}

.card-photo {
  display: block;
  width: 100%;
  padding: 18px 0 0;
  text-align: center;
  background: linear-gradient(180deg, #f8fbfd 0%, #eef3f7 100%);
}

.card-avatar {
  display: block;
  width: 210px;
  height: 210px;
  margin: 0 auto;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(16, 32, 51, 0.12);
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 18px 22px 22px;
}

.card-identity-label {
  display: inline-flex;
  align-self: flex-start;
  padding: 7px 11px;
  color: #fff;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ci-work        { background: #1a6d30; }
.ci-marketplace { background: #ab4876; }
.ci-community   { background: #5a3090; }
.ci-private     { background: #9b7030; }
.ci-creator     { background: #2d6f8f; }

.card-id-name {
  display: block;
  color: #152235;
  font-size: 1.42rem;
  font-weight: 700;
  line-height: 1.1;
}

.card-id-email {
  display: block;
  color: #6f7d8f;
  font-size: 0.86rem;
  line-height: 1.2;
}

.card-focus {
  margin: 0;
  color: #263243;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.35;
}

.card-focus span {
  color: var(--green);
}

.card-text {
  margin: 0;
  color: #546172;
  font-size: 0.94rem;
  line-height: 1.55;
  text-align: left;
}

.persona-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.persona-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: #6a7584;
  background: #f4f6f8;
  border: 1px solid #e5eaef;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 600;
}

.carousel-cta {
  display: inline-flex;
  align-self: center;
  margin: 48px auto 0;
  padding: 0 30px;
  border-radius: var(--radius);
}

.whispers-section {
  padding-top: 34px;
}

.whispers-section .section-subtitle {
  margin-top: -44px;
}

.whispers-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(360px, 1.05fr);
  gap: 54px;
  align-items: center;
}

.testimonials {
  padding-top: 22px;
}

.stars {
  color: var(--green);
  letter-spacing: 3px;
  font-size: 1.1rem;
}

.avatar {
  width: 42px;
  height: 42px;
  margin: 0;
}

.cta-section {
  padding: 200px 0 120px;
}

.cta-card {
  position: relative;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  min-height: 250px;
  align-items: center;
  overflow: visible;
  padding: 24px 56px 24px 330px;
  color: #fff;
  background: var(--green);
  border-radius: 18px;
}

.cta-card h4 {
  font-weight: 500;
  font-size: 1.2rem;
  margin: .5rem 0;
}

.cta-phone {
  position: absolute;
  left: 120px;
  bottom: 0px;
  width: 350px;
  transform: rotate(-12deg);
}

.cta-phone img {
  width: 100%;
}

.screen-content {
  position: absolute;
  inset: 58px 26px 42px;
  display: grid;
  gap: 8px;
  padding: 24px 14px;
  color: var(--ink);
  background: #f4faf7;
  border-radius: 20px;
  font-size: 0.62rem;
}

.screen-content span {
  padding: 12px 10px;
  background: #fff;
  border: 1px solid #dce9e3;
  border-radius: 9px;
}

.screen-content button {
  margin-top: auto;
  color: #fff;
  background: var(--green);
  border: 0;
  border-radius: 9px;
}

.cta-copy {
  grid-column: 2;
}

.cta-copy h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(1.75rem, 2.8vw, 2.6rem);
  line-height: 1.2;
}

.cta-copy h2 span {
  opacity: 0.72;
}

.cta-steps {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.cta-steps li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}

.cta-tagline {
  margin: 20px 0 28px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-style: italic;
}

/* Pricing */
.pricing-section {
  padding: 72px 0 80px;
}

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

.duration-btn {
  flex: 1;
  min-width: fit-content;
  min-height: 0;
  padding: 7px 10px;
  background: transparent;
  border: 0;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.duration-btn:hover {
  color: var(--ink);
}

.duration-btn.is-active {
  background: #fff;
  color: var(--green);
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(16, 32, 51, 0.1);
}

.pricing-art {
  min-width: 450px;
  max-width: 930px;
  margin: auto;
}

.pricing-card-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-plan {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-amount {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--muted);
}

.pricing-desc {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}

.pricing-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.pricing-feat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--ink);
  transition: color 0.2s;
}

.pricing-feat:has(.feat-toggle:not(.is-on)) {
  color: var(--muted);
}

.feat-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.feat-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s;
}

.feat-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}

.pricing-feat:has(.feat-toggle:not(.is-on)) .feat-name {
  color: var(--muted);
}

.pricing-feat-free {
  background: var(--green-faint);
  margin: 0 -4px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 8px;
  border-bottom-color: transparent;
}

.pricing-feat-free + .pricing-feat-free {
  margin-top: 2px;
}

.feat-price-free {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  min-width: 36px;
  text-align: right;
}

.feat-toggle-locked {
  background: var(--green) !important;
  cursor: default;
  opacity: 0.55;
}

.feat-toggle-locked::after {
  transform: translateX(24px);
}

.feat-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.feat-price {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  min-width: 36px;
  text-align: right;
  transition: color 0.2s;
}

.pricing-feat:has(.feat-toggle:not(.is-on)) .feat-price {
  color: var(--muted);
}

/* Toggle switch */
.feat-toggle {
  flex-shrink: 0;
  position: relative;
  width: 52px;
  height: 28px;
  min-height: 0;
  padding: 4px;
  background: #cbd5e0;
  border: 0;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.22s ease;
  outline-offset: 3px;
}

.feat-toggle::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
  transition: transform 0.22s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feat-toggle.is-on {
  background: var(--green);
}

.feat-toggle.is-on::after {
  transform: translateX(24px);
}

.pricing-cta {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.reviews-section {
  padding: 60px 0 48px;
}

.reviews-section .section-subtitle {
  margin-top: -44px;
}

.testimonial-panel-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  padding: 0;
  border-radius: 20px;
  /* box-shadow: 0 8px 32px rgba(16, 32, 51, 0.08); */
  border: 1px solid #eef2ef;
}


.tp-left {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 30px 56px 30px 24px;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.tp-left svg {
  margin-left: 26px;
  height: 48px;
  width: 48px;
  color: var(--green);
}

.tp-left-inner {
  max-width: max(478px, 48vw);
  width: 100%;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.tp-left-inner .section-label {
  align-self: flex-start;
}

.tp-left-inner .section-subtitle {
  margin-bottom: 32px;
}

.tp-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 36px 28px;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.tp-right {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: end;
}

.testimonial-hro-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tp-right-inner-icon {
  position: absolute;
  top: 50px;
  right: 50px;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background: var(--green);
  z-index: 1;
  display: grid;
  place-items: center;
  color: #fff;
}

.tp-right-inner-icon svg {
  width: 48px;
  height: 48px;
}

.tp-right img {
  position: absolute;
  max-height: 300px;
  bottom: 0;
  right: 0;
}

.tp-right .happy-anonime-users {
    top: 190px;
    right: 30px;
    z-index: 99999999999999999999999999;
    max-height: 100px;
}

.panel-slide-quote {
  margin: 0 0 24px;
  color: #132031;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.6;
  font-style: italic;
  overflow-wrap: anywhere;
}

.panel-slide-author {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.panel-slide-author div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.panel-slide-author strong {
  color: #132031;
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}

.panel-slide-author span {
  color: #6b7280;
  font-size: 0.875rem;
  overflow-wrap: anywhere;
}

.testimonial-panel-section .section-subtitle {
  margin-bottom: 18px;
}

.testimonial-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 18px 8px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #eef2ef;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(16, 32, 51, 0.05);
}

.testimonial-metric {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 12px;
  text-align: center;
}

.testimonial-metric + .testimonial-metric::before {
  content: '';
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 1px;
  background: #e4ebe7;
}

.testimonial-stars {
  color: var(--green);
  letter-spacing: 3px;
  font-size: 1rem;
  line-height: 1;
}

.testimonial-crown,
.testimonial-badge-value {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--green);
  background: #f2faf6;
  border-radius: 999px;
}

.testimonial-crown svg {
  width: 21px;
  height: 21px;
}

.testimonial-badge-value {
  font-size: 1.34rem;
  font-weight: 700;
}

.testimonial-metric strong {
  color: #132031;
  font-size: 1.95rem;
  line-height: 1;
  font-weight: 600;
}

.testimonial-metric span {
  color: #66748a;
  font-size: 0.98rem;
  line-height: 1.35;
}

.testimonial-feature-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 28px;
  width: 100%;
  max-width: 980px;
  margin: 6px auto 0;
  padding: 34px 34px 30px;
  background: #fff;
  border: 1px solid #edf2ef;
  border-radius: 28px;
  box-shadow: 0 16px 38px rgba(16, 32, 51, 0.06);
}

.testimonial-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 24px 28px 32px;
  overflow: hidden;
}

.testimonial-mark {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 4.2rem;
  line-height: 0.8;
  font-weight: 600;
}

.testimonial-quote {
    margin: 0;
    color: #132031;
    font-size: clamp(1.5rem, 2.6vw, 1.55rem);
    line-height: 1.35;
    letter-spacing: -0.03em;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.testimonial-author-avatar {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border: 4px solid #fff;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 30%, #f4c7a8 0 18%, transparent 19%),
    radial-gradient(circle at 50% 68%, #1f3148 0 24%, transparent 25%),
    linear-gradient(135deg, #23374d, #ef8f69);
  box-shadow: 0 10px 22px rgba(16, 32, 51, 0.12);
}

.testimonial-author-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author-copy strong {
  color: #132031;
  font-size: 1.05rem;
}

.testimonial-author-copy span {
  color: #6b7280;
  font-size: 0.95rem;
}

.testimonial-author-stars {
  color: var(--green);
  letter-spacing: 3px;
  font-size: 0.95rem;
  line-height: 1;
}

.panel-slides-wrap {
  overflow: hidden;
  width: 100%;
}

.panel-slides-track {
  display: flex;
  width: 100%;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.panel-slide {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.panel-slide-stars {
  color: var(--green);
  letter-spacing: 3px;
  font-size: 1.05rem;
  margin-bottom: 14px;
  line-height: 1;
}

.panel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 28px;
}

.panel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 100px;
  background: #d1d5db;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
  min-height: auto;
}

.panel-dot.is-active {
  width: 24px;
  background: var(--green);
}

.testimonial-feature-visual {
  position: relative;
  min-height: 420px;
}

.testimonial-feature-visual::before {
  content: '';
  position: absolute;
  inset: 64px 10% 16px 16%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(7, 152, 104, 0.18), rgba(7, 152, 104, 0.08) 42%, rgba(7, 152, 104, 0.02) 62%, transparent 74%);
}

.testimonial-feature-visual::after {
  content: '';
  position: absolute;
  inset: 88px 16% 56px 22%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(7, 152, 104, 0.11) 1.1px, transparent 1.8px);
  background-size: 10px 10px;
  opacity: 0.7;
}

.testimonial-orb {
  position: absolute;
  inset: 82px 14% 72px 20%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(7, 152, 104, 0.18), rgba(7, 152, 104, 0.06) 56%, rgba(7, 152, 104, 0.01) 70%, transparent 74%);
}

.testimonial-feature-badge {
  position: absolute;
  top: 0;
  right: 10px;
  display: inline-grid;
  place-items: center;
  width: 92px;
  height: 92px;
  color: #fff;
  background: linear-gradient(180deg, #37bf8e 0%, #1fa271 100%);
  border: 10px solid rgba(233, 248, 241, 0.9);
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(16, 32, 51, 0.06);
  z-index: 3;
}

.testimonial-feature-badge svg {
  width: 34px;
  height: 34px;
}

.testimonial-avatar-rack {
  position: absolute;
  top: 154px;
  left: 50%;
  display: flex;
  align-items: center;
  transform: translateX(-50%);
  z-index: 2;
}

.rack-avatar {
  width: 64px;
  height: 64px;
  margin-left: -12px;
  border: 5px solid #fff;
  border-radius: 50%;
  box-shadow: 0 10px 18px rgba(16, 32, 51, 0.14);
}

.rack-avatar:first-child {
  margin-left: 0;
}

.rack-avatar-center {
  width: 88px;
  height: 88px;
  z-index: 3;
}

.rack-avatar-one {
  background:
    radial-gradient(circle at 50% 30%, #f2d0b2 0 18%, transparent 19%),
    linear-gradient(135deg, #18344a, #efbf87);
}

.rack-avatar-two {
  background:
    radial-gradient(circle at 50% 30%, #f6d6bd 0 18%, transparent 19%),
    linear-gradient(135deg, #123149, #c56a78);
}

.rack-avatar-three {
  background:
    radial-gradient(circle at 50% 30%, #f3caad 0 18%, transparent 19%),
    linear-gradient(135deg, #1b4056, #f3ad7c);
}

.rack-avatar-four {
  background:
    radial-gradient(circle at 50% 30%, #edd0ba 0 18%, transparent 19%),
    linear-gradient(135deg, #15324a, #7ac0cf);
}

.rack-avatar-five {
  background:
    radial-gradient(circle at 50% 30%, #f7d9b5 0 18%, transparent 19%),
    linear-gradient(135deg, #17283d, #ed9d67);
}

.testimonial-note {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  color: #263344;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #eef3ef;
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(16, 32, 51, 0.08);
  backdrop-filter: blur(8px);
  z-index: 4;
}

.testimonial-note p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.45;
}

.note-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  color: var(--green-dark);
  background: #eef9f4;
  border-radius: 999px;
}

.note-icon svg {
  width: 18px;
  height: 18px;
}

.note-icon-heart {
  color: #0f9b66;
}

.testimonial-note-left {
  left: -36px;
  bottom: 94px;
}

.testimonial-note-bottom {
  left: 55%;
  bottom: 20px;
  width: min(100%, 280px);
  transform: translateX(-50%);
}

.testimonial-note-right {
  right: -26px;
  bottom: 82px;
  width: min(100%, 220px);
}

.testimonial-footer-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: 100%;
  max-width: 980px;
  margin: 8px auto 0;
  padding-top: 24px;
  border-top: 1px solid #e8eeea;
}

.testimonial-community {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.testimonial-community p {
  max-width: 26ch;
  margin: 0;
  color: #263344;
  font-size: 1.05rem;
  line-height: 1.5;
}

.testimonial-community strong {
  color: var(--green);
  font-weight: 600;
}

.testimonial-community-avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.community-avatar {
  width: 48px;
  height: 48px;
  margin-left: -10px;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(16, 32, 51, 0.12);
}

.community-avatar:first-child {
  margin-left: 0;
}

.community-avatar-one {
  background:
    radial-gradient(circle at 50% 30%, #efc59c 0 18%, transparent 19%),
    linear-gradient(135deg, #1f3850, #78d097);
}

.community-avatar-two {
  background:
    radial-gradient(circle at 50% 30%, #f1c0a0 0 18%, transparent 19%),
    linear-gradient(135deg, #223247, #dda16f);
}

.community-avatar-three {
  background:
    radial-gradient(circle at 50% 30%, #efd1b6 0 18%, transparent 19%),
    linear-gradient(135deg, #17354b, #f18f6c);
}

.community-avatar-four {
  background:
    radial-gradient(circle at 50% 30%, #f4c69f 0 18%, transparent 19%),
    linear-gradient(135deg, #173347, #9cd8ff);
}

.testimonial-more-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 18px;
  color: var(--green-dark);
  background: #fff;
  border: 1px solid #dfe8e4;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(16, 32, 51, 0.05);
  transition: color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.testimonial-more-link span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--green);
  background: #f2faf6;
  border-radius: 50%;
  font-size: 0.95rem;
}

.testimonial-more-link:hover {
  color: var(--green);
  border-color: #cfe4da;
  transform: translateY(-1px);
}

.faq-section {
  padding-top: 40px;
  padding-bottom: 120px;
}

.faq-shell {
  gap: 28px;
  border-top: none;
  padding-top: 0;
}

.faq-shell,
.faq-shell .section-title,
.faq-shell .section-subtitle {
  max-width: none;
}

.faq-image {
  max-width: min(500px, 100%);
  margin: auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.faq-item {
  overflow: hidden;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #dfe8e4;
  border-radius: 0;
  transition: transform 0.28s ease;
  /* Allow height: auto to be animated on ::details-content */
  interpolate-size: allow-keywords;
}

/*
 * Animate the native disclosure widget itself. A transition on a child of
 * <details> can't run, because the browser hides/shows that content instantly
 * when the open state changes. ::details-content is the box we can actually
 * transition.
 */
.faq-item::details-content {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 0.3s ease, opacity 0.3s ease,
    content-visibility 0.3s allow-discrete;
}

.faq-item[open]::details-content {
  height: auto;
  opacity: 1;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 0;
  color: #0f1726;
  font-size: 1.02rem;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

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

.faq-item summary svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: var(--green);
  transform: rotate(180deg);
  transition: transform 0.28s ease;
}

.faq-item[open] summary svg {
  transform: none;
}

.faq-answer {
  padding: 0 0 22px;
  color: #5d6a7b;
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-answer p {
  margin: 0;
  max-width: 62ch;
}

.faq-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px 26px 24px;
  background: linear-gradient(180deg, #fdfefe 0%, #f6fbf8 100%);
  border: 1px solid #dfe8e4;
  border-radius: 18px;
}

.faq-panel-icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin: 4px auto 0;
  color: var(--green);
  background: radial-gradient(circle, rgba(7, 152, 104, 0.08) 0 56%, transparent 57%);
  border-radius: 50%;
}

.faq-panel-icon svg {
  width: 58px;
  height: 58px;
}

.faq-panel h3 {
  margin: 0;
  color: #111827;
  font-size: 1.2rem;
  line-height: 1.25;
  font-weight: 500;
  text-align: center;
}

.faq-panel > p {
  margin: 0;
  color: #5e6a7d;
  font-size: 0.96rem;
  line-height: 1.65;
  text-align: center;
}

.faq-panel-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.faq-panel-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding-top: 18px;
  border-top: 1px solid #e3ebe6;
}

.faq-panel-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.faq-panel-mini-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 999px;
}

.faq-panel-mini-icon svg {
  width: 20px;
  height: 20px;
}

.faq-panel-list strong {
  display: block;
  color: #111827;
  font-size: 0.94rem;
  line-height: 1.35;
}

.faq-panel-list span {
  margin-top: 2px;
  color: #66748a;
  font-size: 0.88rem;
  line-height: 1.55;
}

.faq-panel-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: center;
  margin-top: 4px;
  color: var(--green-dark);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 0.18s ease, transform 0.18s ease;
}

.faq-panel-link:hover {
  color: var(--green);
  transform: translateX(2px);
}

.faq-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 22px 26px;
  background: #fff;
  border: 1px solid #dfe8e4;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(16, 32, 51, 0.04);
}

.faq-footer-copy {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.faq-footer-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 50%;
}

.faq-footer-icon svg {
  width: 24px;
  height: 24px;
}

.faq-footer-copy strong {
  display: block;
  color: #111827;
  font-size: 1.02rem;
  line-height: 1.35;
}

.faq-footer-copy span {
  color: #66748a;
  font-size: 0.94rem;
  line-height: 1.45;
}

.faq-contact-button {
  min-width: 170px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(360px, 1.15fr);
  gap: 64px;
  align-items: center;
}

.reviews-art img {
  width: 100%;
  display: block;
  max-width: 360px;
  margin: 0 auto;
}

/* avatar variants */
.avatar-four {
  background:
    radial-gradient(circle at 50% 32%, #f0c6ad 0 20%, transparent 21%),
    linear-gradient(135deg, #2d5e52, #a25042);
}

.avatar-five {
  background:
    radial-gradient(circle at 50% 32%, #d4c5f9 0 20%, transparent 21%),
    linear-gradient(135deg, #4a3b8c, #9b7fd4);
}

/* Reviews carousel */
.reviews-carousel {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.reviews-track-wrap {
  overflow: hidden;
  border-radius: 16px;
  width: 100%;
}

.reviews-track {
  display: flex;
  width: 100%;
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.65, 0.05, 0.35, 1);
}

.review-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 36px 40px;
  background: var(--green-faint);
  border-radius: 16px;
}

.review-slide .stars {
  display: block;
  margin-bottom: 18px;
  font-size: 1.1rem;
  letter-spacing: 3px;
}

.review-slide p {
  margin: 0 0 24px;
  color: #1f2937;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-author strong, .review-author small {
  display: block;
}

.review-author strong {
  color: #111827;
  font-size: 0.9rem;
}

.review-author small {
  color: #6b7280;
  font-size: 0.8rem;
}

.reviews-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reviews-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #d1d5db;
  cursor: pointer;
  transition: width 0.25s ease, background-color 0.25s ease;
  min-height: auto;
}

.reviews-dot.is-active {
  width: 24px;
  background: var(--green);
}

.reviews-arrows {
  display: flex;
  gap: 8px;
}

.reviews-prev, .reviews-next {
  display: flex;
  width: 40px;
  height: 40px;
  min-height: auto;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.reviews-prev:hover, .reviews-next:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  transform: none;
}

.reviews-prev svg, .reviews-next svg {
  width: 18px;
  height: 18px;
}

blockquote {
  margin: 0;
}

blockquote > span {
  display: block;
  color: var(--green);
  font-size: 6rem;
  line-height: 0.8;
}

blockquote p {
  max-width: 620px;
  margin: 0 0 28px;
  color: #26384d;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.7;
}

blockquote cite {
  display: block;
  color: #142035;
  font-style: normal;
  font-weight: 700;
}

blockquote strong {
  display: block;
  margin-top: 26px;
  font-size: 1.25rem;
  font-weight: 600;
}

.site-footer {
  padding: 0 0 48px;
  background: linear-gradient(180deg, var(--green-faint) 0%, #fff 70%);
}

/* Footer */
.footer-main {
  width: min(1600px, calc(100% - 64px));
  margin: 0 auto;
  overflow: hidden;
}

.footer-top,
.footer-middle,
.footer-bottom {
  padding-left: 56px;
  padding-right: 56px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  gap: 56px;
  padding-top: 52px;
  padding-bottom: 48px;
}

.footer-brand-col {
  flex: 0 1 min(680px, 40vw);
  min-width: 0;
}

.footer-headline {
  margin: 44px 0 0;
  color: var(--ink);
  font-size: clamp(2.1rem, 3vw, 3.25rem);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.footer-headline span {
  color: var(--green);
}

.footer-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 42px 0 0;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-trust strong {
  font-weight: 600;
}

.footer-trust-icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--green);
  background: #f6fbf9;
  border-radius: 12px;
}

.footer-trust-icon svg {
  width: 20px;
  height: 20px;
}

.footer-navs {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  margin-left: auto;
  max-width: 820px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
  padding-left: 34px;
  border-left: 1px solid #e8eeec;
}

.footer-nav:first-child {
  padding-left: 0;
  border-left: 0;
}

.footer-nav-heading {
  margin: 0;
  padding-bottom: 10px;
  color: var(--green);
  border-bottom: 1px solid var(--green);
  width: fit-content;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-nav a {
  color: #415469;
  font-size: 0.98rem;
  transition: color 0.15s;
}

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

.footer-middle {
  padding-top: 28px;
  padding-bottom: 28px;
  border-top: 1px solid #e6ece9;
}

.footer-middle-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 32px;
  color: #3b4c60;
  font-size: 0.98rem;
  line-height: 1.5;
  text-align: center;
}

.footer-middle-title strong {
  color: var(--green);
  font-weight: 600;
}

.footer-middle-icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: #65758a;
}

.footer-middle-icon svg {
  width: 20px;
  height: 20px;
}

.footer-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.footer-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding: 16px 22px;
}

.footer-feature + .footer-feature {
  border-left: 1px solid #e8eeec;
}

.footer-feature-icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--green);
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.96) 0 18%, transparent 19%),
    linear-gradient(180deg, #effaf5 0%, #d8f2e4 58%, #bce6cf 100%);
  border: 1px solid rgba(7, 152, 104, 0.12);
  border-radius: 12px;
  box-shadow:
    0 10px 20px rgba(7, 152, 104, 0.12),
    0 3px 8px rgba(16, 32, 51, 0.08),
    inset 0 2px 0 rgba(255, 255, 255, 0.88),
    inset 0 -6px 10px rgba(7, 152, 104, 0.06);
  transform: translateY(-1px);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.footer-feature-icon svg {
  width: 22px;
  height: 22px;
}

.footer-feature:hover .footer-feature-icon {
  transform: translateY(-3px);
  border-color: rgba(7, 152, 104, 0.22);
  box-shadow:
    0 14px 28px rgba(7, 152, 104, 0.14),
    0 5px 12px rgba(16, 32, 51, 0.1),
    inset 0 2px 0 rgba(255, 255, 255, 0.92),
    inset 0 -8px 14px rgba(7, 152, 104, 0.08);
}

.footer-feature span:last-child {
  color: #34475c;
  font-size: 0.95rem;
  line-height: 1.45;
}

.footer-bottom {
  padding-top: 18px;
  padding-bottom: 18px;
  border-top: 1px solid #e6ece9;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-copyright {
  margin: 0;
  color: #738196;
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  color: #5f6f82;
  font-size: 0.9rem;
}

.footer-bottom-links a:hover {
  color: var(--green);
}

.footer-socials {
  margin-left: auto;
  justify-content: flex-end;
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #47576b;
  transition: color 0.15s;
}

.footer-social-link:hover {
  color: var(--green);
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
}

.footer-tagline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 30px 0 0;
  color: #65758a;
  font-size: 0.92rem;
  line-height: 1.45;
}

.footer-tagline strong {
  color: var(--green);
  font-weight: 600;
}

.footer-tagline-icon {
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: #65758a;
}

.footer-tagline-icon svg {
  width: 18px;
  height: 18px;
}

.page-anchor {
  position: relative;
  display: block;
  height: 1px;
  margin-top: -1px;
  scroll-margin-top: 110px;
  pointer-events: none;
  visibility: hidden;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(7, 152, 104, 0.22);
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

.back-to-top:hover {
  transform: translateY(-2px);
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 16px 34px rgba(7, 152, 104, 0.28);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(7, 152, 104, 0.28);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.auth-copy .lead {
  max-width: 44ch;
}

/* -- Whispers section redesign -- */

.section-title span {
  color: var(--green);
}

.whispers-grid{
  display: grid;
  grid-template-columns: minmax(320px, 1.5fr) minmax(380px, 1.15fr);
  gap: 56px;
  align-items: center;
}

.whispers-body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.whisper-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 28px;
}

.whisper-feat {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
}

.wf-icon {
  display: flex;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 8px;
}

.wf-icon svg {
  width: 16px;
  height: 16px;
}

.whisper-feat strong {
  display: block;
  color: #111827;
  font-weight: 500;
  line-height: 1.3;
}

.whisper-feat > div > span {
  display: block;
  margin-top: 3px;
  color: #6b7280;
  line-height: 1.5;
}

.whispers-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.whispers-visual {
  position: relative;
}

.whispers-photo {
  width: 100%;
  display: block;
  border-radius: 60px;
}

/* -- Private Drops section -- */
.private-drops-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

.private-drops-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  background: var(--green-faint);
  border-radius: 24px;
}

.pd-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.pd-feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: #fff;
  border-radius: 12px;
}

.pd-feat-icon {
  display: flex;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 10px;
}

.pd-feat-icon svg {
  width: 17px;
  height: 17px;
}

.pd-feat strong {
  display: block;
  color: #111827;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.3;
}

.pd-feat > div > span {
  display: block;
  margin-top: 4px;
  color: #6b7280;
  font-size: 0.8rem;
  line-height: 1.5;
}

.pd-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.pd-ctas .button-primary {
  gap: 8px;
}

.pd-ctas .button-primary svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.private-drops-visual img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav, .header-actions {
    display: none;
  }

  .site-header.nav-expanded .site-nav {
    position: fixed;
    inset: 84px 24px auto;
    display: grid;
    gap: 4px;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 20px 48px rgba(16, 32, 51, 0.12);
  }

  .site-header.nav-expanded .site-nav a {
    padding: 12px 10px;
  }

  .challenge-grid, .whispers-grid, .reviews-grid, .testimonial-feature-card, .testimonial-footer-row {
    grid-template-columns: 1fr;
  }

  .pricing-single {
    padding: 0 16px;
  }

  .challenge-grid {
    gap: 20px;
    padding: 0 32px;
  }

  .challenge-grid > .challenge-card + .challenge-card::before,
  .challenge-grid > .challenge-card + .challenge-card::after {
    display: none;
  }

  .statement-image {
    margin: auto;
  }

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

  .faq-panel {
    order: 2;
  }

  .faq-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .faq-footer-copy {
    justify-content: center;
  }

  .footer-main {
    width: min(1600px, calc(100% - 32px));
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .footer-brand-col {
    width: 100%;
    flex: 0 1 285px;
  }

  .footer-navs {
    width: 100%;
    gap: 24px;
    max-width: none;
  }

  .footer-nav {
    min-width: 0;
  }

  .cta-card {
    grid-template-columns: 1fr;
    padding: 75px 34px 42px;
  }

  .cta-phone {
    left: 430px;
    top: -210px;
    transform: rotate(-6deg);
  }

  .cta-copy {
    grid-column: auto;
  }

  .private-drops-grid {
    grid-template-columns: 1fr;
  }

  .private-drops-card {
    padding: 16px;
  }

  .whispers-grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .personas-carousel {
    height: 500px;
  }

  .carousel-card {
    width: 300px;
  }

  .carousel-card.pos-right {
    transform: translateX(calc(-50% + 180px)) scale(0.84);
  }

  .carousel-card.pos-left {
    transform: translateX(calc(-50% - 180px)) scale(0.84);
  }

  .carousel-card.pos-far-right {
    transform: translateX(calc(-50% + 300px)) scale(0.68);
  }

  .carousel-card.pos-far-left {
    transform: translateX(calc(-50% - 300px)) scale(0.68);
  }

  .personas-carousel-section::before {
    left: 6%;
    width: 220px;
    height: 220px;
  }

  .personas-carousel-section::after {
    right: -160px;
    width: 220px;
    height: 220px;
  }

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

  .tp-left-inner {
    max-width: unset;
    width: 100%;
  }

  .tp-right {
    justify-content: center;
    align-items: center;
    margin-top: -32px;
  }

  .tp-right img {
    position: relative;
    bottom: unset;
    right: unset;
  }

  .tp-right .happy-anonime-users {
     right: 0;
  }

  .tp-left {
    padding: 30px 10px 0;
  }

  .tp-right-inner-icon {
    position: relative;
    right: unset;
  }

  .pricing-art {
    max-width: 100%;
    margin: unset;
  }
}

@media (max-width: 842px) {
  .cta-section {
    padding-top: 120px;
    padding-bottom: 32px;
  }

  .cta-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 180px 30px 42px;
    position: relative;
  }

  .cta-phone {
    left: 50%;
    top: -182px;
    width: min(250px, 44vw);
    transform: translateX(-50%) rotate(-8deg);
    z-index: 2;
  }

  .cta-copy {
    grid-column: auto;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .cta-copy h2 {
    margin-inline: auto;
    max-width: 14ch;
  }

  .cta-card h4 {
    font-size: 1.08rem;
  }
}

@media (max-width: 600px) {
  .tp-left {
    padding-inline: 16px;
  }

  .tp-card {
    padding: 20px 16px 18px;
    border-radius: 16px;
  }

  .panel-slide-quote {
    font-size: 1rem;
  }

  .panel-slide-author {
    gap: 12px;
    margin-top: 24px;
  }
}

@media (max-width: 720px) {
  :root {
    --shell:100%;
  }

  .section {
    padding: 34px 0;
  }

  section.hero {
    position: relative;
    overflow: hidden;
    min-height: 800px;
    background: #000;
  }

  .shell {
    align-items: center;
  }

  .cta-section {
    padding-top: 84px;
    padding-bottom: 0;
  }

  .shell.cta-card {
    border-radius: 0;
  }

  .cta-card {
    padding: 175px 22px 36px;
  }

  .cta-phone {
    top: -138px;
    width: min(210px, 42vw);
    transform: translateX(-50%) rotate(-9deg);
  }

  .cta-copy h2 {
    max-width: 12ch;
  }
  
  .statement-image {
    min-width: 500px;
  }

  .play-link {
    justify-content: center;
    margin-top: 18px;
  }

  .hero-grid {
    display: block;
  }

  .hero-copy {
    padding-top: 40px;
}

  .site-header {
    min-height: 74px;
    padding-inline: 15px;
  }

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

  .whisper-features-grid, .pd-features {
    grid-template-columns: 1fr;
  }

  .whispers-grid {
    gap: 24px;
    padding: 0 22px;
  }

  .whispers-body {
    padding: 0 30px;
  }

  .reviews-grid, .private-drops-grid {
    padding: 24px;
    border-radius: 0;
  }

  .testimonial-panel-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .tp-left {
    justify-content: flex-start;
    padding: 0 24px 0;
  }

  .tp-left-inner {
    max-width: 100%;
  }

  .testimonial-panel-section {
    border-radius: 0;
    border: 0;
  }

  .tp-card {
    padding: 24px 22px 20px;
  }

  .testimonial-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }

  .testimonial-metric + .testimonial-metric::before {
    display: none;
  }

  .testimonial-feature-card {
    padding: 28px 22px 24px;
  }

  .testimonial-feature-copy {
    padding: 0;
  }

  .testimonial-quote {
    max-width: none;
  }

  .testimonial-feature-visual {
    min-height: 380px;
  }

  .testimonial-note-left {
    left: -6px;
    bottom: 100px;
  }

  .testimonial-note-right {
    right: -6px;
    bottom: 86px;
  }

  .testimonial-note-bottom {
    left: 50%;
    bottom: 16px;
    width: min(100%, 280px);
  }

  .testimonial-footer-row {
    padding-top: 22px;
  }

  .testimonial-community {
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }

  .testimonial-community p {
    max-width: 100%;
  }

  .testimonial-more-link {
    justify-self: center;
  }

  .private-drops-visual, .review-slide {
    padding: 24px 20px;
  }

  .faq-section {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .faq-item summary {
    padding: 18px 18px;
    font-size: 0.98rem;
  }

  .faq-answer {
    padding: 0 18px 18px;
  }

  .faq-panel,
  .faq-footer {
    padding: 22px 20px;
  }

  .faq-panel-icon {
    width: 76px;
    height: 76px;
  }

  .faq-panel-icon svg {
    width: 50px;
    height: 50px;
  }

  .faq-image {
    max-width: min(420px, 100%);
  }

  .whispers-photo {
    width: 100%;
    display: block;
    border-radius: 0;
  }

  .hero-copy h1 {
    width: calc(100vw - 30px);
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 2.5rem);
    text-align: center;
  }

  .lead {
    font-size: 1rem;
    overflow-wrap: anywhere;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-actions, .trust-strip {
    gap: 14px;
  }

  .trust-strip {
    flex-direction: column;
    padding: 0 48px;
  }

  .trust-strip li {
    max-width: unset;
  }

  .hero-actions .button, .play-link {
    flex-basis: 100%;
  }

  .statement-image {
    display: block;
    width: 100%;
    max-width: 510px;
    margin: 0 auto;
    min-width: 0;
  }

  .privacy-benefits-grid {
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    max-width: min(90vw, 480px);
    margin-top: 20px;
  }

  .privacy-benefit {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 16px 18px 18px;
    text-align: left;
    border-bottom: 1px solid #e8edf1;
  }

  .privacy-benefit-copy {
    align-items: flex-start;
  }

  .privacy-benefit:last-child {
    border-bottom: 0;
  }

  .privacy-benefit-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
  }

  .privacy-benefit-icon svg {
    width: 20px;
    height: 20px;
  }

  .faq-footer-copy {
    flex-direction: column;
    gap: 12px;
  }

  .faq-footer-copy strong {
    font-size: 0.98rem;
  }

  .faq-footer-copy span {
    font-size: 0.88rem;
  }

  .faq-panel-list li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
  }

  .faq-panel-mini-icon {
    width: 38px;
    height: 38px;
  }

  .faq-contact-button {
    width: 100%;
    max-width: none;
  }

  .footer-main {
    width: calc(100% - 24px);
  }

  .footer-top,
  .footer-middle,
  .footer-bottom {
    padding-left: 22px;
    padding-right: 22px;
  }

  .footer-navs {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    padding-left: 0;
    padding-top: 20px;
    border-left: 0;
    border-top: 1px solid #e8eeec;
  }

  .footer-nav:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .footer-feature-grid {
    grid-template-columns: 1fr;
  }

  .footer-feature {
    padding-left: 0;
    padding-right: 0;
  }

  .footer-feature + .footer-feature {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .footer-bottom-row {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 18px 28px;
  }

  .footer-socials {
    margin-left: 0;
    justify-content: center;
  }

  .footer-tagline {
    width: 100%;
    text-align: center;
    flex-wrap: wrap;
  }

  .footer-tagline-icon {
    margin: 0 auto;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
  }

  .section-subtitle {
    margin-bottom: 36px;
  }

  .personas-carousel-section {
    padding-top: 56px;
    padding-bottom: 40px;
  }

  .personas-carousel-section   .section-subtitle {
    margin-top: 0;
  }

  .personas-carousel {
    height: 520px;
  }

  .carousel-card {
    /* width: min(280px, calc(100vw - 80px)); */
  }

  .carousel-card.pos-right {
    transform: translateX(calc(-50% + 150px)) scale(0.74);
    opacity: 0.28;
  }

  .carousel-card.pos-left {
    transform: translateX(calc(-50% - 150px)) scale(0.74);
    opacity: 0.28;
  }

  .carousel-card.pos-far-right, .carousel-card.pos-far-left {
    opacity: 0;
    pointer-events: none;
  }

  /* .carousel-arrow {
    width: 40px;
    height: 40px;
  } */

  .carousel-prev {
    left: 4px;
  }

  .carousel-next {
    right: 4px;
  }

  .personas-carousel-section::before, .personas-carousel-section::after {
    display: none;
  }

  .testimonial-metrics {
    grid-template-columns: 1fr;
    gap: 6px 0;
    padding: 8px 8px 10px;
  }

  .testimonial-metric {
    padding: 14px 12px;
  }

  .testimonial-feature-card {
    gap: 18px;
  }

  .testimonial-author {
    margin-top: 26px;
  }

  .testimonial-feature-badge {
    top: 8px;
    right: 6px;
    width: 78px;
    height: 78px;
    border-width: 8px;
  }

  .testimonial-feature-badge svg {
    width: 28px;
    height: 28px;
  }

  .testimonial-avatar-rack {
    top: 146px;
  }

  .rack-avatar {
    width: 54px;
    height: 54px;
  }

  .rack-avatar-center {
    width: 76px;
    height: 76px;
  }

  .testimonial-note {
    padding: 14px 14px;
  }

  .testimonial-note p {
    font-size: 0.86rem;
  }

  .testimonial-note-left {
    bottom: 92px;
  }

  .testimonial-note-right {
    bottom: 78px;
  }

  .testimonial-community {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .shell {
    width: 100%;
  }

  .cta-section {
    padding-top: 120px;
  }

  .cta-card {
    padding: 150px 18px 32px;
  }

  .cta-phone {
    top: -126px;
    width: min(180px, 100vw);
  }

  .faq-shell {
    padding: 0 22px;
  }

  .faq-image {
    max-width: min(260px, 100%);
  }

}

.section-title {
  margin-bottom: 12px;
}

.section-subtitle {
  margin: 0 auto 30px;
  color: #66748a;
  font-size: 1.1rem;
  line-height: 1.55;
}

.pricing-duration {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
  padding: 6px;
  background: linear-gradient(180deg, #fbfdfc 0%, #f4f8f6 100%);
  border: 1px solid #dce5e1;
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.duration-btn {
  position: relative;
  padding: 12px 10px;
  background: transparent;
  border: 0;
  border-radius: ar(--radius);
  color: #5b6a7d;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.1;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.duration-btn:hover {
  color: var(--ink);
}

.duration-btn.is-active {
  color: var(--ink);
  background: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(7, 152, 104, 0.22),
    0 8px 18px rgba(7, 152, 104, 0.12);
  transform: translateY(-1px);
}

.plan-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 10px;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
  font-size: 0.68rem;
  line-height: 1;
  white-space: nowrap;
}

.pricing-single {
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
}

.pricing-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 0 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.pricing-card-header {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.pricing-card-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  gap: 28px;
  align-items: start;
}

.pricing-eyebrow,
.pricing-build-label {
  display: block;
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-amount {
  font-size: clamp(3rem, 5vw, 4.4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.pricing-price {
  gap: 8px;
}

.pricing-period {
  font-size: 0.95rem;
}

.pricing-desc {
  margin: 12px 0 0;
  color: #607188;
  font-size: 1rem;
  line-height: 1.5;
}

.pricing-overview {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  padding-top: 8px;
}

.pricing-overview-count {
  color: #2f3f52;
  font-size: 0.96rem;
  text-align: right;
}

.pricing-dots {
  display: grid;
  grid-template-columns: repeat(10, 10px);
  gap: 8px;
}

.pricing-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dde3e7;
}

.pricing-dot.is-active {
  background: var(--green);
}

.pricing-reset {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 0;
  padding: 0;
  color: var(--green);
  background: transparent;
  border: 0;
  font-size: 0.88rem;
  font-weight: 500;
}

.pricing-reset svg,
.pricing-help svg {
  width: 16px;
  height: 16px;
}

.pricing-build-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pricing-help {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 500;
}

.pricing-features {
  overflow: hidden;
}

.pricing-feat {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 30px 46px;
  border-bottom: 1px solid #e5ece8;
}


.pricing-feat:last-child {
  border-bottom: 0;
}

.pricing-feature-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--green);
  background: #eef8f4;
  border-radius: 10px;
}

.pricing-feature-icon svg {
  width: 18px;
  height: 18px;
}

.feat-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.feat-name {
  color: #162233;
  font-size: 0.92rem;
  font-weight: 600;
}

.feat-desc {
  color: #6c7a8a;
  font-size: 0.82rem;
  line-height: 1.45;
}

.feat-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-shrink: 0;
}

.feat-value {
  min-width: 82px;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: right;
}

.feat-price {
  min-width: 58px;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: right;
}

.feat-price-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  min-width: 70px;
}

.feat-price-usd {
  color: #6c7a8a;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.1;
  text-align: right;
}

.feat-price.is-off {
  color: #67778a;
}

.feat-toggle {
  position: relative;
  width: 56px;
  height: 30px;
  min-height: 0;
  padding: 0;
  background: #d2d8de;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.feat-toggle::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(16, 32, 51, 0.18);
  transition: transform 0.2s ease;
}

.feat-toggle.is-on {
  background: var(--green);
}

.feat-toggle.is-on::after {
  transform: translateX(26px);
}

.feat-toggle:disabled {
  opacity: 0.45;
  cursor: default;
}

.pricing-summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 12px;
  width: 100%;
  background: #f9f9f9;
  border-radius: 10px;
}

.pricing-summary-chip,
.pricing-summary-total,
.pricing-summary-savings {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 18px 20px;
  border-radius: 16px;
}

.pricing-summary-label {
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-summary-chip strong,
.pricing-summary-total strong {
  color: #132031;
  font-size: 1.15rem;
  font-weight: 600;
}

.pricing-summary-total strong {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pricing-total-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.pricing-summary-total .pricing-amount {
  font-size: 2rem;
}

.pricing-amount-usd {
  color: #6c7a8a;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.1;
}

.pricing-summary-total .pricing-period {
  font-size: 0.88rem;
}

.pricing-summary-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--green);
  background: var(--green-faint);
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
}

.pricing-summary-subtle {
  color: #5e6f81;
  font-size: 0.88rem;
  line-height: 1.35;
}

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

.pricing-guarantee {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 18px;
  color: #516073;
  background: #f7faf9;
  border-radius: 14px;
  font-size: 0.9rem;
}

.pricing-guarantee-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--green);
}

.pricing-guarantee-icon svg {
  width: 20px;
  height: 20px;
}

.pricing-cta {
  width: 100%;
  min-height: 56px;
  justify-content: center;
  font-size: 1rem;
}

.pricing-note {
  margin: 0;
  color: #7b8795;
  font-size: 0.86rem;
  text-align: center;
}

.pricing-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 0 28px;
}

@media (max-width: 980px) {

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

  .pricing-overview {
    align-items: flex-start;
  }

  .pricing-guarantees {
    grid-template-columns: 1fr;
  }

  .pricing-feat {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .feat-right {
    grid-column: 1 / -1;
    padding-top: 4px;
  }
}

@media (max-width: 720px) {


  .pricing-duration {
    grid-template-columns: 1fr 1fr;
    padding: 5px;
  }

  .duration-btn {
    min-height: 50px;
    font-size: 0.86rem;
  }

  .pricing-card {
    padding: 18px 14px 16px;
    gap: 16px;
  }

  .pricing-feat {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px 12px;
    padding: 14px 12px;
    background: #fbfdfc;
  }

  .feat-info {
    flex: 1 1 calc(100% - 44px);
  }

  .feat-right {
    width: 100%;
    gap: 10px;
    padding-top: 2px;
  }

  .feat-value,
  .feat-price {
    min-width: 0;
    font-size: 0.8rem;
  }

  .feat-toggle {
    width: 48px;
    height: 26px;
  }

  .feat-toggle::after {
    width: 18px;
    height: 18px;
  }

  .feat-toggle.is-on::after {
    transform: translateX(22px);
  }

  .pricing-summary-chip,
  .pricing-summary-total,
  .pricing-summary-savings {
    padding: 14px 14px;
  }

  .pricing-bottom {
    padding: 0;
  }

  .pricing-summary-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pricing-summary-total .pricing-amount {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .pricing-duration {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding-inline: 12px;
  }

  .pricing-feat {
    padding: 20px 10px;
  }

  .feat-info {
    flex-basis: 100%;
  }

  .feat-right {
    align-items: center;
  }

  .feat-value {
    order: 1;
  }

  .feat-toggle {
    order: 2;
    margin-left: auto;
  }

  .feat-price {
    order: 3;
    text-align: right;
  }

  .pricing-summary-grid {
    grid-template-columns: 1fr;
  }

  .pricing-summary-chip,
  .pricing-summary-total,
  .pricing-summary-savings {
    border-radius: 14px;
  }

  .pricing-summary-total strong {
    gap: 6px;
  }
}

/* ============================================================
   Motion — entrance reveals & ambient float
   ============================================================ */

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity 720ms cubic-bezier(0.2, 0.8, 0.2, 1),
      transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
  }

  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .hero-copy h1,
  .hero-copy .lead,
  .hero-copy .hero-actions,
  .hero-copy .trust-strip > li {
    opacity: 0;
    animation: heroEnter 780ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  }

  .hero-copy h1 { animation-delay: 80ms; }
  .hero-copy .lead { animation-delay: 200ms; }
  .hero-copy .hero-actions { animation-delay: 340ms; }
  .hero-copy .trust-strip > li:nth-child(1) { animation-delay: 460ms; }
  .hero-copy .trust-strip > li:nth-child(2) { animation-delay: 540ms; }
  .hero-copy .trust-strip > li:nth-child(3) { animation-delay: 620ms; }

  @keyframes heroEnter {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: none; }
  }

  .testimonial-orb {
    animation: orbBreathe 7s ease-in-out infinite;
    transform-origin: center;
  }

  .testimonial-feature-badge {
    animation: floatY 5.5s ease-in-out infinite;
  }

  .testimonial-note-left {
    animation: floatY 6.5s ease-in-out infinite 0.4s;
  }

  .testimonial-note-right {
    animation: floatY 7s ease-in-out infinite 1.1s;
  }

  .testimonial-note-bottom {
    animation: floatYCentered 7.5s ease-in-out infinite 0.8s;
  }

  .rack-avatar-center {
    animation: avatarPulse 4.8s ease-in-out infinite;
  }

  @keyframes orbBreathe {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.92; }
  }

  @keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }

  @keyframes floatYCentered {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-6px); }
  }

  @keyframes avatarPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.045); }
  }
}


.privacy-problems-image,
.whispers-image {
  max-width: 840px;
  margin: auto;
}

.page-header-image,
.contact-us-image {
  max-width: 680px;
  margin: auto;
}

.proof-section {
  padding: 0 0 115px;
  background: linear-gradient(180deg, #ffffff 0%, var(--green-faint) 100%);
}

.proof-section .shell.proof-shell {
  border-top: none;
  padding-top: 50px;
  overflow: visible;
  gap: 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.proof-copy {
  min-width: 0;
}

.proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 500;
}

.proof-badge svg {
  width: 16px;
  height: 16px;
}

.proof-title {
  margin: 24px 0 0;
  color: #0d1726;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.proof-title span {
  position: relative;
  color: var(--green);
  display: inline-block;
}

.proof-title span::after {
  content: '';
  position: absolute;
  left: -2%;
  bottom: -6px;
  width: 104%;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 12' preserveAspectRatio='none'%3E%3Cpath d='M2 10 Q 50 2 98 10' fill='none' stroke='%23079868' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E")
    no-repeat center/100% 100%;
}

.proof-lead {
  max-width: 480px;
  margin: 32px 0 0;
  color: #5a6675;
  font-size: 1.05rem;
  line-height: 1.7;
}

.proof-lead strong {
  color: var(--green);
  font-weight: 500;
}

.proof-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 36px;
}

.proof-cta-primary {
  gap: 10px;
  padding-inline: 24px;
}

.proof-cta-primary svg {
  width: 18px;
  height: 18px;
}

.proof-cta-primary .proof-cta-arrow {
  width: 16px;
  height: 16px;
}

.button-ghost-light {
  min-height: 52px;
  padding-inline: 22px;
  color: #142035;
  background: #fff;
  border-color: #e3ebe6;
  gap: 12px;
}

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

.proof-play {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1.5px solid #d9e2dd;
  color: var(--green);
}

.proof-play svg {
  width: 12px;
  height: 12px;
  margin-left: 2px;
}

.proof-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 56px 0 0;
  padding: 0;
  list-style: none;
  color: #2a3441;
  font-size: 0.92rem;
  line-height: 1.35;
}

.proof-trust li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.proof-trust-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
}

.proof-trust-icon svg {
  width: 20px;
  height: 20px;
}

.proof-visual {
  position: relative;
  min-width: 0;
  aspect-ratio: 1 / 1;
  container-type: inline-size;
}

.proof-visual-bg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 18px;
}

.proof-float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(16, 32, 51, 0.12), 0 1px 2px rgba(16, 32, 51, 0.06);
  backdrop-filter: blur(16px);
  white-space: nowrap;
  font-size: 0.78rem;
  line-height: 1.25;
  color: #142035;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease;
  will-change: transform, box-shadow;
}

.proof-float:hover {
  transform: translateY(-14px) scale(1.05) !important;
  box-shadow: 0 20px 38px rgba(7, 152, 104, 0.18), 0 4px 10px rgba(7, 152, 104, 0.08) !important;
  border-color: rgba(7, 152, 104, 0.3) !important;
  z-index: 10;
}

.proof-float .pf-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
}

.proof-float .pf-icon svg {
  width: 16px;
  height: 16px;
}

.proof-float .pf-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.proof-float .pf-body strong {
  font-weight: 600;
  font-size: 0.82rem;
  color: #0d1726;
}

.proof-float .pf-body span {
  color: #6b7280;
  font-size: 0.72rem;
}

.proof-float .pf-body .pf-meta {
  color: #94a0ad;
  font-size: 0.66rem;
}

.proof-float .pf-lock {
  display: inline-grid;
  place-items: center;
  color: var(--green);
}

.proof-float .pf-lock svg {
  width: 14px;
  height: 14px;
}

.proof-float .pf-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(7, 152, 104, 0.18);
  margin-left: 6px;
}

.proof-float-email    { top: 8%;   left: -4%; }
.proof-float-freelance{ top: 19%;  right: -25%; }
.proof-float-drop     { top: 46%;  right: 23%; flex-direction: row; }
.proof-float-shopping { bottom: 3%; right: -15%; }

.proof-float-drop .pf-body strong { font-size: 0.82rem; }

.proof-float-message {
  left: 0%;
  bottom: -6%;
  flex-direction: column;
  align-items: stretch;
  padding: 12px 14px 14px;
  min-width: 220px;
  white-space: normal;
  gap: 10px;
}

.proof-float-message .pf-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.proof-float-message .pf-chat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.proof-float-message .pf-bubble {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 12px;
  font-size: 0.74rem;
  max-width: 80%;
}

.proof-float-message .pf-bubble em {
  font-style: normal;
  font-size: 0.66rem;
  opacity: 0.6;
}

.proof-float-message .pf-bubble-them {
  align-self: flex-end;
  background: var(--green-soft);
  color: #0d1726;
}

.proof-float-message .pf-bubble-them .pf-bubble-lock {
  width: 10px;
  height: 10px;
  color: var(--green);
}

.proof-float-message .pf-bubble-me {
  align-self: flex-start;
  background: #f2f4f7;
  color: #0d1726;
}

.proof-float-message .pf-ticks {
  color: var(--green);
  font-size: 0.7rem;
  letter-spacing: -2px;
}


@media (max-width: 980px) {
  .proof-section {
    padding: 0;
  }

  .proof-copy {
    padding: 64px 0 48px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .proof-visual {
    order: -1;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .proof-float {
    font-size: 0.72rem;
    padding: 8px 12px;
  }

  .proof-float .pf-body strong { font-size: 0.78rem; }
  .proof-float .pf-body span   { font-size: 0.68rem; }
  .proof-float-message         { min-width: 200px; }

  .proof-lead {
    max-width: none;
  }

  .privacy-problems-image,
  .whispers-image {
    max-width: 100%;
  }
}

@media (max-width: 720px) {

  .proof-section .shell.proof-shell {
    width: 100%;
    padding-left: 22px;
    padding-right: 22px;
    align-items: stretch;
    padding: 0;
  }

  .proof-grid {
    gap: 32px;
  }

  .proof-copy {
    text-align: center;
    padding: 64px 32px 48px;
  }

  .proof-badge {
    align-self: center;
  }

  .proof-title {
    font-size: clamp(1.9rem, 8vw, 2.4rem);
    line-height: 1.1;
  }

  .proof-title span::after {
    height: 10px;
    bottom: -4px;
  }

  .proof-lead {
    margin-top: 20px;
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  .proof-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 28px;
  }

  .proof-cta-primary,
  .button-ghost-light {
    width: 100%;
    justify-content: center;
  }

  .proof-trust {
    justify-content: center;
    gap: 18px 24px;
    font-size: 0.85rem;
  }

  .proof-trust li {
    flex: 0 1 calc(50% - 14px);
    min-width: 0;
  }

  .proof-float-shopping {
    display: none;
  }

  .proof-visual {
    overflow: visible;
    margin-top: 18px;
    margin-bottom: 24px;
  }

  .proof-float-email    { top: 50px; left: -8px; }
  .proof-float-freelance{ top: -14px; right: 53px; }
  .proof-float-drop     { top: auto;
        bottom: 31%;
        right: 120px;
        z-index: 1;}
  .proof-float-message  {         left: 29%;
        transform: translateX(-50%);
        bottom: -46px;
        min-width: min(260px, 92%);
        z-index: 2; 
      }

  .privacy-problems-image {
    max-width: 485px;
    margin: 0;
  }
}

@media (max-width: 480px) {

  .proof-section .shell.proof-shell {
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 10px;
  }

  .proof-title {
    font-size: clamp(1.7rem, 9vw, 2.1rem);
  }

  .proof-badge {
    font-size: 0.78rem;
    padding: 6px 14px;
  }

  .proof-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .proof-trust li {
    flex: 0 0 auto;
    width: 100%;
  }

  .proof-trust li span:last-child br {
    display: none;
  }

  .proof-trust-icon {
    width: 36px;
    height: 36px;
  }

  .proof-float {
    font-size: 0.68rem;
    padding: 7px 10px;
    gap: 8px;
  }

  .proof-float .pf-icon {
    width: 26px;
    height: 26px;
  }

  .proof-float .pf-icon svg {
    width: 14px;
    height: 14px;
  }

  .proof-float .pf-body strong { font-size: 0.74rem; }
  .proof-float .pf-body span   { font-size: 0.64rem; }

  .proof-float-email    { top: -10px; left: -4px; }
  .proof-float-freelance{ top: 73px; right: -4px; }
  .proof-float-drop     { bottom: 35%; right: 90px; }
  .proof-float-message  { bottom: -80px; min-width: min(240px, 90%); }
}


/* ==========================================================================
   Content pages (Contact, Privacy, Terms, Security, Data Processing)
   ========================================================================== */

.page-hero {
  padding: 72px 0 56px;
  background:
    radial-gradient(1200px 380px at 50% -120px, var(--green-faint), transparent 70%);
}

.page-hero-shell {
  width: var(--shell);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--green-soft);
  border: 1px solid var(--line);
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 500;
}

.page-badge svg {
  width: 17px;
  height: 17px;
}

.page-title {
  margin: 0;
  color: #0d1726;
  font-weight: 500;
  line-height: 1.12;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  max-width: 18ch;
}

.page-title span { color: var(--green); }

.page-lead {
  margin: 0;
  max-width: min(620px, 90vw);
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
}

.page-meta {
  margin: 4px 0 0;
  color: #8a97a3;
  font-size: 0.84rem;
}

/* ---- Legal / document layout ---- */

.doc-section { padding: 8px 0 96px; }

.doc-shell {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 244px 1fr;
  gap: 56px;
  align-items: start;
}

.doc-toc {
  position: sticky;
  top: 104px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--green-faint);
}

.doc-toc-title {
  margin: 0 0 8px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a97a3;
}

.doc-toc a {
  padding: 7px 10px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.doc-toc a:hover {
  background: #fff;
  color: var(--green-dark);
}

.doc-body {
  min-width: 0;
  color: #34424f;
  font-size: 1.02rem;
  line-height: 1.78;
}

.doc-body > section { scroll-margin-top: 104px; }
.doc-body > section + section { margin-top: 44px; }

.doc-body h2 {
  margin: 0 0 16px;
  color: #0d1726;
  font-weight: 600;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  line-height: 1.25;
}

.doc-body h3 {
  margin: 28px 0 10px;
  color: #142035;
  font-weight: 600;
  font-size: 1.12rem;
}

.doc-body p { margin: 0 0 16px; }

.doc-body ul,
.doc-body ol {
  margin: 0 0 16px;
  padding-left: 22px;
}

.doc-body li { margin-bottom: 9px; }

.doc-body strong { color: #0d1726; font-weight: 600; }

.doc-body a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.doc-body a:hover { text-decoration: none; }

.doc-callout {
  margin: 24px 0;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--green-faint);
}

.doc-callout p:last-child { margin-bottom: 0; }

.doc-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 40px 0;
}

/* ---- Security / feature card grid (shared) ---- */

.feature-band { padding: 8px 0 64px; }

.feature-band-shell {
  width: var(--shell);
  margin: 0 auto;
}

.feature-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(7, 152, 104, 0.45);
  box-shadow: 0 16px 40px rgba(16, 32, 51, 0.07);
}

.feature-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green-dark);
}

.feature-card-icon svg { width: 23px; height: 23px; }

.feature-card h3 {
  margin: 0;
  color: #0d1726;
  font-size: 1.08rem;
  font-weight: 600;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

/* ---- Contact page ---- */

.contact-section { padding: 8px 0 96px; }

.contact-shell {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.contact-aside { display: flex; flex-direction: column; gap: 16px; }

.contact-method {
  display: flex;
  gap: 15px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.contact-method-icon {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.95) 0 18%, transparent 19%),
    linear-gradient(180deg, #effaf5 0%, #d8f2e4 58%, #bce6cf 100%);
  border: 1px solid rgba(7, 152, 104, 0.12);
  color: var(--green-dark);
  box-shadow:
    0 10px 20px rgba(7, 152, 104, 0.12),
    0 3px 8px rgba(16, 32, 51, 0.08),
    inset 0 2px 0 rgba(255, 255, 255, 0.88),
    inset 0 -6px 10px rgba(7, 152, 104, 0.06);
  transform: translateY(-1px);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.contact-method-icon svg { width: 22px; height: 22px; }

.contact-method:hover .contact-method-icon {
  transform: translateY(-3px);
  border-color: rgba(7, 152, 104, 0.22);
  box-shadow:
    0 14px 28px rgba(7, 152, 104, 0.14),
    0 5px 12px rgba(16, 32, 51, 0.1),
    inset 0 2px 0 rgba(255, 255, 255, 0.92),
    inset 0 -8px 14px rgba(7, 152, 104, 0.08);
}

.contact-method h3 {
  margin: 0 0 3px;
  font-size: 1rem;
  font-weight: 600;
  color: #0d1726;
}

.contact-method p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.contact-method a {
  color: var(--green-dark);
  font-weight: 500;
  text-decoration: none;
}

.contact-method a:hover { text-decoration: underline; }

.contact-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.contact-card-head { margin-bottom: 22px; }

.contact-card-head h2 {
  margin: 0 0 6px;
  color: #0d1726;
  font-weight: 600;
  font-size: 1.4rem;
}

.contact-card-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #142035;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
  font-size: 0.95rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-field select {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23607080' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px 18px;
}

.form-field textarea { resize: vertical; min-height: 130px; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(7, 152, 104, 0.14);
}

.form-consent {
  position: relative;
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
  cursor: pointer;
}

.form-consent-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.form-consent-box {
  position: relative;
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 1.5px solid #b8c7c0;
  border-radius: 5px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.form-consent-box::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 9px;
  border-right: 2px solid transparent;
  border-bottom: 2px solid transparent;
  transform: rotate(45deg);
  transition: border-color 0.18s ease;
}

.form-consent-input:checked + .form-consent-box {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(7, 152, 104, 0.12);
}

.form-consent-input:checked + .form-consent-box::after {
  border-right-color: #fff;
  border-bottom-color: #fff;
}

.form-consent-input:focus-visible + .form-consent-box {
  box-shadow: 0 0 0 3px rgba(7, 152, 104, 0.18);
  border-color: var(--green);
}

.form-consent:hover .form-consent-box {
  border-color: var(--green);
}

.form-consent a { color: var(--green-dark); text-decoration: underline; }

.contact-form .button { grid-column: 1 / -1; }

.contact-form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: #8a97a3;
  font-size: 0.82rem;
  text-align: center;
}

.contact-form-status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--green-faint);
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
  text-align: center;
}

.contact-form-status[data-tone='success'] {
  border-color: rgba(7, 152, 104, 0.28);
  background: var(--green-soft);
  color: var(--green-dark);
}

.contact-form-status[data-tone='error'] {
  border-color: #f1c7c7;
  background: #fff4f4;
  color: #9b2c2c;
}

@media (max-width: 900px) {
  .doc-shell { grid-template-columns: 1fr; gap: 28px; padding: 2rem;}
  .doc-toc { position: static; top: auto; }
  .contact-shell { grid-template-columns: 1fr; gap: 32px; }
  .contact-us-image,
  .page-header-image {
    max-width: min(460px, 100%);
  }
}

@media (max-width: 560px) {
  .contact-form { grid-template-columns: 1fr; }
  .contact-card { padding: 24px; }
  .page-hero { padding: 56px 0 44px; }
}


