/* ============================================
   PSYCAB.PRO — Victoria Sando
   Premium Psychology Landing Page
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Warm, calming palette */
  --color-cream: #FAF7F2;
  --color-warm-white: #FFFDF9;
  --color-sand: #F0E8DC;
  --color-sand-dark: #E4D8C8;
  --color-sage: #8B9E8B;
  --color-sage-light: #A8B8A8;
  --color-sage-dark: #6B7E6B;
  --color-forest: #4A5E4A;
  --color-earth: #7D6B5D;
  --color-earth-light: #9E8B7D;
  --color-charcoal: #2C2C2C;
  --color-text: #3A3A3A;
  --color-text-light: #6B6B6B;
  --color-text-muted: #9A9A9A;
  --color-accent: #C4956A;
  --color-accent-hover: #B08456;
  --color-white: #FFFFFF;
  --color-overlay: rgba(42, 42, 42, 0.6);

  /* Typography */
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Cormorant Garamond', serif;

  /* Spacing */
  --section-padding: clamp(60px, 8vw, 120px);
  --container-width: 1200px;
  --container-narrow: 800px;

  /* Transitions */
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;

  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.05);

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-charcoal);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
}

p {
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  color: var(--color-text);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.container--narrow {
  max-width: var(--container-narrow);
}

section {
  padding: var(--section-padding) 0;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-muted { color: var(--color-text-light); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 1s ease;
}

.fade-in.visible {
  opacity: 1;
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-smooth);
}

.header.scrolled {
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.05);
  padding: 10px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-charcoal);
  letter-spacing: 0.02em;
}

.header__logo span {
  color: var(--color-sage);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav a {
  font-size: 0.9rem;
  color: var(--color-text-light);
  font-weight: 400;
  position: relative;
  padding: 4px 0;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-sage);
  transition: width var(--transition-smooth);
}

.header__nav a:hover {
  color: var(--color-charcoal);
}

.header__nav a:hover::after {
  width: 100%;
}

.header__cta {
  background: var(--color-sage);
  color: var(--color-white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition-smooth);
  letter-spacing: 0.02em;
}

.header__cta:hover {
  background: var(--color-sage-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(139, 158, 139, 0.3);
}

.header__cta::after {
  display: none !important;
}

/* Mobile menu */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.header__burger span {
  width: 24px;
  height: 2px;
  background: var(--color-charcoal);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.header__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__burger.active span:nth-child(2) {
  opacity: 0;
}

.header__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-warm-white) 50%, var(--color-sand) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 158, 139, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 149, 106, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139, 158, 139, 0.12);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--color-sage-dark);
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.hero__badge svg {
  width: 14px;
  height: 14px;
}

.hero__title {
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero__title em {
  font-style: italic;
  color: var(--color-sage);
}

.hero__subtitle {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--color-sand-dark);
}

.hero__stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-sage-dark);
  display: block;
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-top: 6px;
}

/* Hero Image */
.hero__image {
  position: relative;
  z-index: 2;
}

.hero__image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  aspect-ratio: 3/4;
  max-height: 600px;
}

.hero__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--color-sage);
  opacity: 0.15;
  z-index: -1;
}

.hero__image-dots {
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(var(--color-sage) 2px, transparent 2px);
  background-size: 12px 12px;
  opacity: 0.3;
  z-index: -1;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all var(--transition-smooth);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-sage);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(139, 158, 139, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-sand-dark);
}

.btn--outline:hover {
  border-color: var(--color-sage);
  color: var(--color-sage-dark);
  background: rgba(139, 158, 139, 0.05);
}

.btn--accent {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn--accent:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196, 149, 106, 0.35);
}

.btn--lg {
  padding: 16px 40px;
  font-size: 1rem;
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-sage);
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  padding: 40px 0;
  background: var(--color-warm-white);
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.trust-bar__item svg {
  width: 20px;
  height: 20px;
  color: var(--color-sage);
  flex-shrink: 0;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  background: var(--color-warm-white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
}

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

.about__content {
  max-width: 540px;
}

.about__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-sage);
  margin-bottom: 12px;
}

