/* === VARIABLES & RESET === */
:root {
  --primary: #0054a5;
  --primary-hover: #003d7a;
  --secondary: #00a650;
  --text-dark: #1a202c;
  --text-mid: #4a5568;
  --text-light: #718096;
  --bg-light: #f7fafc;
  --bg-blue: #ebf4ff;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --transition: 0.25s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text-dark);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: var(--font); cursor: pointer; }

/* === UTILITIES === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.section { padding: 72px 0; }
.section--dark { background: var(--text-dark); color: var(--white); }
.section--light { background: var(--bg-light); }
.section--blue { background: var(--bg-blue); }

.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(24px, 4vw, 34px); font-weight: 700; margin-bottom: 10px; }
.section-head p { font-size: 17px; color: var(--text-light); max-width: 560px; margin: 0 auto; }

.visually-hidden,
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,84,165,0.35); }

.btn-outline { background: transparent; border-color: var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }

.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--bg-light); transform: translateY(-2px); }

.btn-green { background: var(--secondary); color: var(--white); }
.btn-green:hover { background: #008c43; transform: translateY(-2px); }

.btn-full { width: 100%; border-radius: var(--radius-sm); }

/* === FORMS === */
.form-group { display: flex; flex-direction: column; gap: 12px; }

.form-field {
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-field::placeholder { color: var(--text-light); }
.form-field:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,84,165,0.12); }

.form-label { font-size: 13px; font-weight: 600; color: var(--text-mid); margin-bottom: 4px; display: block; }

.form-privacy {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  line-height: 1.5;
}
.form-privacy a { color: var(--primary); text-decoration: underline; }

/* === TOP BAR === */
.top-bar {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  font-size: 13px;
  color: var(--text-mid);
}
.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar__city { display: flex; align-items: center; gap: 6px; }
.top-bar__city svg { color: var(--primary); }
.top-bar__hours { display: flex; align-items: center; gap: 6px; }
.top-bar__hours::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--secondary); }

/* === HEADER === */
.main-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  transition: box-shadow var(--transition);
}
.main-header.scrolled { box-shadow: var(--shadow-md); }

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

.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.logo span { color: var(--secondary); }

.main-nav { flex: 1; }
.nav-list { display: flex; gap: 28px; font-weight: 600; font-size: 15px; }
.nav-list a:hover { color: var(--primary); }

.header__cta { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.header__phone {
  font-weight: 700;
  font-size: 17px;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}
.header__phone:hover { color: var(--primary); }

/* Mobile nav */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.burger__line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.open .burger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open .burger__line:nth-child(2) { opacity: 0; }
.burger.open .burger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 57px;
  background: var(--white);
  z-index: 800;
  padding: 24px 20px;
  flex-direction: column;
  gap: 24px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-list { flex-direction: column; gap: 0; }
.mobile-menu .nav-list li { border-bottom: 1px solid var(--border); }
.mobile-menu .nav-list a { display: block; padding: 14px 0; font-size: 17px; }
.mobile-menu__phone { font-size: 22px; font-weight: 700; color: var(--primary); }

/* === HERO === */
.hero {
  padding: 80px 0 72px;
  background: linear-gradient(150deg, #e8f3ff 0%, #f7fafc 50%, #e8f7f0 100%);
  overflow: hidden;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  right: -200px;
  top: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,84,165,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; }

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,84,165,0.09);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 50px);
  line-height: 1.1;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--primary); }

.hero__lead {
  font-size: 17px;
  color: var(--text-mid);
  margin-bottom: 28px;
  max-width: 500px;
}

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

.hero__link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--primary);
  font-size: 15px;
}
.hero__link:hover { gap: 10px; }

.hero__perks { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 28px; }

.hero__perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
}
.hero__perk svg { color: var(--secondary); flex-shrink: 0; }

