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

:root {
  /* Colors */
  --primary: #005b39;
  --primary-dark: #1a3a30;
  --accent: #4db6a0;
  --accent-light: #90bbab;
  --surface: #cce7dd;
  --surface-light: rgba(204, 231, 221, 0.2);
  --surface-soft: rgba(204, 231, 221, 0.15);
  --surface-hover: rgba(204, 231, 221, 0.25);
  --surface-subtle: #e7f3ee;
  --border-light: rgba(204, 231, 221, 0.3);
  --white: #ffffff;
  
  --text-main: #101828;
  --text-body: #4a5565;
  --text-muted: #364153;
  --text-cta: #3b4c63;
  
  --whatsapp: #25d366;

  /* Typography */
  --font-serif: 'Lora', serif;
  --font-sans: 'Inter', sans-serif;
  --font-accent: 'Playfair Display SC', serif;
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: var(--font-sans);
  color: var(--text-body);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 32px;
}

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

ul {
  list-style: none;
}

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

section {
  padding: 40px 0;
  position: relative;
  z-index: 10;
  background-color: var(--white);
}

@keyframes fadeInSlideUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

section .container {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

section.revealed .container {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth CSS entrance animation for top-of-page elements for instant LCP + silky UX */
header .container,
section:first-of-type .container,
header + section .container,
header + .container,
.contact-hero + .container,
.pages-header + section .container,
.pages-header + .container,
.afectiuni-philosophy-strip + section .container,
.intro-section .container,
.hero-section .container {
  animation: fadeInSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 832px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-container, .footer-container {
  width: 100%;
  padding: 0 40px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left !important; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-24 { gap: 24px; }
.w-full { width: 100%; }
.block { display: block; }
.inline-block { display: inline-block; }

.mt-20 { margin-top: 20px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }
.m-y-40 { margin: 40px 0; }
.m-y-20 { margin: 20px 0; }

.p-y-80 { padding: 80px 0; }
.p-y-70 { padding: 40px 0; }
.p-y-100 { padding: 40px 0; }

.bg-surface-light { background: var(--surface-light); }
.bg-primary { background: var(--primary); }
.bg-primary-dark { background: var(--primary-dark); }
.bg-surface { background: var(--surface); }
.bg-cta-overlay { background: #f2f9f6; } /* Opaque to prevent sticky bleed-through */

.rounded-16 { border-radius: 16px; }
.rounded-20 { border-radius: 20px; }
.rounded-50 { border-radius: 50%; }

.size-6 { width: 24px; height: 24px; flex-shrink: 0; }
.size-5 { width: 20px; height: 20px; flex-shrink: 0; }
.size-36 { width: 36px; height: 36px; }
.size-48 { width: 48px; height: 48px; }

.shadow-standard { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }

/* Base Components */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--accent-light);
  color: var(--white);
}

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

.btn-secondary {
  background-color: var(--surface);
  color: var(--primary-dark);
}

.btn-secondary:hover {
  filter: brightness(0.95);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 68px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateZ(0); /* Sharp text */
}

/* Scrolled state for navbar */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(204, 231, 221, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

/* Navbar Logo */
.navbar .logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
}

/* Footer Logo */
.footer-brand .logo img {
  height: 90px;
  width: auto;
  object-fit: contain;
  transform: scale(1.3);
  transform-origin: left center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 15px;
  position: relative;
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.nav-link:hover {
  color: var(--primary);
  background: var(--surface-light);
}

.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 20px;
}

/* Modern Accent Button (Reusable) */
.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #3e9e8a 100%);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(77, 182, 160, 0.25);
  border: none;
  display: inline-block;
  cursor: pointer;
  text-align: center;
}

.btn-accent:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(77, 182, 160, 0.35);
  filter: brightness(1.05);
  color: var(--white);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 16px;
  letter-spacing: 0.02em;
}

/* Navbar specific override if needed */
.btn-navbar {
  /* Inherits from btn-accent in HTML */
}

/* Mobile Menu Styles */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle .bar {
  width: 24px;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-smooth);
}


/* Floating WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background-color: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

/* Intro Styling */
.intro-section {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  color: var(--white);
  z-index: 0;
  background-color: transparent; /* Let the image show */
}

.intro-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  animation: slowZoom 15s ease-out forwards;
  will-change: transform;
}

@keyframes slowZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1); }
}

.intro-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.3;
  z-index: -1;
  animation: overlayFade 2s ease-in-out forwards;
  will-change: opacity;
}

@keyframes overlayFade {
  from { opacity: 0.7; }
  to { opacity: 0.3; }
}