.about__content h2 {
  margin-bottom: 20px;
}

.about__content > p {
  color: var(--color-text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about__quote {
  background: var(--color-cream);
  padding: 24px 28px;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-sage);
  margin: 28px 0;
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-earth);
  line-height: 1.7;
}

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

.about__credentials span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(139, 158, 139, 0.1);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--color-sage-dark);
  font-weight: 500;
}

/* ============================================
   PROBLEMS / PAIN POINTS
   ============================================ */
.problems {
  background: var(--color-cream);
}

.problems__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 20px;
}

.problem-card {
  background: var(--color-white);
  padding: 32px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
  border: 1px solid transparent;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(139, 158, 139, 0.2);
}

.problem-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(139, 158, 139, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--color-sage);
}

.problem-card__icon svg {
  width: 24px;
  height: 24px;
}

.problem-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.problem-card p {
  color: var(--color-text-light);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  background: var(--color-warm-white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-sand-dark), var(--color-sage-light), var(--color-sand-dark));
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step__number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-sage);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-smooth);
}

.step:hover .step__number {
  background: var(--color-sage);
  color: var(--color-white);
  transform: scale(1.08);
}

.step h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.step p {
  color: var(--color-text-light);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  background: var(--color-cream);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 24px;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
  border: 1px solid rgba(0,0,0,0.04);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-sage);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
  transform-origin: left;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
}

.service-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-sage);
  background: rgba(139, 158, 139, 0.1);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.service-card p {
  color: var(--color-text-light);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card__details {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--color-sand);
}

.service-card__detail {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.service-card__detail svg {
  width: 16px;
  height: 16px;
  color: var(--color-sage);
}

/* ============================================
   APPROACH / METHODS
   ============================================ */
.approach {
  background: var(--color-forest);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.approach::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(139, 158, 139, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.approach .section-label {
  color: var(--color-sage-light);
}

.approach .section-header h2 {
  color: var(--color-white);
}

.approach .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.approach__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.approach-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all var(--transition-smooth);
}

.approach-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.approach-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(139, 158, 139, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.approach-card__icon svg {
  width: 26px;
  height: 26px;
  color: var(--color-sage-light);
}

.approach-card h3 {
  color: var(--color-white);
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.approach-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--color-cream);
}

.testimonials__slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--color-accent);
}

.testimonial-card__stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.testimonial-card__text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card__text::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-sage-light);
  line-height: 0;
  position: relative;
  top: 16px;
  margin-right: 4px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--color-sand);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-white);
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-charcoal);
}

.testimonial-card__meta {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.testimonials__source {
  text-align: center;
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.testimonials__source a {
  color: var(--color-sage);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.testimonials__source a:hover {
  color: var(--color-sage-dark);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--color-warm-white);
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
}

.faq__item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid transparent;
  transition: border-color var(--transition-fast);
}

.faq__item.active {
  border-color: rgba(139, 158, 139, 0.3);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-charcoal);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  gap: 16px;
}

.faq__question:hover {
  color: var(--color-sage-dark);
}

.faq__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-smooth);
}

.faq__item.active .faq__icon {
  background: var(--color-sage);
  color: var(--color-white);
  transform: rotate(45deg);
}

.faq__icon svg {
  width: 14px;
  height: 14px;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__item.active .faq__answer {
  max-height: 300px;
}

.faq__answer-inner {
  padding: 0 24px 20px;
  color: var(--color-text-light);
  font-size: 0.92rem;
  line-height: 1.8;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-forest) 100%);
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.cta-section .btn--white {
  background: var(--color-white);
  color: var(--color-forest);
  font-weight: 600;
}

