:root {
  --leaf-950: #0e2414;
  --leaf-900: #17391d;
  --leaf-800: #1f5429;
  --leaf-700: #2e7d32;
  --leaf-500: #4caf50;
  --mint-100: #e8f5e9;
  --mint-50: #f2faf2;
  --orange-600: #e65100;
  --orange-500: #f57c00;
  --orange-400: #ff9800;
  --clay-700: #795548;
  --sky-500: #2f80ed;
  --ink: #17211a;
  --muted: #59665c;
  --line: #dce8dd;
  --surface: #ffffff;
  --wash: #f4f8f2;
  --shadow: 0 24px 70px rgba(31, 84, 41, 0.16);
  --shadow-soft: 0 16px 42px rgba(17, 40, 23, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  padding-top: 100px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(232, 245, 233, 0.95), rgba(244, 248, 242, 0.95) 42%, #ffffff 100%),
    var(--wash);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(31, 84, 41, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 84, 41, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000, transparent 65%);
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--leaf-900);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  border-bottom: 1px solid rgba(220, 232, 221, 0.75);
  background: rgba(244, 248, 242, 0.95);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 32px rgba(17, 40, 23, 0.08);
}

.announcement {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 16px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--leaf-950), var(--leaf-800));
  font-size: 0.86rem;
  text-align: center;
}

.announcement span {
  color: var(--orange-400);
  font-weight: 850;
}

.announcement-separator {
  color: rgba(255, 255, 255, 0.4) !important;
  font-weight: 400 !important;
  margin: 0 4px;
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 66px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo-image {
  width: auto;
  max-width: 124px;
  max-height: 42px;
  height: auto;
  object-fit: contain;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--leaf-950);
  font-weight: 900;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-farm {
  color: var(--leaf-700);
}

.brand-smartly {
  color: var(--orange-500);
}

.brand-logo-image:not([src]),
.brand-logo-image[src=""] {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  content: "";
  background: var(--orange-500);
  transition: transform 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--leaf-900);
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-cta-mobile {
  display: none;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: var(--leaf-900);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.nav-cta {
  padding: 0 18px;
  color: #ffffff;
  background: var(--leaf-800);
  white-space: nowrap;
  order: 4;
}

.nav-cta-demo {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
  color: var(--leaf-950);
  order: 3;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero-section,
.section,
.cta-section,
.site-footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.section + .section {
  margin-top: 20px;
}

.cta-section {
  padding: 100px 0 120px;
  text-align: center;
}

.cta-section h2 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-section {
  min-height: calc(100vh - 110px);
  padding: 120px 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(420px, 1fr);
  gap: 58px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--leaf-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--leaf-950);
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--leaf-950);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--leaf-950);
  font-size: 1.12rem;
}

.hero-lede,
.section-heading p,
.future-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.11rem;
}

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

.button {
  min-width: 158px;
  padding: 0 22px;
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--leaf-800), var(--leaf-500));
  box-shadow: 0 16px 36px rgba(46, 125, 50, 0.22);
}

.button-secondary {
  color: var(--leaf-900);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.button-outline {
  color: var(--leaf-800);
  border: 2px solid var(--leaf-500);
  background: transparent;
}

.button-outline:hover {
  background: rgba(76, 175, 80, 0.1);
}

.button-gold {
  color: var(--leaf-950);
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
  box-shadow: 0 16px 36px rgba(245, 124, 0, 0.25);
}

.button-gold:hover {
  box-shadow: 0 20px 42px rgba(245, 124, 0, 0.35);
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 20px;
}

.button-group .button {
  min-width: 140px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid rgba(220, 232, 221, 0.9);
  border-radius: 999px;
  color: var(--leaf-900);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 750;
}

.language-badge {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 16px;
  border: 1px solid rgba(46, 125, 50, 0.15);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(232, 245, 233, 0.8), rgba(255, 255, 255, 0.9));
}

.lang-label {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.lang-item {
  padding: 6px 12px;
  border-radius: 6px;
  color: var(--leaf-900);
  background: rgba(46, 125, 50, 0.1);
  font-size: 0.85rem;
  font-weight: 650;
  cursor: default;
  transition: background 150ms ease, transform 150ms ease;
}

.lang-item:hover {
  background: rgba(46, 125, 50, 0.2);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .language-badge {
    gap: 8px;
    padding: 10px 12px;
  }

  .lang-label {
    width: 100%;
    margin-bottom: 4px;
  }

  .lang-item {
    padding: 5px 10px;
    font-size: 0.8rem;
  }
}

.hero-visual {
  position: relative;
  min-height: 650px;
  display: grid;
  grid-template-rows: minmax(220px, 0.72fr) auto;
  gap: 18px;
  padding: 34px;
  border: 1px solid rgba(220, 232, 221, 0.9);
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 193, 7, 0.22), transparent 28%),
    radial-gradient(circle at 86% 0%, rgba(47, 128, 237, 0.12), transparent 30%),
    linear-gradient(145deg, #ffffff 0%, #edf6ec 48%, #f8fbf7 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual::before {
  position: absolute;
  inset: auto -10% 0;
  height: 165px;
  transform: skewY(-4deg);
  content: "";
  background: linear-gradient(90deg, rgba(121, 85, 72, 0.13), rgba(46, 125, 50, 0.14));
}

