/* ============================================================
   Dr. Bánkuti Zsuzsanna – Neurológus Magánrendelő
   Design: Premium Healthcare, inspired by drrose.hu
   Color palette: Gold (#B8960C / #C9A84C), Dark Navy, White
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --gold:        #C9A84C;
  --gold-dark:   #A8892E;
  --gold-light:  #E8D5A3;
  --gold-bg:     #FAF7F0;
  --navy:        #1A2332;
  --navy-mid:    #2C3E50;
  --text:        #3D3D3D;
  --text-light:  #6B7280;
  --white:       #FFFFFF;
  --off-white:   #F9F8F6;
  --border:      #E5E0D5;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.15);
  --radius:      4px;
  --radius-lg:   8px;
  --transition:  0.3s ease;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Open Sans', system-ui, sans-serif;
  --max-width:   1160px;
  --container-px: clamp(1.5rem, 5vw, 4rem);
}

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

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

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ---------- Sections ---------- */
.section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

/* ---------- Typography Helpers ---------- */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto;
}

.section-header.centered {
  text-align: center;
  margin-bottom: 3.5rem;
}

.gold-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.75rem;
}
.gold-divider.centered { margin: 0 auto 1.75rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(180, 140, 50, 0.35);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold-dark);
  border-color: var(--gold);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 1.5rem 0;
}
.site-header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 0.85rem 0;
}
.site-header.scrolled .logo-name,
.site-header.scrolled .logo-sub { color: var(--navy); }
.site-header.scrolled .main-nav a { color: var(--text); }
.site-header.scrolled .main-nav a:hover { color: var(--gold-dark); }
.site-header.scrolled .hamburger span { background: var(--navy); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
  line-height: 1.2;
}
.logo-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: block;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
}
.logo-sub {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}

.main-nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
  letter-spacing: 0.02em;
}
.main-nav a:hover { color: var(--gold-light); }

.nav-cta {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  color: var(--gold-light) !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--white) !important;
}
.site-header.scrolled .nav-cta {
  border-color: var(--gold);
  color: var(--gold-dark) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.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 {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1A2332 0%, #2C3E50 40%, #3D5166 100%);
  overflow: hidden;
}

/* Decorative background pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201, 168, 76, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,35,50,0.85) 0%, rgba(26,35,50,0.4) 100%);
}

/* Two-col hero layout */
.hero-two-col {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 5rem;
}

.hero-content {
  max-width: 620px;
}

/* Hero image placeholder */
.hero-image-placeholder {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-image-placeholder img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-image-ph-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.hero-image-ph-inner svg { width: 56px; height: 56px; }
.hero-image-ph-inner p { font-size: 0.85rem; letter-spacing: 0.05em; }
.hero-image-placeholder:not(.no-image) .hero-image-ph-inner { display: none; }
.hero-image-placeholder.no-image img { display: none; }

/* Info card */
.hero-info-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.hero-card-hours {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
}
.hero-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0.9rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-hours-row:last-child { border-bottom: none; }
.hero-hours-row.highlight {
  background: rgba(201,168,76,0.15);
  color: var(--white);
  font-weight: 600;
}

.hero-card-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0.25rem 0;
}

.hero-card-contact {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  padding: 0.2rem 0;
}
.hero-card-contact:hover { color: var(--gold); }
.hero-card-contact svg { color: var(--gold); flex-shrink: 0; }

.hero-card-address {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.hero-card-address svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.7));
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ============================================================
   INTRO STRIP
   ============================================================ */
.intro-strip {
  background: var(--navy);
  padding: 2rem 0;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 1.5rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.strip-item:last-child { border-right: none; }
.strip-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
}
.strip-icon svg { width: 100%; height: 100%; }
.strip-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

/* ============================================================
   NEUROLOGY EXPLAINER
   ============================================================ */
.neurology-explainer { background: var(--white); }

.neuro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.neuro-text p {
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
}
.neuro-text p:last-child { margin-bottom: 0; }
.neuro-text strong { color: var(--navy); font-weight: 600; }

.neuro-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.neuro-highlight-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition);
}
.neuro-highlight-item:hover { box-shadow: var(--shadow-sm); }

.nh-icon {
  width: 36px;
  height: 36px;
  color: var(--gold-dark);
  flex-shrink: 0;
  margin-top: 2px;
}
.nh-icon svg { width: 100%; height: 100%; }

