/* =========================================
   Svetlana Anastasiadou — Landing Styles
   ========================================= */

/* ===== Design tokens ===== */
:root {
  /* Palette */
  --sage: #7A9B76;
  --sage-light: #A8BDA4;
  --sage-soft: #C9D5C5;
  --cream: #F7F3ED;
  --cream-deep: #EFE9DD;
  --terracotta: #C97B5F;
  --terracotta-dark: #B36A50;
  --charcoal: #2A2A2A;
  --charcoal-soft: #4A4A4A;
  --muted: #7B7B7B;
  --line: #E5DFD2;
  --white: #FFFFFF;

  /* Typography */
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1140px;
  --radius: 4px;
  --radius-lg: 12px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(42, 42, 42, 0.04);
  --shadow-md: 0 8px 24px rgba(42, 42, 42, 0.08);
  --shadow-lg: 0 20px 60px rgba(42, 42, 42, 0.12);

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Language switcher ===== */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
}
.lang-switcher a {
  padding: 7px 14px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--muted);
  transition: all 0.2s var(--ease);
}
.lang-switcher a:hover { color: var(--sage); }
.lang-switcher a.is-active {
  background: var(--sage);
  color: var(--cream);
}

/* ===== Certificates ===== */
.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.cert-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--cream);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  display: block;
}
.cert-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage);
}
.cert-item img {
  width: 100%;
  height: auto;
  display: block;
}
.cert-caption {
  font-size: 0.76rem;
  color: var(--muted);
  padding: 8px 12px;
  text-align: center;
  letter-spacing: 0.02em;
}

/* ===== Intro video section ===== */
.intro {
  background: var(--cream-deep);
  text-align: center;
}
.intro-video-wrap {
  max-width: 760px;
  margin: 40px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--charcoal);
  aspect-ratio: 16 / 9;
}
.intro-video-wrap video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.4rem; font-weight: 600; }
p { color: var(--charcoal-soft); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 18px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(201, 123, 95, 0.25);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 123, 95, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  background: var(--cream);
  border-color: var(--sage);
  color: var(--sage);
}
.btn-viber {
  background: #7360F2;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(115, 96, 242, 0.25);
}
.btn-viber:hover {
  background: #5C4DD1;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(115, 96, 242, 0.35);
}
.btn-telegram {
  background: #229ED9;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(34, 158, 217, 0.25);
}
.btn-telegram:hover {
  background: #1c89bd;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 158, 217, 0.35);
}
.nav-cta-viber {
  background: #7360F2;
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 500 !important;
  transition: all 0.25s var(--ease);
}
.nav-cta-viber:hover {
  background: #5C4DD1 !important;
  color: var(--white) !important;
}
.nav-cta-telegram {
  background: #229ED9;
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 500 !important;
  transition: all 0.25s var(--ease);
}
.nav-cta-telegram:hover {
  background: #1c89bd !important;
  color: var(--white) !important;
}
.btn-lg { padding: 18px 36px; font-size: 1rem; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--sage);
  color: var(--cream);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.logo-text { color: var(--charcoal); }

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav a {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--charcoal-soft);
  position: relative;
}
.nav a:hover { color: var(--sage); }
.nav-cta {
  background: var(--charcoal);
  color: var(--cream) !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 500 !important;
  transition: all 0.25s var(--ease);
}
.nav-cta:hover {
  background: var(--terracotta) !important;
  color: var(--white) !important;
}

/* Header actions (lang switcher + burger, always visible) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.25s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 24px;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-md);
  display: none;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  padding: 14px 8px;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
}
.mobile-menu a:last-child { border-bottom: none; margin-top: 12px; text-align: center; }

/* ===== Sections ===== */
.section { padding: 100px 0; }
.section--cream { background: var(--cream); }
.section-header { margin-bottom: 64px; max-width: 720px; }
.section-header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-title { margin-bottom: 16px; }
.section-lead {
  font-size: 1.1rem;
  color: var(--charcoal-soft);
  line-height: 1.6;
  margin-top: 16px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background:
    linear-gradient(100deg,
      rgba(247, 243, 237, 0.96) 0%,
      rgba(247, 243, 237, 0.86) 38%,
      rgba(247, 243, 237, 0.55) 68%,
      rgba(247, 243, 237, 0.25) 100%
    ),
    url('/images/hero-lavender.webp') center / cover no-repeat;
  padding: 90px 0 120px;
  overflow: hidden;
}
.hero::after {
  /* Soft warm wash at the top so the header doesn't fight with the photo */
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(247, 243, 237, 0.6), transparent);
  pointer-events: none;
  z-index: 0;
}
.hero .hero-inner { position: relative; z-index: 1; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-title {
  margin-bottom: 28px;
  letter-spacing: -0.015em;
}
.hero-lead {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--charcoal-soft);
  margin-bottom: 40px;
  max-width: 560px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}
.dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--sage);
  border-radius: 50%;
}

.hero-portrait { position: relative; justify-self: center; }
.portrait-frame {
  width: 320px;
  height: 400px;
  border-radius: 200px 200px 12px 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  background: var(--sage-soft);
}
.portrait-frame--lg {
  width: 380px;
  height: 460px;
}
.portrait-frame svg,
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  display: block;
}

.portrait-leaf {
  position: absolute;
  top: -20px;
  right: -30px;
  width: 80px;
  height: 80px;
  z-index: -1;
  opacity: 0.6;
  animation: leaf-float 8s ease-in-out infinite;
  transform-origin: center bottom;
}

@keyframes leaf-float {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-12px) rotate(4deg); }
}

.portrait-frame {
  animation: breathe 7s ease-in-out infinite;
}

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

/* Soft glow halo behind the portrait — pure CSS, no asset */
.hero-portrait::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, rgba(168, 189, 164, 0.25), transparent 60%);
  transform: translate(-50%, -50%);
  z-index: -2;
  animation: halo-pulse 9s ease-in-out infinite;
  pointer-events: none;
}

@keyframes halo-pulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.08); }
}

/* ===== Pain section ===== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.pain-card {
  padding: 36px 32px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
  position: relative;
}
.pain-card:hover {
  transform: translateY(-4px);
  border-color: var(--sage);
  box-shadow: var(--shadow-md);
}
.pain-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--terracotta);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.pain-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}
.pain-card p {
  font-size: 0.96rem;
  line-height: 1.6;
}

/* ===== About section ===== */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.about-image { justify-self: center; }
.about-tagline {
  font-size: 0.95rem;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.about-text p {
  margin-bottom: 18px;
  font-size: 1.02rem;
  line-height: 1.7;
}
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--charcoal); font-weight: 600; }

.credentials {
  list-style: none;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.credentials li {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cred-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 50%;
  color: var(--sage);
}
.cred-icon svg { width: 22px; height: 22px; }
.credentials strong {
  display: block;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--charcoal);
}
.credentials span {
  font-size: 0.88rem;
  color: var(--muted);
}

/* ===== Method section ===== */
.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 32px;
}
.method-card {
  text-align: center;
  padding: 36px 24px;
}
.method-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  color: var(--sage);
  box-shadow: var(--shadow-sm);
}
.method-icon svg { width: 30px; height: 30px; }
.method-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.method-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== Process section ===== */
.process-steps {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 30px;
  bottom: 30px;
  width: 1px;
  background: linear-gradient(to bottom, var(--sage), transparent);
  opacity: 0.4;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  position: relative;
}
.step-num {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--sage);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--sage);
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(122, 155, 118, 0.15);
}
.step-body {
  padding-top: 10px;
}
.step-body h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}
.step-body p {
  font-size: 1rem;
  line-height: 1.65;
}
.process-cta {
  text-align: center;
  margin-top: 64px;
}

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.testimonials-grid--video {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.testimonial {
  padding: 40px 36px;
  background: var(--white);
  border-radius: var(--radius-lg);
  position: relative;
  border-top: 3px solid var(--sage);
  box-shadow: var(--shadow-sm);
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--sage);
  line-height: 1;
  opacity: 0.3;
}
.testimonial p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--charcoal);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testimonial footer {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.testimonial strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.testimonial span {
  font-size: 0.85rem;
  color: var(--terracotta);
  letter-spacing: 0.02em;
}

/* ===== FAQ ===== */
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq-inner .section-header { margin-bottom: 0; position: sticky; top: 120px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 4px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--sage); }
.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--sage);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: all 0.25s var(--ease);
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--sage);
  color: var(--cream);
  border-color: var(--sage);
}
.faq-item p {
  padding: 0 4px 24px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--charcoal-soft);
  max-width: 640px;
}

