:root {
  --bg: #f5f1e8;
  --surface: rgba(255, 255, 255, 0.7);
  --surface-strong: rgba(255, 255, 255, 0.88);
  --ink: #112418;
  --muted: #4f6557;
  --line: rgba(17, 36, 24, 0.12);
  --green: #0f7a41;
  --green-deep: #094b2a;
  --green-soft: #dff6e5;
  --gold: #ffca6a;
  --shadow: 0 28px 80px rgba(13, 53, 31, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 40px));
  --glow-x: 50%;
  --glow-y: 20%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(255, 202, 106, 0.38), transparent 28%),
    radial-gradient(circle at 20% 16%, rgba(15, 122, 65, 0.12), transparent 32%),
    linear-gradient(180deg, #f8f4ed 0%, #f4f0e6 42%, #ecf5ef 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 36, 24, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 36, 24, 0.045) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 94%);
  z-index: -3;
}

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

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

button,
input,
select {
  font: inherit;
}

.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle 260px at var(--glow-x) var(--glow-y), rgba(15, 122, 65, 0.14), transparent 70%);
  z-index: -2;
  transition: background-position 120ms linear;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.35) 0.5px, transparent 0.5px);
  background-size: 8px 8px;
  opacity: 0.12;
  z-index: -1;
}

.site-header,
.section,
.trust-ribbon,
.site-footer {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 30;
  margin-top: 16px;
  padding: 14px 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 48px rgba(19, 42, 26, 0.08);
}

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

.brand img {
  width: 108px;
  height: auto;
}

.brand span {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 24px;
  color: var(--muted);
  font-weight: 600;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--green);
  transition: transform 200ms ease;
}

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

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(15, 122, 65, 0.14);
  border-radius: 999px;
  background: rgba(15, 122, 65, 0.08);
  color: var(--green-deep);
  font-weight: 800;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.header-call:hover,
.header-call:focus-visible {
  transform: translateY(-2px);
  background: rgba(15, 122, 65, 0.14);
  box-shadow: 0 16px 34px rgba(15, 122, 65, 0.16);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
  will-change: transform;
  overflow: hidden;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -42%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
  transform: skewX(-18deg);
  transition: transform 320ms ease;
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(240%) skewX(-18deg);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #0f7a41 0%, #15ad56 100%);
  box-shadow: 0 18px 36px rgba(15, 122, 65, 0.26);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 24px 44px rgba(15, 122, 65, 0.34);
}

.button-secondary,
.button-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(17, 36, 24, 0.1);
}

.button-secondary:hover,
.button-ghost:hover,
.button-secondary:focus-visible,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.96);
}

.button-whatsapp {
  color: #fff;
  background: linear-gradient(135deg, #1d8f49 0%, #25d366 100%);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.28);
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible {
  box-shadow: 0 24px 50px rgba(37, 211, 102, 0.36);
}

.section {
  padding: 54px 0;
  scroll-margin-top: 120px;
}

.hero {
  min-height: calc(100vh - 110px);
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: center;
  gap: 34px;
  padding-top: 52px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(15, 122, 65, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--green-deep);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #18cf67, #0f7a41);
  box-shadow: 0 0 0 6px rgba(15, 122, 65, 0.12);
}

.hero-title,
.section-heading h2,
.support-copy h2,
.whatsapp-showcase-copy h2,
.form-card h2 {
  margin: 20px 0 0;
  font-family: "Sora", sans-serif;
  line-height: 0.97;
  letter-spacing: -0.04em;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.6rem);
}

.title-line {
  display: block;
}

.title-line.accent {
  color: var(--green);
}

.hero-text,
.section-heading p,
.support-copy p,
.whatsapp-showcase-copy p,
.form-card p {
  margin: 22px 0 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

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

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

.hero-points li {
  position: relative;
  padding-left: 28px;
  color: #294232;
  line-height: 1.6;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #fff 0 24%, transparent 25%),
    linear-gradient(135deg, #15ad56, #0f7a41);
  box-shadow: 0 0 0 6px rgba(21, 173, 86, 0.14);
}

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

.hero-lane {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  padding: 16px;
}

.hero-lane span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 122, 65, 0.08);
  color: var(--green-deep);
  font-size: 0.9rem;
  font-weight: 700;
}

.glass-card,
.product-card,
.story-card,
.faq-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.68));
  box-shadow: var(--shadow);
}