.hero-slider {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 260px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 22px 58px rgba(17, 40, 23, 0.14);
}

.slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 700ms ease, transform 900ms ease;
}

.slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #e8f5e9;
}

.slide figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  width: fit-content;
  max-width: calc(100% - 36px);
  padding: 10px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(14, 36, 20, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.slider-dots {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: flex;
  gap: 7px;
}

.slider-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
}

.slider-dots span.is-active {
  width: 24px;
  background: #ffffff;
}

.dashboard-shell {
  position: relative;
  z-index: 2;
  width: min(560px, 100%);
  padding: 20px;
  border: 1px solid rgba(220, 232, 221, 0.95);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 26px 70px rgba(17, 40, 23, 0.16);
  backdrop-filter: blur(14px);
}

.dashboard-top,
.chart-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-top {
  margin-bottom: 18px;
}

.dashboard-top span,
.chart-heading span,
.metric-card span,
.floating-card span,
.workflow-step span,
.roadmap-item span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dashboard-top strong {
  display: block;
  margin-top: 3px;
  color: var(--leaf-950);
  font-size: 1.18rem;
}

.status-pill {
  flex: 0 0 auto;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--leaf-900) !important;
  background: var(--mint-100);
}

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

.metric-card {
  min-height: 126px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.metric-card strong {
  display: block;
  margin-top: 5px;
  color: var(--leaf-950);
  font-size: 1.65rem;
}

.metric-card small {
  display: block;
  margin-top: 4px;
  color: var(--leaf-700);
}

.metric-card.highlight {
  color: #ffffff;
  border-color: transparent;
  background:
    linear-gradient(135deg, rgba(255, 193, 7, 0.24), transparent 56%),
    linear-gradient(135deg, var(--leaf-900), var(--leaf-500));
}

.metric-card.highlight span,
.metric-card.highlight strong,
.metric-card.highlight small {
  color: #ffffff;
}

.chart-panel {
  margin-top: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
}

.chart-heading {
  margin-bottom: 18px;
}

.mini-chart {
  height: 138px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 10px;
}

.mini-chart span {
  min-height: 24px;
  border-radius: 9px 9px 4px 4px;
  background: linear-gradient(180deg, var(--orange-400), var(--orange-500));
  box-shadow: inset 0 -10px 18px rgba(121, 85, 72, 0.1);
}

.task-list {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}

.task-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted);
  background: var(--mint-50);
  font-size: 0.92rem;
}

.task-list span {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--leaf-500);
}

.floating-card {
  position: absolute;
  z-index: 3;
  width: min(265px, calc(100% - 44px));
  padding: 18px;
  border: 1px solid rgba(220, 232, 221, 0.9);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.floating-card strong {
  display: block;
  margin-top: 6px;
  color: var(--leaf-950);
}

.floating-card-left {
  left: 16px;
  bottom: 34px;
}

.floating-card-right {
  right: 20px;
  top: 42px;
}

.section {
  padding: 104px 0;
}

.section-heading {
  max-width: 790px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 20px;
}

.section-heading p {
  margin: 0 auto;
}

.definition-section {
  padding: 48px 24px 0;
  text-align: center;
}

.definition-content {
  max-width: 800px;
  margin: 0 auto;
}

.definition-content h2 {
  font-size: 1.5rem;
  color: var(--leaf-800);
  margin-bottom: 16px;
}

.definition-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
}

.definition-content a {
  color: var(--leaf-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.definition-content a:hover {
  color: var(--leaf-800);
}

.comparison-table caption {
  caption-side: top;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 12px;
  text-align: left;
}

.platform-section {
  padding-bottom: 72px;
}

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

.workflow-step {
  position: relative;
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.workflow-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

.workflow-icon svg {
  width: 100%;
  height: 100%;
}

.workflow-step::after {
  position: absolute;
  right: -35px;
  bottom: -52px;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  content: "";
  background: rgba(255, 193, 7, 0.18);
}

.workflow-step h3 {
  margin-top: 38px;
  font-size: 1.3rem;
}

.band {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(180deg, #ffffff, #f7fbf6);
}

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

.feature-card,
.price-card,
.audience-card,
.roadmap-item,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.feature-card {
  min-height: 252px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(232, 245, 233, 0.78), rgba(255, 255, 255, 0.92)),
    var(--surface);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(255, 202, 40, 0.26), rgba(255, 255, 255, 0.94)),
    var(--surface);
}

.feature-card:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(47, 128, 237, 0.14), rgba(255, 255, 255, 0.94)),
    var(--surface);
}

