/* ============================================
   LINO B.V. — Main Stylesheet
   Colors: Teal #2A9D8F | Navy #1A3A5C | Coral #E07A5F
   Fonts: Nunito (headings) + Source Sans 3 (body)
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Source+Sans+3:wght@300;400;600;700&display=swap');

/* ─── CSS Variables ─────────────────────────── */
:root {
  --teal:       #2A9D8F;
  --teal-dark:  #1E7B6E;
  --teal-light: #E8F7F5;
  --teal-mid:   #C2EAE5;
  --navy:       #1A3A5C;
  --coral:      #E07A5F;
  --white:      #FFFFFF;
  --off-white:  #F8FFFE;
  --gray-100:   #F4F6F8;
  --gray-200:   #E8ECF0;
  --gray-400:   #9CA8B4;
  --gray-600:   #5A6675;
  --gray-800:   #2D3748;
  --shadow-sm:  0 2px 8px rgba(26,58,92,0.08);
  --shadow-md:  0 6px 24px rgba(26,58,92,0.12);
  --shadow-lg:  0 16px 48px rgba(26,58,92,0.16);
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --transition: 0.3s ease;
  --font-head:  'Nunito', sans-serif;
  --font-body:  'Source Sans 3', sans-serif;
}

/* ─── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Typography ─────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: var(--font-head); color: var(--navy); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); font-weight: 800; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }
p  { font-size: 1.05rem; color: var(--gray-600); }

/* ─── Utility ────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 0; }
.section--gray { background: var(--gray-100); }
.section--teal { background: var(--teal-light); }
.text-center { text-align: center; }
.text-teal  { color: var(--teal); }
.text-coral { color: var(--coral); }
.badge {
  display: inline-block;
  background: var(--teal-mid);
  color: var(--teal-dark);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-title { margin-bottom: 12px; }
.section-intro { font-size: 1.1rem; color: var(--gray-600); max-width: 620px; margin: 0 auto 56px; }

/* ─── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-secondary:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }
.btn-white {
  background: var(--white);
  color: var(--teal);
  border-color: var(--white);
}
.btn-white:hover { background: var(--teal-light); transform: translateY(-2px); }
.btn-coral {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.btn-coral:hover { background: #c96549; border-color: #c96549; transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ─── NAVBAR ─────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.navbar__logo { display: flex; align-items: center; gap: 10px; }
.navbar__logo img { height: 48px; width: auto; }
.navbar__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.navbar__logo-text span:first-child {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.navbar__logo-text span:last-child {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.04em;
}
.navbar__nav { display: flex; align-items: center; gap: 4px; }
.navbar__nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-600);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.navbar__nav a:hover, .navbar__nav a.active { color: var(--teal); background: var(--teal-light); }
.navbar__right { display: flex; align-items: center; gap: 12px; }
.lang-switcher {
  display: flex;
  align-items: center;
  background: var(--gray-100);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
}
.lang-switcher button {
  background: none;
  border: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 5px 12px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--gray-400);
  transition: var(--transition);
  letter-spacing: 0.05em;
}
.lang-switcher button.active {
  background: var(--teal);
  color: var(--white);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: 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); }
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--gray-200);
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--gray-700);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--teal); background: var(--teal-light); }
.mobile-menu .lang-switcher { margin-top: 12px; align-self: flex-start; }

/* ─── PAGE OFFSET ────────────────────────────── */
.page-content { padding-top: 72px; }

