/* =============================================
   VARIABLES & RESET
   ============================================= */
:root {
  --green-dark:    #1a5c3a;
  --green-main:    #2d7a52;
  --green-mid:     #3a9666;
  --green-light:   #e8f5ee;
  --green-pale:    #f2faf5;
  --white:         #ffffff;
  --off-white:     #f9fafb;
  --gray-100:      #f3f4f6;
  --gray-200:      #e5e7eb;
  --gray-400:      #9ca3af;
  --gray-600:      #4b5563;
  --gray-800:      #1f2937;
  --text-main:     #1a2332;
  --text-muted:    #5a6a7e;
  --accent-gold:   #f5a623;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.13);
  --shadow-green: 0 8px 32px rgba(45,122,82,.22);

  --font: 'Heebo', 'Arial', sans-serif;
  --max-w: 1100px;
  --section-pad: clamp(64px, 10vw, 112px) 0;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--text-main);
  background: var(--white);
  direction: rtl;
  text-align: right;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* =============================================
   UTILITY
   ============================================= */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.centered-text { text-align: center; }
.centered      { text-align: center; }
.hidden        { display: none !important; }

.br-desktop { display: none; }
@media (min-width: 768px) { .br-desktop { display: block; } }

/* =============================================
   TYPOGRAPHY
   ============================================= */
.section-eyebrow {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 10px;
  display: block;
}
.section-eyebrow.light { color: rgba(255,255,255,.75); }

.section-title {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-main);
  margin-bottom: 28px;
}
.section-title.light { color: var(--white); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--green-main);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(45,122,82,.35);
}
.btn-primary:hover { background: var(--green-dark); box-shadow: 0 6px 24px rgba(45,122,82,.45); }

.btn-white {
  background: var(--white);
  color: var(--green-dark);
  box-shadow: 0 4px 18px rgba(0,0,0,.14);
}
.btn-white:hover { background: var(--green-pale); box-shadow: 0 6px 28px rgba(0,0,0,.18); }

.btn-sm  { font-size: .88rem; padding: 9px 22px; }
.btn-lg  { font-size: 1.08rem; padding: 16px 38px; }
.btn-xl  { font-size: 1.15rem; padding: 18px 46px; }

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  background: linear-gradient(145deg, var(--green-pale) 0%, #d6efe2 50%, var(--green-light) 100%);
  padding: clamp(72px, 12vw, 120px) 0 clamp(64px, 10vw, 100px);
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(45,122,82,.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(45,122,82,.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.hero-eyebrow {
  display: inline-block;
  background: var(--green-main);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.18;
  color: var(--text-main);
  margin-bottom: 20px;
}

.hero-headline .highlight {
  color: var(--green-dark);
  position: relative;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.hero-price-hint {
  font-size: .95rem;
  color: var(--text-muted);
}
.hero-price-hint strong { color: var(--green-dark); }

/* Hero card */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--green-light);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--green-dark);
  box-shadow: var(--shadow-sm);
  align-self: flex-start;
}
@media (min-width: 900px) { .hero-badge { align-self: center; } }

.badge-icon {
  width: 22px;
  height: 22px;
  background: var(--green-main);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 380px;
  border: 1px solid rgba(45,122,82,.1);
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-dark));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.hero-card-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.hero-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 4px;
}
.hero-card-sub {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.hero-card-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  color: var(--gray-600);
}
.hero-card-list li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* =============================================
   SECTION BASE STYLES
   ============================================= */
.section { padding: var(--section-pad); }
.section-light  { background: var(--green-pale); }
.section-white  { background: var(--white); }
.section-green  { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 100%); }

/* =============================================
   PROBLEM SECTION
   ============================================= */
.problem-section .section-inner { max-width: 860px; margin: 0 auto; }

.problem-section .section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 48px;
}

.problem-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .problem-cards { grid-template-columns: repeat(3, 1fr); }
}

.problem-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: transform .2s ease, box-shadow .2s ease;
  text-align: center;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.problem-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.problem-card p {
  font-size: .97rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.problem-close {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-dark);
  background: var(--green-light);
  border-radius: var(--radius-md);
  padding: 16px 28px;
  display: inline-block;
}

/* =============================================
   INTRO SECTION
   ============================================= */