.neuro-highlight-item h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.neuro-highlight-item p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .neuro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--off-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image-frame {
  aspect-ratio: 3/4;
  background: var(--gold-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-light);
}
.about-image-placeholder svg {
  width: 80px;
  height: 80px;
  color: var(--gold-light);
}
.about-image-placeholder p {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-light);
}
/* hide placeholder only when image loads */
.about-image-frame:not(.no-image) .about-image-placeholder { display: none; }
.about-image-frame.no-image img { display: none; }

.about-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--gold);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
}
.badge-icon { font-size: 1.1rem; }

.about-text {
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gold-light);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 44px;
  height: 44px;
  color: var(--gold-dark);
  margin-bottom: 1.1rem;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.865rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ============================================================
   SZAKVIZSGÁLAT INTRO
   ============================================================ */
.szakvizsglat-intro {
  max-width: 780px;
  margin-bottom: 4rem;
}
.szakvizsglat-intro p {
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.85;
}

/* ============================================================
   EXAMINATION PROCESS
   ============================================================ */
.exam-section {
  background: var(--navy);
  color: var(--white);
}
.exam-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 5rem;
  align-items: center;
}
.exam-section .section-eyebrow { color: var(--gold); }
.exam-section .section-title { color: var(--white); }
.exam-section .szakvizsglat-intro p { color: var(--white); }

.exam-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 0.5rem;
}
.exam-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.step-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  min-width: 48px;
}
.step-content h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.step-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.exam-visual-inner {
  position: relative;
}
.quote-block {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 1rem;
  opacity: 0.7;
}
.quote-block p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.quote-block footer {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--gold-bg); }
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}
.pricing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold-light), var(--shadow-md);
}
.pricing-icon {
  width: 52px;
  height: 52px;
  color: var(--gold-dark);
  margin: 0 auto 1.25rem;
}
.pricing-icon svg { width: 100%; height: 100%; }
.pricing-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.pricing-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.price {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-dark);
}
.pricing-badge {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: var(--gold-bg);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 20px;
  border: 1px solid var(--gold-light);
}

/* ============================================================
   SCHEDULE
   ============================================================ */
.schedule { background: var(--white); }
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: stretch;
}
.hours-table {
  margin: 2rem 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.hours-row:last-child { border-bottom: none; }
.hours-row.highlight { background: var(--gold-bg); }
.hours-row.highlight .day { color: var(--gold-dark); font-weight: 600; }
.hours-row.highlight .time { color: var(--navy); font-weight: 600; }
.day { font-weight: 500; color: var(--navy); font-size: 0.95rem; }
.time { font-size: 0.9rem; color: var(--text-light); }

.address-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.address-icon {
  width: 28px;
  height: 28px;
  color: var(--gold-dark);
  flex-shrink: 0;
  margin-top: 2px;
}
.address-icon svg { width: 100%; height: 100%; }
.address-name { font-weight: 600; color: var(--navy); margin-bottom: 0.15rem; }
.address-line { font-size: 0.9rem; color: var(--text-light); }

.schedule-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 420px;
  box-shadow: var(--shadow-sm);
}
.schedule-map iframe { height: 100%; min-height: 420px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

/* ── Időpontfoglalás oldal ── */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: start;
}

/* Kapcsolat – rendelőnk (váró fotó) */
.contact-place-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 5rem;
  align-items: center;
}
.contact-place-image .about-image-frame {
  aspect-ratio: 3/4;
}

/* Kapcsolat info items */
.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 0.5rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  transition: background var(--transition);
  text-decoration: none;
}
.contact-info-item:last-child { border-bottom: none; }
a.contact-info-item:hover { background: var(--gold-bg); }
.contact-info-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; }
.contact-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}
.contact-info-value {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.5;
}

/* ── Űrlap ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #B0B8C1; }

.form-checkbox { flex-direction: row; align-items: flex-start; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold-dark);
  flex-shrink: 0;
  margin-top: 2px;
}
.checkbox-label a { color: var(--gold-dark); text-decoration: underline; }

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

@media (max-width: 1024px) {
  .contact-page-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-info-col { order: -1; }
  .contact-place-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-place-image { max-width: 420px; }
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
}
.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--gold-light);
}
.contact-icon {
  width: 52px;
  height: 52px;
  color: var(--gold-dark);
  margin: 0 auto 1.25rem;
}
.contact-icon svg { width: 100%; height: 100%; }
.contact-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.contact-link {
  display: inline-block;
  color: var(--gold-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition);
}
.contact-link:hover { color: var(--navy); }
.contact-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.site-footer .logo-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--white);
  display: block;
}
.site-footer .logo-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  display: block;
  margin-top: 0.2rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.75rem;
  justify-content: center;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.footer-contact a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  width: 100%;
  text-align: center;
}

/* ============================================================
   PAGE HERO (aloldalak fejléce)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 7rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 50%, rgba(201,168,76,0.08) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero .section-eyebrow { color: var(--gold); }
.page-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin: 0;
}

/* ============================================================
   ACTIVE NAV LINK
   ============================================================ */
