﻿:root {
  --bg: #f5f4ee;
  --bg-soft: #eef3ed;
  --bg-panel: rgba(255, 255, 255, 0.84);
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --surface-solid: #ffffff;
  --card: rgba(255, 255, 255, 0.88);
  --card-strong: rgba(255, 255, 255, 0.98);
  --text: #173126;
  --text-soft: rgba(23, 49, 38, 0.78);
  --text-muted: rgba(23, 49, 38, 0.56);
  --line: rgba(23, 49, 38, 0.1);
  --line-strong: rgba(23, 49, 38, 0.18);
  --brand: #2f7b58;
  --brand-strong: #4aa174;
  --brand-deep: #1f5d42;
  --gold: #c9a76a;
  --green: #2f7b58;
  --shadow-soft: 0 24px 60px rgba(40, 73, 56, 0.12);
  --shadow-strong: 0 42px 90px rgba(40, 73, 56, 0.16);
  --radius-xl: 40px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1180px;
  --font-main: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(74, 161, 116, 0.18), transparent 24%),
    radial-gradient(circle at 88% 8%, rgba(201, 167, 106, 0.18), transparent 22%),
    linear-gradient(180deg, #fbfaf6 0%, #f5f4ee 48%, #edf3ef 100%);
  line-height: 1.62;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(23, 49, 38, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 49, 38, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.35;
  mask-image: radial-gradient(circle at center, black 48%, transparent 86%);
}

.page-glow {
  position: fixed;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

.page-glow-left {
  top: -10vw;
  left: -8vw;
  background: rgba(74, 161, 116, 0.14);
}

.page-glow-right {
  top: 16vh;
  right: -12vw;
  background: rgba(201, 167, 106, 0.16);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 12px;
  background: #fff;
  color: #111;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: 18px;
}

.site-header.scrolled .nav-shell {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(23, 49, 38, 0.1);
  box-shadow: 0 18px 44px rgba(40, 73, 56, 0.12);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid rgba(23, 49, 38, 0.08);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--brand-strong), var(--brand-deep));
  color: #f8fff9;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  color: var(--text-muted);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(23, 49, 38, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.lang-btn {
  min-width: 48px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-soft);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.lang-btn:hover,
.lang-btn:focus-visible {
  color: var(--brand-deep);
  transform: translateY(-1px);
}

.lang-btn.active {
  background: linear-gradient(135deg, rgba(74, 161, 116, 0.16), rgba(201, 167, 106, 0.14));
  color: var(--brand-deep);
}

.site-nav a {
  color: var(--text-soft);
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand-deep);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(47, 123, 88, 0.16);
  background: linear-gradient(135deg, rgba(74, 161, 116, 0.16), rgba(201, 167, 106, 0.12));
  color: var(--brand-deep);
}

.hero {
  padding: 68px 0 34px;
}

.hero-grid,
.split-grid,
.footer-grid,
.contact-shell,
.business-shell,
.faq-shell {
  display: grid;
  gap: 32px;
}

.hero-grid {
  align-items: center;
}

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

.hero-kicker,
.hero-card-topline,
.hero-mini-metrics,
.product-tag,
.section-label,
.eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 11px 15px;
  border-radius: 999px;
  border: 1px solid rgba(23, 49, 38, 0.08);
  background: rgba(255, 255, 255, 0.58);
  color: var(--text-muted);
  font-size: 0.74rem;
}

.kicker-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-strong), var(--gold));
  box-shadow: 0 0 14px rgba(74, 161, 116, 0.3);
}

.hero-copy h1,
.section-head h2,
.section-copy h2,
.final-cta-shell h2 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3.2rem, 6.5vw, 6.2rem);
}

.section-head h2,
.section-copy h2,
.final-cta-shell h2 {
  font-size: clamp(2.2rem, 4vw, 4.1rem);
}

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

.hero-lead,
.section-head p,
.section-copy p,
.product-body p,
.final-cta-shell p,
.hero-card-footer p,
.form-note,
.footer-grid p,
.faq-item p,
.review-card p,
.benefit-card p,
.step-card p {
  color: var(--text-soft);
}

.hero-lead,
.section-head p,
.section-copy p,
.final-cta-shell p {
  max-width: 64ch;
  font-size: 1.04rem;
}

.hero-actions,
.hero-messenger-row,
.card-actions,
.form-actions,
.lead-actions,
.contact-points,
.hero-mini-metrics,
.business-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

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

.hero-proof span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(23, 49, 38, 0.08);
  background: rgba(255, 255, 255, 0.58);
  color: var(--text-soft);
  font-size: 0.9rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 10%, rgba(255, 255, 255, 0.32) 45%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

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

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(120%);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-strong), var(--brand-deep));
  color: #f8fff9;
  box-shadow: 0 16px 34px rgba(47, 123, 88, 0.22);
}

.btn-secondary {
  border-color: rgba(23, 49, 38, 0.1);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
}

.btn-ghost {
  border-color: rgba(23, 49, 38, 0.12);
  background: transparent;
  color: var(--text);
}

