/* =============================================
   Dr. Zadoroshnyi — Premium Psychotherapy Website 2026
   Sustainable Minimalism • Emotional Warmth • Trust
   ============================================= */

/* === CSS CUSTOM PROPERTIES === */
:root {
  /* Primary palette */
  --bg-primary: #FAF9F6;
  --bg-white: #FFFFFF;
  --bg-warm: #F5F0EB;
  --bg-accent-light: #F0EDE8;
  --bg-hero: #FAF8F5;
  
  /* Text */
  --text-primary: #2C2C2C;
  --text-secondary: #5A5A5A;
  --text-muted: #8A8A8A;
  --text-light: #FFFFFFEE;
  
  /* Accents */
  --accent-sage: #8AB17D;
  --accent-sage-hover: #7AA06D;
  --accent-sage-light: #E8F0E5;
  --accent-rose: #D4897A;
  --accent-rose-hover: #C47A6B;
  --accent-rose-light: #F5E8E5;
  --accent-mint: #A8DADC;
  --accent-mint-light: #E8F4F5;
  
  /* Borders & shadows */
  --border-light: #E8E4DF;
  --border-subtle: #F0ECE7;
  --shadow-sm: 0 2px 8px rgba(44, 44, 44, 0.04);
  --shadow-md: 0 4px 20px rgba(44, 44, 44, 0.06);
  --shadow-lg: 0 8px 40px rgba(44, 44, 44, 0.08);
  --shadow-hover: 0 12px 48px rgba(44, 44, 44, 0.12);
  
  /* Typography */
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
  
  /* Spacing */
  --section-padding: 120px;
  --container-max: 1200px;
  --container-narrow: 800px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50%;
}

/* === RESET & BASE === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.7;
  font-size: 18px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.25;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 400;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
}

h4 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  font-family: var(--font-body);
}

p {
  margin-bottom: 1em;
  color: var(--text-secondary);
}

p:last-child {
  margin-bottom: 0;
}

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

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

/* === SECTION === */
.section {
  padding: var(--section-padding) 0;
}

.section--bg {
  background-color: var(--bg-white);
}

.section--warm {
  background-color: var(--bg-warm);
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-sage);
  margin-bottom: 16px;
}

.section__title {
  margin-bottom: 20px;
}

.section__subtitle {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* === HEADER / NAVIGATION === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition-base);
  padding: 0 24px;
}

.header.scrolled {
  border-bottom-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
}

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

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

.header__link {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent-sage);
  transition: var(--transition-base);
}

.header__link:hover {
  color: var(--text-primary);
}

.header__link:hover::after {
  width: 100%;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--accent-sage);
  color: #fff;
  border-radius: var(--radius-xl);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-base);
  white-space: nowrap;
}

.header__cta:hover {
  background: var(--accent-sage-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(138, 177, 125, 0.3);
}

/* Mobile burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-base);
}

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

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

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

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  background: var(--bg-hero);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(138, 177, 125, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero__content {
  max-width: 560px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--accent-sage-light);
  border-radius: var(--radius-xl);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-sage);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent-sage);
  border-radius: var(--radius-full);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

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

.hero__subtitle {
  font-size: 15px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 400;
}

.hero__text {
  font-size: 19px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
}

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

.hero__image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__image {
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
}

.hero__image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: var(--accent-sage-light);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  padding: 16px 36px;
  background: var(--accent-sage);
  color: #fff;
  border-radius: var(--radius-xl);
}

.btn--primary:hover {
  background: var(--accent-sage-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(138, 177, 125, 0.3);
}

.btn--secondary {
  padding: 16px 36px;
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
}

.btn--secondary:hover {
  border-color: var(--accent-sage);
  color: var(--accent-sage);
  transform: translateY(-2px);
}

.btn--ghost {
  padding: 12px 24px;
  background: transparent;
  color: var(--accent-sage);
  font-weight: 500;
}

.btn--ghost:hover {
  color: var(--accent-sage-hover);
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
}

.btn--whatsapp:hover {
  background: #20BD5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

.btn--telegram {
  background: #2AABEE;
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
}

.btn--telegram:hover {
  background: #229ED9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42, 171, 238, 0.25);
}

.btn--large {
  padding: 18px 44px;
  font-size: 17px;
}

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

/* === ABOUT === */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__image {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

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

.about__text p {
  font-size: 18px;
  margin-bottom: 20px;
}

.about__methods {
  margin-top: 32px;
  padding: 28px;
  background: var(--bg-primary);
  border-radius: var(--radius-md);
}

.about__methods h4 {
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--accent-sage);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about__methods-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about__methods-list li {
  padding: 8px 18px;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  font-size: 15px;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
}

/* === HELP CARDS === */
.help__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.help-card {
  padding: 36px 28px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.help-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-base);
}

.help-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

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

.help-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-sage-light);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 24px;
}

.help-card__title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.help-card__desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* === QUALIFICATIONS ACCORDION === */
.qual__list {
  max-width: 900px;
  margin: 0 auto;
}

.qual-item {
  border-bottom: 1px solid var(--border-light);
}