.feature-card:nth-child(4) {
  background:
    linear-gradient(135deg, rgba(121, 85, 72, 0.16), rgba(255, 255, 255, 0.94)),
    var(--surface);
}

.feature-card:nth-child(5) {
  background:
    linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(255, 223, 118, 0.16)),
    var(--surface);
}

.feature-card:nth-child(6) {
  background:
    linear-gradient(135deg, rgba(23, 57, 29, 0.1), rgba(255, 255, 255, 0.94)),
    var(--surface);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(76, 175, 80, 0.38);
  box-shadow: var(--shadow-soft);
}

.feature-visual {
  width: 100%;
  height: 180px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 0 0 1px rgba(220, 232, 221, 0.5), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card p,
.price-card p,
.price-card li,
.audience-card p,
.roadmap-item p,
.workflow-step p,
.faq-list p {
  color: var(--muted);
}

.future-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(380px, 1.15fr);
  gap: 48px;
  align-items: start;
}

.future-copy {
  position: sticky;
  top: 150px;
}

.roadmap-grid {
  display: grid;
  gap: 14px;
}

.roadmap-item {
  position: relative;
  padding: 24px 24px 24px 30px;
  overflow: hidden;
}

.roadmap-item::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  content: "";
  background: var(--leaf-500);
}

.roadmap-item.live::before {
  background: var(--orange-500);
}

.roadmap-item h3 {
  margin-top: 8px;
}

.roadmap-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
}

.roadmap-visual {
  max-width: 420px;
  height: 200px;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(220, 232, 221, 0.5), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.roadmap-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.roadmap-icon svg {
  width: 100%;
  height: 100%;
}

.audience-section {
  padding-top: 30px;
  background:
    radial-gradient(circle at 20% 30%, rgba(245, 124, 0, 0.08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(76, 175, 80, 0.08), transparent 40%),
    linear-gradient(180deg, #ffffff, #f7fbf6);
  border-radius: 20px;
  margin: 40px auto;
  padding: 60px 48px;
}

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

.audience-card {
  min-height: 210px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(232, 245, 233, 0.8), rgba(255, 255, 255, 0.95)),
    #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  box-shadow: 0 8px 24px rgba(17, 40, 23, 0.06);
}

.audience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(76, 175, 80, 0.3);
  box-shadow: 0 16px 42px rgba(17, 40, 23, 0.12);
}

.audience-card:nth-child(1) {
  background:
    linear-gradient(135deg, rgba(255, 243, 224, 0.9), rgba(255, 255, 255, 0.95)),
    #ffffff;
}

.audience-card:nth-child(1):hover {
  border-color: rgba(245, 124, 0, 0.3);
}

.audience-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
}

.audience-icon svg {
  width: 100%;
  height: 100%;
}

.country-section {
  padding-top: 42px;
}

.testimonials-section {
  padding-top: 30px;
}

.logos-section {
  padding-top: 30px;
}

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

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.logo-item:hover {
  transform: translateY(-2px);
  border-color: rgba(76, 175, 80, 0.3);
  box-shadow: var(--shadow-soft);
}

.logo-item span {
  color: var(--leaf-950);
  font-weight: 700;
  font-size: 1rem;
}

.logo-item small {
  color: var(--muted);
  font-size: 0.85rem;
}

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

.testimonial-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(232, 245, 233, 0.85), rgba(255, 255, 255, 0.95)),
    #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(76, 175, 80, 0.3);
  box-shadow: 0 16px 42px rgba(17, 40, 23, 0.12);
}

.testimonial-card:nth-child(1) {
  background:
    linear-gradient(135deg, rgba(255, 243, 224, 0.9), rgba(255, 255, 255, 0.95)),
    #ffffff;
}

.testimonial-card:nth-child(1):hover {
  border-color: rgba(245, 124, 0, 0.3);
}

.testimonial-content p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.author-avatar {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
}

.author-avatar svg {
  width: 100%;
  height: 100%;
}

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

.author-info strong {
  color: var(--leaf-950);
  font-size: 1rem;
}

.author-info span {
  color: var(--muted);
  font-size: 0.88rem;
}

.trust-section {
  padding-top: 30px;
}

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

.trust-item {
  min-height: 200px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.trust-item:hover {
  transform: translateY(-4px);
  border-color: rgba(76, 175, 80, 0.3);
  box-shadow: 0 16px 42px rgba(17, 40, 23, 0.12);
}

.trust-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
}