.intro-content {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  text-align: left;
  max-width: 800px;
  animation: fadeInSlideUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.intro-quote {
  font-family: var(--font-sans);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
  color: var(--white);
}

.intro-author {
  font-size: 20px;
  opacity: 0.95;
  color: var(--white);
}

.intro-label-wrapper {
  position: absolute;
  top: 75px;
  left: 0;
  right: 0;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 10;
}

.intro-label {
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  animation: fadeIn 2s ease-in forwards;
  pointer-events: auto;
}

@keyframes fadeInSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* Hero Section (Slides over Intro) */
.hero-section {
  padding: 40px 0;
}

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

.hero-text h2 {
  font-size: 30px;
  margin-bottom: 24px;
}

.hero-text p {
  margin-bottom: 20px;
  color: var(--text-body);
}

.hero-image img {
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hero-text h3 {
  font-size: 22px;
  margin-top: 8px;
  margin-bottom: 16px;
}

.hero-credentials {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-credentials li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.credential-icon {
  font-size: 16px;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid rgba(204, 231, 221, 0.35);
  margin-top: 2px;
}

.credential-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.credential-title {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text-main);
}

.credential-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-body);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

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

.service-content {
  padding: 24px;
}

.service-content h3 {
  font-family: var(--font-sans);
  font-size: 20px;
  margin-bottom: 12px;
}

.service-content p {
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: 20px;
}

.service-link {
  color: var(--accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(204, 231, 221, 0.4);
  padding: 40px; /* Reduced top padding to pull text higher */
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(77, 182, 160, 0.08);
}

.testimonial-quote-icon {
  font-size: 100px;
  line-height: 1.1;
  color: var(--accent);
  opacity: 0.12;
  font-family: serif;
  position: absolute;
  top: 10px;   /* Positioned specifically to overlap with text starting point */
  left: 4px;
  z-index: 0;  /* Explicitly behind */
  user-select: none;
  pointer-events: none;
}

.testimonial-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 32px;
  position: relative;
  z-index: 1; /* Explicitly in front */
}

.testimonial-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-name {
  font-weight: 700;
  color: var(--text-main);
  font-size: 16px;
}

.testimonial-tag {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Footer Styling */
footer {
  background: var(--surface);
  padding: 60px 0 20px;
  border-top: 1px solid var(--surface);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  color: var(--primary);
  margin-bottom: 16px;
}

/* Footer Info Card */
.footer-info-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 200px;
}

.footer-info-card--right {
  min-width: 240px;
}

/* Footer Schedule Card */
.footer-schedule-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 220px;
}

.schedule-week {
  display: flex;
  gap: 5px;
  margin-bottom: 16px;
}

.schedule-day {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  background: rgba(0, 91, 57, 0.08);
  color: rgba(16, 24, 40, 0.3);
  transition: var(--transition-smooth);
}

.schedule-day.active {
  background: var(--primary);
  color: var(--white);
}

.schedule-day.partial {
  background: var(--accent-light);
  color: var(--white);
  opacity: 0.75;
}

.schedule-hours-block {
  background: rgba(0, 91, 57, 0.07);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.schedule-range {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  opacity: 0.7;
}

.schedule-hours {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-dark);
  font-family: var(--font-serif);
  line-height: 1.1;
}

.schedule-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.8;
}

.schedule-note svg {
  flex-shrink: 0;
  color: var(--accent);
}

.footer-info-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.footer-info-header .footer-info-label {
  margin-bottom: 0;
}

.footer-info-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.footer-instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  color: var(--white);
  background-color: var(--accent);
  transition: var(--transition-smooth);
}

.footer-instagram-link:hover,
.footer-instagram-link:focus-visible {
  color: var(--white);
  background-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 91, 57, 0.25);
}

.footer-instagram-icon {
  width: 18px;
  height: 18px;
}

.footer-divider {
  width: 32px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 20px;
}

.footer-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-info-row:last-child {
  margin-bottom: 0;
}

.footer-icon {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-info-row > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-info-sublabel {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.7;
}

.footer-info-value {
  font-size: 14px;
  color: var(--text-main);
  line-height: 1.5;
  font-weight: 500;
}

.footer-info-link {
  color: var(--text-main);
  transition: var(--transition-smooth);
  position: relative;
  display: inline-block;
  width: fit-content;
}

.footer-info-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--primary);
  transition: var(--transition-smooth);
}

.footer-info-link:hover {
  color: var(--primary);
}

.footer-info-link:hover::after {
  width: 100%;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-muted);
}

.footer-bottom a {
  position: relative;
  display: inline-block;
  padding: 8px 6px;
  transition: var(--transition-smooth);
}

.footer-bottom a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--primary);
  transition: var(--transition-smooth);
}

.footer-bottom a:hover::after {
  width: 100%;
}

/* Component Specifics */
.contact-cta-section {
  text-align: center;
}

.hero-intro-bg {
  background-image: url('http://localhost:3845/assets/843c8380ffc6594506df93c75bf2ea6f4f80e75e.webp');
}

.service-arrow {
  font-size: 1.2em;
}

.section-testimonials {
  padding-bottom: 50px;
}