.main-nav a.active {
  color: var(--gold-dark) !important;
}
.site-header:not(.scrolled) .main-nav a.active {
  color: var(--gold) !important;
}

/* ============================================================
   SERVICES TEASER (főoldal)
   ============================================================ */
.services-teaser { background: var(--white); }
.services-teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.services-teaser-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.services-teaser-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.services-teaser-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gold-light);
}
.services-teaser-card:hover::after { transform: scaleX(1); }
.services-teaser-card .service-icon {
  width: 40px; height: 40px;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}
.services-teaser-card .service-icon svg { width: 100%; height: 100%; }
.services-teaser-card h3 {
  font-family: var(--font-serif);
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}
.services-teaser-cta {
  background: var(--navy) !important;
  border-color: var(--navy) !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-teaser-cta::after { background: var(--gold); }
.services-teaser-cta a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--transition);
}
.services-teaser-cta:hover a { gap: 0.9rem; }

@media (max-width: 1024px) {
  .services-teaser-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services-teaser-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   NEURO TEASER (főoldal)
   ============================================================ */
.neuro-teaser { background: var(--gold-bg); }

.neuro-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: center;
}

.neuro-teaser-image {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--gold-bg);
}
.neuro-teaser-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.neuro-teaser-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-light);
}
.neuro-teaser-placeholder svg { width: 48px; height: 48px; color: var(--gold-light); }
.neuro-teaser-placeholder p { font-size: 0.85rem; }
.neuro-teaser-image:not(.no-image) .neuro-teaser-placeholder { display: none; }
.neuro-teaser-image.no-image img { display: none; }

.neuro-teaser-text p {
  color: var(--text);
  line-height: 1.85;
  font-size: 1.02rem;
}
.neuro-teaser-text strong { color: var(--navy); font-weight: 600; }

.neuro-teaser-list {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 2.5rem;
}

.teaser-list-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.25rem;
}

.teaser-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.teaser-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text);
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}
.teaser-list li:last-child { border-bottom: none; }

/* ============================================================
   SYMPTOM TWO-COL (neurológia oldal)
   ============================================================ */
.symptom-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-top: 1rem;
}

.symptom-urgent-box,
.symptom-consult-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.symptom-box-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.symptom-box-header svg { width: 18px; height: 18px; flex-shrink: 0; }
.symptom-box-header.urgent {
  background: #FEF2F2;
  color: #B91C1C;
  border-bottom: 1px solid #FECACA;
}
.symptom-box-header.consult {
  background: var(--gold-bg);
  color: var(--gold-dark);
  border-bottom: 1px solid var(--gold-light);
}

.symptom-list {
  list-style: none;
  padding: 1rem 1.5rem 1.5rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.symptom-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}
.symptom-list li:last-child { border-bottom: none; }
.urgent-dot { background: #EF4444 !important; }

/* DISEASES GRID */
.diseases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.disease-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.disease-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.disease-card h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.disease-card p {
  font-size: 0.855rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* EXAM STEPS FULL WIDTH */
.exam-steps-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.exam-step-full {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.exam-step-full .step-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  min-width: 48px;
}
.exam-step-full .step-content h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.exam-step-full .step-content p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* TREATMENT GRID */
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.treatment-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.treatment-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.treatment-icon {
  width: 40px;
  height: 40px;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}
.treatment-icon svg { width: 100%; height: 100%; }
.treatment-card h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.treatment-card p {
  font-size: 0.855rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* INFO BOX */
.info-box {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--gold-bg);
  border: 1px solid var(--gold-light);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.7;
}
.info-box svg { color: var(--gold-dark); flex-shrink: 0; margin-top: 2px; }
.info-box strong { color: var(--navy); }

/* Responsive */
@media (max-width: 1024px) {
  .diseases-grid { grid-template-columns: repeat(2, 1fr); }
  .treatment-grid { grid-template-columns: repeat(2, 1fr); }
  .exam-steps-full { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .symptom-two-col { grid-template-columns: 1fr; }
  .diseases-grid { grid-template-columns: 1fr; }
  .treatment-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--gold);
  padding: 4rem 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.cta-band-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
}
.cta-band-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.cta-band .btn-gold {
  background: var(--white);
  color: var(--gold-dark);
  border-color: var(--white);
}
.cta-band .btn-gold:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: none;
}
.cta-band .btn-outline-light {
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}
.cta-band .btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

@media (max-width: 1024px) {
  .neuro-teaser-inner { grid-template-columns: 1fr 360px; gap: 3rem; }
}
@media (max-width: 768px) {
  .neuro-teaser-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .neuro-teaser-image { max-width: 320px; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-actions { justify-content: center; }
}

/* ============================================================
   HOME CARDS
   ============================================================ */
.home-cards { background: var(--off-white); }
.home-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.home-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.home-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.home-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gold-light);
}
.home-card:hover::after { transform: scaleX(1); }
.home-card-icon {
  width: 44px;
  height: 44px;
  color: var(--gold-dark);
}
.home-card-icon svg { width: 100%; height: 100%; }
.home-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}
.home-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
  flex: 1;
}
.card-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.home-card:hover .card-link { color: var(--navy); }
.home-card.featured-card {
  background: var(--navy);
  border-color: var(--navy);
}
.home-card.featured-card h3,
.home-card.featured-card p { color: rgba(255,255,255,0.85); }
.home-card.featured-card h3 { color: var(--white); }
.home-card.featured-card .home-card-icon { color: var(--gold); }
.home-card.featured-card .card-link { color: var(--gold); }
.home-card.featured-card::after { background: var(--gold); }