.cta-section .btn--white:hover {
  background: var(--color-cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.cta__channels {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.cta__channel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-smooth);
  cursor: pointer;
}

.cta__channel:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.cta__channel svg {
  width: 18px;
  height: 18px;
}

.cta__note {
  margin-top: 20px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-charcoal);
  color: rgba(255, 255, 255, 0.6);
  padding: 48px 0 32px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-white);
  font-weight: 600;
}

.footer__logo span {
  color: var(--color-sage-light);
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--color-sage-light);
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-fast);
}

.footer__social a:hover {
  background: var(--color-sage);
  color: var(--color-white);
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

.footer__bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.8rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__image {
    max-width: 400px;
    margin: 0 auto;
    order: -1;
  }

  .about__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about__image {
    max-width: 400px;
    margin: 0 auto;
  }

  .about__content {
    max-width: 100%;
  }

  .about__quote {
    text-align: left;
  }

  .about__credentials {
    justify-content: center;
  }

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

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

  .steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  /* Mobile nav — fullscreen overlay, z-index выше header */
  .header__nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 1002;
  }

  .header__nav.open {
    display: flex;
  }

  .header__nav a {
    font-size: 1.3rem;
    padding: 8px 0;
  }

  /* Бургер всегда поверх nav-оверлея */
  .header__burger {
    display: flex;
    z-index: 1003;
    position: relative;
  }

  /* Увеличиваем тач-зону бургера */
  .header__burger {
    padding: 12px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
  }

  /* Кнопка "Записаться" в мобильном меню */
  .header__nav .header__cta {
    margin-top: 8px;
    padding: 14px 32px;
    font-size: 1rem;
    min-height: 44px;
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero__stats {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  /* Исправляем minmax для testimonials — не создаём горизонтальный скролл */
  .testimonials__slider {
    grid-template-columns: 1fr;
  }

  /* Trust bar — разрешаем перенос текста на мобилке */
  .trust-bar__item {
    white-space: normal;
    text-align: center;
    flex-direction: column;
    gap: 6px;
    flex-basis: calc(50% - 12px);
  }

  /* Problems grid — одна колонка на 768px */
  .problems__grid {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero__stat-number {
    font-size: 1.6rem;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Кнопки — минимальная высота 44px для тача */
  .btn {
    min-height: 44px;
  }

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

  .cta__channel {
    justify-content: center;
    min-height: 44px;
  }

  /* Problems — compact padding */
  .problem-card {
    padding: 24px 20px;
  }

  /* Service cards compact */
  .service-card {
    padding: 28px 20px;
  }

  /* Testimonial cards compact */
  .testimonial-card {
    padding: 24px 20px;
  }

  /* FAQ compact */
  .faq__question {
    padding: 16px 20px;
    font-size: 0.95rem;
  }

  .faq__answer-inner {
    padding: 0 20px 16px;
  }
}

@media (max-width: 360px) {
  /* Минимальная ширина — 320px без горизонтального скролла */
  .container {
    padding: 0 16px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.15rem;
  }

  /* Hero на очень маленьких экранах */
  .hero {
    padding-top: 90px;
    padding-bottom: 48px;
  }

  .hero__image {
    max-width: 280px;
  }

  .hero__badge {
    font-size: 0.72rem;
    padding: 6px 14px;
  }

  .hero__stats {
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
  }

  .hero__stat-number {
    font-size: 1.4rem;
  }

  /* Trust bar — одна колонка */
  .trust-bar__item {
    flex-basis: 100%;
  }

  /* Шаги — compact */
  .step__number {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
  }

  /* Credentials wrap */
  .about__credentials span {
    font-size: 0.75rem;
    padding: 5px 10px;
  }

  /* Footer */
  .footer__links {
    gap: 12px;
  }

  /* Approach cards compact */
  .approach-card {
    padding: 24px 20px;
  }

  /* Section padding уменьшаем */
  section {
    padding: clamp(40px, 8vw, 80px) 0;
  }
}

/* ============================================
   PHOTO PLACEHOLDER (gradient + initials)
   ============================================ */
.photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-sage-light) 0%, var(--color-sage) 40%, var(--color-earth-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-white);
  font-weight: 300;
  letter-spacing: 0.05em;
}

.photo-placeholder--sm {
  font-size: 2rem;
}

/* ============================================
   ONLINE FORMAT BADGE
   ============================================ */
.format-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.format-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
}