/* ─── HERO ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #EAF8F6 0%, #F8FFFE 40%, #EFF7FF 100%);
}
.hero__bg-shape {
  position: absolute;
  top: -120px; right: -180px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(42,157,143,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero__bg-shape2 {
  position: absolute;
  bottom: -100px; left: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(42,157,143,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 64px 0;
}
.hero__content { animation: fadeUp 0.8s ease both; }
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-mid);
  color: var(--teal-dark);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero__tag::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--teal); }
.hero p { font-size: 1.15rem; margin-bottom: 36px; max-width: 480px; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__visual { animation: fadeUp 0.8s 0.2s ease both; }
.hero__card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero__card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.hero__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.hero__card--accent { background: var(--teal); color: var(--white); }
.hero__card--accent h4, .hero__card--accent p { color: var(--white); }
.hero__card-icon {
  width: 48px; height: 48px;
  background: var(--teal-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  font-size: 1.4rem;
}
.hero__card--accent .hero__card-icon { background: rgba(255,255,255,0.2); }
.hero__card h4 { font-size: 0.95rem; margin-bottom: 4px; }
.hero__card p  { font-size: 0.85rem; }
.hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}
.hero__stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--teal);
}
.hero__stat span { font-size: 0.85rem; color: var(--gray-400); }

/* ─── CARE PATHS ─────────────────────────────── */
.care-paths__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.care-path-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 2px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.care-path-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--gray-200);
  transition: var(--transition);
}
.care-path-card:hover { border-color: var(--teal); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.care-path-card:hover::before { background: var(--teal); }
.care-path-card.coral:hover::before { background: var(--coral); }
.care-path-card.coral:hover { border-color: var(--coral); }
.care-path-card__icon {
  font-size: 3rem;
  margin-bottom: 20px;
}
.care-path-card h3 { margin-bottom: 12px; }
.care-path-card p { margin-bottom: 24px; }
.care-path-card ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.care-path-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--gray-600);
}
.care-path-card ul li::before {
  content: '✓';
  display: flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  min-width: 20px;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
}

/* ─── SERVICES GRID ──────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--teal-mid); }
.service-card__icon {
  font-size: 2.2rem;
  width: 60px; height: 60px;
  background: var(--teal-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.service-card p { font-size: 0.92rem; }

/* ─── HOW IT WORKS ───────────────────────────── */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps__grid::before {
  content: '';
  position: absolute;
  top: 40px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-mid), var(--teal), var(--teal-mid));
  z-index: 0;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  width: 64px; height: 64px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0 auto 20px;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}
.step-card h4 { margin-bottom: 10px; }
.step-card p { font-size: 0.9rem; }

/* ─── TESTIMONIALS ───────────────────────────── */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card__quote {
  font-size: 3rem;
  color: var(--teal-mid);
  font-family: var(--font-head);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
}
.testimonial-card p { font-size: 0.95rem; font-style: italic; margin-bottom: 20px; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.testimonial-card__name strong { display: block; font-family: var(--font-head); font-size: 0.9rem; color: var(--navy); }
.testimonial-card__name span  { font-size: 0.8rem; color: var(--gray-400); }
.stars { color: #F6AE2D; font-size: 0.85rem; margin-bottom: 12px; letter-spacing: 2px; }

/* ─── CTA BANNER ─────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── ABOUT PAGE ─────────────────────────────── */
.about-hero {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--off-white) 100%);
  padding: 80px 0;
}
.about-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-hero p { margin-bottom: 16px; }
.values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.value-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); }
.value-card__icon { font-size: 2rem; margin-bottom: 12px; }
.value-card h4 { margin-bottom: 8px; }
.value-card p { font-size: 0.9rem; }
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-card__avatar {
  width: 80px; height: 80px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
  border: 3px solid var(--teal-mid);
}
.team-card h4 { margin-bottom: 4px; }
.team-card span { font-size: 0.88rem; color: var(--teal); font-weight: 600; }
.team-card p { font-size: 0.88rem; margin-top: 10px; }