.btn-link {
  min-height: auto;
  padding: 0;
  border: 0;
  color: var(--brand);
}

.btn-link::after {
  display: none;
}

.messenger-pill {
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(23, 49, 38, 0.08);
  background: rgba(255, 255, 255, 0.62);
  color: var(--text-soft);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.whatsapp {
  color: var(--brand-deep);
}

.telegram {
  color: #2f5d97;
}

.messenger-pill:hover,
.messenger-pill:focus-visible,
.contact-points a:hover,
.contact-points a:focus-visible,
.trust-items span:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 123, 88, 0.2);
}

.hero-stats {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-stats li,
.benefit-card,
.product-card,
.review-card,
.step-card,
.lead-form,
.faq-item,
.final-cta-shell,
.section-frame,
.contact-shell {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(252, 254, 251, 0.82));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.hero-stats li {
  padding: 20px;
  border-radius: 20px;
}

.hero-stats strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.hero-stats span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
}

.hero-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(23, 49, 38, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 248, 244, 0.9));
  box-shadow: var(--shadow-strong);
}

.hero-card-main {
  padding: 18px;
}

.hero-card-topline,
.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.hero-card-topline {
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: 0.72rem;
}

.hero-card-main img {
  width: 100%;
  border-radius: 28px;
  background: radial-gradient(circle at top, rgba(74, 161, 116, 0.14), transparent 40%), linear-gradient(180deg, #f8fbf8 0%, #ecf5ef 100%);
}

.hero-card-footer {
  margin-top: 18px;
  align-items: flex-end;
}

.hero-card-footer p {
  margin: 0;
  max-width: 31ch;
}

.hero-mini-metrics span {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(23, 49, 38, 0.08);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text-muted);
  font-size: 0.72rem;
}

.hero-note {
  position: absolute;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(23, 49, 38, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 50px rgba(40, 73, 56, 0.14);
}

.hero-note strong {
  font-size: 0.95rem;
}

.hero-note span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.hero-note-left {
  left: -24px;
  top: 86px;
}

.hero-note-right {
  right: -18px;
  bottom: 52px;
}

.trust-bar {
  padding: 8px 0 0;
}

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

.trust-items span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 18px;
  text-align: center;
  border-radius: 999px;
  border: 1px solid rgba(23, 49, 38, 0.08);
  background: rgba(255, 255, 255, 0.68);
  color: var(--text-soft);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.section {
  padding: 104px 0;
}

.section-frame,
.contact-shell,
.final-cta-shell {
  padding: 36px;
  border-radius: var(--radius-xl);
}

.section-head {
  max-width: 860px;
  margin-bottom: 32px;
}

.benefit-grid,
.product-grid,
.review-grid,
.steps,
.footer-grid {
  display: grid;
  gap: 18px;
}

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

.benefit-card,
.review-card,
.step-card,
.lead-form,
.faq-item {
  padding: 26px;
  border-radius: var(--radius-md);
}

.benefit-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(74, 161, 116, 0.16), rgba(201, 167, 106, 0.12));
  color: var(--brand-deep);
  font-weight: 800;
}

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

.product-card {
  overflow: hidden;
  border-radius: 30px;
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(47, 123, 88, 0.18);
  box-shadow: 0 30px 76px rgba(40, 73, 56, 0.16);
}

.product-media-shell {
  padding: 18px 18px 0;
}

.product-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 24px;
  background: radial-gradient(circle at top, rgba(74, 161, 116, 0.14), transparent 40%), linear-gradient(180deg, #f6fbf7 0%, #e9f3ec 100%);
}

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

.bundle-card {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(23, 49, 38, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 245, 0.92));
  box-shadow: var(--shadow-soft);
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.bundle-card:hover,
.bundle-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(47, 123, 88, 0.18);
  box-shadow: 0 30px 76px rgba(40, 73, 56, 0.16);
}

.bundle-media-shell {
  padding: 18px 18px 0;
}

.bundle-media-shell img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 24px;
  background: radial-gradient(circle at top, rgba(201, 167, 106, 0.16), transparent 42%), linear-gradient(180deg, #fffaf2 0%, #eef5ef 100%);
}

.bundle-body {
  padding: 24px;
}

.bundle-body h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 600;
}

.bundle-body ul {
  margin: 0 0 18px;
  padding-left: 18px;
  color: var(--text-soft);
}

.bundle-note {
  margin: 0 0 20px;
  color: var(--brand-deep);
  font-weight: 600;
}

.product-body {
  padding: 24px;
}

.product-tag {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 700;
}

.product-body h3,
.benefit-card h3,
.review-card h3,
.step-card h3,
.footer-grid h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 600;
}

.product-body h3,
.benefit-card h3,
.review-card h3,
.step-card h3 {
  font-size: 1.42rem;
}

.product-body ul,
.benefit-list {
  margin: 0 0 22px;
  padding-left: 18px;
  color: var(--text-soft);
}

.benefit-list {
  columns: 2;
  gap: 24px;
}

.business-shell {
  align-items: start;
  gap: 34px;
}

.business-copy {
  display: grid;
  gap: 22px;
}

