/* ═══════════════════════════════════════════════════════
   DR. STUTI PATHANIA — Personal Dentist Website
   Branding: dark green #0C1B11 / lime #C5E040
   Fonts: Cormorant Garamond + DM Sans
═══════════════════════════════════════════════════════ */

/* ─── RESET & VARIABLES ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:              #0C1B11;
  --bg-2:            #0f2016;
  --bg-surface:      rgba(255,255,255,0.035);
  --bg-hover:        rgba(255,255,255,0.065);
  --accent:          #C5E040;
  --accent-dim:      rgba(197,224,64,0.12);
  --accent-glow:     rgba(197,224,64,0.32);
  --text:            #F0EDE6;
  --text-muted:      rgba(240,237,230,0.55);
  --border:          rgba(240,237,230,0.1);
  --border-accent:   rgba(197,224,64,0.28);
  --font-serif:      'Cormorant Garamond', Georgia, serif;
  --font-sans:       'DM Sans', system-ui, sans-serif;
  --space-section:   clamp(80px, 10vw, 130px);
  --radius:          16px;
  --radius-sm:       10px;
  --nav-h:           72px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ─── UTILITIES ─── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text);
}
.section-title em { font-style: italic; color: var(--accent); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent);
  color: #0a1208;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.22s, box-shadow 0.22s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px var(--accent-glow); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: 100px;
  text-decoration: none;
  transition: border-color 0.22s, color 0.22s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease var(--reveal-delay, 0ms), transform 0.65s ease var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(12,27,17,0.93);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}
.logo {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}
.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.is-active { color: var(--accent); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* ─── LANGUAGE TOGGLE ─── */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 3px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 11px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.lang-toggle:hover { border-color: var(--border-accent); background: var(--bg-hover); }
.lang-opt { transition: color 0.2s; cursor: pointer; }
.lang-opt.active { color: var(--accent); }
.lang-sep { opacity: 0.3; font-weight: 300; }

.nav-cta {
  padding: 9px 20px;
  background: var(--accent);
  color: #0a1208;
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px var(--accent-glow); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ─── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.ambient-orb--1 {
  width: 550px; height: 550px;
  background: rgba(197,224,64,0.06);
  top: -120px; right: -80px;
}
.ambient-orb--2 {
  width: 400px; height: 400px;
  background: rgba(197,224,64,0.04);
  bottom: -60px; left: -100px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
}

@keyframes ring-spin { to { transform: rotate(360deg); } }

.hero-title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.0;
  margin-bottom: 14px;
}
.hero-title__sub  { font-size: clamp(2.2rem, 4vw, 3.6rem); color: var(--text); }
.hero-title__main { font-size: clamp(3rem, 5.5vw, 5rem); }
.hero-title__main em {
  font-style: italic;
  background: linear-gradient(90deg, var(--accent) 0%, #e8f878 45%, var(--accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer-text 5s linear infinite;
}
@keyframes shimmer-text {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.hero-sub {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.hero-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; }
.stat-val {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 5px;
  white-space: nowrap;
}
.stat-divider { width: 1px; height: 38px; background: var(--border); }

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-wrap {
  position: relative;
  width: min(420px, 90%);
  aspect-ratio: 3/4;
}
.hero-img-ring {
  position: absolute;
  inset: -16px;
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  border: 1px solid var(--border-accent);
  animation: ring-spin 22s linear infinite;
  pointer-events: none;
}
@keyframes ring-spin { to { transform: rotate(360deg); } }

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  display: block;
}

.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(12,27,17,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.hero-float-card--1 {
  top: 10%;
  left: -6%;
  animation: float-y 4s ease-in-out infinite;
}
.hero-float-card--2 {
  bottom: 16%;
  right: -6%;
  animation: float-y 4s ease-in-out infinite;
  animation-delay: 1.6s;
}
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.float-icon { font-size: 22px; flex-shrink: 0; }
.float-title { display: block; font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; color: var(--text); }
.float-label { display: block; font-size: 11px; color: var(--text-muted); white-space: nowrap; margin-top: 2px; }

/* ─── ABOUT ─── */
.about { padding: var(--space-section) 0; background: var(--bg-2); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-text .section-title { margin-bottom: 28px; }

.about-lead {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 20px;
}
.about-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 16px;
}
.about-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.lang-tag {
  padding: 6px 14px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-top: 52px; /* align with title visually */
}
.highlight-card {
  padding: 28px 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s, transform 0.25s;
}
.highlight-card:hover { border-color: var(--border-accent); transform: translateY(-4px); }
.hl-icon { font-size: 28px; margin-bottom: 14px; }
.highlight-card h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.highlight-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ─── SERVICES ─── */
.services { padding: var(--space-section) 0; }
.services-header { text-align: center; margin-bottom: 64px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  padding: 36px 28px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.svc-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.3), 0 0 32px var(--accent-glow);
}
.svc-icon {
  width: 50px; height: 50px;
  color: var(--accent);
  margin-bottom: 20px;
}
.svc-icon svg { width: 100%; height: 100%; }
.svc-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.25;
}
.svc-card p { font-size: 14px; color: var(--text-muted); line-height: 1.72; }