.container-900 {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.font-600 { font-weight: 600; }
.font-500 { font-weight: 500; }
.font-sans { font-family: var(--font-sans); }
.font-24 { font-size: 24px; }
.text-white { color: var(--white); }
.text-cta { color: var(--text-cta); }
.text-subtitle { font-size: 20px; color: var(--text-cta); }
.text-lg { font-size: 18px; }
.text-sm { font-size: 14px; }
.text-xs { font-size: 13px; }
.opacity-90 { opacity: 0.9; }
.opacity-80 { opacity: 0.8; }

.flex-column { display: flex; flex-direction: column; }
.p-16 { padding: 16px; }

.table-pricing {
  width: 100%;
  border-collapse: collapse;
}

.table-pricing th, .table-pricing td {
  padding: 20px;
  text-align: left;
}

.table-pricing thead tr {
  border-bottom: 2px solid var(--primary);
}

.table-pricing tbody tr {
  border-bottom: 1px solid var(--surface);
}

.pricing-packages-card {
  background: var(--primary-dark);
  color: var(--white);
  padding: 40px;
  border-radius: 16px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.pricing-pachet {
  border: 1px solid rgba(255,255,255,0.2);
  padding: 20px;
  border-radius: 12px;
}

.pricing-price {
  font-size: 24px;
  font-weight: 700;
}

.feature-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.feature-simple-card {
  background: var(--surface-light);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.feature-emoji {
  font-size: 24px;
}

.afectiuni-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.afectiune-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--surface);
}

.despre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.back-navigation {
  display: inline-block;
  color: var(--accent);
}

.content-body {
  line-height: 1.8;
}

.list-standard {
  list-style: disc;
  margin-left: 20px;
}

.list-none {
  list-style: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-form-card {
  background: var(--surface-light);
  padding: 48px;
  border-radius: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-input {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--surface);
  outline: none;
}

/* Services Page Specific Styles */
.pages-header {
  padding: 100px 0 40px;
  background: rgba(204, 231, 221, 0.2);
  text-align: center;
}

.services-title {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: -1.2px;
}

.services-accent-line {
  width: 64px;
  height: 2px;
  background-color: var(--accent);
  margin: 0 auto 24px;
}

.pages-subtitle {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-body);
  max-width: 800px;
  margin: 24px auto 0;
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.services-card {
  background: var(--white);
  border: 0.8px solid #f1f5f9;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.services-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
}

.services-card-img {
  height: 320px;
  width: 100%;
}

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

.services-card-content {
  padding: 32px 24px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.services-card-tag {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 12px;
}

.services-card-title {
  font-size: 24px;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 16px;
  font-family: var(--font-serif);
}

.services-card-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: auto;
  padding-bottom: 24px;
}

@media (max-width: 768px) {
  .services-page-grid {
    grid-template-columns: 1fr;
  }
}

/* Detail Page Basic Layout */
.detail-header {
  padding: 80px 0 60px;
  background: var(--white);
  border-bottom: 0.8px solid #f1f5f9;
}

.back-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-cta);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.back-link:hover {
  color: var(--primary);
  transform: translateX(-4px);
}

.detail-title {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: -1.2px;
}

.detail-subtitle {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.9px;
}

.detail-hero-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  margin-bottom: 48px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.detail-intro-text {
  /* Legacy alias for pages-subtitle */
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-body);
}

.detail-section-h2 {
  font-size: 30px;
  font-weight: 400;
  margin: 40px 0 24px;
}

.detail-section-h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--text-main);
  font-family: var(--font-serif);
}


.approach-boxes {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Accented Info Box */
.info-box-accent {
  background: #f8fafc;
  border-left: 4px solid var(--accent);
  padding: 24px 28px;
  border-radius: 0 14px 14px 0;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-box-accent h4 {
  font-size: 18px;
  font-weight: 500;
  color: #1d293d;
  margin: 0;
}

.info-box-accent p {
  font-size: 16px;
  color: #45556c;
  margin: 0;
  line-height: 1.6;
}

/* Feature Cards & Lists */
.detail-card-light {
  background: rgba(248, 250, 252, 0.5);
  border: 0.8px solid #f1f5f9;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
}

.detail-card-white {
  background: var(--white);
  border: 0.8px solid #f1f5f9;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
}

.feature-list-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.feature-item-visual {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-icon-small {
  width: 24px;
  height: 24px;
  background: var(--surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.bullet-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 10px;
}

.feature-icon-small svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

.feature-text-bold {
  font-weight: 700;
  color: var(--primary-dark);
}

/* Summary Block */
.detail-summary-block {
  background-color: var(--primary-dark);
  border-radius: 16px;
  padding: 48px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
  margin-bottom: 60px;
}

.detail-summary-block h3 {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 20px;
}

.detail-summary-block p {
  color: var(--surface);
  font-size: 18px;
  line-height: 1.6;
  max-width: 672px;
  margin-bottom: 24px;
}

.detail-summary-block.text-left p {
  margin-left: 0;
  margin-right: 0;
}

.detail-summary-block.text-center p {
  margin-left: auto;
  margin-right: auto;
}

.detail-summary-circle {
  position: absolute;
  top: -64px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(38, 83, 69, 0.5);
  border-radius: 50%;
  filter: blur(40px);
}

/* Grid for Benefits/Features */
.detail-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.benefit-item {
  background: #f8fafc;
  border: 0.8px solid #f1f5f9;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--primary-dark);
}

.benefit-check {
  color: var(--primary);
  flex-shrink: 0;
}

/* Specific for Kineto Cards */
.kineto-features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.kineto-feature-card {
  background: rgba(248, 250, 252, 0.5);
  border: 0.8px solid #f1f5f9;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.kineto-feature-icon-wrapper {
  width: 64px;
  height: 64px;
  background: var(--surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.kineto-feature-icon-wrapper svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

/* Afecțiuni Philosophy Strip */
.afectiuni-philosophy-strip {
  padding: 0;
  background: transparent;
}

.philosophy-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 40px 0 20px;
}

.philosophy-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(204, 231, 221, 0.4);
  border-radius: 14px;
  transition: var(--transition-smooth);
}
.philosophy-card:hover {
  border-color: var(--accent-light);
  box-shadow: 0 4px 20px rgba(0, 91, 57, 0.06);
  transform: translateY(-2px);
}

.philosophy-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--surface-subtle) 0%, rgba(204, 231, 221, 0.35) 100%);
  border-radius: 12px;
  color: var(--primary);
}

.philosophy-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-body);
  margin: 0;
}