.glass-card::before,
.product-card::before,
.story-card::before,
.faq-item::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -20%;
  width: 52%;
  height: 180%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.48), transparent 60%);
  transform: rotate(12deg);
  pointer-events: none;
}

.metric-card {
  padding: 24px 22px;
}

.metric-value {
  font-family: "Sora", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green-deep);
  line-height: 1;
}

.metric-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.hero-media {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 20px;
  align-self: stretch;
  perspective: 1000px;
}

.hero-video {
  width: 100%;
  aspect-ratio: 16 / 13;
  border-radius: 24px;
  object-fit: cover;
}

.hero-card {
  position: relative;
  overflow: hidden;
}

.hero-chat-brand strong,
.story-caption strong,
.whatsapp-phone-head strong,
.widget-agent strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

.hero-chat-brand span,
.story-caption span,
.whatsapp-phone-head span,
.widget-agent span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.hero-poster-card {
  grid-row: 1 / span 2;
  padding: 12px;
}

.hero-poster-card img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: 22px;
  object-fit: cover;
}

.hero-video-card {
  padding: 16px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(13, 28, 18, 0.96), rgba(10, 24, 15, 0.88));
  box-shadow: 0 36px 92px rgba(9, 32, 19, 0.24);
}

.hero-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 6px rgba(37, 211, 102, 0.18);
}

.hero-chat-card {
  padding: 20px;
  background:
    radial-gradient(circle at top right, rgba(37, 211, 102, 0.22), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 248, 241, 0.9));
}

.hero-chat-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

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

.hero-chat-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1d8f49 0%, #25d366 100%);
  color: #fff;
  font-weight: 800;
}

.hero-chat-brand strong {
  display: block;
  font-size: 1rem;
}

.hero-chat-brand span {
  display: block;
  margin-top: 4px;
  font-size: 0.9rem;
}

.hero-chat-open {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(37, 211, 102, 0.12);
  color: var(--green);
  font-weight: 800;
  cursor: pointer;
}

.hero-chat-preview {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.hero-chat-agent {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.hero-chat-agent img {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  object-fit: cover;
  background: #fff;
  padding: 4px;
  box-shadow: 0 12px 24px rgba(13, 53, 31, 0.12);
}

.hero-chat-bubble,
.phone-message,
.widget-bubble {
  max-width: 86%;
  padding: 14px 16px;
  border-radius: 20px;
  line-height: 1.55;
  font-size: 0.96rem;
}

.hero-chat-bubble.bot,
.phone-message.bot,
.widget-bubble.bot {
  background: rgba(255, 255, 255, 0.94);
  color: #203426;
  border: 1px solid rgba(17, 36, 24, 0.08);
}

.hero-chat-bubble.user,
.phone-message.user,
.widget-bubble.user {
  margin-left: auto;
  background: linear-gradient(135deg, #1d8f49 0%, #25d366 100%);
  color: #fff;
}

.hero-chip-row,
.widget-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-chip-row {
  margin-top: 16px;
}

.chat-chip {
  border: 1px solid rgba(15, 122, 65, 0.16);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--green-deep);
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.chat-chip:hover,
.chat-chip:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(13, 53, 31, 0.12);
  background: #fff;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(22px);
  pointer-events: none;
}

.hero-orb-one {
  top: -24px;
  right: 80px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 202, 106, 0.68), rgba(255, 202, 106, 0));
}

.hero-orb-two {
  left: -24px;
  bottom: 80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(15, 122, 65, 0.22), rgba(15, 122, 65, 0));
}

.hero {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: clamp(480px, 72vh, 620px);
  padding: 58px 64px 52px;
  border-radius: 44px;
  background: #09160e;
  isolation: isolate;
}

.hero-background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  filter: saturate(1.08) contrast(1.02);
  z-index: -3;
  animation: heroVideoFloat 18s ease-in-out infinite alternate;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 14, 9, 0.92) 0%, rgba(5, 14, 9, 0.82) 36%, rgba(5, 14, 9, 0.34) 70%, rgba(5, 14, 9, 0.76) 100%);
  z-index: -2;
}