/* Hero Form Card & Quiz */
.hero__form-card, .hero__quiz-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero__form-card h3, .hero__quiz-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.hero__form-card p, .hero__quiz-card p.quiz-desc { font-size: 14px; color: var(--text-light); margin-bottom: 22px; }

.form-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

/* Quiz Styles */
.quiz-progress-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 24px;
  overflow: hidden;
}
.quiz-progress-fill {
  height: 100%;
  background: var(--primary);
  width: 0%;
  transition: width var(--transition);
}
.quiz-step {
  display: none;
  animation: fadeInStep 0.4s ease;
}
.quiz-step.active {
  display: block;
}
@keyframes fadeInStep {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}
.quiz-step h3 {
  font-size: 19px;
  margin-bottom: 16px;
  line-height: 1.3;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.quiz-option {
  position: relative;
}
.quiz-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.quiz-option label {
  display: block;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.quiz-option label:hover {
  border-color: var(--primary);
  background: var(--bg-blue);
}
.quiz-option input[type="radio"]:checked + label {
  border-color: var(--primary);
  background: var(--bg-blue);
  box-shadow: 0 0 0 1px var(--primary);
}
.quiz-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

/* === STATS STRIP === */
.stats-strip { padding: 48px 0; background: var(--primary); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat__number { font-size: clamp(28px, 4vw, 42px); font-weight: 700; color: var(--white); line-height: 1; }
.stat__label { font-size: 14px; color: rgba(255,255,255,0.75); margin-top: 6px; }

/* === CATEGORIES === */
.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }

.cat-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}
.cat-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.cat-card__icon {
  width: 64px;
  height: 64px;
  background: var(--bg-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary);
}
.cat-card h3 { font-size: 16px; margin-bottom: 6px; }
.cat-card p { font-size: 13px; color: var(--text-light); }

/* === PRODUCTS === */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 24px; }

.product-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: #c5d8f0; }

.product-card__img {
  height: 200px;
  background: linear-gradient(135deg, #f0f4f8, #e8edf3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #a0aec0;
  position: relative;
}
.product-card__img img { width: 100%; height: 100%; object-fit: contain; }

.product-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }

.product-card__brand { font-size: 12px; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.product-card h3 { font-size: 17px; margin-bottom: 4px; }
.product-card__desc { font-size: 13px; color: var(--text-light); flex: 1; margin-bottom: 12px; }
.product-card__price { font-size: 22px; font-weight: 700; color: var(--primary); margin-bottom: 14px; }

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.badge--hit { background: var(--secondary); color: var(--white); }
.badge--new { background: #805ad5; color: var(--white); }
.badge--sale { background: #e53e3e; color: var(--white); }

/* === DIAGNOSTICS === */
.diagnostics__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.diagnostics__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #e8f3ff, #d0e8ff);
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #90a4c0;
  font-size: 14px;
  text-align: center;
}

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

.diagnostics__content h2 { font-size: clamp(22px, 3vw, 32px); margin-bottom: 16px; }
.diagnostics__content p { color: var(--text-mid); margin-bottom: 24px; font-size: 16px; }

.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
}
.check-list__icon { color: var(--secondary); flex-shrink: 0; margin-top: 2px; }

.equipment-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.equipment-badge {
  background: var(--bg-blue);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

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

.doctor-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.doctor-card__photo {
  height: 240px;
  background: linear-gradient(135deg, #d0e8ff, #bdd4ee);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #90a4c0;
  font-size: 13px;
}
.doctor-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.doctor-card__body { padding: 22px; }
.doctor-card__name { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.doctor-card__spec { font-size: 13px; font-weight: 600; color: var(--primary); margin-bottom: 12px; }
.doctor-card__exp { font-size: 14px; color: var(--text-light); }
.doctor-card__diplomas { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-mid); }

/* === LOCAL SEO === */
.local-seo { background: var(--bg-blue); padding: 56px 0; }
.local-seo__inner { max-width: 900px; margin: 0 auto; }
.local-seo h2 { font-size: clamp(22px, 3vw, 30px); margin-bottom: 18px; }
.local-seo p { color: var(--text-mid); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.districts-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.district-tag {
  background: var(--white);
  border: 1px solid #c5d8f0;
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

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

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.review-card__stars { color: #f59e0b; font-size: 18px; margin-bottom: 12px; letter-spacing: 2px; }
.review-card__text { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-bottom: 18px; }
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
}
.review-card__name { font-weight: 700; font-size: 14px; }
.review-card__date { font-size: 12px; color: var(--text-light); }

/* === LICENSES === */
.licenses-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }

.license-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  border: 1.5px solid var(--border);
}
.license-card__icon {
  width: 56px;
  height: 56px;
  background: var(--bg-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--primary);
}
.license-card h3 { font-size: 15px; margin-bottom: 6px; }
.license-card p { font-size: 13px; color: var(--text-light); }

/* === CTA FORM SECTION === */
.cta-section { background: linear-gradient(135deg, var(--primary), #1a6fc4); padding: 72px 0; color: var(--white); }
.cta-section__inner { display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: center; }
.cta-section h2 { font-size: clamp(24px, 3vw, 36px); margin-bottom: 16px; }
.cta-section p { opacity: 0.85; font-size: 16px; }
.cta-section .hero__perks { color: rgba(255,255,255,0.85); }
.cta-section .hero__perk svg { color: rgba(255,255,255,0.7); }
.cta-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px; }
.cta-form-card h3 { color: var(--text-dark); margin-bottom: 6px; font-size: 19px; }
.cta-form-card p { color: var(--text-light); font-size: 14px; margin-bottom: 22px; }

/* === FOOTER === */
.site-footer { background: var(--text-dark); color: rgba(255,255,255,0.8); padding: 64px 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; }
.footer__logo { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.footer__logo span { color: var(--secondary); }
.footer__desc { font-size: 14px; line-height: 1.8; max-width: 260px; }
.footer__col h4 { color: var(--white); font-size: 15px; margin-bottom: 18px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 14px; transition: color var(--transition); }
.footer__links a:hover { color: var(--white); }
.footer__contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; margin-bottom: 12px; }
.footer__contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--secondary); }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 16px;
}
.footer__social a:hover { background: var(--secondary); border-color: var(--secondary); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer__disclaimer { font-size: 12px; color: rgba(255,255,255,0.35); max-width: 600px; text-align: right; }

/* === FLOATING BUTTONS === */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 700;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  font-size: 22px;
  color: var(--white);
  text-decoration: none;
  border: none;
}
.float-btn:hover { transform: scale(1.1); }
.float-btn--phone { background: var(--primary); }
.float-btn--wa { background: #25d366; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__form-card { max-width: 480px; }
  .diagnostics__grid { grid-template-columns: 1fr; }
  .diagnostics__img { height: 300px; }
  .cta-section__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .top-bar { display: none; }
  .main-nav { display: none; }
  .header__cta .btn { display: none; }
  .header__phone { font-size: 15px; }
  .burger { display: flex; }
  .hero { padding: 48px 0 40px; }
  .hero__perks { gap: 10px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__disclaimer { text-align: left; max-width: 100%; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .floating-cta { bottom: 16px; right: 16px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero__form-card { padding: 22px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.5s ease both; }
.animate-in:nth-child(2) { animation-delay: 0.08s; }
.animate-in:nth-child(3) { animation-delay: 0.16s; }
.animate-in:nth-child(4) { animation-delay: 0.24s; }

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

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: var(--primary); }

.faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  color: var(--text-dark);
  user-select: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item[open] .faq-item__q::after { transform: rotate(45deg); }
.faq-item__q:hover { color: var(--primary); }

.faq-item__a {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
}

/* === SUCCESS MESSAGE === */
.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  color: var(--secondary);
  font-weight: 600;
}
.form-success.visible { display: block; }