.trust-icon svg {
  width: 100%;
  height: 100%;
}

.trust-item h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.trust-item p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.newsletter-section {
  padding-top: 30px;
}

.newsletter-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 38px;
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 18px;
  color: #ffffff;
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 193, 7, 0.28), transparent 24%),
    linear-gradient(135deg, var(--leaf-950), var(--leaf-800));
  box-shadow: var(--shadow);
}

.newsletter-panel h2,
.newsletter-panel p,
.newsletter-panel .eyebrow {
  color: #ffffff;
}

.newsletter-panel .eyebrow {
  color: var(--orange-400);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-input-group {
  display: flex;
  gap: 10px;
}

.newsletter-input-group input {
  flex: 1;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

.newsletter-input-group input:focus {
  outline: 3px solid rgba(76, 175, 80, 0.3);
  border-color: var(--leaf-500);
}

.newsletter-form small {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

.about-hero {
  text-align: center;
  padding: 80px 20px;
}

.about-hero h1 {
  max-width: 800px;
  margin: 0 auto 20px;
}

.about-hero p {
  max-width: 600px;
  margin: 0 auto;
}

.mission-section {
  padding-top: 30px;
}

.mission-content {
  max-width: 800px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

.mission-content p {
  margin-bottom: 20px;
}

.team-section {
  padding-top: 30px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.team-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 42px rgba(17, 40, 23, 0.12);
}

.team-avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
}

.team-avatar svg {
  width: 100%;
  height: 100%;
}

.team-card h3 {
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.team-role {
  display: block;
  margin-bottom: 12px;
  color: var(--leaf-500);
  font-weight: 600;
  font-size: 0.9rem;
}

.team-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.values-section {
  padding-top: 30px;
}

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

.value-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 42px rgba(17, 40, 23, 0.12);
}

.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}

.value-icon svg {
  width: 100%;
  height: 100%;
}

.value-card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.value-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.exit-intent-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.exit-intent-popup.is-visible {
  display: flex;
}

.popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.popup-content {
  position: relative;
  width: 100%;
  max-width: 520px;
  padding: 40px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
  animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: var(--mint-100);
  color: var(--muted);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.popup-close:hover {
  background: var(--line);
  color: var(--ink);
}

.popup-body {
  text-align: center;
}

.popup-body .eyebrow {
  color: var(--orange-500);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.popup-body h2 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.popup-body > p {
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.6;
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.popup-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

.popup-form input:focus {
  outline: 3px solid rgba(76, 175, 80, 0.3);
  border-color: var(--leaf-500);
}

.popup-form small {
  color: var(--muted);
  font-size: 0.85rem;
}

.comparison-section {
  padding-top: 30px;
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
}

.comparison-table thead {
  background: var(--leaf-950);
  color: #ffffff;
}

.comparison-table th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
}

.comparison-table th:first-child {
  border-top-left-radius: 14px;
}

.comparison-table th:last-child {
  border-top-right-radius: 14px;
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--line);
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table td {
  padding: 14px 16px;
  color: var(--ink);
  font-size: 0.9rem;
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--leaf-950);
}

.comparison-table .check {
  color: #4CAF50;
  font-weight: 700;
  font-size: 1.1rem;
}

.comparison-table .cross {
  color: #d32f2f;
  font-weight: 700;
  font-size: 1.1rem;
}

.comparison-table .maybe {
  color: #f57c00;
  font-weight: 600;
  font-size: 0.9rem;
}

.comparison-table .highlight {
  color: #4CAF50;
  font-weight: 700;
  background: rgba(76, 175, 80, 0.1);
  padding: 8px 12px;
  border-radius: 6px;
}

.quiz-section {
  padding-top: 30px;
}

.quiz-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.quiz-step h3 {
  margin-bottom: 24px;
  text-align: center;
  font-size: 1.3rem;
}

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

.quiz-option {
  padding: 18px 20px;
  border: 2px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 180ms ease;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
}

.quiz-option:hover {
  border-color: var(--leaf-500);
  background: rgba(76, 175, 80, 0.05);
  transform: translateY(-2px);
}

.quiz-option:focus {
  outline: 3px solid rgba(76, 175, 80, 0.3);
  border-color: var(--leaf-500);
}

.quiz-result {
  text-align: center;
}

.quiz-result h3 {
  margin-bottom: 24px;
  font-size: 1.3rem;
}

.result-card {
  padding: 32px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 193, 7, 0.2), transparent 24%),
    linear-gradient(135deg, var(--leaf-950), var(--leaf-800));
  color: #ffffff;
  margin-bottom: 20px;
}

.result-plan {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.result-description {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
}

.result-price {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.result-card .button {
  width: 100%;
  justify-content: center;
}

.quiz-restart {
  width: 100%;
  justify-content: center;
}

/* Mobile Responsive Styles for New Sections — merged into main 900px block below */

@media (max-width: 600px) {
  /* Testimonials Section */
  .testimonials-section .section-heading h2 {
    font-size: 1.25rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .testimonial-card {
    min-height: auto;
    padding: 18px;
    border-radius: 12px;
  }

  .testimonial-content p {
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 16px;
  }

  .testimonial-author {
    gap: 10px;
    padding-top: 14px;
  }

  .author-avatar {
    width: 40px;
    height: 40px;
  }

  .author-info strong {
    font-size: 0.9rem;
  }

  .author-info span {
    font-size: 0.8rem;
  }

  /* Logos Section */
  .logos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .logo-item {
    padding: 16px;
  }

  .logo-item span {
    font-size: 0.9rem;
  }

  .logo-item small {
    font-size: 0.8rem;
  }

  /* Newsletter Section */
  .newsletter-panel {
    padding: 24px 20px;
  }

  .newsletter-panel h2 {
    font-size: 1.2rem;
  }

  .newsletter-panel > p {
    font-size: 0.9rem;
  }

  .newsletter-form small {
    font-size: 0.8rem;
  }

  /* Trust Section */
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .trust-item {
    padding: 16px;
  }

  .trust-item h3 {
    font-size: 0.95rem;
  }

  .trust-item p {
    font-size: 0.85rem;
  }

  .trust-icon {
    width: 40px;
    height: 40px;
  }

  /* Comparison Table */
  .comparison-table th,
  .comparison-table td {
    padding: 10px 8px;
    font-size: 0.8rem;
  }

  .comparison-table .check,
  .comparison-table .cross {
    font-size: 1rem;
  }

  .comparison-table .highlight {
    padding: 6px 8px;
    font-size: 0.85rem;
  }

  /* About Us Page */
  .team-grid {
    grid-template-columns: 1fr;
  }

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

  .mission-content {
    font-size: 1rem;
  }

  /* Comparison Table */
  .comparison-table th,
  .comparison-table td {
    padding: 10px 8px;
    font-size: 0.8rem;
  }

  .comparison-table .check,
  .comparison-table .cross {
    font-size: 1rem;
  }

  .comparison-table .highlight {
    padding: 6px 8px;
    font-size: 0.85rem;
  }

  /* Quiz Section */
  .quiz-container {
    padding: 20px 16px;
  }

  .result-card {
    padding: 20px 16px;
  }

  .result-plan {
    font-size: 1.3rem;
  }

  .result-description {
    font-size: 0.9rem;
  }

  .result-price {
    font-size: 1.4rem;
  }

  /* Exit Intent Popup */
  .popup-content {
    padding: 24px 20px;
  }

  .popup-body h2 {
    font-size: 1.2rem;
  }

  .popup-body .eyebrow {
    font-size: 0.85rem;
  }
}

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

.country-card,
.lead-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.country-card {
  min-height: 300px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 193, 7, 0.16), transparent 48%),
    linear-gradient(180deg, #ffffff, #f5fbf4);
}

.country-card:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(47, 128, 237, 0.12), transparent 48%),
    linear-gradient(180deg, #ffffff, #f5fbf4);
}

.country-card:nth-child(3) {
  background:
    linear-gradient(145deg, rgba(76, 175, 80, 0.18), transparent 48%),
    linear-gradient(180deg, #ffffff, #f5fbf4);
}

.country-card:nth-child(4) {
  background:
    linear-gradient(145deg, rgba(121, 85, 72, 0.14), transparent 48%),
    linear-gradient(180deg, #ffffff, #f5fbf4);
}

.country-card span {
  display: inline-flex;
  margin-bottom: 32px;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--leaf-900);
  background: var(--mint-100);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.country-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.country-visual {
  width: 100%;
  height: 140px;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(220, 232, 221, 0.5), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.country-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-icon svg {
  width: 100%;
  height: 100%;
}

.country-card p,
.lead-card p,
.language-panel p {
  color: var(--muted);
}

.language-section {
  padding-top: 30px;
}

.language-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 38px;
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 18px;
  color: #ffffff;
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 193, 7, 0.28), transparent 24%),
    linear-gradient(135deg, var(--leaf-950), var(--leaf-800));
  box-shadow: var(--shadow);
}

.language-panel h2,
.language-panel p,
.language-panel .eyebrow {
  color: #ffffff;
}

.language-panel .eyebrow {
  color: var(--orange-400);
}

.language-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.language-list span {
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.11);
  font-weight: 850;
}

.lead-section {
  padding-top: 30px;
}

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

.lead-card {
  min-height: 220px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(232, 245, 233, 0.52), rgba(255, 255, 255, 0.96));
}