.hero-sheen {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 202, 106, 0.24), transparent 30%),
    radial-gradient(circle at 78% 76%, rgba(37, 211, 102, 0.22), transparent 24%);
  z-index: -1;
  animation: heroSheenDrift 14s ease-in-out infinite alternate;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.32), transparent 92%);
  opacity: 0.34;
}

.hero-shell {
  display: grid;
  position: relative;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: center;
  min-height: clamp(350px, 52vh, 470px);
}

.hero-copy {
  max-width: 510px;
  color: #fff;
  padding-bottom: 0;
}

.hero-eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #effff4;
}

.hero-title {
  color: #fff;
  max-width: 8.8ch;
  font-size: clamp(2.95rem, 5.2vw, 4.55rem);
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.hero .title-line.accent {
  color: #84f5b8;
}

.hero-text {
  max-width: 34ch;
  color: rgba(241, 248, 244, 0.82);
  font-size: 1.02rem;
}

.hero-actions {
  gap: 16px;
  margin-top: 30px;
}

.hero-actions .button {
  min-width: 214px;
}

.hero-strip,
.hero-summary-card,
.hero-badge {
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(10, 24, 15, 0.72), rgba(11, 28, 17, 0.5));
  box-shadow: 0 34px 82px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin-top: 22px;
  padding: 14px 16px;
}

.hero-strip span,
.hero-summary-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-summary-card {
  justify-self: end;
  width: min(100%, 360px);
  padding: 28px;
  animation: softFloat 8s ease-in-out infinite;
}

.hero-panel-label {
  display: inline-block;
  color: #95ffbf;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-panel-title {
  margin: 16px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #fff;
}

.hero-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.hero-summary-stat {
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-summary-stat strong {
  display: block;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.hero-summary-stat span {
  display: block;
  margin-top: 10px;
  color: rgba(241, 248, 244, 0.72);
  line-height: 1.55;
  font-size: 0.94rem;
}

.hero-summary-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-badge {
  position: absolute;
  min-width: 250px;
  max-width: 280px;
  padding: 18px;
  animation: softFloat 7s ease-in-out infinite;
}

.hero-badge strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}

.hero-badge span {
  display: block;
  margin-top: 8px;
  color: rgba(241, 248, 244, 0.72);
  line-height: 1.55;
}

.hero-badge-top {
  top: 78px;
  right: 312px;
}

.hero-badge-bottom {
  right: 292px;
  bottom: 34px;
  animation-delay: -2.4s;
}

@keyframes heroVideoFloat {
  from {
    transform: scale(1.05) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.11) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes heroSheenDrift {
  from {
    opacity: 0.78;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(-1.2%, 1.4%, 0);
  }
}

@keyframes softFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

.trust-ribbon {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10px;
  padding: 18px 0 12px;
}

.trust-item {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 252, 249, 0.78));
  box-shadow: 0 22px 50px rgba(11, 39, 23, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.trust-item:hover,
.trust-item:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 28px 62px rgba(11, 39, 23, 0.12);
}

.trust-item strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.trust-item span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.55;
}

.section-heading {
  max-width: 760px;
}

#benefits .section-heading > p:not(.benefits-copy) {
  display: none;
}

.section-heading h2,
.support-copy h2,
.whatsapp-showcase-copy h2,
.form-card h2 {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
}

.feature-grid,
.products-grid,
.stories-grid,
.steps-grid {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

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

.feature-card {
  padding: 26px;
  min-height: 220px;
}

.feature-icon,
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(15, 122, 65, 0.1);
  color: var(--green);
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.feature-card h3,
.product-card h3,
.step-card h3 {
  margin: 22px 0 0;
  font-family: "Sora", sans-serif;
  font-size: 1.28rem;
  line-height: 1.3;
}

.feature-card p,
.product-card p,
.step-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.product-card {
  padding: 24px;
  min-height: 270px;
  background:
    radial-gradient(circle at top right, rgba(15, 122, 65, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(242, 250, 245, 0.85));
}

.product-card span {
  display: inline-flex;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 122, 65, 0.08);
  color: var(--green-deep);
  font-size: 0.9rem;
  font-weight: 700;
}

.cta-banner-section {
  padding-top: 12px;
}

.cta-banner {
  position: relative;
  min-height: 360px;
  padding: 0;
  overflow: hidden;
  border-radius: 34px;
  background: #0c1b12;
}

.cta-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 16, 10, 0.92) 0%, rgba(6, 16, 10, 0.68) 42%, rgba(6, 16, 10, 0.2) 100%);
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  padding: 46px;
  color: #fff;
}