.business-lead {
  margin: 0;
  max-width: 56ch;
}

.business-pill-row,
.business-value-grid,
.business-steps {
  display: grid;
  gap: 14px;
}

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

.business-pill-row span {
  padding: 14px 16px;
  border: 1px solid rgba(47, 123, 88, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 245, 0.88));
  color: var(--brand-deep);
  font-weight: 700;
  text-align: center;
  box-shadow: 0 14px 34px rgba(40, 73, 56, 0.08);
}

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

.business-value-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(23, 49, 38, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 249, 245, 0.88));
  box-shadow: 0 22px 50px rgba(40, 73, 56, 0.1);
}

.business-value-card.featured {
  transform: translateY(-8px);
  border-color: rgba(201, 167, 106, 0.28);
  background: linear-gradient(180deg, rgba(255, 251, 243, 0.98), rgba(247, 251, 248, 0.9));
  box-shadow: 0 30px 76px rgba(40, 73, 56, 0.15);
}

.business-value-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--brand-strong), var(--gold));
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.business-value-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.business-value-card p {
  margin: 0;
  color: var(--text-soft);
}

.business-panel {
  display: grid;
  gap: 20px;
}

.business-image-shell {
  position: relative;
  padding: 18px;
  border-radius: 34px;
  background: radial-gradient(circle at top left, rgba(201, 167, 106, 0.2), transparent 34%), linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 244, 0.92));
  border: 1px solid rgba(23, 49, 38, 0.08);
  box-shadow: 0 30px 76px rgba(40, 73, 56, 0.14);
}

.business-panel img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.business-main-photo {
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: center 28%;
}

.business-photo-strip {
  position: absolute;
  right: 18px;
  bottom: 158px;
  display: grid;
  gap: 12px;
  width: 178px;
  z-index: 2;
}

.business-photo-strip img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(20, 39, 30, 0.16);
}

.business-image-badge {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 28px;
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(19, 39, 31, 0.78);
  backdrop-filter: blur(14px);
  color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 36px rgba(9, 24, 18, 0.28);
}

.business-image-badge-label {
  margin: 0;
  color: rgba(255, 231, 181, 0.92);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.business-image-badge strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.15;
}

.business-image-badge span {
  color: rgba(255, 255, 255, 0.82);
}

.business-steps .step-card {
  position: relative;
  padding: 24px 24px 24px 28px;
  border: 1px solid rgba(23, 49, 38, 0.08);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 246, 0.9));
  box-shadow: 0 18px 40px rgba(40, 73, 56, 0.08);
}

.business-steps .step-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand-strong), var(--gold));
}

.step-card strong {
  color: var(--brand);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.review-card {
  position: relative;
}

.review-avatar {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--brand-strong), var(--gold));
  color: #f8fff9;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
}

.review-card span {
  color: var(--brand-deep);
  font-weight: 700;
}

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

.faq-item {
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.faq-item[open] {
  border-color: rgba(47, 123, 88, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 248, 0.88));
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--text);
}

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

.faq-item p {
  margin-bottom: 0;
}

.contact-shell {
  align-items: start;
}

.contact-points {
  margin-top: 24px;
}

.contact-points a {
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(23, 49, 38, 0.08);
  background: rgba(255, 255, 255, 0.74);
  color: var(--text-soft);
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.lead-form {
  display: grid;
  gap: 16px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid rgba(23, 49, 38, 0.1);
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  outline: none;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, transform 0.24s ease;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(23, 49, 38, 0.4);
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(47, 123, 88, 0.22);
  box-shadow: 0 0 0 4px rgba(74, 161, 116, 0.12);
  background: #fff;
  transform: translateY(-1px);
}

.form-success {
  margin: 0;
  font-weight: 700;
}

.form-success.is-success {
  color: var(--brand-deep);
}

.form-success.is-error {
  color: #9f3d2f;
}

.lead-form button[type="submit"]:disabled {
  cursor: wait;
  opacity: 0.82;
}

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

.final-cta-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, rgba(74, 161, 116, 0.16), rgba(201, 167, 106, 0.12) 52%, rgba(255, 255, 255, 0.92));
}

.site-footer {
  padding: 32px 0 36px;
  border-top: 1px solid rgba(23, 49, 38, 0.08);
  background: linear-gradient(180deg, #184131 0%, #113124 100%);
  color: rgba(245, 252, 247, 0.9);
}

.footer-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
  padding-bottom: 24px;
}

.footer-grid h3 {
  color: #ffffff;
  font-size: 1.28rem;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin-bottom: 10px;
}

.footer-grid a {
  color: rgba(245, 252, 247, 0.82);
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: #ffffff;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  color: rgba(245, 252, 247, 0.62);
}