.lead-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
}

.lead-icon svg {
  width: 100%;
  height: 100%;
}

.pricing-section {
  padding-top: 40px;
}

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

.price-card {
  position: relative;
  min-height: 400px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
}

.price-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
}

.price-icon svg {
  width: 100%;
  height: 100%;
}

.price-card strong {
  display: block;
  margin: 24px 0;
  color: var(--leaf-950);
  font-size: 1.85rem;
}

.price-card ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding-left: 20px;
}

.price-card.preferred {
  color: #ffffff;
  border-color: transparent;
  background:
    linear-gradient(135deg, rgba(255, 193, 7, 0.18), transparent 42%),
    var(--leaf-900);
  box-shadow: var(--shadow);
}

.price-card.preferred h3,
.price-card.preferred strong,
.price-card.preferred p,
.price-card.preferred li {
  color: #ffffff;
}

.plan-badge {
  position: absolute;
  right: 22px;
  top: 22px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--leaf-950);
  background: var(--orange-400);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.faq-section {
  padding-top: 44px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 1fr);
  gap: 42px;
  align-items: start;
  padding-top: 54px;
}

.contact-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-highlights span {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--leaf-900);
  background: var(--mint-100);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(232, 245, 233, 0.82)),
    #ffffff;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--leaf-950);
  font-size: 0.92rem;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(76, 175, 80, 0.18);
  border-color: var(--leaf-500);
}