.cta-banner-content .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #effff4;
}

.cta-banner-content h2 {
  margin: 18px 0 0;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.2rem, 4.8vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.cta-banner-content p {
  margin: 16px 0 0;
  max-width: 32ch;
  color: rgba(241, 248, 244, 0.82);
  line-height: 1.65;
}

.cta-banner-content .button {
  margin-top: 26px;
}

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

.story-card {
  min-height: 480px;
  background: #0f1d15;
}

.story-card video {
  width: 100%;
  height: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  opacity: 0.92;
  transform: scale(1.01);
  transition: transform 280ms ease, opacity 280ms ease;
}

.story-card:hover video,
.story-card:focus-within video {
  transform: scale(1.06);
  opacity: 1;
}

.story-caption {
  position: absolute;
  inset: auto 16px 16px 16px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(7, 18, 11, 0.72);
  backdrop-filter: blur(12px);
  color: #fff;
}

.story-caption span {
  color: rgba(255, 255, 255, 0.76);
}

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

.step-card {
  padding: 24px;
  min-height: 240px;
}

.early-form-section {
  padding-top: 18px;
}

.single-form-layout {
  max-width: 860px;
  margin: 0 auto;
}

.contact-conversion {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 28px;
  padding: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 202, 106, 0.22), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(37, 211, 102, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 250, 246, 0.92));
}

.contact-conversion::before {
  content: "";
  position: absolute;
  inset: auto auto -72px -72px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 122, 65, 0.16), rgba(15, 122, 65, 0));
  pointer-events: none;
}

.contact-conversion-copy,
.contact-form-panel {
  position: relative;
  z-index: 1;
}

.contact-conversion-copy {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 18px;
  border: 1px solid rgba(17, 36, 24, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 252, 249, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.66),
    0 22px 54px rgba(13, 53, 31, 0.08);
}

.contact-conversion-copy h2 {
  margin: 20px 0 0;
  max-width: 10ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.9rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.contact-conversion-copy p {
  margin: 20px 0 0;
  max-width: 38ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.contact-phone-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  width: fit-content;
  color: var(--green-deep);
  font-weight: 800;
}

.contact-phone-line::before {
  content: "";
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.95) 0 20%, transparent 21%),
    linear-gradient(135deg, #15ad56, #0f7a41);
  box-shadow: 0 10px 24px rgba(15, 122, 65, 0.18);
}

.contact-conversion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.contact-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: auto;
  padding-top: 26px;
}

.contact-proof-card {
  padding: 18px;
  border: 1px solid rgba(17, 36, 24, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.contact-proof-card:last-child {
  grid-column: 1 / -1;
}

.contact-proof-card strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.contact-proof-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.58;
}

.contact-form-panel {
  padding: 18px;
  border: 1px solid rgba(17, 36, 24, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 248, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 26px 64px rgba(13, 53, 31, 0.1);
}

.contact-form-panel-head {
  padding: 10px 10px 0;
}

.contact-panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-panel-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #18cf67, #0f7a41);
  box-shadow: 0 0 0 5px rgba(15, 122, 65, 0.1);
}

.contact-form-panel-head h3 {
  margin: 16px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.contact-form-shell {
  margin-top: 18px;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 24px;
  align-items: stretch;
}

.whatsapp-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 30px;
}

.whatsapp-layout-single {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin-inline: auto;
}

.support-visual,
.form-card {
  padding: 28px;
}

.whatsapp-connect-card,
.whatsapp-direct-card {
  padding: 30px;
}

.whatsapp-connect-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(37, 211, 102, 0.22), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(255, 202, 106, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 248, 241, 0.9));
}

.whatsapp-connect-card::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -54px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.18), rgba(37, 211, 102, 0));
  pointer-events: none;
}