/* ─── EXPERIENCE TIMELINE ─── */
.experience { padding: var(--space-section) 0; background: var(--bg-2); }
.exp-header { text-align: center; margin-bottom: 72px; }

.timeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.tl-group-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 36px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.tl-item {
  position: relative;
  padding-left: 34px;
  padding-bottom: 40px;
}
.tl-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 18px;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.tl-dot {
  position: absolute;
  left: 0; top: 5px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 2px solid var(--accent);
}
.tl-dot--edu  { border-color: rgba(240,237,230,0.35); }
.tl-dot--cert {
  border-color: var(--accent);
  background: var(--accent-dim);
  width: 13px; height: 13px;
  left: 2px; top: 7px;
}

.tl-date {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.tl-date--edu { color: var(--text-muted); }

.tl-card {
  padding: 20px 22px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.22s;
}
.tl-card:hover { border-color: var(--border-accent); }
.tl-card h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.tl-place {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: 0.015em;
}
.tl-place--edu { color: var(--text-muted); }

.tl-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.tl-list li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.55;
}
.tl-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--accent);
}
.tl-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── CONTACT ─── */
.contact { padding: var(--space-section) 0; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-intro {
  font-size: 15px;
  color: var(--text-muted);
  margin: 20px 0 36px;
  line-height: 1.75;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 36px;
}
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
a.contact-detail-item:hover { color: var(--accent); }
.detail-icon { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--text-muted); }
.detail-text { display: flex; flex-direction: column; gap: 4px; }
.detail-text strong {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.detail-text span { font-size: 14px; color: var(--text); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }

/* Map */
.contact-map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 480px;
  border: 1px solid var(--border);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(30%) contrast(1.05);
}
.map-label {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(12,27,17,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  pointer-events: none;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C5E040' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}
.form-group select option { background: #0f2016; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { resize: vertical; min-height: 100px; }

.btn-submit {
  padding: 16px 34px;
  background: var(--accent);
  color: #0a1208;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.22s, box-shadow 0.22s;
  align-self: flex-start;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px var(--accent-glow); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; box-shadow: none; }
.form-note { font-size: 12px; color: var(--text-muted); }

/* ─── FOOTER ─── */
.footer { border-top: 1px solid var(--border); padding-top: 60px; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo { font-size: 12px; margin-bottom: 12px; }
.footer-tagline { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.social-icon:hover { border-color: var(--accent); color: var(--accent); }

.footer-links-group h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer-links-group ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links-group a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links-group a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}

/* Footer button links (Impressum / Datenschutz) */
.footer-link-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  font-family: var(--font-sans);
  transition: color 0.2s;
}
.footer-link-btn:hover { color: var(--text); }

/* ─── MAP CONSENT OVERLAY ─── */
.map-consent {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-2);
  z-index: 2;
  border-radius: var(--radius);
}
.map-consent-inner {
  text-align: center;
  padding: 40px 32px;
  max-width: 360px;
}
.map-consent-icon { font-size: 40px; margin-bottom: 18px; }
.map-consent-inner p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: 24px;
}
.map-consent-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.map-consent-actions .btn-primary { border: none; cursor: pointer; }
.map-privacy-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.map-privacy-btn:hover { border-color: var(--border-accent); color: var(--text); }

/* ─── COOKIE NOTICE ─── */
.cookie-notice {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(12,27,17,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 16px 0;
}
.cookie-notice-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  min-width: 240px;
}
.cookie-text strong { color: var(--text); }
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-btn {
  border: none;
  border-radius: 100px;
  padding: 9px 22px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
}
.cookie-btn--ok {
  background: var(--accent);
  color: #0a1208;
}
.cookie-btn--ok:hover { transform: translateY(-1px); box-shadow: 0 4px 14px var(--accent-glow); }
.cookie-btn--link {
  background: var(--bg-surface);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.cookie-btn--link:hover { border-color: var(--border-accent); color: var(--text); }

/* ─── MODALS ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}
.modal-overlay[hidden] { display: none; }

.modal-box {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 100%;
  max-width: 680px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 32px 80px rgba(0,0,0,0.55);
  animation: modal-in 0.22s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 18px; right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.modal-close:hover { color: var(--text); background: var(--bg-surface); }

.modal-box h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--text);
  padding: 32px 32px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.modal-body {
  overflow-y: auto;
  padding: 28px 32px 36px;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.modal-body::-webkit-scrollbar { width: 5px; }
.modal-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }

.modal-section { margin-bottom: 28px; }
.modal-section:last-child { margin-bottom: 0; }
.modal-section h3 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.modal-section p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 10px;
}
.modal-section p:last-child { margin-bottom: 0; }
.modal-section a {
  color: var(--accent);
  text-decoration: none;
}
.modal-section a:hover { text-decoration: underline; }
.modal-section strong { color: var(--text); }
.footer-bottom p { font-size: 12px; color: var(--text-muted); }

/* ─── RESPONSIVE ─── */

/* ── scroll-margin so fixed nav never hides section headings ── */
#about, #services, #experience, #anxiety, #testimonials, #faq, #contact {
  scroll-margin-top: calc(var(--nav-h) + 12px);
}

/* ── tablet (≤1100px) ── */
@media (max-width: 1100px) {
  .hero-inner       { grid-template-columns: 1fr; text-align: center; }
  .hero-content     { order: 2; }
  .hero-visual      { order: 1; max-width: 300px; margin: 0 auto; }
  .hero-actions     { justify-content: center; }
  .hero-stats       { justify-content: center; }
  .hero-desc        { margin: 0 auto 36px; max-width: 520px; }
  .about-inner      { grid-template-columns: 1fr; gap: 48px; }
  .about-highlights { padding-top: 0; }
  .timeline         { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner     { grid-template-columns: 1fr 1fr; }
}

/* ── mobile (≤768px) ── */
@media (max-width: 768px) {
  /* Nav */
  .nav-right { margin-left: auto; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(12,27,17,0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 28px 24px 36px;
    gap: 0;
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }
  .nav-links.open li { border-bottom: 1px solid var(--border); }
  .nav-links.open li:last-child { border-bottom: none; }
  .nav-links.open a {
    display: block;
    padding: 16px 4px;
    font-size: 17px;
    font-weight: 500;
    color: var(--text);
  }
  .nav-links.open a.is-active { color: var(--accent); }
  /* hide desktop CTA in nav — mobile has sticky CTA */
  .nav-cta  { display: none; }
  .hamburger { display: flex; }
  .nav-back  { display: none; }

  /* Hero */
  .hero { min-height: auto; padding-top: calc(var(--nav-h) + 40px); padding-bottom: 60px; }
  .hero-inner { gap: 32px; }
  .hero-visual { max-width: 240px; }

  /* About */
  .about-highlights { grid-template-columns: 1fr; }
  .about-langs { justify-content: center; }

  /* Services */
  .services-grid { grid-template-columns: 1fr 1fr; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-map   { height: 280px; }
  .form-row      { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ── small mobile (≤520px) ── */
@media (max-width: 520px) {
  :root { --nav-h: 60px; }

  /* smaller section spacing */
  :root { --space-section: clamp(56px, 12vw, 100px); }

  .hero-float-card { display: none; }
  .footer-inner    { grid-template-columns: 1fr; }

  /* hero text tightening */
  .hero-inner      { gap: 24px; }
  .hero-visual     { max-width: 200px; }
  .hero-stats      { gap: 16px; }
  .stat-val        { font-size: 1.7rem; }

  /* about */
  .about-highlights { grid-template-columns: 1fr; }
  .highlight-card   { padding: 22px 18px; }

  /* anxiety section */
  .anxiety-inner  { padding: 24px 20px; }

  /* contact */
  .contact-map { height: 240px; }

  /* section title smaller on tiny screens */
  .section-title { font-size: clamp(2rem, 7vw, 2.8rem); }

  /* footer */
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ─── MOBILE STICKY CTA ─── */
.mobile-cta {
  display: none; /* hidden on desktop */
}
@media (max-width: 768px) {
  .mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 14px 28px;
    background: var(--accent);
    color: #0a1208;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    border-radius: 100px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 24px var(--accent-glow);
    z-index: 90;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .mobile-cta:hover { transform: translateX(-50%) translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 32px var(--accent-glow); }
  /* hide CTA when contact section is in view — avoids overlap */
  .mobile-cta.is-hidden { opacity: 0; pointer-events: none; }
}

/* ─── SCROLL PROGRESS BAR ─── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  z-index: 500;
  box-shadow: 0 0 8px var(--accent-glow);
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ─── STAGGERED REVEAL DELAYS ─── */
.services-grid .svc-card:nth-child(1) { --reveal-delay: 0ms; }
.services-grid .svc-card:nth-child(2) { --reveal-delay: 90ms; }
.services-grid .svc-card:nth-child(3) { --reveal-delay: 180ms; }
.services-grid .svc-card:nth-child(4) { --reveal-delay: 60ms; }
.services-grid .svc-card:nth-child(5) { --reveal-delay: 150ms; }
.services-grid .svc-card:nth-child(6) { --reveal-delay: 240ms; }

.about-highlights .highlight-card:nth-child(1) { --reveal-delay: 0ms; }
.about-highlights .highlight-card:nth-child(2) { --reveal-delay: 100ms; }
.about-highlights .highlight-card:nth-child(3) { --reveal-delay: 200ms; }
.about-highlights .highlight-card:nth-child(4) { --reveal-delay: 300ms; }

.timeline .tl-item:nth-child(1) { --reveal-delay: 0ms; }
.timeline .tl-item:nth-child(2) { --reveal-delay: 80ms; }
.timeline .tl-item:nth-child(3) { --reveal-delay: 160ms; }
.timeline .tl-item:nth-child(4) { --reveal-delay: 240ms; }
.timeline .tl-item:nth-child(5) { --reveal-delay: 320ms; }

/* ─── ANXIOUS PATIENTS ─── */
.anxiety { padding: var(--space-section) 0; }
.anxiety-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px;
  background: var(--bg-surface);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
}
.anxiety-lead {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.78;
  margin: 20px 0 28px;
}
.anxiety-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.anxiety-tag {
  padding: 6px 14px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
}
.anxiety-quote {
  text-align: center;
  padding: 20px 40px;
}
.anxiety-quote-mark {
  display: block;
  font-family: var(--font-serif);
  font-size: 8rem;
  color: var(--accent);
  line-height: 0.6;
  margin-bottom: 24px;
  opacity: 0.35;
}
.anxiety-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 16px;
}
.anxiety-quote-attr {
  font-size: 13px;
  color: var(--text-muted);
}

/* ─── TESTIMONIALS ─── */
.testimonials { padding: var(--space-section) 0; background: var(--bg-2); overflow: hidden; }
.testimonials-header { text-align: center; margin-bottom: 64px; }

/* marquee wrapper — fades edges */
.testimonials-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 9%, black 91%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 9%, black 91%, transparent 100%);
}
/* scrolling track */
.testimonials-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: testimonials-scroll 38s linear infinite;
  touch-action: pan-y;
}
.testimonials-track:hover { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .testimonials-track { animation: none; }
}
@keyframes testimonials-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-7 * (320px + 20px))); }
}