.floating-contact {
  position: fixed;
  right: 18px;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  z-index: 60;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.floating-whatsapp {
  bottom: 88px;
  background: linear-gradient(135deg, #28a56b, #1a7d50);
  box-shadow: 0 20px 45px rgba(26, 125, 80, 0.3);
}

.floating-telegram {
  bottom: 18px;
  background: linear-gradient(135deg, #5d84cc, #2f5da2);
  box-shadow: 0 20px 45px rgba(47, 93, 162, 0.26);
}

.floating-contact:hover,
.floating-contact:focus-visible {
  transform: translateY(-4px) scale(1.02);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

@media (min-width: 768px) {
  .hero-grid,
  .split-grid,
  .contact-shell,
  .business-shell,
  .faq-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1099px) {
  .product-grid-premium,
  .benefit-grid,
  .review-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .site-nav {
    display: none;
  }

  .hero-note {
    position: static;
    margin-top: 14px;
  }

  .hero-card-footer,
  .final-cta-shell {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .site-header {
    padding-top: 12px;
  }

  .nav-shell {
    min-height: 72px;
    border-radius: 26px;
  }

  .hero {
    padding: 34px 0 22px;
  }

  .section {
    padding: 76px 0;
  }

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

  .hero-stats,
  .trust-items,
  .benefit-grid,
  .product-grid-premium,
  .review-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .benefit-list {
    columns: 1;
  }

  .section-frame,
  .contact-shell,
  .final-cta-shell,
  .lead-form {
    padding: 24px;
  }

  .product-media-shell {
    padding: 14px 14px 0;
  }

  .product-body {
    padding: 20px;
  }

  .floating-contact {
    right: 14px;
    width: 58px;
    height: 58px;
  }

  .floating-whatsapp {
    bottom: 82px;
  }

  .floating-telegram {
    bottom: 14px;
  }
}

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

  .reveal,
  .btn,
  .messenger-pill,
  .product-card,
  .contact-points a,
  .floating-contact,
  .site-nav a,
  .trust-items span,
  .lead-form input,
  .lead-form textarea {
    transition: none;
  }
}


.hero-promise {
  margin: 0 0 16px;
  max-width: 42ch;
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(40, 73, 56, 0.08);
}

.hero-priority-strip,
.form-fast-track-pills,
.form-followup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-priority-strip {
  margin: 0 0 18px;
}

.hero-priority-strip span,
.form-fast-track-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(47, 123, 88, 0.12);
  background: rgba(255, 255, 255, 0.84);
  color: var(--brand-deep);
  font-weight: 700;
  font-size: 0.95rem;
}

.hero-assurance,
.intent-strip,
.form-intent-grid,
.path-grid,
.conversion-list,
.sticky-conversion-bar {
  display: flex;
  gap: 12px;
}

.hero-assurance,
.intent-strip,
.form-intent-grid,
.conversion-list {
  flex-wrap: wrap;
}

.hero-assurance {
  margin-bottom: 16px;
}

.hero-assurance span,
.intent-chip,
.form-intent-btn {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(23, 49, 38, 0.1);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-soft);
  font-weight: 700;
}

.intent-chip,
.form-intent-btn {
  cursor: pointer;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.intent-chip:hover,
.intent-chip:focus-visible,
.form-intent-btn:hover,
.form-intent-btn:focus-visible,
.intent-chip.active,
.form-intent-btn.active {
  transform: translateY(-2px);
  border-color: rgba(47, 123, 88, 0.22);
  background: linear-gradient(135deg, rgba(74, 161, 116, 0.14), rgba(201, 167, 106, 0.16));
  color: var(--brand-deep);
}

.intent-strip {
  margin: 16px 0 10px;
}

.conversion-path {
  padding-top: 72px;
}

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

.path-card,
.conversion-box {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 249, 0.84));
  box-shadow: var(--shadow-soft);
}

.path-card {
  padding: 26px;
  border-radius: var(--radius-md);
}

.path-card h3,
.conversion-box h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.path-card p {
  margin: 0;
  color: var(--text-soft);
}

.path-step {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--brand-strong), var(--brand-deep));
  color: #fff;
  font-weight: 800;
}

.conversion-box {
  margin-top: 28px;
  padding: 22px;
  border-radius: 24px;
}

.conversion-list {
  margin: 0;
  padding: 0;
  list-style: none;
  flex-direction: column;
}

.conversion-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-soft);
}

.conversion-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-strong), var(--gold));
}

.lead-form select {
  width: 100%;
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid rgba(23, 49, 38, 0.1);
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  outline: none;
}

.form-intent-grid {
  margin-bottom: 6px;
}

.form-microcopy {
  margin: 0;
  color: var(--brand-deep);
  font-weight: 700;
}

.sticky-conversion-bar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  align-items: center;
  justify-content: space-between;
  width: min(960px, calc(100% - 32px));
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(23, 49, 38, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(40, 73, 56, 0.18);
  z-index: 55;
}

.sticky-conversion-bar p {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

body {
  padding-bottom: 108px;
}

@media (max-width: 1099px) {
  .path-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .sticky-conversion-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    bottom: 12px;
    width: calc(100% - 20px);
  }

  .sticky-conversion-bar .btn {
    width: 100%;
  }
}
.form-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-trust-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(47, 123, 88, 0.08);
  color: var(--brand-deep);
  font-weight: 700;
}