.whatsapp-connect-mark {
  position: relative;
  width: 104px;
  height: 104px;
  border-radius: 30px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1d8f49 0%, #25d366 100%);
  box-shadow: 0 24px 54px rgba(37, 211, 102, 0.28);
}

.whatsapp-connect-mark::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 38px;
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.whatsapp-connect-mark img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 22px;
  background: #fff;
  padding: 8px;
}

.whatsapp-showcase {
  padding: 30px;
  background:
    radial-gradient(circle at top left, rgba(37, 211, 102, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 248, 241, 0.9));
}

.whatsapp-showcase-copy {
  max-width: 38ch;
}

.whatsapp-direct-card {
  background:
    radial-gradient(circle at top right, rgba(15, 122, 65, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 252, 248, 0.88));
}

.whatsapp-phone {
  width: min(100%, 420px);
  margin: 28px 0 0 auto;
  padding: 16px;
  border-radius: 30px;
  background: linear-gradient(180deg, #dff6e5 0%, #f6fcf8 100%);
  box-shadow: 0 24px 60px rgba(13, 53, 31, 0.12);
}

.whatsapp-phone-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 22px;
  background: linear-gradient(135deg, #1d8f49 0%, #25d366 100%);
  color: #fff;
}

.whatsapp-phone-head img,
.widget-agent img {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  object-fit: cover;
  background: #fff;
  padding: 4px;
}

.whatsapp-phone-head strong,
.widget-agent strong {
  display: block;
  font-size: 1rem;
}

.whatsapp-phone-head span,
.widget-agent span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.whatsapp-phone-body,
.widget-body {
  display: grid;
  gap: 12px;
}

.whatsapp-phone-body {
  margin-top: 16px;
}

.phone-message.media,
.widget-bubble.media {
  max-width: 100%;
  display: grid;
  gap: 12px;
}

.phone-message.media img,
.widget-bubble.media img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.contact-action-row,
.whatsapp-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 8px;
}

.form-top-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.support-visual {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(15, 122, 65, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 248, 241, 0.84));
}

.support-copy {
  max-width: 38ch;
}

.support-visual img {
  width: min(100%, 460px);
  margin: 26px auto 0;
  filter: drop-shadow(0 30px 50px rgba(15, 122, 65, 0.12));
}

.support-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.support-tags li {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(15, 122, 65, 0.08);
  color: var(--green-deep);
  font-weight: 700;
}

.zoho-form-shell {
  margin-top: 26px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(17, 36, 24, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.zoho-form-embed {
  width: 100%;
  height: 560px;
  border: none;
  display: block;
  background: #fff;
}

.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  border: 0;
  border-radius: 999px;
  padding: 11px 18px 11px 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #1d8f49 0%, #25d366 100%);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 28px 50px rgba(37, 211, 102, 0.34);
  cursor: pointer;
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-fab::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.24), rgba(37, 211, 102, 0));
  z-index: -1;
  animation: whatsappFabPulse 2.4s ease-out infinite;
}

.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 34px 64px rgba(37, 211, 102, 0.4);
}

.whatsapp-fab-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.12);
}

.whatsapp-fab-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

@keyframes whatsappFabPulse {
  0% {
    transform: scale(0.92);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.08);
    opacity: 0;
  }
  100% {
    transform: scale(1.08);
    opacity: 0;
  }
}

.whatsapp-widget {
  position: fixed;
  right: 22px;
  bottom: 96px;
  z-index: 39;
  width: min(380px, calc(100vw - 32px));
  padding: 0;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 248, 242, 0.94));
  box-shadow: 0 34px 84px rgba(8, 34, 19, 0.22);
}

.widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  background: linear-gradient(135deg, #1d8f49 0%, #25d366 100%);
  color: #fff;
}

.widget-agent {
  display: flex;
  align-items: center;
  gap: 12px;
}

.widget-close {
  border: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

.widget-body {
  max-height: 340px;
  overflow: auto;
  padding: 18px;
}

.widget-quick-actions {
  padding: 0 18px 18px;
}

.widget-footer {
  padding: 0 18px 18px;
}

.widget-cta {
  width: 100%;
}

.faq-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

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

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  font-family: "Sora", sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--green);
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 220ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 0 22px;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 0 0 36px;
  color: var(--muted);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 680ms ease,
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