@media (max-width: 768px) {
  .philosophy-cards {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 32px 0 12px;
  }
  .philosophy-card {
    padding: 20px;
  }
}

/* Afecțiuni Page */

.afectiuni-grid-container {
  padding: 40px 0;
}

.category-group {
  margin-bottom: 80px;
}

.category-group:last-child {
  margin-bottom: 0;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

.category-icon-box {
  background: var(--surface-subtle);
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.category-icon-box svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.category-group:hover .category-icon-box {
  background: var(--surface);
  transform: scale(1.05);
  border-color: var(--accent-light);
}

.category-title {
  font-size: 24px;
  font-weight: 500;
  color: var(--text-main);
  margin: 0;
}

.category-subtitle {
  color: var(--text-cta);
  font-size: 16px;
  margin-top: 8px;
  max-width: 650px;
}

.afectiuni-list-container {
  margin-left: 80px; /* Offset from the icon */
}

.afectiune-row-card {
  background: rgba(249, 250, 251, 0.8);
  border: 0.8px solid #f1f5f9;
  padding: 24px;
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  transition: var(--transition-smooth);
}

.afectiune-row-card:hover {
  background: var(--white);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.afectiune-card-icon {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  flex-shrink: 0;
  color: #4A7C68;
  transition: var(--transition-smooth);
}

.afectiune-row-card:hover .afectiune-card-icon {
  transform: translateX(4px);
  color: var(--primary);
}

.afectiune-card-content h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 4px;
  font-family: var(--font-sans);
}

.afectiune-card-content p {
  font-size: 16px;
  color: var(--text-cta);
  margin: 0;
}

/* Expandable Condition Items (Ortopedice) */
.afectiune-items-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Li simple (neurologice, respiratorii etc.) */
.afectiune-items-list > li.plain-item {
  font-size: 15px;
  color: var(--text-cta);
  padding: 6px 0 6px 14px;
  position: relative;
  line-height: 1.55;
  border-bottom: 0.5px solid rgba(204, 231, 221, 0.35);
}
.afectiune-items-list > li.plain-item:last-child {
  border-bottom: none;
}
.afectiune-items-list > li.plain-item::before {
  content: '–';
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--accent);
  font-size: 13px;
  opacity: 0.75;
}

/* Expandable Condition Items */
.afectiune-cond {
  border-bottom: 0.5px solid rgba(204, 231, 221, 0.35);
}
.afectiune-cond:last-child {
  border-bottom: none;
}

.cond-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-cta);
  text-align: left;
  transition: color 0.2s;
}
.cond-toggle:hover {
  color: var(--primary);
}
.cond-toggle[aria-expanded="true"] {
  color: var(--primary);
}

.cond-name {
  flex: 1;
  line-height: 1.4;
}

.cond-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.65;
  transition: transform 0.25s var(--transition-smooth), opacity 0.2s;
}
.cond-toggle[aria-expanded="true"] .cond-icon {
  transform: rotate(45deg);
  opacity: 1;
  color: var(--primary);
}
.cond-toggle:hover .cond-icon {
  opacity: 1;
}

.cond-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
  opacity: 0;
}
.cond-body.is-open {
  max-height: 300px;
  opacity: 1;
}
.cond-body-inner {
  padding: 4px 0 12px 0;
  border-left: 2px solid rgba(77, 182, 160, 0.3);
  padding-left: 14px;
  margin-left: 2px;
}
.cond-body-inner p {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.65;
}

/* Extra Elements */
.featured-badge {
  display: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ortopedice-intro {
  display: none;
  font-size: 15px;
  color: var(--text-cta);
  line-height: 1.65;
  margin-top: 6px;
  max-width: 520px;
}

/* Orthopedic Styling variant */
.category-group--ortopedice {
  padding-left: 28px;
  border-left: 3px solid var(--accent);
}
.category-group--ortopedice .featured-badge {
  display: inline-flex;
  color: var(--primary);
  background: var(--surface-subtle);
  border: 1px solid rgba(77, 182, 160, 0.3);
  padding: 4px 10px 4px 8px;
  border-radius: 100px;
}
.category-group--ortopedice .category-icon-box {
  background: linear-gradient(135deg, var(--surface) 0%, #b8ddd3 100%);
  border-color: var(--accent-light);
}
.category-group--ortopedice .afectiune-row-card {
  border-color: rgba(77, 182, 160, 0.15);
}
.category-group--ortopedice .ortopedice-intro {
  display: block;
}

@media (max-width: 768px) {
  .category-group--ortopedice {
    padding-left: 20px;
  }
}

.cta-section-simple {
  background: rgba(204, 231, 221, 0.15);
  padding: 80px 0;
  text-align: center;
  border-radius: 16px;
  margin: 80px 0;
}

.cta-section-simple h2 {
  font-size: 30px;
  margin-bottom: 16px;
}

.cta-section-simple p {
  font-size: 18px;
  color: var(--text-cta);
  max-width: 720px;
  margin: 0 auto 32px;
}

/* Prețuri Page Header */
.pages-header {
  padding: 100px 0 60px;
  background: var(--surface-light);
  text-align: center;
}

.preturi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 0;
}

.pricing-card-individual {
  background: var(--white);
  border: 0.8px solid rgba(204, 231, 221, 0.4);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: left;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card-individual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 50%, var(--surface) 100%);
}

.pricing-card-individual:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 75, 48, 0.05);
  border-color: var(--accent-light);
}

