/* ==========================================================================
   Це Клініка — landing page styles
   Fonts: Idealist Sans (headings, licensed — local files in /fonts) +
   Montserrat (body, Google Fonts)
   Colors: black #2B2C2E, accent teal #99D8E0, gray #B7B7B7, white #FFFFFF
   ========================================================================== */

@font-face {
  font-family: 'Idealist Sans';
  src: url('fonts/IdealistSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ============ SCROLL-REVEAL ANIMATION ============
   .reveal is added only via JS, so if JS fails to run, sections keep their
   normal (fully visible) appearance — nothing depends on this for content
   to be readable. */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
@font-face {
  font-family: 'Idealist Sans';
  src: url('fonts/IdealistSans-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #2b2c2e;
  --accent: #99d8e0;
  --accent-dark: #6fc3cd;
  --gray: #b7b7b7;
  --gray-light: #f4f7f8;
  --white: #ffffff;
  --radius-pill: 60px;
  --container-w: 1180px;
  --font-heading: 'Idealist Sans', 'Jost', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --shadow-card: 0 10px 30px rgba(43, 44, 46, 0.06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

html, body { max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 300;
  line-height: 1.15;
  margin: 0;
  color: var(--black);
}

h2 { font-size: 50px; }

p { margin: 0; line-height: 1.5; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

.section { padding: 80px 0; }
.section--tight { padding: 56px 0; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 10px 10px 26px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 16px;
  white-space: nowrap;
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary { background: var(--accent); color: var(--black); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-outline {
  background: var(--white);
  color: var(--black);
  border: 1px solid #e3e4ec;
}
.btn-outline:hover { background: var(--gray-light); }
.btn-white { background: var(--white); color: var(--black); border: 1px solid #e3e4ec; }
.btn-white:hover { background: var(--gray-light); }
.btn .ico-circle {
  width: 34px; height: 34px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 15px;
  transition: background-color 0.15s ease;
}
.btn-primary .ico-circle { background: var(--white); color: var(--black); }
.btn-primary:hover .ico-circle { background: #e0f3f5; }
.btn-outline .ico-circle,
.btn-white .ico-circle { background: var(--accent); color: var(--black); }
.btn-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--black);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.15s ease;
}
.submit-btn:hover .btn-icon { background: var(--accent-dark); }
.ico-circle svg, .btn-icon svg { width: 10px; height: auto; display: block; }
.btn-arrow { display: inline-flex; align-items: center; justify-content: center; }

/* ============ HEADER ============ */
.site-header {
  padding: 28px 0;
  border-bottom: 1px solid #eef2f3;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  flex-wrap: nowrap;
}
.logo { flex-shrink: 0; }
.logo img { height: 34px; }

.main-nav { display: flex; align-items: center; gap: 18px; flex-wrap: nowrap; flex-shrink: 1; }
.main-nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
}
.main-nav a:hover { color: var(--accent-dark); }

.header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; margin-left: auto; }
.header-phone { font-size: 15px; font-weight: 500; white-space: nowrap; }
.header-actions .btn-primary { padding: 12px 22px; font-size: 14px; }

.burger { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid var(--accent); flex-shrink: 0; }
.burger span { display: block; width: 0; height: 0; position: relative; }
.burger span::before, .burger span::after {
  content: ''; display: block; width: 16px; height: 2px; background: var(--black); position: absolute; left: -8px; transition: 0.2s;
}
.burger span::before { top: -4px; }
.burger span::after { top: 4px; }

/* ============ HERO ============ */
.hero {
  padding: 24px 0 56px;
}
.hero-card {
  position: relative;
  background: #e6e6e6;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 1180 / 720;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}
.hero-overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px;
}
.hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-top h1 {
  font-size: 64px;
  font-weight: 400;
  line-height: 1.08;
  max-width: 470px;
  margin: 0;
}
.hero-top-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 400px;
}
.hero-sub { font-size: 21px; max-width: 400px; margin: 0; font-weight: 400; }
.hero-sub strong { font-weight: 500; }
.hero-actions { display: flex; flex-direction: column; flex-wrap: wrap; gap: 12px; align-items: flex-start; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.tag {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 50px;
  background: var(--white);
  color: var(--black);
}

/* Decorative blobs (simplified substitute for Figma's illustration) */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(43,44,46,0.15);
  pointer-events: none;
}

/* ============ CHECKLIST / WHAT'S INCLUDED ============ */
.included h2 { margin-bottom: 40px; }
.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "text media" "cta media";
  gap: 24px 60px;
  align-items: center;
}
.included-text { grid-area: text; }
.included-media { grid-area: media; }
.included-cta { grid-area: cta; }
.check-list { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-size: 17px; font-weight: 500; color: var(--black); }
.check-list .check-ico {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.check-list .check-ico img { width: 100%; height: 100%; display: block; }
.included-note { font-size: 15px; color: var(--black); margin-bottom: 24px; line-height: 1.6; }
.included-note strong { font-weight: 500; }
.included-media { border-radius: 24px; overflow: hidden; aspect-ratio: 4/3; }
.included-media img { width: 100%; height: 100%; object-fit: cover; }

/* ============ LENS INFO ============ */
.lens-card {
  display: grid;
  grid-template-columns: 388px 1fr;
  gap: 8px;
  margin-top: 28px;
  align-items: stretch;
}
.lens-illustration {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  min-height: 339px;
}
.lens-illustration img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
}
.lens-info {
  background: #e0f3f5;
  border-radius: 25px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.lens-card h3 { font-size: 50px; font-weight: 300; font-family: var(--font-heading); margin: 0 0 12px; line-height: 1.1; }
.lens-meta { display: flex; gap: 8px; margin: 0; flex-wrap: wrap; }
.lens-meta div { font-size: 14px; display: flex; flex-direction: column; gap: 4px; }
.lens-meta b { display: block; font-weight: 500; }
.lens-meta span { background: var(--white); padding: 6px 14px; border-radius: 50px; display: inline-block; font-weight: 500; }
.lens-card p.desc { font-size: 16px; color: var(--black); margin: 0; }
.link-arrow { font-weight: 500; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; text-decoration: underline; }

.lens-tech { margin-top: 64px; }
.lens-tech h2 { max-width: 780px; margin-bottom: 48px; font-size: 30px; }
.lens-diagram { max-width: 100%; margin: 0 auto; }
.lens-diagram-img--desktop { display: block; width: 100%; height: auto; }
.lens-diagram-img--mobile { display: none; }

.quote-block {
  margin-top: 56px;
  width: 75%;
  background: var(--white);
  border: 1px solid #e3e4ec;
  border-radius: 24px;
  padding: 20px;
}
.quote-badge {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #e0f3f5;
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 24px;
}
.quote-icon { flex-shrink: 0; width: 36px; height: 36px; }
.quote-icon img { display: block; width: 100%; height: 100%; }
.quote-text { display: flex; flex-direction: column; gap: 8px; }
.quote-label { font-size: 18px; font-weight: 500; margin: 0; }
.quote-question { font-size: 24px; font-weight: 500; margin: 0; line-height: 1.3; }
.quote-body { display: flex; flex-direction: column; gap: 16px; font-size: 18px; color: #4d4e50; }

#lens { padding-bottom: 40px; }
#lens + .section--tight { padding-top: 28px; }
#lens + .section--tight h2 { font-size: 32px; }

/* ============ BENEFITS (после операции) ============ */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.benefit-card { border-radius: 20px; overflow: hidden; position: relative; aspect-ratio: 4/3; }
.benefit-card img { width: 100%; height: 100%; object-fit: cover; }
.benefit-card span {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--black);
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(20,21,26,0.10);
}

/* ============ CTA FORM SECTION ============ */
.cta-bleed-section { padding: 0; }
.cta-bleed {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 80px 0;
  background: url('images/cta-bg.jpg') center center / cover no-repeat;
}
.cta-bleed-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  max-width: 520px;
  height: auto;
  pointer-events: none;
  z-index: 1;
}
.cta-bleed .container { position: relative; z-index: 2; }
.cta-form {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 64px;
  background: linear-gradient(135deg, #eaf6ea 0%, #eaf3f7 45%, #eef1fb 100%);
  background-image: url('images/deco-bg.png');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}
.cta-form--primary {
  overflow: visible;
  border-radius: 0;
  padding: 0;
  background: none;
}
.cta-form h2 { font-size: 50px; max-width: 560px; margin-bottom: 32px; line-height: 1.1; }
.cta-form--primary h2 { font-size: 50px; max-width: 750px; line-height: 1.1; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: 12px 20px; margin-bottom: 24px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-size: 16px; font-weight: 500; }
.form-field input, .form-field select, .form-field textarea {
  height: 52px;
  border-radius: 50px;
  border: none;
  padding: 0 20px;
  font-size: 16px;
  font-family: inherit;
  background: var(--white);
  width: 100%;
}
.form-field textarea {
  height: auto;
  min-height: 142px;
  border-radius: 24px;
  padding: 16px 20px;
  resize: vertical;
  line-height: 1.4;
}
.form-field textarea::placeholder { color: #b7b7b7; }
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='16' viewBox='0 0 10 16' fill='none'%3E%3Cpath d='M5 0L9 5H1L5 0Z' fill='%23B7B7B7'/%3E%3Cpath d='M5 16L1 11H9L5 16Z' fill='%23B7B7B7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 10px 16px;
  cursor: pointer;
}
.form-field input::placeholder { color: #b7b7b7; }
.form-row-inline { display: flex; gap: 16px; }
.form-row-inline .form-field { flex: 1; }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.consent { display: flex; align-items: center; gap: 10px; font-size: 13px; max-width: 480px; }
.consent input { width: 20px; height: 20px; border-radius: 5px; flex-shrink: 0; }
.consent a { color: inherit; text-decoration: underline; }
.form-note { font-size: 13px; margin-top: 20px; color: #4d4e50; }
.submit-btn { background: var(--white); }
.form-status { margin-top: 14px; font-size: 14px; }
.form-status.success { color: #1c7a4d; }
.form-status.error { color: #c23b3b; }

/* honeypot field — hidden from real visitors, left for bots to fill in */
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }

/* inline field validation */
.field-error-msg { display: none; font-size: 12px; color: #c23b3b; margin-top: -2px; }
.form-field.field-error input,
.form-field.field-error select,
.form-field.field-error textarea { box-shadow: 0 0 0 2px #d96b6b inset; }
.form-field.field-error .field-error-msg { display: block; }
.consent.field-error { color: #c23b3b; }
.consent.field-error input { box-shadow: 0 0 0 2px #d96b6b inset; }

/* ============ SUCCESS MODAL ============ */
.success-modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 20px; }
.success-modal[hidden] { display: none; }
.success-modal-overlay { position: absolute; inset: 0; background: rgba(43, 44, 46, 0.45); }
.success-modal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border-radius: 28px;
  padding: 40px 32px 32px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(43, 44, 46, 0.18);
  animation: successModalIn 0.2s ease;
}
@keyframes successModalIn {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.success-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.success-modal-close:hover { background: #e9ebec; }
.success-modal-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.success-modal-panel h3 { font-size: 24px; font-weight: 500; margin-bottom: 12px; }
.success-modal-panel p { font-size: 15px; color: #4d4e50; line-height: 1.5; }

/* ============ DOCTORS ============ */
.doctors-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 32px; }
.doctor-card { border-radius: 20px; overflow: hidden; background: var(--white); border: 1px solid #ececec; }
.doctor-photo { aspect-ratio: 388/340; overflow: hidden; }
.doctor-photo img { width: 100%; height: 100%; object-fit: cover; }
.doctor-info { padding: 24px; }
.doctor-info h3 { font-family: var(--font-body); font-size: 22px; font-weight: 500; margin-bottom: 8px; line-height: 1.25; }
.doctor-role { font-size: 14px; color: #8a8b8d; font-weight: 400; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid #ececec; }
.doctor-bio { font-size: 15px; color: var(--black); }

/* ============ LENS TYPES ============ */
.lens-types-bleed-section { padding: 0; }
.lens-types-bleed {
  position: relative;
  width: 100%;
  background: #e0f3f5;
  padding: 80px 0;
}
.lens-types-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.lens-type-card { display: flex; flex-direction: column; border: 1px solid #ececec; border-radius: 20px; overflow: hidden; background: var(--white); }
.lens-type-top { padding: 20px 20px 0; flex: 1; }
.lens-type-icon { height: 48px; display: flex; align-items: flex-end; margin-bottom: 16px; }
.lens-type-icon img { height: 100%; width: auto; display: block; }
.lens-type-card h4 { font-family: var(--font-body); font-size: 19px; font-weight: 500; margin-bottom: 10px; }
.lens-type-card p { font-size: 15px; color: #4d4e50; margin-bottom: 20px; }
.lens-type-tags { margin-top: auto; border-top: 1px solid #ececec; padding: 16px 20px; display: flex; flex-direction: column; gap: 8px; }
.lens-type-tags div { font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 8px; color: #4d4e50; }
.lens-type-tags div::before { content: '→'; color: var(--accent-dark); }
.lens-type-tags div.off { color: #c7c8ca; }
.lens-type-tags div.off::before { color: #c7c8ca; }

/* ============ IOL COMPARISON ============ */
.compare-tabs { display: none; }
.compare-tab .tab-ico::before { content: '↗'; }
.compare-tab.active .tab-ico::before { content: '⌄'; }

.zeiss-intro { width: 75%; }
.zeiss-intro p { margin-top: 16px; font-size: 15px; color: #4d4e50; }
.iol-compare { margin-top: 32px; }
.iol-images { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.iol-images img { border-radius: 20px; aspect-ratio: 4/3; object-fit: cover; }
.compare-wrap { width: 100%; }

.compare-headings { display: flex; margin-bottom: 16px; }
.compare-headings > div { font-size: 24px; font-weight: 500; }
.compare-headings > div:nth-child(1) { flex: 0 0 10%; }
.compare-headings > div:nth-child(2) { flex: 0 0 calc(40% + 8px); white-space: nowrap; }
.compare-headings > div:nth-child(3) { flex: 0 0 calc(28% - 8px); }
.compare-headings > div:nth-child(2),
.compare-headings > div:nth-child(3) { padding: 0 16px; }

.compare-card { position: relative; border: 1px solid #ececec; border-radius: 20px; overflow: hidden; background: var(--white); }
.compare-bg-zeiss { position: absolute; top: 0; right: 0; bottom: 0; width: calc(50% - 8px); background: #e0f3f5; }
.compare-row { position: relative; z-index: 1; display: flex; align-items: stretch; }
.compare-label { flex: 0 0 20%; padding: 18px 16px; font-size: 15px; font-weight: 500; border-bottom: 1px solid #ececec; display: flex; align-items: center; }
.compare-value { padding: 18px 16px; display: flex; align-items: center; gap: 10px; font-size: 14px; color: #4d4e50; }
.compare-value.x-mark { flex: 0 0 calc(30% + 8px); border-bottom: 1px solid #ececec; }
.compare-value.check-mark { flex: 0 0 calc(28% - 8px); border-bottom: 1px solid #8ab7bd; }
.compare-row--last .compare-label,
.compare-row--last .compare-value { border-bottom: none; }
.mark-icon { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; margin-top: 1px; }
.x-mark .mark-icon { background: #fbdde2; color: #c23b3b; }
.check-mark .mark-icon { background: #bfe3e8; color: #1c8590; }

.compare-stats-side {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 17%;
  z-index: 1;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.stat-cards { display: flex; flex-direction: column; gap: 12px; }
.stat-card { border-radius: 16px; padding: 14px; display: flex; flex-direction: column; justify-content: center; min-height: 108px; }
.zeiss-cta-btn { margin-top: 32px; }
.stat-card--accent { background: #9fd3da; }
.stat-card:not(.stat-card--accent) { background: var(--white); border: 1px solid #ececec; }
.stat-card b { display: block; font-size: 28px; font-family: var(--font-heading); font-weight: 400; }
.stat-card--accent b { margin-top: 6px; }
.stat-card:not(.stat-card--accent) b { margin-bottom: 6px; }
.stat-card-label { display: block; font-size: 14px; color: #34535a; line-height: 1.3; }
.stat-card:not(.stat-card--accent) .stat-card-label { color: #4d4e50; }
.stat-source { display: block; font-size: 13px; color: #1c8590; text-decoration: underline; }

/* ============ PATIENT JOURNEY ============ */
.journey { margin-top: 32px; }
.journey-intro { max-width: 780px; margin-bottom: 40px; font-size: 15px; color: #4d4e50; }
.journey-tabs { display: none; }
.journey-tab {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 6px 6px 18px;
  border-radius: 50px;
  border: 1px solid #ececec;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  cursor: pointer;
  white-space: nowrap;
}
.journey-tab.active { background: #bfe3e8; border-color: transparent; }
.journey-tab .tab-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e0f3f5;
  flex-shrink: 0;
  font-size: 15px;
  color: var(--black);
}
.journey-tab .tab-ico svg { width: 10px; height: auto; display: block; transition: transform 0.15s ease; }
.journey-tab.active .tab-ico { background: var(--white); }
.journey-tab.active .tab-ico svg { transform: rotate(90deg); }
.journey-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.journey-step { padding-top: 16px; }
.journey-step .step-label { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.step-num {
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  background: #e0f3f5;
  padding: 8px 18px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}
.step-arrow { width: 110px; height: auto; flex-shrink: 1; min-width: 0; }
.journey-step h4 { font-family: var(--font-body); font-size: 20px; font-weight: 500; margin-bottom: 10px; }
.journey-step p { font-size: 15px; color: #4d4e50; }

/* ============ REVIEWS ============ */
.reviews-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.reviews-switch { position: relative; display: inline-flex; align-items: center; gap: 5px; }
.reviews-switch-btn { display: inline-flex; align-items: center; gap: 10px; cursor: pointer; padding: 8px 8px 8px 20px; }
.reviews-switch-google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid #e3e4ec;
  flex-shrink: 0;
}
.reviews-switch-google .google-icon { width: 19px; height: 19px; }
.reviews-switch-chevron { display: none; }
.reviews-switch-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.reviews-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 260px;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: var(--white);
  border: 1px solid #eef2f3;
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  z-index: 20;
}
.reviews-switch.open .reviews-dropdown { display: block; }
.reviews-dropdown li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  border-radius: 8px;
}
.reviews-dropdown li a:hover { background: var(--gray-light); }
.reviews-dropdown li a .ico-circle {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); color: var(--black);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.reviews-bleed { background: #f0f2f4; }
.reviews-grid {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 32px;
  overflow-x: auto;
  padding-left: max(20px, calc((100% - 1180px) / 2 + 20px));
  padding-right: 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-anchor: none;
}
.reviews-grid::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 420px;
  height: 360px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #ececec;
  border-radius: 20px;
  padding: 20px;
  overflow: hidden;
}
.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.review-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--accent); color: var(--black); display: flex; align-items: center; justify-content: center; font-weight: 500; flex-shrink: 0; }
.review-card:nth-child(6n+1) .review-avatar { background: #AEE2C0; }
.review-card:nth-child(6n+2) .review-avatar { background: #CFAFDF; }
.review-card:nth-child(6n+3) .review-avatar { background: #99D7DF; }
.review-card:nth-child(6n+4) .review-avatar { background: #F6AFC2; }
.review-card:nth-child(6n+5) .review-avatar { background: #FFC6AA; }
.review-card:nth-child(6n+6) .review-avatar { background: #FFE8AE; }
.review-name { font-weight: 500; font-size: 15px; }
.review-time { font-size: 12px; color: #8a8b8d; }
.review-rating { margin-left: auto; display: flex; align-items: center; gap: 4px; font-weight: 600; font-size: 24px; color: var(--black); }
.review-star { width: 20px; height: 20px; flex-shrink: 0; }
.review-meta { display: flex; gap: 8px; margin: 8px 0 12px; }
.review-meta span { font-size: 12px; background: var(--gray-light); padding: 4px 10px; border-radius: 50px; }
.review-card p {
  font-size: 14px;
  color: #4d4e50;
  margin-bottom: 12px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
}
.review-link { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; color: var(--accent-dark); text-decoration: none; margin-top: auto; }
.google-icon { width: 18px; height: 18px; flex-shrink: 0; display: inline-block; vertical-align: middle; }
.review-link .google-icon { width: 32px; height: 32px; }
.reviews-switch-btn .google-icon { margin-right: -2px; }
.reviews-controls { display: flex; align-items: center; gap: 24px; margin-top: 24px; }
.reviews-progress { flex: 1; height: 2px; background: #e3e4e6; border-radius: 2px; position: relative; overflow: hidden; }
.reviews-progress-fill { position: absolute; top: 0; left: 0; height: 100%; width: 33%; min-width: 140px; background: var(--black); border-radius: 2px; }
.reviews-arrows { display: flex; gap: 12px; flex-shrink: 0; }
.reviews-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid #e3e4e6; background: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
  transition: background-color 0.15s ease, opacity 0.15s ease;
}
.reviews-arrow:hover { background: var(--gray-light); }
.reviews-arrow:disabled { opacity: 0.35; cursor: default; }
.reviews-arrow:disabled:hover { background: var(--white); }

.reviews-pagination { display: none; align-items: center; justify-content: center; gap: 8px; margin-top: 24px; }
.reviews-page-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid #e3e4e6; background: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
  transition: background-color 0.15s ease, opacity 0.15s ease;
}
.reviews-page-arrow:hover { background: var(--gray-light); }
.reviews-page-arrow:disabled { opacity: 0.35; cursor: default; }
.reviews-page-arrow:disabled:hover { background: var(--white); }
.reviews-pages { display: flex; align-items: center; gap: 4px; }
.reviews-page-btn {
  min-width: 36px; height: 36px; padding: 0 4px;
  border-radius: 50%; border: none; background: none;
  font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--black);
  cursor: pointer;
}
.reviews-page-btn.active { background: var(--accent); }
.reviews-page-ellipsis { font-size: 14px; color: #8a8b8d; padding: 0 2px; }

/* ============ FAQ ============ */
.faq-wrap { display: grid; grid-template-columns: 340px 1fr; gap: 40px; margin-top: 32px; align-items: start; }
.faq-media { border-radius: 20px; overflow: hidden; aspect-ratio: 3/4; }
.faq-media img { width: 100%; height: 100%; object-fit: cover; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid #ececec;
  border-radius: 28px;
  background: var(--white);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.faq-item.open { background: #e0f3f5; border-color: transparent; }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 14px 26px;
  font-size: 20px; font-weight: 500;
  font-family: inherit;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black);
}
.faq-question .chev {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}
.faq-item.open .faq-question .chev { background: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-answer p { padding: 0 26px 24px; font-size: 15px; color: #4d4e50; line-height: 1.6; }
.faq-item.open .faq-answer { max-height: 600px; }

/* ============ SECOND FORM ============ */
.cta-bleed--secondary {
  padding: 70px 0;
  background: linear-gradient(135deg, #eef3fb 0%, #eaf6ea 100%);
  background-image: url('images/deco-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.cta-form.cta-form--secondary {
  overflow: visible;
  border-radius: 0;
  padding: 0;
  background: none;
}
.cta-form--secondary h2 { max-width: 620px; }
.form-grid--secondary { display: flex; align-items: stretch; gap: 20px; }
.form-grid--secondary .form-col { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.form-grid--secondary .form-field--tall { flex: 1; display: flex; flex-direction: column; }
.form-grid--secondary .form-field--tall textarea { flex: 1; min-height: 0; height: auto; }
textarea {
  border: none; border-radius: 24px; padding: 16px 20px; font-family: inherit; font-size: 16px;
  background: var(--white); resize: vertical; min-height: 90px; width: 100%;
}

/* ============ CONTACTS / FOOTER ============ */
.contacts-wrap { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; margin-top: 40px; }
.contacts-phone { margin-bottom: 8px; }
.contacts-phone a { color: var(--black); font-size: 33px; font-weight: 400; text-decoration: none; }
.contacts-phone a:hover { text-decoration: underline; }
.contacts-hours { font-size: 19px; color: #4d4e50; margin-bottom: 16px; line-height: 1.4; }
.contacts-email { margin-top: 24px; }
.contacts-email-label { font-size: 19px; color: #4d4e50; }
.contacts-email a { font-size: 25px; font-weight: 400; color: var(--black); text-decoration: none; }
.contacts-email a:hover { text-decoration: underline; }
.contacts-license { margin-top: 16px; font-size: 12px; color: #8a8b8d; max-width: 280px; line-height: 1.4; }
.social-row { display: flex; gap: 10px; }
.social-icon {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: filter 0.15s ease;
}
.social-icon:hover { filter: brightness(0.94); }
.social-icon--messenger { background: var(--accent); }
.social-icon--instagram { background: #ffc6aa; }
.social-icon--facebook { background: #a9c9ea; }
.contacts-centers-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.contacts-centers-head p { font-weight: 500; }
.contacts-centers-logo { height: 30px; width: auto; }
.centers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.center-item {
  position: relative;
  display: block;
  padding: 18px 90px 18px 20px;
  background: #e0f3f5;
  border-radius: 20px;
  color: var(--black);
  text-decoration: none;
  transition: background-color 0.15s ease;
}
.center-item:hover { background: #cdebef; }
.center-item .addr { font-weight: 500; margin-bottom: 4px; }
.center-item .hours { font-size: 13px; color: #4d4e50; line-height: 1.4; }
.center-item .city {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  font-size: 12px;
  background: var(--white);
  padding: 5px 12px;
  border-radius: 50px;
  white-space: nowrap;
}

.site-footer { border-top: 1px solid #ececec; padding: 32px 0; margin-top: 20px; }
.site-footer .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-copy { font-size: 13px; color: #8a8b8d; }
.footer-legal { font-size: 12px; color: #8a8b8d; }
.footer-legal a { color: #8a8b8d; text-decoration: underline; }
.footer-legal a:hover { color: var(--black); }
.footer-social { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 500; }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .included-grid { grid-template-columns: 1fr; grid-template-areas: "text" "media" "cta"; gap: 16px; }
  .zeiss-cta-btn { margin-top: 16px; }
  .hero-card {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    background: transparent;
    border-radius: 0;
    overflow: visible;
  }
  .hero-bg { position: static; width: 100%; height: auto; aspect-ratio: 1180 / 720; border-radius: 24px; }
  .hero-overlay { order: -1; padding: 8px 0 24px; gap: 20px; }
  .hero-top { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero-top h1 { max-width: none; }
  .hero-top-right { max-width: none; }
  .hero-sub { font-size: 22px; max-width: none; }
  .hero-tags { order: -1; margin-top: 0; margin-bottom: 4px; }
  .hero-tags .tag { background: #e0f3f5; }
  .lens-card { grid-template-columns: 1fr; }
  .lens-illustration { min-height: 260px; }
  .benefits-grid,
  .doctors-grid,
  .journey-steps { grid-template-columns: repeat(2, 1fr); }
  .lens-types-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-wrap { grid-template-columns: 1fr; }
  .faq-question { padding: 12px 18px; font-size: 17px; gap: 12px; }
  .faq-answer p { padding: 0 18px 20px; }
  .contacts-wrap { grid-template-columns: 1fr; }
  .centers-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .container { padding: 0 10px; }
  .section { padding: 33px 0; }
  .zeiss-intro { width: 100%; }
  .compare-headings { display: none; }
  .compare-bg-zeiss { display: none; }
  .compare-card { border-radius: 16px; background: var(--white); }
  .iol-compare.active-zeiss .compare-card { background: #e0f3f5; }
  .compare-row { flex-direction: row; align-items: flex-start; gap: 8px; padding: 14px 16px; }
  .compare-label { flex: 0 0 45%; width: auto; padding: 0; border-bottom: none; }
  .compare-value { flex: 1; width: auto; padding: 0; }
  .compare-value.x-mark, .compare-value.check-mark { flex: 1; border-bottom: none; }
  .compare-row:not(.compare-row--last) { border-bottom: 1px solid #ececec; }
  .iol-compare.active-zeiss .compare-row:not(.compare-row--last) { border-bottom-color: #8ab7bd; }
  .compare-stats-side { position: static; width: 100%; padding: 16px; }

  .compare-tabs { display: flex; gap: 8px; margin-bottom: 20px; }
  .compare-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 10px;
    border-radius: 50px;
    border: 1px solid #ececec;
    background: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    cursor: pointer;
  }
  .compare-tab.active { background: #bfe3e8; border-color: transparent; }
  .compare-tab .tab-ico { display: none; }

  .iol-img-ultrasound, .iol-img-zeiss { display: none; }
  .iol-compare.active-zeiss .iol-img-zeiss { display: block; }
  .iol-compare.active-ultrasound .iol-img-ultrasound { display: block; }

  .compare-value.x-mark, .compare-value.check-mark { display: none; }
  .iol-compare.active-zeiss .compare-value.check-mark { display: flex; }
  .iol-compare.active-ultrasound .compare-value.x-mark { display: flex; }

  .iol-compare.active-ultrasound .compare-stats-side { display: none; }
  .lens-types-bleed { padding: 33px 0; }
  .hero { padding-bottom: 46px; }
  h2 { font-size: 30px; }
  .hero-top h1 { font-size: 47px; line-height: 0.96; }
  .hero-sub { font-size: 24px; }
  .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    order: 3;
    gap: 4px;
    padding-top: 16px;
    border-top: 1px solid #eef2f3;
    margin-top: 16px;
  }
  .main-nav.nav-open { display: flex; }
  .main-nav a { padding: 10px 0; }
  .header-phone { display: none; }
  .header-actions { gap: 8px; }
  .header-actions .btn-primary { padding: 10px 16px; font-size: 13px; }
  .logo img { height: 26px; }
  .burger { display: flex; width: 34px; height: 34px; }
  .site-header .container { flex-wrap: wrap; gap: 6px; padding: 0 14px; }
  .lens-illustration { min-height: 0; height: auto; }
  .lens-illustration img { position: static; width: 100%; height: auto; object-fit: contain; }
  .lens-info { padding: 24px; gap: 12px; }
  .lens-card h3 { font-size: 30px; margin-bottom: 0; line-height: 1.15; }
  .lens-meta { gap: 4px; }
  .lens-meta div { font-size: 15px; }
  .lens-meta span { font-size: 12px; padding: 5px 12px; }
  .lens-card p.desc { font-size: 15px; line-height: 1.4; }
  .quote-block { width: 100%; margin-top: 41px; }
  .quote-badge { flex-direction: column; align-items: flex-start; gap: 12px; padding: 20px; }
  .quote-label { font-size: 16px; }
  .quote-question { font-size: 19px; }
  .quote-body { font-size: 16px; }
  #lens + .section--tight h2 { font-size: 30px; }
  .benefits-grid,
  .doctors-grid,
  .journey-steps,
  .lens-types-grid,
  .form-grid,
  .form-row-inline,
  .iol-images { grid-template-columns: 1fr; margin-bottom: 16px; }
  .form-grid--secondary { flex-direction: column; }
  .form-field--tall textarea { min-height: 120px; }
  .stat-cards { flex-direction: row; }
  .reviews-grid { padding-left: 10px; padding-right: 10px; gap: 12px; }
  .review-card { flex: 0 0 85%; }

  .reviews-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .reviews-switch { width: 100%; gap: 10px; }
  .reviews-switch-btn {
    flex: 1;
    min-width: 0;
    justify-content: flex-start;
    gap: 12px;
    padding: 6px 6px 6px 6px;
    border-radius: 50px;
    font-size: 15px;
  }
  .reviews-switch-google {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-card);
    border: none;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 0;
  }
  .reviews-switch-google .google-icon { width: 24px; height: 24px; }
  .reviews-switch-label { flex: 1; text-align: left; }
  .reviews-switch-chevron { display: none; }
  .reviews-switch-arrow {
    display: flex;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    margin-right: 4px;
  }

  .journey-tabs { display: flex; gap: 8px; margin-bottom: 20px; }
  .journey-step { display: none; border-top: none; padding-top: 0; }
  .journey-step.active-step { display: block; }
  .journey-step .step-label { display: none; }
  .journey-step h4 { font-size: 22px; }

  /* tighter spacing between blocks on mobile */
  .lens-tech { margin-top: 49px; }
  .iol-compare { margin-top: 17px; }
  .doctors-grid { margin-top: 17px; }
  .benefits-grid { margin-top: 17px; }
  .reviews-grid { margin-top: 17px; }
  .faq-wrap { margin-top: 17px; }
  .contacts-wrap { margin-top: 25px; }
  .lens-types-grid { margin-top: 25px; }
  .site-footer { margin-top: 12px; padding: 17px 0; }
  .stat-card { flex: 1; }
  .cta-form { padding: 32px 20px; border-radius: 20px; }
  .cta-form h2 { font-size: 30px; }
  .cta-bleed { background-image: url('images/cta-bg-mobile.jpg'); padding: 17px 0; }
  .cta-bleed-pattern { display: none; }
  .cta-bleed--secondary { background-image: url('images/deco-bg.png'); padding: 30px 0; }
  .cta-form--primary { padding: 0; border-radius: 0; overflow: visible; }
  .cta-form--primary h2 { font-size: 30px; max-width: none; }
  .cta-form--secondary h2 { font-size: 26px; max-width: none; }
  .lens-diagram-img--desktop { display: none; }
  .lens-diagram-img--mobile { display: block; width: 100%; max-width: 100%; height: auto; margin: 0 auto; }
  .btn { white-space: normal; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    position: relative;
    font-size: 15px;
    padding: 15px 48px;
    text-align: center;
  }
  .hero-actions .btn .ico-circle {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0;
  }
  .btn-primary:not(.header-cta) {
    display: flex;
    width: 100%;
    justify-content: center;
    position: relative;
    font-size: 15px;
    padding: 15px 48px;
    text-align: center;
  }
  .btn-primary:not(.header-cta) .ico-circle {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0;
  }
  .hero-tags {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
  }
  .hero-tags .tag {
    background: #e0f3f5;
    text-align: center;
    padding: 6px 2px;
    font-size: 9.5px;
    letter-spacing: -0.01em;
  }
  .form-footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 340px) {
  .quote-break { display: none; }
  .quote-question { font-size: 17px; }
}

/* ============ LEGAL PAGES (Privacy Policy, etc.) ============ */
.legal-page { padding: 60px 0 80px; }
.legal-page .container { max-width: 760px; }
.legal-page h1 { font-size: 40px; font-weight: 400; margin-bottom: 8px; line-height: 1.15; }
.legal-page .legal-updated { font-size: 14px; color: #8a8b8d; margin-bottom: 40px; }
.legal-page h2 { font-size: 22px; font-weight: 500; margin: 40px 0 14px; }
.legal-page h2:first-of-type { margin-top: 0; }
.legal-page p { font-size: 16px; line-height: 1.7; color: var(--black); margin-bottom: 14px; }
.legal-page ul { margin: 0 0 14px; padding-left: 22px; }
.legal-page li { font-size: 16px; line-height: 1.7; margin-bottom: 6px; }
.legal-page a { color: var(--accent-dark); }
.legal-page .legal-back { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; margin-bottom: 32px; color: var(--black); }
.legal-page strong { font-weight: 600; }

@media (max-width: 680px) {
  .legal-page { padding: 32px 0 48px; }
  .legal-page h1 { font-size: 28px; }
  .legal-page h2 { font-size: 19px; margin: 28px 0 10px; }
  .legal-page p, .legal-page li { font-size: 15px; }
}

/* ============ COOKIE CONSENT BANNER ============ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: var(--white);
  box-shadow: 0 -8px 30px rgba(43, 44, 46, 0.14);
  padding: 20px 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-text {
  flex: 1 1 480px;
  max-width: 720px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--black);
  margin: 0;
}
.cookie-banner-text a { color: var(--black); text-decoration: underline; }
.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--black);
  background: transparent;
  color: var(--black);
  transition: background-color 0.15s ease, color 0.15s ease;
}
.cookie-btn--decline:hover { background: var(--gray-light); }
.cookie-btn--accept {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.cookie-btn--accept:hover { background: #1b1c1d; }

.cookie-settings-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
}

@media (max-width: 680px) {
  .cookie-banner { padding: 16px; flex-direction: column; align-items: stretch; text-align: left; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}