[data-tilt] {
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease;
  will-change: transform;
}

[data-tilt]:hover,
[data-tilt]:focus-within {
  box-shadow: 0 34px 78px rgba(8, 34, 19, 0.18);
}

@media (max-width: 1180px) {
  .hero {
    min-height: 560px;
    padding: 54px 48px 46px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    align-items: center;
    min-height: auto;
  }

  .cta-banner-content {
    padding: 40px;
  }

  .hero-summary-card {
    max-width: 640px;
    justify-self: start;
  }

  .hero-badge-top {
    top: auto;
    right: 26px;
    bottom: 196px;
  }

  .hero-badge-bottom {
    right: 26px;
    bottom: 26px;
  }

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

  .contact-conversion {
    grid-template-columns: 1fr;
  }

  .contact-conversion-copy h2,
  .contact-conversion-copy p {
    max-width: none;
  }

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

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

  .support-layout,
  .whatsapp-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .site-header {
    border-radius: 28px;
  }

  .site-nav {
    display: none;
  }

  .header-call {
    justify-self: end;
    font-size: 0.92rem;
  }

  .trust-ribbon,
  .stories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero {
    min-height: auto;
    padding: 46px 34px;
  }

  .hero-shell {
    gap: 0;
  }

  .hero-title {
    max-width: 10.5ch;
  }

  .hero-badge {
    position: static;
    max-width: 420px;
  }

  .cta-banner {
    min-height: 320px;
  }

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

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

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 24px, 100%);
  }

  .site-header {
    top: 10px;
    padding: 14px;
    gap: 10px;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand span,
  .header-cta {
    display: none;
  }

  .header-call {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.83rem;
  }

  .section {
    padding: 42px 0;
  }

  .hero {
    padding: 30px 22px;
    border-radius: 30px;
  }

  .hero-shell {
    gap: 0;
  }

  .hero-title {
    max-width: 8.8ch;
    font-size: clamp(2.45rem, 11.2vw, 3.45rem);
  }

  .hero-text {
    max-width: 28ch;
    font-size: 1rem;
  }

  .hero-actions,
  .contact-action-row,
  .contact-conversion-actions,
  .form-top-actions,
  .whatsapp-action-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-strip {
    width: 100%;
  }

  .hero-summary-card,
  .hero-badge,
  .contact-conversion,
  .cta-banner-content,
  .whatsapp-connect-card,
  .whatsapp-direct-card,
  .whatsapp-showcase,
  .form-card {
    padding: 20px;
  }

  .contact-conversion-copy h2 {
    max-width: 10.5ch;
    font-size: clamp(2.5rem, 11vw, 3.9rem);
  }

  .contact-proof-grid {
    grid-template-columns: 1fr;
  }

  .contact-proof-card:last-child {
    grid-column: auto;
  }

  .contact-form-panel {
    padding: 14px;
    border-radius: 24px;
  }

  .contact-conversion-copy {
    padding: 14px;
    border-radius: 24px;
  }

  .form-top-actions .button {
    width: 100%;
  }

  .cta-banner {
    min-height: 290px;
    border-radius: 28px;
  }

  .cta-banner-overlay {
    background:
      linear-gradient(180deg, rgba(6, 16, 10, 0.18) 0%, rgba(6, 16, 10, 0.74) 54%, rgba(6, 16, 10, 0.92) 100%);
  }

  .cta-banner-content .button {
    width: 100%;
  }

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

  .hero-summary-pills {
    gap: 8px;
  }

  .hero-summary-pills span,
  .hero-strip span {
    width: 100%;
    text-align: center;
  }

  .feature-grid,
  .products-grid,
  .stories-grid,
  .steps-grid,
  .trust-ribbon {
    grid-template-columns: 1fr;
  }

  .story-card {
    min-height: 430px;
  }

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

  .whatsapp-phone {
    width: 100%;
    margin-left: 0;
  }

  .whatsapp-fab {
    right: 12px;
    left: auto;
    bottom: 12px;
    max-width: calc(100vw - 24px);
  }

  .whatsapp-widget {
    right: 12px;
    left: auto;
    bottom: 82px;
    width: min(340px, calc(100vw - 24px));
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