.intro-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.intro-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,.88);
  margin-bottom: 20px;
  line-height: 1.8;
}
.intro-cta { margin-top: 16px; }

/* =============================================
   OUTCOMES SECTION
   ============================================= */
.outcomes-section .section-title { margin-bottom: 40px; }

.outcomes-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .outcomes-list { grid-template-columns: 1fr 1fr; }
}

.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  font-size: .97rem;
  color: var(--text-main);
  transition: transform .2s ease, box-shadow .2s ease;
}
.outcome-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.outcome-check {
  width: 28px;
  height: 28px;
  background: var(--green-main);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

/* =============================================
   WHAT YOU GET
   ============================================= */
.wyg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
@media (min-width: 640px)  { .wyg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .wyg-grid { grid-template-columns: repeat(3, 1fr); } }

.wyg-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}
.wyg-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-dark));
  opacity: 0;
  transition: opacity .2s ease;
}
.wyg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-green);
  border-color: var(--green-light);
}
.wyg-card:hover::before { opacity: 1; }

.wyg-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.wyg-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
}
.wyg-card p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.wyg-footer {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 1rem;
  color: var(--text-muted);
  background: var(--green-pale);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  border: 1px solid var(--green-light);
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-steps {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  bottom: 28px;
  right: 27px;
  width: 2px;
  background: linear-gradient(to bottom, var(--green-main), var(--green-light));
  z-index: 0;
}

.how-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 20px 0;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px;
  height: 56px;
  background: var(--green-main);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(45,122,82,.3);
  border: 3px solid var(--green-pale);
}

.step-content {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  margin-top: 4px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.step-content:hover {
  transform: translateX(-3px);
  box-shadow: var(--shadow-md);
}
.step-content h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}
.step-content p {
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   PRICING
   ============================================= */
.pricing-section { text-align: center; }

.pricing-inner { max-width: 600px; margin: 0 auto; }

.price-box {
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 6vw, 56px) clamp(24px, 5vw, 48px);
  position: relative;
  backdrop-filter: blur(4px);
}

.price-badge {
  display: inline-block;
  background: var(--accent-gold);
  color: #5a3a00;
  font-size: .8rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: .06em;
}

.price-amount {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  margin-bottom: 8px;
  line-height: 1;
}
.price-currency {
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  margin-top: 14px;
}
.price-number {
  font-size: clamp(4rem, 12vw, 6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.price-sub {
  font-size: .95rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 32px;
}

/* Countdown */
.countdown-wrap { margin-bottom: 32px; }

.countdown-label {
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 14px;
  font-weight: 500;
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  direction: ltr;
}

.time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.time-value {
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  background: rgba(0,0,0,.2);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  min-width: 72px;
  text-align: center;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: .02em;
}

.time-label {
  font-size: .72rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.time-sep {
  font-size: 2rem;
  font-weight: 900;
  color: rgba(255,255,255,.5);
  margin-bottom: 22px;
}

.countdown-expired {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-top: 12px;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .6; }
}

.pricing-cta {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 0 auto 16px;
  font-size: 1.15rem;
}

.price-guarantee {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ── Privacy hint & link ── */
.privacy-hint {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}

.privacy-link {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: inherit;
  color: rgba(255,255,255,.85);
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 0;
  transition: color .15s ease;
}
.privacy-link:hover { color: var(--white); }

/* ── Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeOverlay .2s ease;
}
.modal-overlay[hidden] { display: none; }

@keyframes fadeOverlay {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 620px;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,.22);
  animation: slideUp .25s ease;
}

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

.modal-close {
  position: sticky;
  top: 16px;
  float: left;
  margin: 16px 16px 0 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease, color .15s ease;
  z-index: 1;
}
.modal-close:hover { background: var(--gray-200); color: var(--text-main); }

.modal-content {
  padding: 16px 36px 40px;
  direction: rtl;
  text-align: right;
  clear: both;
}

.modal-content h2 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.modal-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.modal-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 24px 0 8px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--green-light);
}

.modal-content p {
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 8px;
}

.modal-content ul {
  margin: 8px 0 12px 0;
  padding-right: 20px;
}
.modal-content ul li {
  list-style: disc;
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 4px;
}

.modal-content a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.modal-content a:hover { color: var(--green-mid); }

/* ── Registration form ── */
.register-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
}

.form-group label {
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}

.form-group input {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.12);
  color: var(--white);
  font-family: var(--font);
  font-size: 1rem;
  direction: rtl;
  text-align: right;
  transition: border-color .18s ease, background .18s ease;
  outline: none;
}

.form-group input::placeholder {
  color: rgba(255,255,255,.45);
}

.form-group input:focus {
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.18);
}