.testimonial-card {
  flex: 0 0 320px;
  padding: 28px 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.25s, transform 0.25s;
  cursor: default;
}
.testimonial-card:hover { border-color: var(--border-accent); transform: translateY(-4px); }
.testimonial-stars { color: var(--accent); font-size: 15px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: auto;
}
.testimonial-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.testimonial-source {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ─── FAQ ─── */
.faq { padding: var(--space-section) 0; }
.faq-header { text-align: center; margin-bottom: 64px; }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item.is-open { border-color: var(--border-accent); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-chevron {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border: 1.5px solid var(--text-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: transform 0.3s, border-color 0.25s, color 0.25s;
}
.faq-item.is-open .faq-chevron { transform: rotate(180deg); border-color: var(--accent); color: var(--accent); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}
.faq-answer.is-open { grid-template-rows: 1fr; }
.faq-answer > p {
  overflow: hidden;
  padding: 0 24px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.78;
  transition: padding 0.32s ease;
}
.faq-answer.is-open > p { padding: 0 24px 22px; }

/* ─── NEW SECTIONS RESPONSIVE ─── */
@media (max-width: 1100px) {
  .anxiety-inner { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
}
@media (max-width: 768px) {
  .anxiety-inner { padding: 32px; }
  .testimonial-card { flex: 0 0 280px; }
  @keyframes testimonials-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(-7 * (280px + 20px))); }
  }
}
@media (max-width: 520px) {
  .anxiety-quote { display: none; }
  .testimonial-card { flex: 0 0 260px; }
}

/* ─── EXPERIENCE MOBILE TABS ─── */
.exp-tabs { display: none; } /* desktop: tabs hidden, both cols show */

@media (max-width: 768px) {
  .exp-tabs {
    display: flex;
    margin-bottom: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
  }
  .exp-tab {
    flex: 1;
    padding: 12px 8px;
    background: none;
    border: none;
    border-right: 1px solid var(--border);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }
  .exp-tab:last-child { border-right: none; }
  .exp-tab.is-active  { background: var(--accent-dim); color: var(--accent); }
  /* hide inactive group */
  .tl-group { display: none; }
  .tl-group.is-active { display: block; }
}

/* ─── ABOUT READ-MORE ─── */
.about-read-more { display: none; } /* desktop: always expanded */
.read-less-text  { display: none; }

@media (max-width: 768px) {
  .about-body-extra { display: none; }
  .about-body-extra.is-open { display: block; }

  .about-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 14px 0 20px;
    padding: 8px 16px;
    background: none;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
  }
  .about-read-more:hover { color: var(--accent); border-color: var(--border-accent); }
  .about-read-more svg   { transition: transform 0.3s; flex-shrink: 0; }
  .about-read-more.is-open svg { transform: rotate(180deg); }
  /* toggle label spans */
  .about-read-more .read-more-text { display: inline; }
  .about-read-more .read-less-text { display: none; }
  .about-read-more.is-open .read-more-text { display: none; }
  .about-read-more.is-open .read-less-text { display: inline; }
}

/* ─── SERVICES 2-COL ON SMALL MOBILE ─── */
@media (max-width: 520px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .svc-card { padding: 22px 16px; }
  .svc-card h3 { font-size: 1.1rem; }
  .svc-icon { width: 40px; height: 40px; margin-bottom: 14px; }
}