.pricing-card-individual h3 {
  font-size: 20px;
  color: var(--primary-dark);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.pricing-card-individual .pricing-subtitle {
  font-size: 15px;
  color: var(--text-cta);
  margin-bottom: 24px;
}

.pricing-duration {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-cta);
  font-size: 14px;
  margin-bottom: 32px;
}

.pricing-duration svg {
  width: 18px;
  height: 18px;
  color: var(--text-cta);
  stroke-width: 2;
  flex-shrink: 0;
}

.pricing-card-divider {
  height: 1px;
  border-top: 1px dashed #e2e8f0;
  margin: auto 0 32px;
}

.pricing-value-wrapper {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pricing-value {
  font-size: 48px;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1;
  font-family: var(--font-serif);
}

.pricing-currency {
  font-size: 14px;
  color: var(--text-cta);
  font-weight: 400;
}

.pricing-unit {
  font-size: 14px;
  color: var(--text-cta);
  margin-left: 2px;
}

/* Packages Section */
.packages-container {
  background: #fafbfd;
}

.package-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.package-card {
  background: var(--white);
  border: 0.8px solid rgba(204, 231, 221, 0.4);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 50%, var(--surface) 100%);
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 75, 48, 0.05);
  border-color: var(--accent-light);
}

.package-card-header {
  padding: 40px 32px 24px;
  text-align: left;
}

.package-card-header h3 {
  font-size: 20px;
  color: var(--primary-dark);
  margin: 0;
  letter-spacing: -0.01em;
}

.package-list {
  padding: 0 32px 40px;
}

.package-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px dashed #e2e8f0;
}

.package-item:last-child {
  padding-bottom: 0;
}

.package-info-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.package-label {
  font-size: 15px;
  color: var(--primary-dark);
  font-weight: 500;
}

.package-discount-badge {
  display: inline-block;
  background: var(--surface-subtle);
  color: var(--primary);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 8px;
  width: fit-content;
}

.package-price-col {
  text-align: right;
}

.package-price-value {
  font-size: 32px;
  font-weight: 600;
  color: var(--primary-dark);
  font-family: var(--font-serif);
  line-height: 1;
}

.package-price-currency {
  font-size: 13px;
  color: var(--text-cta);
  margin-left: 2px;
}

/* Home Visits Banner */
.home-visit-banner {
  background: #f5faf8;
  border: 1px solid rgba(204, 231, 221, 0.5);
  border-radius: 32px;
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin: 100px 0;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.home-visit-glow-tl {
  position: absolute;
  top: -60px;
  left: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at center, rgba(204, 231, 221, 0.6) 0%, rgba(204, 231, 221, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.home-visit-glow-br {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle at center, rgba(204, 231, 221, 0.7) 0%, rgba(204, 231, 221, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.home-visit-left, .home-visit-right {
  position: relative;
  z-index: 2;
}

.home-visit-banner:hover {
  border-color: var(--accent-light);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 75, 48, 0.04);
}

.home-visit-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.home-visit-icon-box {
  background: var(--white);
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  color: var(--primary);
}

.home-visit-icon-box svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.8;
}

.home-visit-text {
  max-width: 500px;
}

.home-visit-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #005b39;
  background: rgba(204, 231, 221, 0.4);
  padding: 6px 12px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.home-visit-text h3 {
  font-size: 28px;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.home-visit-text p {
  font-size: 16px;
  color: var(--text-cta);
  line-height: 1.6;
}

.home-visit-right {
  flex-shrink: 0;
}

.home-visit-right .pricing-value {
    font-size: 48px;
}

.text-accent-bold {
  color: var(--text-main);
  font-weight: 600;
}

/* Contact Page */
.contact-hero {
  background: rgba(204, 231, 221, 0.2);
  padding: 80px 0;
  text-align: center;
}

.contact-whatsapp-bar {
  background: var(--whatsapp);
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  color: var(--white);
  max-width: 832px;
  margin: -52px auto 60px;
  position: relative;
  z-index: 20;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-whatsapp-bar:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 25px -5px rgba(37, 211, 102, 0.25);
  filter: brightness(1.05);
}

.contact-whatsapp-bar:active {
  transform: translateY(-2px) scale(0.98);
}


.contact-whatsapp-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-whatsapp-icon-bg {
  background: rgba(255, 255, 255, 0.2);
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-whatsapp-icon-bg svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
  max-width: 784px;
}

.contact-info-grid.container-narrow {
  padding: 0;
}

.contact-card {
  background: var(--white);
  border: 0.8px solid #f1f5f9;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition-smooth);
}

.contact-card:hover {
  border-color: var(--accent-light);
  transform: translateY(-2px);
}

.contact-card-icon-box {
  background: var(--surface-subtle);
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.contact-card:hover .contact-card-icon-box {
  background: var(--surface);
  transform: scale(1.1);
}

.contact-card-icon-box svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.contact-card-details h4 {
  font-family: var(--font-sans);
  font-size: 14px;
  text-transform: uppercase;
  color: var(--text-cta);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.contact-card-value {
  font-size: 16px;
  color: var(--text-main);
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}

.contact-card-note {
  font-size: 14px;
  color: var(--text-cta);
}

/* Instagram Trust Banner */
.contact-instagram-banner {
  display: block;
  text-decoration: none;
  margin-bottom: 48px;
  position: relative;
}

.contact-instagram-banner-inner {
  background: var(--white);
  border: 0.8px solid #f1f5f9;
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: var(--transition-smooth);
}

.contact-instagram-banner:hover .contact-instagram-banner-inner {
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 91, 57, 0.07);
}

.contact-instagram-banner-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-instagram-banner-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--surface-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.contact-instagram-banner-icon svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.contact-instagram-banner:hover .contact-instagram-banner-icon {
  background: var(--surface);
  transform: scale(1.1);
}

.contact-instagram-banner-left h3 {
  font-size: 17px;
  font-family: var(--font-sans);
  color: var(--text-main);
  margin-bottom: 4px;
  font-weight: 700;
}

.contact-instagram-banner-left p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.4;
}

.btn-instagram-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-subtle);
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.contact-instagram-banner:hover .btn-instagram-action {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 91, 57, 0.2);
}

@media (max-width: 640px) {
  .contact-instagram-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-instagram-action {
    width: 100%;
    justify-content: center;
  }
}

/* Map Section */
.map-container-wrapper {
  background: rgba(249, 250, 251, 0.6);
  padding: 20px 0 60px 0;
}

.map-card {
  background: var(--white);
  border: 0.8px solid #f1f5f9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: relative;
}

.map-iframe-container {
  height: 400px;
  width: 100%;
  position: relative;
  background: var(--surface-subtle);
}

.map-consent-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--surface-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  z-index: 5;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.map-consent-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.map-consent-content {
  max-width: 480px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.map-consent-icon {
  background: var(--surface);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: 0 8px 16px rgba(77, 182, 160, 0.15);
  animation: mapPulse 2s infinite ease-in-out;
}

@keyframes mapPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.map-consent-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  font-family: var(--font-sans);
}

.map-consent-btn {
  font-family: var(--font-sans);
  font-weight: 600;
  cursor: pointer;
  border: none;
  padding: 12px 28px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 91, 57, 0.15);
  transition: var(--transition-smooth);
}

.map-consent-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 91, 57, 0.25);
}