/* ============================================================
   SYMPTOMS LIST
   ============================================================ */
.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 3rem;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.symptom-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}
.symptom-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   CENTERED CTA
   ============================================================ */
.centered-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet - 1024px */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 360px 1fr;
    gap: 3rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .exam-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .exam-visual { display: none; }
  .strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .strip-item:nth-child(2) { border-right: none; }
  .strip-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.1); border-top: 1px solid rgba(255,255,255,0.1); }
  .strip-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.1); }
}

/* Tablet hero */
@media (max-width: 1024px) {
  .hero-two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-image-placeholder { display: none; }
}

/* Mobile - 768px */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 99;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .main-nav a {
    font-size: 1.25rem;
    color: var(--white);
  }
  .site-header.scrolled .main-nav a { color: var(--white); }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-image { max-width: 320px; margin: 0 auto; }
  .about-badge { right: -0.5rem; bottom: -0.5rem; }

  .services-grid { grid-template-columns: 1fr; }
  .home-cards-grid { grid-template-columns: 1fr; }
  .symptoms-grid { grid-template-columns: 1fr; }

  .pricing-cards { grid-template-columns: 1fr; }

  .schedule-grid { grid-template-columns: 1fr; gap: 3rem; }
  .schedule-map { min-height: 300px; }
  .schedule-map iframe { min-height: 300px; }

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

  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }

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

/* ============================================================
   LEGAL PAGES (ÁSZF, Adatvédelem)
   ============================================================ */
.legal-doc {
  max-width: 820px;
  margin: 0 auto;
  color: var(--text);
  font-size: 0.97rem;
  line-height: 1.8;
}
.legal-doc h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--navy);
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.legal-doc h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin: 1.75rem 0 0.5rem;
}
.legal-doc p {
  margin-bottom: 1rem;
}
.legal-meta {
  display: inline-block;
  background: var(--gold-bg);
  border: 1px solid var(--border);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}
.legal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}
.legal-list li {
  padding: 0.3rem 0 0.3rem 1.25rem;
  position: relative;
}
.legal-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.legal-doc a {
  color: var(--gold-dark);
  text-decoration: underline;
}
.legal-doc a:hover {
  color: var(--navy);
}
.legal-dl dt {
  font-weight: 600;
  color: var(--navy);
  margin-top: 1rem;
}
.legal-dl dd {
  margin: 0.25rem 0 0.5rem 0;
  padding-left: 1rem;
}
.legal-sign {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-style: italic;
  color: var(--text-light);
}
.cookie-table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0 1.5rem;
}
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.cookie-table th {
  background: var(--navy);
  color: var(--white);
  text-align: left;
  padding: 0.65rem 1rem;
  font-weight: 500;
}
.cookie-table td {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table tr:nth-child(even) td { background: var(--off-white); }

/* Small mobile - 480px */
@media (max-width: 480px) {
  .strip-grid { grid-template-columns: 1fr; }
  .strip-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .strip-item:last-child { border-bottom: none; }
  .section-title { font-size: 1.65rem; }
  .logo-mark { width: 38px; height: 38px; }
  .logo-name { font-size: 1.05rem; }
}