.qual-item:first-child {
  border-top: 1px solid var(--border-light);
}

.qual-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  cursor: pointer;
  transition: var(--transition-base);
  user-select: none;
}

.qual-item__header:hover {
  color: var(--accent-sage);
}

.qual-item__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  flex: 1;
}

.qual-item__toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--bg-warm);
  transition: var(--transition-base);
  flex-shrink: 0;
  margin-left: 20px;
}

.qual-item__toggle svg {
  width: 16px;
  height: 16px;
  transition: var(--transition-base);
}

.qual-item.active .qual-item__toggle {
  background: var(--accent-sage-light);
}

.qual-item.active .qual-item__toggle svg {
  transform: rotate(180deg);
}

.qual-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.qual-item.active .qual-item__body {
  max-height: 2000px;
}

.qual-item__content {
  padding: 0 0 32px;
}

.qual-item__content p {
  font-size: 17px;
  margin-bottom: 16px;
}

.qual-item__content ul {
  padding-left: 0;
  margin-bottom: 16px;
}

.qual-item__content ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 17px;
  color: var(--text-secondary);
}

.qual-item__content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--accent-sage-light);
  border: 2px solid var(--accent-sage);
  border-radius: var(--radius-full);
}

/* === CERTIFICATES GALLERY === */
.certs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.cert-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-base);
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
}

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

.cert-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: var(--transition-base);
}

.cert-card:hover img {
  transform: scale(1.03);
}

.cert-card__label {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

/* === LIGHTBOX === */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  border: none;
  transition: var(--transition-base);
}

.lightbox__close:hover {
  background: rgba(255,255,255,0.2);
}

/* === PRICING === */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.price-card {
  padding: 40px 32px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-base);
  text-align: center;
  position: relative;
}

.price-card--featured {
  border-color: var(--accent-sage);
  box-shadow: var(--shadow-md);
}

.price-card--featured::before {
  content: 'Популярно';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 20px;
  background: var(--accent-sage);
  color: #fff;
  border-radius: var(--radius-xl);
  font-size: 13px;
  font-weight: 500;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.price-card__name {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 8px;
}

.price-card__duration {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.price-card__price {
  font-size: 48px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1;
}

.price-card__price span {
  font-size: 22px;
  font-weight: 400;
  color: var(--text-muted);
}

.price-card__desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.6;
}

.price-card__features {
  text-align: left;
  margin-bottom: 32px;
}

.price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-secondary);
}

.price-card__features li::before {
  content: '✓';
  color: var(--accent-sage);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* === REVIEWS === */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.review-card {
  padding: 36px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-base);
  position: relative;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.review-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: #E5A100;
  font-size: 16px;
}

.review-card__text {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.review-card__author {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.review-card__meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.review-card__quote {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 48px;
  color: var(--accent-sage-light);
  font-family: var(--font-heading);
  line-height: 1;
}

/* === FAQ === */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-light);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  transition: var(--transition-base);
  user-select: none;
  gap: 20px;
}

.faq-item__question:hover {
  color: var(--accent-sage);
}

.faq-item__icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--bg-warm);
  transition: var(--transition-base);
  flex-shrink: 0;
  font-size: 18px;
  color: var(--text-muted);
}

.faq-item.active .faq-item__icon {
  background: var(--accent-sage-light);
  color: var(--accent-sage);
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-item__answer {
  max-height: 600px;
}

.faq-item__answer-inner {
  padding: 0 0 24px;
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* === CONTACT === */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

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

.contact__info p {
  font-size: 18px;
  margin-bottom: 32px;
}

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  border: 1px solid var(--border-subtle);
}

.contact-channel:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-channel__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 24px;
  flex-shrink: 0;
}

.contact-channel__icon--whatsapp {
  background: #e8f8ed;
  color: #25D366;
}

.contact-channel__icon--telegram {
  background: #e6f3fb;
  color: #2AABEE;
}

.contact-channel__icon--email {
  background: var(--accent-sage-light);
  color: var(--accent-sage);
}

.contact-channel__text {
  display: flex;
  flex-direction: column;
}

.contact-channel__label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-channel__value {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
}

/* Contact form */
.contact__form-wrap {
  padding: 40px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
}

.contact__form-wrap h3 {
  margin-bottom: 8px;
}

.contact__form-wrap > p {
  font-size: 15px;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-primary);
  background: var(--bg-primary);
  transition: var(--transition-base);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-sage);
  box-shadow: 0 0 0 3px rgba(138, 177, 125, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* === FOOTER === */
.footer {
  background: var(--text-primary);
  color: var(--text-light);
  padding: 60px 24px 32px;
}

.footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

.footer__brand {
  max-width: 340px;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition-base);
}

.footer__links a:hover {
  color: #fff;
}

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

.footer__social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  transition: var(--transition-base);
}

.footer__social a:hover {
  background: var(--accent-sage);
  color: #fff;
  transform: translateY(-2px);
}

.footer__bottom {
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}