.format-badge--online {
  background: rgba(139, 158, 139, 0.12);
  color: var(--color-sage-dark);
}

.format-badge--offline {
  background: rgba(196, 149, 106, 0.12);
  color: var(--color-accent-hover);
}

/* ============================================
   REVIEWS PAGE
   ============================================ */

/* --- Reviews Hero --- */
.reviews-hero {
  padding: calc(var(--section-padding) + 80px) 0 var(--section-padding);
  background: var(--color-cream);
  text-align: center;
}

.reviews-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 500;
  color: var(--color-charcoal);
  line-height: 1.2;
  margin-bottom: 16px;
}

.reviews-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.reviews-stats__item {
  text-align: center;
}

.reviews-stats__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--color-sage-dark);
  line-height: 1;
}

.reviews-stats__label {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 4px;
}

/* --- Reviews Source Header --- */
.reviews-source {
  margin-bottom: 32px;
}

.reviews-source__header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviews-source__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-sand);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.reviews-source__icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-sage-dark);
}

.reviews-source__header h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-charcoal);
  margin-bottom: 2px;
}

.reviews-source__header p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.4;
}

.reviews-source__header p a {
  color: var(--color-sage-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* --- Reviews Grid --- */
.reviews-list {
  padding: 0 0 var(--section-padding);
  background: var(--color-cream);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* --- Review Card --- */
.review-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition-smooth);
}

.review-card:hover {
  box-shadow: var(--shadow-medium);
}

.review-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.review-card__stars svg {
  width: 18px;
  height: 18px;
  fill: var(--color-accent);
  stroke: none;
}

.review-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 12px;
}

.review-card__text:last-of-type {
  margin-bottom: 0;
}

.review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--color-sand);
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-sage-light), var(--color-sage));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  flex-shrink: 0;
}

.review-card__name {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-charcoal);
}

.review-card__date {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.review-card__source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--color-sage-dark);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(139, 158, 139, 0.08);
  transition: background var(--transition-fast), color var(--transition-fast);
  flex-shrink: 0;
}

.review-card__source:hover {
  background: rgba(139, 158, 139, 0.18);
  color: var(--color-forest);
}

.review-card__source svg {
  flex-shrink: 0;
}

/* --- Reviews More Link --- */
.reviews-more {
  text-align: center;
  margin-top: 40px;
}

.reviews-more__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-sage-dark);
  text-decoration: none;
  padding: 14px 32px;
  border: 2px solid var(--color-sage-light);
  border-radius: 50px;
  transition: all var(--transition-smooth);
}

.reviews-more__link:hover {
  background: var(--color-sage);
  border-color: var(--color-sage);
  color: var(--color-white);
}

.reviews-more__link svg {
  flex-shrink: 0;
}

/* --- Platform Cards --- */
.reviews-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 40px;
}

.reviews-platform-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  text-decoration: none;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
}

.reviews-platform-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

.reviews-platform-card__name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-charcoal);
  flex-shrink: 0;
}

.reviews-platform-card__desc {
  font-size: 0.85rem;
  color: var(--color-text-light);
  flex: 1;
}

.reviews-platform-card__arrow {
  flex-shrink: 0;
  color: var(--color-sage);
  transition: transform var(--transition-fast);
}

.reviews-platform-card:hover .reviews-platform-card__arrow {
  transform: translate(3px, -3px);
}

/* --- Active nav link --- */
.header__nav a.active {
  color: var(--color-sage-dark);
}

/* --- Reviews Responsive --- */
@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-links-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    padding: 24px;
  }

  .reviews-stats {
    gap: 32px;
  }

  .reviews-hero {
    padding-top: calc(var(--section-padding) + 60px);
  }

  .review-card__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