.form-fast-track {
  display: grid;
  gap: 10px;
  margin-bottom: 4px;
  padding: 18px;
  border: 1px solid rgba(47, 123, 88, 0.1);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(248, 251, 249, 0.95), rgba(255, 255, 255, 0.86));
}

.form-fast-track strong {
  color: var(--text);
}

.form-followup-actions {
  margin-top: 4px;
}

.form-followup-actions[hidden] {
  display: none;
}

.fit-grid .path-card {
  min-height: 100%;
}
.starter-grid,
.decision-grid {
  display: grid;
  gap: 18px;
}

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

.starter-card,
.decision-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 249, 0.84));
  box-shadow: var(--shadow-soft);
}

.starter-card {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 26px;
  border-radius: 26px;
}

.starter-card-featured {
  border-color: rgba(47, 123, 88, 0.2);
  box-shadow: 0 30px 76px rgba(40, 73, 56, 0.16);
  transform: translateY(-6px);
}

.starter-tag {
  margin: 0;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.starter-card h3,
.decision-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.starter-card p,
.decision-card p {
  margin: 0;
  color: var(--text-soft);
}

.starter-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
}

.decision-shell {
  display: grid;
  gap: 28px;
}

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

.decision-card {
  padding: 24px;
  border-radius: 24px;
}

@media (max-width: 1099px) {
  .starter-grid,
  .decision-grid {
    grid-template-columns: 1fr;
  }

  .starter-card-featured {
    transform: none;
  }
}
.quiz-shell {
  display: grid;
  gap: 32px;
}

.quiz-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 248, 0.88));
  box-shadow: var(--shadow-soft);
  border-radius: 30px;
  padding: 28px;
}

.quiz-progress {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.quiz-progress-step {
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: rgba(23, 49, 38, 0.1);
}

.quiz-progress-step.active {
  background: linear-gradient(135deg, var(--brand-strong), var(--gold));
}

.quiz-step-label {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.quiz-card h3 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.quiz-options {
  display: grid;
  gap: 12px;
}

.quiz-option {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid rgba(23, 49, 38, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  text-align: left;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.quiz-option:hover,
.quiz-option:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(47, 123, 88, 0.22);
  box-shadow: 0 16px 34px rgba(40, 73, 56, 0.1);
  background: linear-gradient(135deg, rgba(74, 161, 116, 0.12), rgba(201, 167, 106, 0.12));
}

.quiz-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.quiz-benefits span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 49, 38, 0.08);
  color: var(--text-soft);
  font-weight: 700;
}

.quiz-summary {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(47, 123, 88, 0.08);
  color: var(--text);
}

.quiz-summary p {
  margin: 0;
}

.quiz-summary p + p {
  margin-top: 8px;
  color: var(--text-soft);
}

.quiz-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

@media (min-width: 768px) {
  .quiz-shell {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
  }
}
.blueprint-shell {
  display: grid;
  gap: 28px;
}

.blueprint-grid,
.cases-grid {
  display: grid;
  gap: 18px;
}

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

.blueprint-card,
.case-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 251, 248, 0.86));
  box-shadow: var(--shadow-soft);
}

.blueprint-card {
  padding: 28px;
  border-radius: 26px;
}

.blueprint-number {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--brand-strong), var(--brand-deep));
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.blueprint-card h3,
.case-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.48rem;
}

.blueprint-card p,
.case-card p {
  margin: 0;
  color: var(--text-soft);
}

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

.case-card {
  position: relative;
  padding: 26px;
  border-radius: 26px;
  overflow: hidden;
}

.case-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(201, 167, 106, 0.16), transparent 36%);
  pointer-events: none;
}

.case-tag {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .blueprint-shell {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
}

@media (max-width: 1099px) {
  .blueprint-grid,
  .cases-grid {
    grid-template-columns: 1fr;
  }
}
:root {
  --display-accent: "Georgia", "Times New Roman", serif;
}

.section-head,
.section-copy,
.final-cta-shell > div:first-child {
  position: relative;
}

.section-label,
.eyebrow,
.hero-kicker,
.product-tag,
.starter-tag,
.case-tag,
.quiz-step-label {
  font-weight: 900;
  letter-spacing: 0.16em;
}

.section-head h2,
.section-copy h2,
.final-cta-shell h2,
.quiz-card h3,
.hero-copy h1 {
  text-wrap: balance;
}

.section-head h2,
.section-copy h2,
.final-cta-shell h2 {
  font-family: var(--display-accent);
  line-height: 0.94;
  letter-spacing: -0.055em;
  text-shadow: 0 1px 0 rgba(255,255,255,0.8);
}

.hero-copy h1 {
  font-family: var(--display-accent);
  line-height: 0.9;
  letter-spacing: -0.07em;
  text-shadow: 0 2px 0 rgba(255,255,255,0.65);
}

.hero-promise,
.section-head p,
.section-copy p,
.final-cta-shell p,
.quiz-summary p:last-child {
  text-wrap: pretty;
}

.quiz-section,
.consultation-blueprint,
.case-stories,
.starter-choices,
.decision-block {
  position: relative;
}

.quiz-section::before,
.consultation-blueprint::before,
.case-stories::before,
.starter-choices::before,
.decision-block::before {
  content: "";
  position: absolute;
  inset: 24px 0;
  pointer-events: none;
  z-index: 0;
}

.quiz-section::before {
  background:
    radial-gradient(circle at 15% 20%, rgba(74, 161, 116, 0.12), transparent 22%),
    radial-gradient(circle at 88% 24%, rgba(201, 167, 106, 0.14), transparent 20%);
}

.starter-choices::before {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.28), transparent 40%),
    radial-gradient(circle at 82% 18%, rgba(47, 123, 88, 0.1), transparent 24%);
}