.map-floating-link {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  padding: 12px 24px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  z-index: 10;
  font-weight: 500;
  color: var(--text-main);
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.map-floating-link:hover {
  transform: translateX(-50%) translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  color: var(--primary);
}

.map-floating-link svg:first-child {
  color: var(--text-cta);
}

.map-floating-link svg:last-child {
  color: var(--text-cta);
  transition: transform 0.3s ease;
}

.map-floating-link:hover svg:last-child {
  transform: translateX(4px);
  color: var(--primary);
}

/* FAQ Accordion Section */
.faq-section {
  padding: 40px 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--surface);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question {
  width: 100%;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: var(--transition-smooth);
}

.faq-question h3 {
  font-size: 18px;
  font-family: var(--font-sans);
  margin: 0;
  color: var(--text-main);
  font-weight: 600;
}

.faq-icon-box {
  background: var(--surface-subtle);
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  color: var(--primary);
}

.faq-icon-box svg {
  width: 16px;
  height: 16px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 28px;
}

.faq-answer-inner {
  padding-bottom: 28px;
  color: var(--text-cta);
  line-height: 1.8;
  font-size: 15px;
}

.faq-item.active {
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(77, 182, 160, 0.08);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-item.active .faq-icon-box {
  background: var(--surface);
  transform: rotate(90deg);
  color: var(--primary);
}

.contact-final-cta {
  padding: 80px 0;
  text-align: center;
}

.contact-final-cta h2 {
    font-size: 32px;
    color: var(--primary-dark);
    font-weight: 700;
}

.contact-final-cta p {
    font-size: 18px;
    color: var(--text-body);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.whatsapp-button-large {
  background: var(--whatsapp);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  margin-top: 32px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-button-large svg {
  color: var(--white);
  transition: transform 0.4s ease;
}

.whatsapp-button-large:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 20px rgba(37, 211, 102, 0.2);
  filter: brightness(1.05);
}

.whatsapp-button-large:hover svg {
  transform: rotate(12deg) scale(1.2);
}

.whatsapp-button-large:active {
  transform: translateY(-2px) scale(0.96);
}

/* Afectiuni List Polish */
.afectiune-row-card {
  background: var(--white);
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
  transition: var(--transition-smooth);
}

.afectiune-row-card:hover {
  transform: translateX(8px);
  border-color: var(--accent);
  box-shadow: 4px 4px 20px rgba(0,0,0,0.03);
}

.afectiune-card-icon {
  width: 20px;
  height: 20px;
  opacity: 0.6;
  margin-top: 2px;
}

.afectiune-card-content h3 {
  font-size: 16px;
  margin-bottom: 2px;
  color: var(--text-main);
}

.afectiune-card-content p {
  font-size: 14px;
  color: var(--text-cta);
}

/* ---------------------------------------------------------
   RESPONSIVE DESIGN (MOBILE & TABLET)
--------------------------------------------------------- */

@media (max-width: 1024px) {
  .hero-grid, .despre-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-image {
    order: -1;
  }
  
  .nav-menu {
    gap: 24px;
  }
}

@media (max-width: 991px) {
  /* Typography Scaling */
  h1, .detail-title, .services-title { font-size: 36px !important; letter-spacing: -0.5px; }
  h2, .detail-section-h2 { font-size: 28px !important; }
  h3, .detail-section-h3, .services-card-title { font-size: 20px !important; }
  p, .pages-subtitle, .detail-intro-text { font-size: 16px !important; }

  /* Specifically for intro section mobile/tablet */
  .intro-quote {
    font-size: 28px !important;
    line-height: 1.15 !important;
    font-weight: 700 !important;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
  }

  .intro-label-wrapper {
    top: auto !important;
    bottom: 10px !important;
    justify-content: flex-start !important; /* Aligns to the left */
    padding: 0 40px; 
  }

  .intro-label {
    font-size: 12px !important;
    letter-spacing: 2px !important;
  }

  .navbar {
    height: 64px !important;
    background: var(--white) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 1px solid var(--surface);
  }

  .navbar.scrolled {
    height: 56px !important;
  }

  .intro-content {
    left: 20px !important;
    padding-right: 20px; /* Prevent text touching the right edge */
  }

  .whatsapp-btn {
    width: 48px !important;
    height: 48px !important;
    bottom: 16px !important;
    right: 16px !important;
  }
  
  .preturi-grid, .package-cards-grid, .services-grid, .testimonials-grid, .pricing-grid, .afectiuni-grid, .feature-grid-3 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-visit-banner {
    flex-direction: column;
    padding: 32px 24px;
    text-align: center;
    gap: 16px;
    margin: 40px 0;
  }

  .home-visit-icon {
    margin: 0 auto;
  }

  .package-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .package-price {
    font-size: 18px;
    font-weight: 700;
  }

  .footer-grid {
    flex-direction: column;
    gap: 40px;
  }

  .footer-info-card {
    min-width: unset;
    width: 100%;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px;
    gap: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1002;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    transform: translateZ(0); /* Sharp text */
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
  }

  .nav-link {
    font-size: 20px;
    padding: 10px 20px;
  }

  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1005;
    background: none;
    border: none;
  }

  .menu-toggle span, .menu-toggle .bar {
    width: 28px;
    height: 2.5px;
    background: var(--primary);
    transition: var(--transition-smooth);
    border-radius: 2px;
  }

  /* Hamburger Animation */
  .menu-toggle.active span:nth-child(1),
  .menu-toggle.active .bar:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2),
  .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3),
  .menu-toggle.active .bar:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  section { padding: 32px 0; }  .mb-60 { margin-bottom: 28px !important; }
  .mb-48 { margin-bottom: 24px !important; }
  .mb-40 { margin-bottom: 20px !important; }
  .package-cards-grid { margin-top: 16px !important; }
  .preturi-grid { margin-bottom: 0 !important; }

  .packages-container {
    padding: 24px 0 40px 0 !important;
  }

  .packages-container .mb-60 {
    margin-bottom: 12px !important;
  }

  h1, .detail-title, .services-title { font-size: 32px !important; }
  h2, .detail-section-h2 { font-size: 24px !important; }
  h3, .detail-section-h3 { font-size: 18px !important; }

  .contact-hero {
    padding: 80px 0 60px;
  }
  
  .contact-whatsapp-bar {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin-top: -40px;
    margin-bottom: 40px;
    gap: 16px;
  }

  .contact-whatsapp-info {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }

  .contact-whatsapp-bar > svg:last-child {
    display: none;
  }

  .map-card {
    padding-bottom: 0;
  }

  .map-iframe-container {
    height: 380px;
  }

  .map-consent-overlay {
    padding: 20px 16px 80px 16px;
  }

  .map-consent-content {
    gap: 12px;
  }

  .map-consent-text {
    font-size: 14px;
    line-height: 1.5;
  }

  .map-floating-link {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    justify-content: center;
    padding: 12px 16px;
    font-size: 14px;
    z-index: 10;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  }

  .map-floating-link:hover {
    transform: translateX(-50%) translateY(-2px);
  }

  .contact-final-cta {
    padding: 60px 24px;
  }

  .contact-final-cta h2 {
    font-size: 26px;
  }

  .faq-question h3 {
    font-size: 16px;
    padding-right: 12px;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-bottom .flex-center {
    flex-direction: column;
    gap: 12px;
  }

  .detail-benefits-grid {
    grid-template-columns: 1fr !important;
  }

  .info-box-accent {
    margin-bottom: 24px !important; /* Restore standalone spacing */
  }

  /* Continuous line for stacked approach boxes */
  .approach-boxes {
    gap: 0 !important;
  }

  .approach-boxes .info-box-accent {
    margin-bottom: 0 !important;
    border-radius: 0 !important;
  }

  .approach-boxes .info-box-accent:first-child {
    border-radius: 0 14px 0 0 !important;
  }

  .approach-boxes .info-box-accent:last-child {
    border-radius: 0 0 14px 0 !important;
    margin-bottom: 0 !important;
  }

  /* Terapie Manuala Pillars (Section 1) */
  .detail-benefits-grid .detail-card-white {
    display: grid !important;
    grid-template-columns: auto 1fr;
    text-align: left !important;
    align-items: start !important;
    padding: 24px !important;
    gap: 0 16px;
    background: var(--surface-subtle) !important; /* Soft background */
    border: none !important;
    box-shadow: none !important;
  }

  .detail-benefits-grid .detail-card-white .kineto-feature-icon-wrapper {
    background: none !important; /* Remove circle */
    width: 24px !important;
    height: 24px !important;
    margin-top: 4px;
    grid-row: 1 / 3;
  }

  .detail-benefits-grid .detail-card-white svg {
    width: 20px !important;
    height: 20px !important;
    color: var(--primary) !important;
  }

  .detail-benefits-grid .detail-card-white h4 {
    grid-column: 2;
    font-size: 19px !important;
    color: var(--primary-dark);
  }

  .detail-benefits-grid .detail-card-white p {
    grid-column: 2;
    color: var(--text-muted);
  }

  /* Kineto Features (The other section) */
  .kineto-features-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .kineto-feature-card {
    display: grid !important;
    grid-template-columns: auto 1fr;
    text-align: left;
    align-items: start;
    gap: 0 16px;
    padding: 20px;
    background: #f8fafc;
    border: 0.8px solid #f1f5f9;
  }

  .kineto-feature-card h3 {
    grid-column: 2;
    margin-bottom: 4px !important;
  }

  .kineto-feature-card p {
    grid-column: 2;
  }

  .kineto-feature-icon-wrapper {
    width: 24px;
    height: 24px;
    background: var(--surface);
    border-radius: 50%;
    margin-bottom: 0;
    margin-top: 4px;
    flex-shrink: 0;
    grid-row: 1 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .kineto-feature-icon-wrapper svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
  }

  /* Afecțiuni List Fix */
  .afectiuni-list-container {
    margin-left: 20px !important;
  }

  /* Pricing Value Fix */
  .pricing-value {
    font-size: 28px !important;
  }
}

@media (max-width: 480px) {
  .container, .container-narrow, .container-900, .nav-container, .intro-label-wrapper {
    padding: 0 20px;
  }

  .contact-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
  }
  
  .contact-card-icon-box {
    margin-bottom: 8px;
  }
  
  .btn { width: 100%; text-align: center; }
}