/* ===== Final CTA ===== */
.final-cta {
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201, 123, 95, 0.12), transparent 70%),
    var(--cream);
  text-align: center;
}
.final-cta-inner { max-width: 720px; margin: 0 auto; }
.final-cta-content .section-title { margin-bottom: 24px; }
.final-cta-content > p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--charcoal-soft);
  margin-bottom: 40px;
}
.final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 28px;
}
.final-cta-note {
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 60px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 40px;
}
.footer-brand {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-brand .logo-mark {
  background: var(--cream);
  color: var(--charcoal);
}
.footer-brand strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.footer-brand span {
  font-size: 0.88rem;
  color: rgba(247, 243, 237, 0.65);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-end;
}
.footer-links a {
  font-size: 0.92rem;
  color: rgba(247, 243, 237, 0.75);
}
.footer-links a:hover { color: var(--terracotta); }
.footer-note {
  padding-top: 32px;
  border-top: 1px solid rgba(247, 243, 237, 0.12);
  font-size: 0.82rem;
  color: rgba(247, 243, 237, 0.5);
  text-align: center;
  line-height: 1.6;
}

.disclaimer {
  max-width: 960px;
  margin: 24px auto 0;
  padding: 18px 24px 0;
  border-top: 1px dashed rgba(247, 243, 237, 0.12);
  font-size: 0.64rem;
  line-height: 1.55;
  color: rgba(247, 243, 237, 0.4);
  text-align: justify;
}
.disclaimer-title {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.6rem;
  color: rgba(247, 243, 237, 0.55);
  margin-bottom: 8px;
  text-align: left;
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .hero-content { min-width: 0; }
  .hero-portrait { order: -1; }
  .hero-trust { justify-content: center; }
  .hero-cta { justify-content: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }

  .about-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .about-image { order: -1; }
  .credentials li { text-align: left; }

  .faq-inner { grid-template-columns: 1fr; gap: 48px; }
  .faq-inner .section-header { position: static; text-align: center; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 720px) {
  .nav { display: none; }
  .burger { display: flex; }
  .header-actions .lang-switcher a { padding: 6px 11px; font-size: 0.74rem; }
  .section { padding: 72px 0; }
  .hero { padding: 60px 0 80px; }
  .section-header { margin-bottom: 48px; }

  /* Hero text must fit narrow screens — shrink title, let it wrap naturally */
  .hero-title { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .hero-title br { display: none; }
  .hero-eyebrow { font-size: 0.72rem; letter-spacing: 0.1em; }

  .portrait-frame { width: 260px; height: 320px; }
  .portrait-frame--lg { width: 280px; height: 340px; }

  .step { grid-template-columns: 60px 1fr; gap: 20px; }
  .step-num { width: 50px; height: 50px; font-size: 1.4rem; }
  .process-steps::before { left: 25px; }

  .testimonial { padding: 32px 24px; }
  .testimonial p { font-size: 1.05rem; }

  .faq-item summary { font-size: 1.1rem; padding: 20px 4px; }

  .btn { padding: 12px 22px; font-size: 0.9rem; }
  .btn-lg { padding: 16px 28px; font-size: 0.95rem; }
  .process-cta .btn { max-width: 100%; white-space: normal; }
}

@media (max-width: 420px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .portrait-frame { width: 220px; height: 280px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; white-space: normal; }
  .final-cta-buttons { flex-direction: column; }
  .final-cta-buttons .btn { width: 100%; white-space: normal; }
}

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* =========================================
   Video testimonial card (для майбутнього контенту)
   ========================================= */
.testimonial--video {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.testimonial--video video,
.testimonial--video .video-poster {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: var(--sage-soft);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.testimonial--video footer {
  padding: 20px 28px 24px;
  border-top: 1px solid var(--line);
}

/* Subtitles in palette: cream on translucent charcoal block */
.testimonial--video video::cue {
  background-color: rgba(42, 42, 42, 0.82);
  color: #F7F3ED;
  font-family: 'Inter', sans-serif;
  font-size: 0.88em;
  line-height: 1.45;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
}