.consultation-blueprint::before {
  background:
    radial-gradient(circle at 18% 50%, rgba(201, 167, 106, 0.14), transparent 22%),
    radial-gradient(circle at 90% 22%, rgba(74, 161, 116, 0.12), transparent 18%);
}

.case-stories::before {
  background:
    radial-gradient(circle at 10% 14%, rgba(74, 161, 116, 0.1), transparent 18%),
    radial-gradient(circle at 92% 70%, rgba(201, 167, 106, 0.12), transparent 20%);
}

.decision-block::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.2), transparent 30%, transparent 70%, rgba(255,255,255,0.2)),
    radial-gradient(circle at 50% 0%, rgba(201, 167, 106, 0.12), transparent 24%);
}

.quiz-shell,
.blueprint-shell,
.starter-grid,
.cases-grid,
.decision-shell {
  position: relative;
  z-index: 1;
}

.quiz-card,
.starter-card,
.blueprint-card,
.case-card,
.decision-card {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(22px);
}

.quiz-card::before,
.starter-card::before,
.blueprint-card::before,
.case-card::after,
.decision-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.quiz-card::before,
.starter-card::before,
.blueprint-card::before,
.decision-card::before {
  background: linear-gradient(145deg, rgba(255,255,255,0.38), transparent 38%, transparent 62%, rgba(255,255,255,0.18));
}

.case-card::after {
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.15) 100%);
}

.quiz-card {
  background:
    radial-gradient(circle at top right, rgba(201, 167, 106, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,250,246,0.9));
  box-shadow: 0 36px 90px rgba(40, 73, 56, 0.18);
}

.starter-card-featured,
.quiz-card,
.final-cta-shell,
.sticky-conversion-bar {
  isolation: isolate;
}

.starter-card-featured::after,
.final-cta-shell::before,
.sticky-conversion-bar::before,
.quiz-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(201, 167, 106, 0.55), rgba(74, 161, 116, 0.5), rgba(255,255,255,0.28));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.72;
}

.final-cta-shell {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,0.45), transparent 24%),
    linear-gradient(135deg, rgba(74, 161, 116, 0.18), rgba(201, 167, 106, 0.16) 52%, rgba(255, 255, 255, 0.95));
}

.final-cta-shell::after,
.sticky-conversion-bar::after,
.quiz-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.2), transparent 68%);
  filter: blur(2px);
  animation: luxuryFloat 7.2s ease-in-out infinite;
  pointer-events: none;
}

.final-cta-shell::after {
  top: -48px;
  right: -26px;
}

.sticky-conversion-bar::after {
  right: 8%;
  top: -54px;
}

.quiz-card::after {
  left: 74%;
  top: -58px;
}

.btn,
.quiz-option,
.intent-chip,
.form-intent-btn,
.messenger-pill,
.nav-cta {
  will-change: transform;
}

.btn-primary,
.sticky-conversion-bar .btn,
#quizWhatsappBtn {
  background-size: 180% 180%;
  animation: gradientFlow 7s ease infinite;
  box-shadow: 0 18px 40px rgba(47, 123, 88, 0.24), 0 0 0 1px rgba(255,255,255,0.12) inset;
}

.btn-primary:hover,
.btn-primary:focus-visible,
#quizWhatsappBtn:hover,
#quizWhatsappBtn:focus-visible,
.sticky-conversion-bar .btn:hover,
.sticky-conversion-bar .btn:focus-visible {
  box-shadow: 0 24px 54px rgba(47, 123, 88, 0.3), 0 0 0 1px rgba(255,255,255,0.2) inset;
}

.quiz-option {
  position: relative;
  overflow: hidden;
}

.quiz-option::after {
  content: "";
  position: absolute;
  inset: auto auto -38px -24px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 167, 106, 0.12), transparent 70%);
  transition: transform 0.35s ease, opacity 0.35s ease;
  opacity: 0.7;
}

.quiz-option:hover::after,
.quiz-option:focus-visible::after {
  transform: scale(1.15);
  opacity: 1;
}

.quiz-progress-step.active {
  box-shadow: 0 0 18px rgba(201, 167, 106, 0.35);
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes luxuryFloat {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-10px, 10px, 0) scale(1.08); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}