.full-field,
.hidden-field {
  grid-column: 1 / -1;
}

.hidden-field {
  display: none;
}

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

.faq-list details {
  padding: 0;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(17, 40, 23, 0.06);
}

.faq-list summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  color: var(--leaf-950);
  cursor: pointer;
  font-weight: 850;
}

.faq-icon {
  display: inline-flex;
  align-items: center;
  margin-right: 12px;
}

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

.faq-list summary::after {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: var(--leaf-800);
  content: "+";
}

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

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.cta-section {
  margin-bottom: 70px;
  padding: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: 18px;
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 193, 7, 0.28), transparent 24%),
    linear-gradient(135deg, var(--leaf-950), var(--leaf-800));
  box-shadow: var(--shadow);
}

.cta-section h2 {
  max-width: 800px;
  margin-bottom: 0;
  color: #ffffff;
}

.cta-section .eyebrow {
  color: var(--orange-400);
}

.site-footer {
  padding: 60px 0 100px;
  display: grid;
  grid-template-columns: 1fr auto 1.2fr;
  gap: 24px 32px;
  align-items: center;
  color: var(--muted);
  font-size: 0.92rem;
  border-top: 1px solid var(--line);
  margin-top: 40px;
}

.site-footer strong {
  display: block;
  color: var(--leaf-950);
}

.site-footer nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-weight: 750;
}

.site-footer p {
  margin: 0;
  text-align: right;
}

.whatsapp-float {
  position: fixed;
  right: 40px;
  bottom: 90px;
  z-index: 50;
  display: inline-flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(17, 40, 23, 0.3);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  fill: currentColor;
}

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

/* Show tooltip on hover */
.whatsapp-float::before {
  content: "Chat on WhatsApp";
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  padding: 8px 12px;
  background: var(--leaf-950);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  white-space: nowrap;
}

.sticky-cta {
  position: fixed;
  left: 40px;
  bottom: 90px;
  z-index: 49;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--leaf-800), var(--leaf-500));
  box-shadow: 0 8px 28px rgba(46, 125, 50, 0.4);
  font-weight: 800;
  font-size: 0.95rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.sticky-cta:hover,
.sticky-cta:focus {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(46, 125, 50, 0.5);
}

.whatsapp-float:hover::before {
  opacity: 1;
  visibility: visible;
}

/* Mobile CTA Bar */
.mobile-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: none;
  padding: 12px 16px;
  background: #ffffff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.mobile-cta-bar .cta-buttons {
  display: flex;
  gap: 10px;
  max-width: 600px;
  margin: 0 auto;
}

.mobile-cta-bar .button {
  flex: 1;
  min-height: 44px;
  min-width: auto;
  padding: 0 16px;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: none;
  }

  body {
    padding-bottom: 90px;
  }

  .whatsapp-float {
    right: 20px;
    bottom: 130px;
    width: 56px;
    height: 56px;
  }
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.thank-you-shell {
  width: min(760px, calc(100% - 32px));
  display: grid;
  gap: 26px;
}

.thank-you-brand {
  width: fit-content;
}

.thank-you-brand span {
  display: inline;
}

.thank-you-card {
  padding: clamp(32px, 7vw, 62px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.thank-you-card h1 {
  font-size: clamp(2.8rem, 8vw, 4.8rem);
}

.thank-you-card p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.1rem;
}

.legal-page {
  width: min(940px, calc(100% - 32px));
  margin: 0 auto;
  padding: 74px 0 48px;
}

.legal-hero {
  margin-bottom: 28px;
  padding: clamp(28px, 6vw, 54px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 193, 7, 0.22), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(232, 245, 233, 0.86));
  box-shadow: var(--shadow-soft);
}