/* =========================================
   GDPR WhatsApp Consent Modal
   ========================================= */
.gdpr-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.gdpr-modal[hidden] {
  display: none;
}

.gdpr-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 40, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: gdprFadeIn 0.2s ease forwards;
}

@keyframes gdprFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes gdprSlideUp {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.gdpr-modal-card {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px 32px;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  animation: gdprSlideUp 0.25s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gdpr-modal-icon {
  width: 52px;
  height: 52px;
  background-color: var(--whatsapp);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 4px;
}

.gdpr-modal-card h3 {
  font-size: 20px;
  color: var(--text-main);
  margin: 0;
}

.gdpr-modal-body {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

.gdpr-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.5;
  padding: 14px 16px;
  background: var(--surface-subtle);
  border-radius: 10px;
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.gdpr-checkbox-label:hover {
  border-color: var(--accent);
}

.gdpr-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--primary);
  cursor: pointer;
}

.gdpr-checkbox-label a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.gdpr-warning {
  font-size: 13px;
  color: #d92d20;
  margin: -8px 0 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gdpr-warning[hidden] {
  display: none;
}

.gdpr-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.gdpr-modal-actions .btn-accent {
  width: 100%;
  text-align: center;
  padding: 14px 24px;
}

.gdpr-cancel-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-muted);
  font-family: var(--font-sans);
  padding: 8px;
  text-align: center;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.gdpr-cancel-btn:hover {
  color: var(--text-main);
  background: var(--surface-light);
}

@media (max-width: 480px) {
  .gdpr-modal-card {
    padding: 28px 20px 24px;
  }
}

/* -------------------------------------------------------
   Legal Pages (Politică & Termeni)
------------------------------------------------------- */

/* Custom compact header for legal pages to keep it balanced and readable */
.legal-header {
  padding: 80px 0 40px !important; /* Larger top padding to offset fixed navbar, keeping bottom compact */
  border-bottom: 1px solid var(--surface-soft);
}

.legal-header .detail-title {
  font-size: 32px !important;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.8px;
}

@media (max-width: 991px) {
  .legal-header {
    padding: 80px 0 35px !important;
  }
  .legal-header .detail-title {
    font-size: 28px !important;
    letter-spacing: -0.5px;
  }
}

@media (max-width: 480px) {
  .legal-header {
    padding: 100px 0 25px !important;
  }
  .legal-header .detail-title {
    font-size: 24px !important;
    letter-spacing: -0.3px;
  }
}

/* "Ultima actualizare" — metadata, keeps it quiet */
.legal-last-updated {
  font-size: 13px;
  color: var(--text-cta);
  opacity: 0.6;
  margin-top: 8px;
  letter-spacing: 0.01em;
}

/* Main wrapper spacing */
.legal-content {
  padding-top: 20px;
}

/* Section h2 — clean, no excess weight */
.legal-section-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-dark);
  font-family: var(--font-sans);
  margin: 48px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--surface);
}

/* Sub-section block (WhatsApp/Google etc.) */
.legal-subsection {
  margin: 20px 0 20px 0;
  padding-left: 16px;
  border-left: 3px solid var(--surface);
}

.legal-subsection-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
  font-family: var(--font-sans);
  margin: 0 0 6px;
}

/* Body paragraphs */
.legal-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 16px;
}

/* Bullet list */
.legal-list {
  list-style: none;
  margin: 8px 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-list li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  padding-left: 20px;
  position: relative;
}

.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Inline code (sessionStorage etc.) */
.legal-content code {
  font-size: 13px;
  background: var(--surface-subtle);
  color: var(--primary);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
}

@media (max-width: 768px) {
  /* Dimensiunea logo-ului înainte de scroll pe telefon */
  .navbar .logo img {
    height: 38px; 
  }
  
  /* Dimensiunea logo-ului după ce utilizatorul face scroll pe telefon */
  .navbar.scrolled .logo img {
    height: 32px; 
  }
}