/* ─── CONTACT ────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: start;
}
.contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-info__icon {
  width: 48px; height: 48px;
  min-width: 48px;
  background: var(--teal-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.contact-info__text strong { display: block; font-family: var(--font-head); color: var(--navy); margin-bottom: 2px; }
.contact-info__text span  { font-size: 0.92rem; color: var(--gray-600); }
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-800);
  transition: var(--transition);
  background: var(--white);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(42,157,143,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  background: var(--teal-light);
  border: 1px solid var(--teal-mid);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: var(--teal-dark);
  font-weight: 600;
  margin-top: 16px;
  text-align: center;
}
.form-success.show { display: block; }

/* ─── PAGE HERO ──────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--off-white) 60%, #EFF7FF 100%);
  padding: 72px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(42,157,143,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p  { font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--gray-400);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--teal); }
.breadcrumb span { color: var(--gray-400); }

/* ─── SERVICES PAGE ──────────────────────────── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--gray-200);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail__visual {
  background: linear-gradient(135deg, var(--teal-light), var(--teal-mid));
  border-radius: var(--radius-lg);
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}
.service-detail h3 { margin-bottom: 16px; }
.service-detail p { margin-bottom: 16px; }
.service-detail ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.service-detail ul li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.95rem; color: var(--gray-600);
}
.service-detail ul li::before {
  content: '→';
  color: var(--teal);
  font-weight: 700;
}

/* ─── PGB SECTION ────────────────────────────── */
.pgb-card {
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.pgb-card h3, .pgb-card p { color: white; }
.pgb-card p { color: rgba(255,255,255,0.85); margin-bottom: 12px; }
.pgb-steps { display: flex; flex-direction: column; gap: 16px; }
.pgb-step { display: flex; gap: 16px; align-items: flex-start; }
.pgb-step-num {
  width: 32px; height: 32px; min-width: 32px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 0.85rem;
  color: white;
}
.pgb-step div { font-size: 0.9rem; color: rgba(255,255,255,0.9); }
.pgb-step div strong { display: block; color: white; font-family: var(--font-head); margin-bottom: 2px; }

/* ─── CARE SEEKER / PROVIDER PAGE ───────────────*/
.care-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.care-intro__visual {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal-mid) 100%);
  border-radius: var(--radius-lg);
  min-height: 380px;
  display: flex; align-items: center; justify-content: center;
  font-size: 7rem;
  position: relative;
  overflow: hidden;
}
.care-intro__visual::before {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 200px; height: 200px;
  background: rgba(42,157,143,0.2);
  border-radius: 50%;
}
.process-steps { display: flex; flex-direction: column; gap: 24px; }
.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.process-step:hover { border-color: var(--teal); box-shadow: var(--shadow-md); }
.process-step-num {
  width: 48px; height: 48px; min-width: 48px;
  background: var(--teal);
  color: white;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 900; font-size: 1.1rem;
}
.process-step h4 { margin-bottom: 4px; }
.process-step p  { font-size: 0.9rem; }

/* ─── FOOTER ─────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 72px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__logo-text span:first-child {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: white;
}
.footer__logo-text span:last-child {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
  display: block;
  line-height: 1.2;
}
.footer__desc { font-size: 0.9rem; line-height: 1.7; }
.footer__social { display: flex; gap: 12px; margin-top: 4px; }
.footer__social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer__social a:hover { background: var(--teal); }
.footer h5 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 0.9rem;
  transition: var(--transition);
  color: rgba(255,255,255,0.7);
}
.footer__links a:hover { color: var(--teal); padding-left: 4px; }
.footer__contact-item { display: flex; gap: 10px; margin-bottom: 14px; align-items: flex-start; }
.footer__contact-item span:first-child { font-size: 1rem; margin-top: 2px; }
.footer__contact-item span:last-child  { font-size: 0.88rem; line-height: 1.5; }
.footer__bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer__bottom a:hover { color: var(--teal); }

/* ─── ANIMATIONS ─────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: 0.6; }
}
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .steps__grid { grid-template-columns: repeat(2, 1fr); }
  .steps__grid::before { display: none; }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .navbar__nav, .navbar__right .btn { display: none; }
  .hamburger { display: flex; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { display: none; }
  .care-paths__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .steps__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .about-hero__inner { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse { direction: ltr; }
  .pgb-card { grid-template-columns: 1fr; }
  .care-intro { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; gap: 16px; }
  .navbar__right .lang-switcher { display: flex; }
}
@media (max-width: 480px) {
  .team__grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; }
  .cta-banner__btns { flex-direction: column; align-items: center; }
}