.legal-hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 8vw, 5.4rem);
}

.legal-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.1rem;
}

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

.legal-hero dl div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
}

.legal-hero dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-hero dd {
  margin: 4px 0 0;
  color: var(--leaf-950);
  font-weight: 850;
}

.legal-card {
  margin-top: 18px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(17, 40, 23, 0.07);
}

.legal-card h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.legal-card article + article {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-card p,
.legal-card li,
.legal-note {
  color: var(--muted);
}

.legal-card ul {
  display: grid;
  gap: 9px;
  padding-left: 22px;
}

.legal-card a {
  color: var(--leaf-700);
  font-weight: 800;
  text-decoration: underline;
}

.consent-card {
  border-color: rgba(76, 175, 80, 0.35);
  background:
    linear-gradient(145deg, rgba(232, 245, 233, 0.72), rgba(255, 255, 255, 0.98)),
    #ffffff;
}

.legal-note {
  margin: 22px 0 0;
  font-size: 0.92rem;
}

.policy-nav-links {
  margin-left: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1060px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 62px;
  }

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

  .future-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .future-copy {
    position: static;
  }
}

@media (max-width: 900px) {
  /* ── Scroll-wrapper architecture ──
     html/body are a fixed viewport. Header sits on top.
     .page-scroll-wrapper is the only scrollable container. */
  html {
    overflow: hidden !important;
    height: 100% !important;
    scroll-padding-top: 56px;
  }

  body {
    overflow: hidden !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin: 0 !important;
  }

  body::before {
    display: none !important;
  }

  .page-scroll-wrapper {
    flex: 1 1 0%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: auto;
  }

  .sticky-cta,
  .mobile-cta-bar {
    display: none !important;
  }

  .whatsapp-float {
    position: fixed !important;
    right: 16px !important;
    bottom: 20px !important;
    z-index: 9999 !important;
    display: inline-flex !important;
    width: 54px !important;
    height: 54px !important;
  }

  .announcement {
    display: none;
  }

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

  /* ── Mobile header: sits at top of flex body, never scrolls ── */
  .site-header {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    flex-shrink: 0 !important;
    width: 100% !important;
    min-height: 56px !important;
    z-index: 100 !important;
    display: block !important;
    background: #ffffff !important;
    border-bottom: 1px solid rgba(220, 232, 221, 0.85) !important;
    box-shadow: 0 2px 12px rgba(17, 40, 23, 0.08) !important;
    transform: none !important;
  }

  .nav-shell {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 56px;
    gap: 0;
    padding: 0 20px;
    margin: 0;
    justify-content: flex-start;
  }

  .brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    gap: 8px;
    flex-shrink: 0;
  }

  .brand-logo-image {
    display: block;
    max-width: 36px;
    max-height: 32px;
  }

  .brand-name {
    font-size: 1rem;
  }

  /* Hide desktop CTAs */
  .nav-cta {
    display: none;
  }

  /* Mobile CTA – between brand and hamburger */
  .nav-cta-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    margin-left: auto;
    margin-right: 10px;
    border-radius: 8px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--leaf-800), var(--leaf-500));
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.25);
    font-size: 0.82rem;
    font-weight: 800;
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Hamburger – far right with breathing room */
  .menu-toggle {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    margin-right: 6px;
  }

  /* Hamburger → X animation */
  .menu-toggle span:not(.sr-only) {
    transition: transform 0.25s ease, opacity 0.2s ease;
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Active menu item */
  .nav-links a.is-active {
    background: var(--mint-100);
    color: var(--leaf-800);
  }

  /* Dropdown nav links */
  .nav-links {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 16px;
    border-top: 1px solid var(--line);
    border-radius: 0;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(17, 40, 23, 0.12);
    transition: max-height 0.35s ease, padding 0.35s ease;
  }

  .nav-links.is-open {
    max-height: 70vh;
    overflow-y: auto;
    padding: 8px 16px 16px;
    z-index: 30;
  }

  .nav-links a {
    display: block;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ink);
  }

  .nav-links a:hover,
  .nav-links a:focus {
    background: var(--mint-100);
    color: var(--leaf-900);
  }

  .nav-links a::after {
    display: none;
  }

  .whatsapp-float {
    right: max(40px, calc(24px + env(safe-area-inset-right))) !important;
    bottom: calc(30px + env(safe-area-inset-bottom)) !important;
    z-index: 50 !important;
    min-height: 54px;
    width: 54px;
    justify-content: center;
    padding: 0;
    border: 3px solid #ffffff;
    border-radius: 999px;
    background: #25d366 !important;
    box-shadow: 0 18px 40px rgba(17, 40, 23, 0.34);
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float svg {
    width: 31px;
    height: 31px;
  }

  .sticky-cta {
    display: none;
  }

  .workflow-grid,
  .feature-grid,
  .audience-grid,
  .pricing-grid,
  .country-grid,
  .lead-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .cta-section,
  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .site-footer p {
    text-align: left;
  }

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

  /* Testimonials — tablet: 2 columns, phone: 1 column */
  .testimonials-grid {
    gap: 14px;
  }

  .testimonial-card {
    min-height: auto;
    padding: 22px;
    border-radius: 14px;
  }

  .testimonial-content p {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }

  .author-avatar {
    width: 44px;
    height: 44px;
  }

  /* Logos */
  .logos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .logo-item {
    padding: 20px;
  }

  /* Newsletter */
  .newsletter-panel {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  .newsletter-panel h2 {
    font-size: 1.3rem;
  }

  .newsletter-panel > p {
    font-size: 0.95rem;
  }

  .newsletter-input-group {
    flex-direction: column;
    gap: 12px;
  }

  .newsletter-input-group input {
    width: 100%;
    min-width: 0;
  }

  .newsletter-input-group button {
    width: 100%;
    white-space: normal;
  }

  /* Trust */
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .trust-item {
    padding: 20px;
  }

  .trust-item h3 {
    font-size: 1rem;
  }

  .trust-item p {
    font-size: 0.9rem;
  }

  /* Comparison */
  .comparison-table-wrapper {
    border-radius: 12px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 10px;
    font-size: 0.85rem;
  }

  .comparison-table th:first-child,
  .comparison-table td:first-child {
    min-width: 120px;
  }

  /* About */
  .about-hero {
    padding: 60px 20px;
  }

  .about-hero h1 {
    font-size: 1.8rem;
  }

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

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

  /* Quiz */
  .quiz-container {
    padding: 24px 20px;
    border-radius: 14px;
  }

  .quiz-step h3,
  .quiz-result h3 {
    font-size: 1.1rem;
  }

  .quiz-options {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .quiz-option {
    padding: 16px;
    font-size: 0.9rem;
  }

  .result-card {
    padding: 24px 20px;
  }

  .result-plan {
    font-size: 1.5rem;
  }

  .result-price {
    font-size: 1.6rem;
  }

  /* Exit Intent Popup */
  .exit-intent-popup {
    padding: 16px;
  }

  .popup-content {
    padding: 28px 24px;
    max-width: 100%;
  }

  .popup-body h2 {
    font-size: 1.3rem;
  }

  .popup-body > p {
    font-size: 0.9rem;
  }
}

@media (max-width: 680px) {
  .hero-section,
  .section,
  .cta-section,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .nav-cta-mobile {
    min-height: 32px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .menu-toggle {
    width: 36px;
    height: 36px;
    gap: 4px;
  }

  .menu-toggle span:not(.sr-only) {
    width: 17px;
  }

  .hero-section {
    gap: 26px;
    padding-top: 34px;
    padding-bottom: 38px;
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(2.35rem, 11.5vw, 3.12rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.82rem, 8vw, 2.45rem);
    line-height: 1.08;
  }

  .hero-lede,
  .section-heading p,
  .future-copy p,
  .contact-copy p {
    font-size: 1rem;
  }

  .hero-actions {
    margin: 24px 0 18px;
  }

  .trust-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button,
  .contact-form .button,
  .cta-section .button {
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
    padding: 16px;
    overflow: visible;
  }

  .hero-slider {
    min-height: 205px;
    border-radius: 14px;
  }

  .slide figcaption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
    border-radius: 8px;
    font-size: 0.78rem;
  }

  .dashboard-shell {
    padding: 14px;
    border-radius: 14px;
  }

  .dashboard-grid,
  .workflow-grid,
  .feature-grid,
  .audience-grid,
  .pricing-grid,
  .country-grid,
  .lead-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .metric-card {
    min-height: auto;
  }

  .mini-chart {
    height: 96px;
    gap: 7px;
  }

  .floating-card-right {
    display: none;
  }

  .floating-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
  }

  .section {
    padding-block: 58px;
  }

  .band {
    padding-inline: 12px;
  }

  .feature-card,
  .workflow-step,
  .audience-card,
  .price-card {
    min-height: auto;
  }

  .feature-visual {
    height: 140px;
    margin-bottom: 18px;
  }

  .cta-section {
    padding: 30px;
  }

  .country-card,
  .lead-card {
    min-height: auto;
  }

  .language-panel {
    padding: 28px;
  }

  .language-list span {
    width: 100%;
    text-align: center;
  }

}