@media (max-width: 767px) {
  .section-head h2,
  .section-copy h2,
  .final-cta-shell h2 {
    letter-spacing: -0.05em;
  }

  .quiz-card,
  .starter-card,
  .blueprint-card,
  .case-card,
  .decision-card {
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary,
  .sticky-conversion-bar .btn,
  #quizWhatsappBtn,
  .final-cta-shell::after,
  .sticky-conversion-bar::after,
  .quiz-card::after {
    animation: none;
  }
}
.owner-section {
  position: relative;
}

.owner-section::before {
  content: "";
  position: absolute;
  inset: 18px 0;
  background:
    radial-gradient(circle at 16% 24%, rgba(201, 167, 106, 0.14), transparent 20%),
    radial-gradient(circle at 86% 22%, rgba(74, 161, 116, 0.12), transparent 18%);
  pointer-events: none;
}

.owner-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
}

.owner-intro,
.owner-card {
  position: relative;
}

.owner-highlights,
.owner-actions,
.owner-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.owner-highlights {
  margin: 22px 0 18px;
}

.owner-highlights span,
.owner-points li {
  color: var(--text-soft);
}

.owner-highlights span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(23,49,38,0.08);
  font-weight: 700;
}

.owner-card {
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(201, 167, 106, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,251,248,0.9));
  box-shadow: 0 36px 90px rgba(40, 73, 56, 0.16);
  overflow: hidden;
}

.owner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255,255,255,0.34), transparent 38%, transparent 62%, rgba(255,255,255,0.18));
  pointer-events: none;
}

.owner-avatar {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: linear-gradient(145deg, var(--brand-strong), var(--brand-deep));
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 18px;
  box-shadow: 0 18px 40px rgba(47, 123, 88, 0.24);
}

.owner-handle {
  margin: 0 0 6px;
  color: var(--brand);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.owner-meta h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 2rem;
}

.owner-meta > p:last-child {
  margin: 0 0 22px;
  color: var(--text-soft);
}

.owner-stats {
  margin-bottom: 22px;
}

.owner-stats div {
  min-width: 140px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(23,49,38,0.08);
}

.owner-stats strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.owner-stats span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.owner-points {
  margin: 0;
  padding-left: 18px;
}

@media (min-width: 768px) {
  .owner-shell {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
}

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

.persona-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 100%;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(23, 49, 38, 0.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.persona-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(255,255,255,0.46), transparent 34%, transparent 68%, rgba(255,255,255,0.18));
  pointer-events: none;
}

.persona-card-self {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 249, 244, 0.9));
}

.persona-card-income {
  background: linear-gradient(180deg, rgba(249, 247, 240, 0.98), rgba(240, 248, 243, 0.9));
}

.persona-card-explore {
  background: linear-gradient(180deg, rgba(244, 247, 250, 0.98), rgba(241, 246, 250, 0.9));
}

.persona-badge {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--brand-strong), var(--brand-deep));
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.persona-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.58rem;
}

.persona-card p {
  margin: 0;
  color: var(--text-soft);
}

.persona-card .btn {
  margin-top: auto;
  justify-self: start;
}

.persona-visual {
  position: relative;
  width: 74px;
  height: 74px;
  margin: 4px 0 4px;
}

.persona-svg {
  width: 74px;
  height: 74px;
  overflow: visible;
}

.persona-svg rect,
.persona-svg circle {
  fill: rgba(255, 255, 255, 0.72);
  stroke: rgba(23, 49, 38, 0.08);
}

.persona-svg path,
.persona-svg rect,
.persona-svg circle {
  stroke: var(--brand-deep);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.persona-card-self .persona-svg rect,
.persona-card-income .persona-svg rect,
.persona-card-explore .persona-svg circle {
  fill: rgba(255, 255, 255, 0.72);
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(180deg, rgba(47, 123, 88, 0.3), rgba(201, 167, 106, 0.28));
}

.timeline::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 18px;
  width: 4px;
  height: 86px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(201, 167, 106, 0));
  filter: blur(0.2px);
  animation: timelinePulse 2.8s ease-in-out infinite;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
}

.timeline-marker {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--brand-strong), var(--brand-deep));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(40, 73, 56, 0.16);
}

.timeline-card {
  padding: 24px 26px;
  border-radius: 26px;
  border: 1px solid rgba(23, 49, 38, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245, 250, 247, 0.92));
  box-shadow: var(--shadow-soft);
}

.timeline-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.42rem;
}

.timeline-card p {
  margin: 0;
  color: var(--text-soft);
}

.objection-grid {
  display: grid;
  gap: 16px;
}