/* === DIVIDER === */
.divider {
  width: 60px;
  height: 2px;
  background: var(--accent-sage);
  margin: 0 auto 24px;
  border-radius: 2px;
}

/* === SCROLL ANIMATIONS (CSS-only fallback) === */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, var(--accent-sage) 0%, #6B9C5E 100%);
  padding: 80px 24px;
  text-align: center;
  color: #fff;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 19px;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn--primary {
  background: #fff;
  color: var(--accent-sage);
  font-weight: 600;
}

.cta-banner .btn--primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* === MOBILE NAV OVERLAY === */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(250, 249, 246, 0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  color: var(--text-primary);
  padding: 8px;
  transition: var(--transition-base);
}

.mobile-nav a:hover {
  color: var(--accent-sage);
}

/* === TIKTOK SECTION === */
.tiktok-section {
  background: var(--bg-warm);
  padding: 80px 24px;
}

.tiktok__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: center;
}

.tiktok__image {
  width: 300px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.tiktok__content {
  max-width: 480px;
  text-align: left;
}

.tiktok__content h3 {
  margin-bottom: 16px;
}

.tiktok__content p {
  margin-bottom: 24px;
}

/* === RESPONSIVE === */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }
  
  .header__nav {
    display: none;
  }
  
  .burger {
    display: flex;
  }
  
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .hero__content {
    max-width: 100%;
    order: 2;
  }
  
  .hero__image-wrap {
    order: 1;
  }
  
  .hero__image {
    max-width: 320px;
    margin: 0 auto;
  }
  
  .hero__actions {
    justify-content: center;
  }
  
  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .about__image {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
  }
  
  body {
    font-size: 17px;
  }
  
  .hero {
    min-height: auto;
    padding: 100px 20px 60px;
  }
  
  .hero__image {
    max-width: 260px;
  }
  
  .hero__image-accent {
    display: none;
  }
  
  .help__grid {
    grid-template-columns: 1fr;
  }
  
  .reviews__grid {
    grid-template-columns: 1fr;
  }
  
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .certs__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .contact__form-wrap {
    padding: 28px 20px;
  }
  
  .footer__inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .footer__brand {
    text-align: center;
  }
  
  .tiktok__inner {
    flex-direction: column;
    text-align: center;
  }
  
  .tiktok__content {
    text-align: center;
  }
  
  .btn--large {
    padding: 16px 32px;
    font-size: 16px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  :root {
    --section-padding: 48px;
  }
  
  .hero__badge {
    font-size: 12px;
  }
  
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .certs__grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .qual-item__title {
    font-size: 20px;
  }
  
  .section__header {
    margin-bottom: 40px;
  }
  
  .price-card {
    padding: 32px 24px;
  }
  
  .price-card__price {
    font-size: 40px;
  }
}

/* === UTILITIES === */
.text-center { text-align: center; }
.text-sage { color: var(--accent-sage); }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

/* Swiper overrides for certificate slider on mobile */
.cert-swiper {
  display: none;
}

@media (max-width: 480px) {
  .certs__grid--desktop {
    display: none;
  }
  .cert-swiper {
    display: block;
  }
}


/* =============================================
   RGPD / COOKIE CONSENT BANNER
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.08);
  padding: 24px;
  animation: cookieSlideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.cookie-banner__title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.cookie-banner__text p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.cookie-banner__text a {
  color: var(--accent-sage);
  text-decoration: underline;
}

.cookie-banner__text a:hover {
  color: var(--accent-sage-hover);
}

.cookie-banner__options {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-banner__options[hidden] {
  display: none;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
}

.cookie-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent-sage);
  flex-shrink: 0;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.cookie-btn {
  font-size: 14px !important;
  padding: 10px 22px !important;
}

.cookie-btn[hidden] {
  display: none !important;
}

@media (max-width: 600px) {
  .cookie-banner {
    padding: 20px 16px;
  }
  .cookie-banner__actions {
    flex-direction: column;
  }
  .cookie-btn {
    width: 100%;
    justify-content: center;
  }
}


/* =============================================
   IMAGE DOWNLOAD PROTECTION
   ============================================= */
.no-download {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

/* Transparent overlay to block right-click on images while keeping lightbox click */
.cert-card {
  position: relative;
}

.hero__image-wrap {
  position: relative;
}

.about__image-wrap {
  position: relative;
}



/* =============================================
   LEGAL PAGES (privacy, impressum) — shared styles
   ============================================= */
.legal-page {
  padding: 120px 24px 80px;
  min-height: 100vh;
}

.legal-page .container {
  max-width: 800px;
}

.legal-page h1 {
  margin-bottom: 12px;
}

.legal-page .legal-meta {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.legal-page h2 {
  font-size: 26px;
  margin-top: 48px;
  margin-bottom: 16px;
}

.legal-page h3 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.legal-page p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-page ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-page ul li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 6px;
  list-style: disc;
  color: var(--text-secondary);
}

.legal-page a {
  color: var(--accent-sage);
  text-decoration: underline;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  font-size: 15px;
  color: var(--accent-sage);
}

.legal-back:hover {
  color: var(--accent-sage-hover);
}