.form-group input.input-error {
  border-color: #ff6b6b;
  background: rgba(255,107,107,.12);
}

.field-error {
  font-size: .8rem;
  color: #ffb3b3;
  min-height: 1em;
  display: block;
}

/* =============================================
   FAQ
   ============================================= */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow .2s ease;
}
.faq-item:has(.faq-question[aria-expanded="true"]) {
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  text-align: right;
  direction: rtl;
  transition: color .15s ease;
}
.faq-question:hover { color: var(--green-dark); }

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s ease, transform .25s ease;
  color: var(--green-dark);
  font-size: 1.1rem;
  font-weight: 700;
}
.faq-icon::after { content: '+'; }
.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--green-main);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 20px;
  animation: fadeDown .25s ease;
}
.faq-answer[hidden] { display: none; }
.faq-answer p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

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

/* =============================================
   ABOUT
   ============================================= */
.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .about-inner { grid-template-columns: 260px 1fr; }
}

.about-photo {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-lg);
  display: block;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 260px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--green-light) 0%, #c8e8d6 100%);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px dashed var(--green-mid);
}
.img-placeholder-icon { font-size: 4rem; }
.about-img-placeholder p {
  font-size: .9rem;
  font-weight: 600;
  color: var(--green-dark);
}

.about-text .section-title { margin-bottom: 20px; }

.about-text p {
  font-size: .97rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.8;
}

.about-belief {
  background: var(--green-light);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: .95rem !important;
  color: var(--green-dark) !important;
  border-right: 3px solid var(--green-main);
}

/* =============================================
   FINAL CTA
   ============================================= */
.final-cta-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.final-cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 36px;
  line-height: 1.7;
}
.final-price-hint {
  margin-top: 16px;
  font-size: .95rem;
  color: rgba(255,255,255,.7);
}
.final-price-hint strong { color: var(--white); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--gray-800);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.footer-brand {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-mid);
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--gray-400);
  font-size: .88rem;
  font-weight: 500;
  transition: color .18s ease;
}
.social-link:hover { color: var(--white); }

.social-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer-copy {
  font-size: .85rem;
  color: var(--gray-400);
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

/* =============================================
   MOBILE ADJUSTMENTS
   ============================================= */
@media (max-width: 640px) {
  .how-steps::before { display: none; }
  .how-step { flex-direction: column; gap: 12px; }
  .step-num { width: 44px; height: 44px; font-size: 1rem; }

  .about-inner { grid-template-columns: 1fr; }

  .time-value { min-width: 56px; font-size: 1.6rem; padding: 6px 10px; }
  .time-sep { font-size: 1.4rem; }

  .hero-actions { align-items: stretch; }
  .btn-lg, .btn-xl { width: 100%; text-align: center; }

  .outcomes-list { grid-template-columns: 1fr; }
  .wyg-grid      { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .countdown-timer { gap: 4px; }
  .time-value { min-width: 48px; font-size: 1.4rem; }
}

/* =============================================
   FOCUS / ACCESSIBILITY
   ============================================= */
:focus-visible {
  outline: 3px solid var(--green-main);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  right: 16px;
  background: var(--green-dark);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  z-index: 999;
}
.skip-link:focus { top: 8px; }

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 200;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .2s ease, box-shadow .2s ease;
  animation: waBounce 2.5s ease-in-out 2s infinite;
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.6);
  animation: none;
}

.whatsapp-tooltip {
  position: absolute;
  left: 70px;
  background: var(--gray-800);
  color: var(--white);
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 50px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  direction: rtl;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: var(--gray-800);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

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

/* =============================================
   PRINT
   ============================================= */
@media print {
  .site-header, .nav-cta, .btn, .countdown-wrap { display: none; }
  body { color: #000; }
}