.objection-card {
  border: 1px solid rgba(23, 49, 38, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(201, 167, 106, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(244, 249, 245, 0.92));
  box-shadow: 0 24px 60px rgba(40, 73, 56, 0.12);
  overflow: hidden;
}

.objection-card summary {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: center;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.34rem;
}

.objection-card summary::-webkit-details-marker {
  display: none;
}

.objection-card p {
  margin: 0;
  padding: 0 24px 24px 92px;
  color: var(--text-soft);
}

.objection-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(145deg, #f3c76c, #cf9855);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.objection-icon::before,
.objection-icon::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2.5px;
  border-radius: 999px;
  background: #173126;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.objection-icon::after {
  transform: rotate(90deg);
}

.objection-card[open] .objection-icon {
  transform: rotate(180deg);
  box-shadow: 0 10px 22px rgba(201, 167, 106, 0.22);
}

.objection-card[open] .objection-icon::before {
  transform: rotate(180deg);
}

.objection-card[open] .objection-icon::after {
  opacity: 0;
  transform: rotate(90deg) scaleX(0.2);
}

.objection-card[open] {
  border-color: rgba(201, 167, 106, 0.34);
  box-shadow: 0 30px 70px rgba(201, 167, 106, 0.16);
}

@keyframes timelinePulse {
  0% {
    transform: translateY(0);
    opacity: 0.35;
  }
  50% {
    transform: translateY(180px);
    opacity: 0.95;
  }
  100% {
    transform: translateY(360px);
    opacity: 0.1;
  }
}

@media (max-width: 1099px) {
  .persona-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .timeline::before {
    left: 20px;
  }

  .timeline::after {
    left: 19px;
  }

  .timeline-item {
    grid-template-columns: 56px 1fr;
    gap: 14px;
  }

  .timeline-marker,
  .objection-icon,
  .persona-badge {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .objection-card summary {
    grid-template-columns: 44px 1fr;
    padding: 18px;
    font-size: 1.12rem;
  }

  .objection-card p {
    padding: 0 18px 18px 18px;
  }
}





@media (max-width: 1099px) {
  .business-pill-row,
  .business-value-grid {
    grid-template-columns: 1fr;
  }

  .business-value-card.featured {
    transform: none;
  }
}

@media (max-width: 767px) {
  .business-image-shell {
    padding: 14px;
  }

  .business-photo-strip {
    position: static;
    width: 100%;
    margin-top: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .business-photo-strip img {
    aspect-ratio: 4 / 3;
  }

  .business-image-badge {
    position: static;
    margin-top: 14px;
    left: auto;
    right: auto;
    bottom: auto;
  }
}


.offer-section {
  position: relative;
}

.offer-shell {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  align-items: start;
}

.offer-intro,
.offer-collection {
  border: 1px solid rgba(23, 49, 38, 0.08);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(40, 73, 56, 0.12);
}

.offer-intro {
  display: grid;
  gap: 22px;
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(201, 167, 106, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 245, 0.92));
}

.offer-lead {
  margin: 0;
  max-width: 52ch;
}

.offer-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.offer-points span,
.offer-collection-kicker {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(23, 49, 38, 0.08);
  font-weight: 700;
}

.offer-summary-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(24, 54, 39, 0.92);
  color: rgba(255, 255, 255, 0.96);
}

.offer-badge {
  margin: 0;
  color: rgba(255, 231, 181, 0.92);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offer-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.88);
}

.offer-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.offer-collection {
  display: grid;
  gap: 22px;
  padding: 30px;
  background:
    radial-gradient(circle at bottom left, rgba(61, 168, 106, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,251,248,0.94));
}

.offer-collection-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.offer-collection-head h3 {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
}

.offer-collection-kicker {
  display: inline-flex;
  margin: 0;
  color: var(--brand-deep);
}

.offer-source-link {
  color: var(--brand-deep);
  font-weight: 700;
  text-decoration: none;
}

.offer-source-link:hover,
.offer-source-link:focus-visible {
  text-decoration: underline;
}

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

.offer-set-card {
  display: grid;
  min-height: 100%;
  border: 1px solid rgba(23, 49, 38, 0.08);
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,249,245,0.92));
  box-shadow: 0 20px 48px rgba(40, 73, 56, 0.1);
}

.offer-set-card-featured {
  grid-column: span 2;
  grid-template-columns: 0.86fr 1.14fr;
  border-color: rgba(201, 167, 106, 0.22);
  box-shadow: 0 30px 76px rgba(40, 73, 56, 0.14);
}

.offer-set-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 24px;
}

.offer-set-media img {
  width: 100%;
  max-width: 280px;
}

.offer-set-media-health {
  background: radial-gradient(circle at top, rgba(61,168,106,0.18), transparent 38%), linear-gradient(180deg, #f4fbf5 0%, #e8f4eb 100%);
}

.offer-set-media-brain {
  background: radial-gradient(circle at top, rgba(201,167,106,0.22), transparent 38%), linear-gradient(180deg, #fffaf2 0%, #edf5ee 100%);
}

.offer-set-media-aloe {
  background: radial-gradient(circle at top, rgba(95,174,103,0.18), transparent 40%), linear-gradient(180deg, #f1fbf2 0%, #e5f3e9 100%);
}

.offer-set-tag {
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(23,49,38,0.08);
  color: var(--brand-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-set-body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
}

.offer-set-body h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.offer-set-body p {
  margin: 0;
  color: var(--text-soft);
}

.offer-price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: baseline;
}

.offer-price-row strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--brand-deep);
}

.offer-price-row span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.offer-set-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

@media (max-width: 1099px) {
  .offer-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .offer-intro,
  .offer-collection {
    padding: 22px;
  }

  .offer-collection-head {
    flex-direction: column;
  }

  .offer-set-grid {
    grid-template-columns: 1fr;
  }

  .offer-set-card-featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
}

