/* ============================================================
   AWAREmed – Premium Colorful Design System v2
   Logo Colors: Blue #3A8FC7 | Green #5AB347 | Brown #7B5535
   Brand: Olive #4a7c3f | Yellow #c8ed2a | Sky Blue #0ea5e9
   ============================================================ */

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

:root {
  /* Brand */
  --green:        #4a7c3f;
  --green-dark:   #1a2e1a;
  --green-mid:    #2d5a24;
  --green-light:  #e8f5e3;
  --green-soft:   #f0fdf4;
  /* Logo colors */
  --logo-blue:    #3A8FC7;
  --logo-green:   #5AB347;
  --logo-brown:   #7B5535;
  /* Accent */
  --yellow:       #c8ed2a;
  --yellow-deep:  #a8c420;
  --yellow-soft:  #f5fcc0;
  --blue:         #0ea5e9;
  --blue-dark:    #0369a1;
  --blue-soft:    #e0f2fe;
  --teal:         #14b8a6;
  --teal-dark:    #0d9488;
  --purple:       #8b5cf6;
  --orange:       #f59e0b;
  --rose:         #f43f5e;
  /* Neutrals */
  --white:        #ffffff;
  --off-white:    #f8fdf6;
  --gray-50:      #f9fafb;
  --gray-100:     #f3f4f6;
  --gray-200:     #e5e7eb;
  --gray-400:     #9ca3af;
  --gray-500:     #6b7280;
  --gray-700:     #374151;
  --text:         #1a2e1a;
  --text-muted:   #4a6741;
  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(26,46,26,.07), 0 1px 2px rgba(26,46,26,.05);
  --shadow-md:  0 4px 20px rgba(26,46,26,.10), 0 2px 8px rgba(26,46,26,.06);
  --shadow-lg:  0 12px 48px rgba(26,46,26,.14), 0 4px 16px rgba(26,46,26,.08);
  --shadow-xl:  0 24px 72px rgba(26,46,26,.18), 0 8px 28px rgba(26,46,26,.10);
  --glow-green: 0 0 24px rgba(74,124,63,.35), 0 0 48px rgba(74,124,63,.15);
  --glow-teal:  0 0 24px rgba(20,184,166,.4),  0 0 48px rgba(20,184,166,.2);
  --glow-blue:  0 0 24px rgba(14,165,233,.4),  0 0 48px rgba(14,165,233,.2);
  /* Geometry */
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   36px;
  --radius-2xl:  48px;
  --radius-full: 9999px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  /* Fonts */
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Nunito Sans', 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── RTL support for Arabic ── */
[dir="rtl"] { direction: rtl; text-align: right; }
[dir="rtl"] .hero-inner { direction: rtl; }
[dir="rtl"] .submenu { left: auto; right: 0; }
[dir="rtl"] .submenu li a:hover { padding-left: 16px; padding-right: 22px; }
@media(max-width:680px){ [dir="rtl"] .submenu { border-left: none; border-right: 3px solid rgba(42,159,214,.3); margin-left: 0; margin-right: 12px; } }
[dir="rtl"] .eyebrow::before { margin-left: 8px; margin-right: 0; }
[dir="rtl"] .footer-top { direction: rtl; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 700; line-height: 1.2; color: var(--green-dark); letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.55rem); }
h4 { font-size: 1.1rem; }
p { color: var(--text-muted); line-height: 1.8; }
a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-mid); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.lead { font-size: 1.12rem; color: var(--text-muted); max-width: 680px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── Layout ── */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 140px 0; }
.section-alt { background: var(--off-white); }
.section-green { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%); }
.section-green-soft { background: var(--green-light); }
.section-blue-soft { background: var(--blue-soft); }
.section-yellow { background: linear-gradient(135deg, #f5fcc0 0%, #e8f5e3 100%); }
.grid { display: grid; gap: 28px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }

/* ── Eyebrow ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.76rem; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green); margin-bottom: 14px;
}
.eyebrow::before {
  content: ''; display: inline-block; width: 28px; height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--teal));
  border-radius: 3px;
}
.eyebrow-white { color: rgba(255,255,255,.85); }
.eyebrow-white::before { background: linear-gradient(90deg, var(--yellow), rgba(255,255,255,.5)); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 800; font-size: 0.9rem;
  letter-spacing: 0.02em; padding: 14px 30px; border-radius: var(--radius-full);
  border: 2.5px solid transparent; cursor: pointer; text-decoration: none;
  transition: all var(--transition-bounce); white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,.3) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.4s;
}
.btn:active::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--teal) 0%, #0891b2 100%);
  color: white; border-color: transparent;
  box-shadow: 0 4px 24px rgba(20,184,166,.4), 0 2px 8px rgba(20,184,166,.2);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 40px rgba(20,184,166,.5), 0 4px 16px rgba(20,184,166,.3), var(--glow-teal);
  color: white;
}

.btn-green {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(74,124,63,.35);
}
.btn-green:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 40px rgba(74,124,63,.45), var(--glow-green);
  color: white;
}

.btn-blue {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: white; box-shadow: 0 4px 20px rgba(14,165,233,.35);
}
.btn-blue:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 40px rgba(14,165,233,.45), var(--glow-blue);
  color: white;
}

.btn-yellow {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-deep) 100%);
  color: var(--green-dark); border-color: transparent;
  box-shadow: 0 4px 20px rgba(200,237,42,.4);
}
.btn-yellow:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 40px rgba(200,237,42,.5);
  color: var(--green-dark);
}

.btn-outline {
  background: transparent; color: var(--green); border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green); color: white;
  transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.btn-outline-white {
  background: rgba(255,255,255,.1); color: white; border-color: rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
}
.btn-outline-white:hover { background: rgba(255,255,255,.2); color: white; border-color: white; transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.08); color: white; border-color: rgba(255,255,255,.2); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,.18); color: white; }
.btn-lg { padding: 18px 44px; font-size: 1.02rem; }
.btn-sm { padding: 9px 18px; font-size: 0.8rem; }

/* ── Language Switcher ── */
.lang-switcher {
  display: flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,.08); border-radius: var(--radius-full);
  padding: 4px 6px; border: 1px solid rgba(255,255,255,.15);
}
.lang-btn {
  padding: 5px 11px; border-radius: var(--radius-full); border: none;
  background: transparent; color: rgba(255,255,255,.65); font-size: 0.75rem;
  font-weight: 700; cursor: pointer; transition: all var(--transition);
  font-family: var(--font-sans); letter-spacing: 0.04em;
}
.lang-btn.active, .lang-btn:hover {
  background: var(--yellow); color: var(--green-dark);
}

/* ── Header Language Switcher (beside CTA button) ── */
.header-lang {
  display: flex; align-items: center; gap: 2px;
  background: linear-gradient(135deg, #1a8fa8 0%, #2eb87a 100%);
  border-radius: var(--radius-full);
  padding: 3px 5px; border: 1px solid rgba(255,255,255,.3);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(26,143,168,.35);
}
.lang-btn-header {
  padding: 5px 11px; border-radius: var(--radius-full); border: none;
  background: transparent; color: rgba(255,255,255,.85); font-size: 0.72rem;
  font-weight: 800; cursor: pointer; transition: all var(--transition);
  font-family: var(--font-sans); letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 3px; white-space: nowrap;
}
.lang-btn-header.active {
  background: #ffffff; color: #1a6b80;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.lang-btn-header:hover:not(.active) {
  background: rgba(255,255,255,.25); color: #ffffff;
}
.lang-flag { font-size: 0.9rem; }
/* Legacy — hide old utility-bar switcher remnants if any */
.lang-switcher-header { display: none; }

/* ── Utility Bar ── */
.utility-bar {
  background: linear-gradient(90deg, var(--green-dark) 0%, #1f3d1f 50%, var(--green-dark) 100%);
  padding: 9px 0; font-size: 0.78rem; color: rgba(255,255,255,.65);
}
.util-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.util-right { display: flex; align-items: center; gap: 20px; }
.util-phone { color: var(--yellow); font-weight: 800; letter-spacing: 0.02em; }
.util-phone:hover { color: white; }
.util-disclaimer { font-size: 0.72rem; opacity: .55; }

/* ── Header ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.94); backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(74,124,63,.08);
  transition: all var(--transition); padding: 12px 0;
}
.site-header.scrolled {
  padding: 8px 0; box-shadow: 0 4px 40px rgba(26,46,26,.12);
  background: rgba(255,255,255,.98);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
/* Group lang switcher + CTA together at the right end */
.header-inner .header-lang + .header-cta,
.header-inner > .header-lang { margin-left: auto; }
.header-inner .primary-nav + .header-lang { margin-left: auto; }

/* Logo */
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-logo { height: 58px; width: auto; object-fit: contain; }
.brand-logo-svg { height: 58px; width: auto; }

/* Nav */
.primary-nav ul { display: flex; align-items: center; gap: 2px; }
.primary-nav > ul > li { position: relative; }
.primary-nav > ul > li > a {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.86rem; font-weight: 800; color: var(--green-dark);
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: all var(--transition); letter-spacing: 0.01em;
}
.primary-nav > ul > li > a:hover,
.primary-nav > ul > li > a[aria-current] {
  color: var(--green); background: var(--green-light);
}
.caret { font-size: 0.65rem; opacity: .8; transition: transform 0.2s ease; vertical-align: middle; }
.has-sub:hover .caret,
.has-sub.sub-open .caret { transform: rotate(180deg); opacity: 1; }

/* Dropdown */
.submenu {
  position: absolute; top: calc(100% + 12px); left: 0;
  width: 240px; background: white;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(10px) scale(0.97);
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1); z-index: 100;
  /* override the parent flex row — items must stack vertically */
  display: flex !important; flex-direction: column; align-items: stretch; gap: 0;
}
.has-sub:hover .submenu, .has-sub:focus-within .submenu {
  opacity: 1; visibility: visible; transform: translateY(0) scale(1);
}
.submenu li { display: block; width: 100%; }
.submenu li a {
  display: block; width: 100%;
  padding: 10px 16px; font-size: 0.85rem; font-weight: 700;
  color: #1A3020; border-radius: var(--radius-sm); transition: all 0.2s;
  white-space: normal; line-height: 1.3;
}
.submenu li a:hover { background: rgba(42,159,214,.08); color: #2A9FD6; padding-left: 22px; }
.submenu li:first-child a { color: #2A9FD6; font-weight: 800; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 8px; border-radius: 8px; z-index: 1001;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--green-dark); border-radius: 2px; transition: all 0.3s; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 140px 0 80px; position: relative; overflow: hidden;
}

/* Colorful gradient hero background */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg,
    #f0fdf4 0%, #e8f5e3 25%,
    #f0f9ff 50%, #fefce8 75%,
    #fdf4ff 100%);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(200,237,42,.18) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 10%, rgba(14,165,233,.14) 0%, transparent 45%),
    radial-gradient(ellipse at 70% 80%, rgba(139,92,246,.10) 0%, transparent 45%),
    radial-gradient(ellipse at 10% 80%, rgba(20,184,166,.12) 0%, transparent 40%);
}

/* Floating orbs */
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: .35; z-index: 0; pointer-events: none;
}
.hero-orb-1 { width: 500px; height: 500px; background: rgba(200,237,42,.4); top: -120px; right: -60px; animation: orb-drift 12s ease-in-out infinite; }
.hero-orb-2 { width: 350px; height: 350px; background: rgba(14,165,233,.35); bottom: -80px; left: -60px; animation: orb-drift 9s ease-in-out infinite reverse; }
.hero-orb-3 { width: 250px; height: 250px; background: rgba(139,92,246,.3); top: 40%; left: 40%; animation: orb-drift 15s ease-in-out infinite 3s; }

.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }

/* Hero badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: white; border: 1.5px solid var(--green-light);
  border-radius: var(--radius-full); padding: 9px 20px;
  font-size: 0.8rem; font-weight: 800; color: var(--green);
  margin-bottom: 22px; box-shadow: var(--shadow-sm);
  animation: fade-up 0.6s ease both;
}
.badge-dot {
  width: 9px; height: 9px; background: var(--yellow); border-radius: 50%;
  animation: pulse-dot 2s infinite; box-shadow: 0 0 0 4px rgba(200,237,42,.3);
}

.hero h1 {
  margin-bottom: 20px; animation: fade-up 0.7s ease both 0.1s;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, var(--logo-blue) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc { font-size: 1.1rem; margin-bottom: 34px; line-height: 1.8; animation: fade-up 0.7s ease both 0.2s; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; animation: fade-up 0.7s ease both 0.3s; }

/* Trust badges */
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; animation: fade-up 0.7s ease both 0.4s; }
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  background: white; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-full); padding: 7px 14px;
  font-size: 0.78rem; font-weight: 700; color: var(--green-dark);
  box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.trust-badge:hover { border-color: var(--green); background: var(--green-light); transform: translateY(-2px); }
.trust-badge-icon { font-size: 1rem; }

/* Stats */
.stat-label { font-size: 0.72rem; color: var(--text-muted); margin-top: 4px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; }

/* Video container */
.hero-media {
  position: relative;
  animation: float 6s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-container {
  border-radius: 28px; overflow: visible;
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, var(--green-dark) 0%, #1e4d18 40%, #0c3a6e 100%);
  box-shadow: 0 40px 100px rgba(26,46,26,.32), 0 16px 48px rgba(26,46,26,.18);
  position: relative; isolation: isolate;
}
.video-container::before {
  content: ''; position: absolute; inset: -3px; border-radius: 31px; z-index: -1;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--teal) 33%, var(--purple) 66%, var(--logo-blue) 100%);
  animation: rotate-gradient 6s linear infinite;
}
.video-inner {
  position: absolute; inset: 3px; border-radius: 26px; overflow: hidden;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 18px;
  background: linear-gradient(135deg, var(--green-dark) 0%, #1e4d18 40%, #0c3a6e 100%);
}
.video-dots-bg {
  position: absolute; inset: 0; opacity: .05;
  background-image: radial-gradient(white 1px, transparent 1px);
  background-size: 28px 28px;
}
.play-btn {
  width: 82px; height: 82px; border-radius: 50%; background: rgba(255,255,255,.96);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition-bounce);
  box-shadow: 0 8px 32px rgba(0,0,0,.28); position: relative; z-index: 2;
  border: 4px solid rgba(200,237,42,.5);
}
.play-btn:hover { transform: scale(1.12); box-shadow: 0 16px 48px rgba(0,0,0,.3), 0 0 0 10px rgba(200,237,42,.2); }
.play-btn::before {
  content: ''; position: absolute; inset: -10px; border-radius: 50%;
  border: 2.5px solid rgba(200,237,42,.35); animation: pulse-ring 2.5s ease-out infinite;
}
.play-btn::after {
  content: ''; position: absolute; inset: -22px; border-radius: 50%;
  border: 1.5px solid rgba(200,237,42,.15); animation: pulse-ring 2.5s ease-out infinite 0.8s;
}
.play-btn svg { color: var(--green); margin-left: 5px; }
.video-caption { text-align: center; position: relative; z-index: 2; }
.video-caption h3 { color: white; font-size: 1.25rem; margin-bottom: 6px; }
.video-caption p { color: rgba(255,255,255,.65); font-size: 0.83rem; }

/* Floating video badges */
.video-badge {
  position: absolute; background: white; border-radius: 16px; padding: 12px 18px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
  font-size: 0.8rem; font-weight: 800; color: var(--green-dark); z-index: 10;
  border: 1.5px solid var(--gray-200);
}
.video-badge-1 { bottom: -22px; left: -24px; animation: float 5s ease-in-out infinite; }
.video-badge-2 { top: -18px; right: -20px; animation: float 7s ease-in-out infinite reverse; }
.video-badge-icon {
  width: 38px; height: 38px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.bi-green { background: linear-gradient(135deg, var(--green-light), #c8f0b8); }
.bi-blue  { background: linear-gradient(135deg, var(--blue-soft), #bae6fd); }
.bi-yellow { background: linear-gradient(135deg, var(--yellow-soft), #fef08a); }

/* ── Section header ── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 16px; }
.section-header .lead { margin: 0 auto; }

/* ── Cards ── */
.card {
  background: white; border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow-sm); border: 1.5px solid var(--gray-200);
  transition: all var(--transition-bounce); position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--teal), var(--blue));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
  border-radius: 4px 4px 0 0;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: rgba(74,124,63,.25); }
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 64px; height: 64px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center; font-size: 1.7rem;
  margin-bottom: 20px; background: var(--green-light); transition: all var(--transition-bounce);
}
.card:hover .card-icon { transform: scale(1.12) rotate(-6deg); }
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { font-size: 0.92rem; line-height: 1.75; }

/* Color-coded cards */
.card-blue .card-icon  { background: var(--blue-soft); }
.card-yellow .card-icon { background: var(--yellow-soft); }
.card-purple .card-icon { background: #f3e8ff; }
.card-teal .card-icon  { background: #ccfbf1; }
.card-rose .card-icon  { background: #ffe4e6; }
.card-orange .card-icon { background: #fef3c7; }

/* ── Colorful Accent Cards ── */
.accent-card {
  border-radius: var(--radius-lg); padding: 36px; position: relative;
  overflow: hidden; transition: all var(--transition-bounce);
  text-decoration: none; display: flex; flex-direction: column;
}
.accent-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-xl); }
.accent-card-1 { background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border: 1.5px solid #bbf7d0; }
.accent-card-2 { background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%); border: 1.5px solid #bfdbfe; }
.accent-card-3 { background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%); border: 1.5px solid #fde68a; }
.accent-card-4 { background: linear-gradient(135deg, #fdf4ff 0%, #f3e8ff 100%); border: 1.5px solid #e9d5ff; }
.accent-card-5 { background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%); border: 1.5px solid #99f6e4; }
.accent-card-6 { background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%); border: 1.5px solid #fdba74; }

/* ── Service Carousel ── */
.carousel-section { overflow: hidden; padding: 80px 0; }
.carousel-track-wrap { overflow: hidden; padding: 20px 0; }
.carousel-track {
  display: flex; gap: 28px; width: max-content;
  animation: scroll-left 42s linear infinite;
}
.carousel-track:hover { animation-play-state: paused; }
.carousel-card {
  width: 300px; flex-shrink: 0; border-radius: var(--radius-lg);
  overflow: hidden; background: white; box-shadow: var(--shadow-md);
  border: 1.5px solid var(--gray-200); cursor: pointer;
  transition: all var(--transition-bounce); text-decoration: none; display: block;
  position: relative;
}
.carousel-card::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg);
  border: 2px solid transparent; transition: all 0.35s;
  background: linear-gradient(white,white) padding-box,
              linear-gradient(135deg, var(--teal), var(--yellow), var(--blue)) border-box;
  opacity: 0;
}
.carousel-card:hover { transform: translateY(-10px) scale(1.03); box-shadow: 0 20px 60px rgba(74,124,63,.2); }
.carousel-card:hover::after { opacity: 1; }
.carousel-card:hover .carousel-card-img { transform: scale(1.1); }
.carousel-card-img-wrap { overflow: hidden; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--green-light) 0%, var(--blue-soft) 100%); }
.carousel-card-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.5s ease; display: block; }
.carousel-card-body { padding: 22px; }
.carousel-card-body h3 { font-size: 1rem; margin-bottom: 7px; }
.carousel-card-body p { font-size: 0.84rem; color: var(--gray-500); margin-bottom: 14px; }
.carousel-arrow { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 800; color: var(--green); }

/* ── Colorful img placeholders ── */
.img-placeholder {
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px; color: rgba(255,255,255,.8);
  font-size: 0.84rem; font-weight: 700; border-radius: 16px;
}
.img-ph-1 { background: linear-gradient(135deg, #4a7c3f 0%, #2d5a24 100%); }
.img-ph-2 { background: linear-gradient(135deg, #0ea5e9 0%, #0369a1 100%); }
.img-ph-3 { background: linear-gradient(135deg, #c8ed2a 0%, #86a812 100%); }
.img-ph-4 { background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%); }
.img-ph-5 { background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%); }
.img-ph-6 { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.img-ph-7 { background: linear-gradient(135deg, #f43f5e 0%, #be123c 100%); }
.img-ph-8 { background: linear-gradient(135deg, #3A8FC7 0%, #1e5f94 100%); }
.img-placeholder-icon { font-size: 2.8rem; opacity: .85; }

/* ── Testimonials ── */
.testimonials-section { padding: 100px 0; background: linear-gradient(135deg, var(--green-dark) 0%, #0c3a6e 100%); position: relative; overflow: hidden; }
.testimonials-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(200,237,42,.08) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 50%, rgba(14,165,233,.08) 0%, transparent 50%);
}
.testimonials-section .section-header h2 { color: white; }
.testimonials-section .section-header .lead { color: rgba(255,255,255,.7); }

.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track { display: flex; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.testimonial-slide { min-width: 100%; padding: 0 32px; }
.testimonial-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(16px); border-radius: var(--radius-xl);
  padding: 50px 60px; text-align: center; max-width: 820px; margin: 0 auto;
}
.testimonial-stars { font-size: 1.4rem; margin-bottom: 22px; color: var(--yellow); letter-spacing: 5px; }
.testimonial-text {
  font-size: 1.22rem; font-style: italic; color: rgba(255,255,255,.93);
  line-height: 1.8; margin-bottom: 30px; font-family: var(--font-serif);
}
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 16px; }
.testimonial-avatar {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--teal) 100%);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  border: 3px solid rgba(255,255,255,.2);
}
.testimonial-name { color: white; font-weight: 800; font-size: 0.95rem; }
.testimonial-meta { color: rgba(255,255,255,.5); font-size: 0.8rem; margin-top: 3px; }
.verified-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(200,237,42,.15); color: var(--yellow);
  border-radius: var(--radius-full); padding: 3px 10px;
  font-size: 0.72rem; font-weight: 800; border: 1px solid rgba(200,237,42,.3); margin-top: 7px;
}
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 40px; }
.slider-btn {
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.2);
  color: white; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all var(--transition-bounce); backdrop-filter: blur(8px);
}
.slider-btn:hover { background: var(--yellow); color: var(--green-dark); transform: scale(1.1); border-color: var(--yellow); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.3); cursor: pointer; transition: all var(--transition); border: none;
}
.slider-dot.active { background: var(--yellow); width: 28px; border-radius: 4px; }

/* ── Stats row (legacy — kept for other pages) ── */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; }
.stat-block { background: white; text-align: center; padding: 50px 24px; transition: all var(--transition); }
.stat-block:hover { background: var(--green-light); }
.stat-number { font-family: var(--font-serif); font-size: 3rem; font-weight: 700; color: var(--green); line-height: 1; margin-bottom: 8px; }
.stat-desc { font-size: 0.86rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.07em; }

/* ── Stats Band (homepage gradient) ── */
.stats-band {
  background: linear-gradient(135deg, #2A9FD6 0%, #5CB85C 100%);
  padding: 80px 0;
}
.stats-band-row {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}
.stats-band-item {
  flex: 1;
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid rgba(255,255,255,0.3);
}
.stats-band-item--last { border-right: none; }
.stats-band-num {
  font-family: var(--font-sans);
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}
.stats-band-label {
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ── Trust grid ── */
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 60px; }
.trust-card {
  text-align: center; padding: 36px 22px; border-radius: var(--radius-lg);
  background: white; box-shadow: var(--shadow-sm); border: 1.5px solid var(--gray-200);
  transition: all var(--transition-bounce);
}
.trust-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-xl); }
.trust-card-icon {
  width: 68px; height: 68px; margin: 0 auto 18px; border-radius: 22px;
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
  background: var(--green-light); transition: all var(--transition-bounce);
}
.trust-card:hover .trust-card-icon { transform: rotate(-8deg) scale(1.1); }
.trust-card h3 { font-size: 1rem; margin-bottom: 8px; }
.trust-card p { font-size: 0.84rem; }

/* ── About ── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.about-img-wrap { position: relative; border-radius: var(--radius-xl); overflow: visible; }
.about-img-wrap img { width: 100%; object-fit: cover; border-radius: var(--radius-xl); transition: transform 0.6s ease; }
.about-img-wrap:hover img { transform: scale(1.04); }
.about-img-badge {
  position: absolute; bottom: 24px; left: 24px; background: white;
  border-radius: var(--radius-md); padding: 16px 22px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 14px; border: 1.5px solid var(--gray-200);
}

/* Feature list */
.features-list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.feature-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 20px; background: var(--off-white); border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200); transition: all var(--transition);
}
.feature-item:hover { background: var(--green-light); border-color: rgba(74,124,63,.25); transform: translateX(6px); }
.feature-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.feature-text h4 { font-size: 0.95rem; margin-bottom: 4px; }
.feature-text p { font-size: 0.84rem; margin: 0; }

/* ── Process steps ── */
.process-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 50px; left: calc(16.66% + 24px); right: calc(16.66% + 24px);
  height: 2px; background: linear-gradient(to right, var(--green-light), var(--yellow), var(--green-light));
}
.process-step { text-align: center; padding: 40px 28px; position: relative; z-index: 1; }
.step-num {
  width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, var(--green) 0%, var(--teal) 100%);
  color: white; font-weight: 800; font-size: 1.1rem; font-family: var(--font-serif);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px; box-shadow: 0 4px 24px rgba(74,124,63,.35);
  transition: all var(--transition-bounce); position: relative; z-index: 2;
}
.process-step:hover .step-num { transform: scale(1.15) rotate(8deg); box-shadow: 0 8px 32px rgba(74,124,63,.5); }

/* ── FAQ ── */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1.5px solid var(--gray-200); border-radius: var(--radius-md); overflow: hidden; background: white; transition: all var(--transition); }
.faq-item.open { border-color: rgba(74,124,63,.35); box-shadow: var(--shadow-md); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px; cursor: pointer; font-weight: 800; font-size: 0.95rem;
  color: var(--green-dark); gap: 16px; user-select: none;
}
.faq-icon {
  width: 34px; height: 34px; border-radius: 50%; background: var(--green-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 1.1rem; transition: all var(--transition-bounce); color: var(--green); font-weight: 900;
}
.faq-item.open .faq-icon { background: var(--green); color: white; transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
  padding: 0 28px; font-size: 0.92rem; line-height: 1.8; color: var(--text-muted);
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 28px 24px; }

/* ── Blog ── */
.blog-card {
  border-radius: var(--radius-lg); overflow: hidden; background: white;
  box-shadow: var(--shadow-sm); border: 1.5px solid var(--gray-200);
  transition: all var(--transition-bounce); text-decoration: none; display: block;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.blog-img-wrap { overflow: hidden; }
.blog-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-img { transform: scale(1.06); }
.blog-body { padding: 28px; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 0.78rem; }
.blog-cat {
  background: var(--green-light); color: var(--green); border-radius: var(--radius-full);
  padding: 4px 12px; font-weight: 800; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.07em;
}
.blog-time { color: var(--gray-500); }
.blog-body h3 { font-size: 1.05rem; margin-bottom: 10px; }
.blog-body p { font-size: 0.88rem; }
.blog-author { display: flex; align-items: center; gap: 10px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--gray-200); }
.blog-author-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.blog-author-name { font-size: 0.82rem; font-weight: 800; color: var(--green-dark); }

/* ── CTA Band ── */
.cta-band {
  padding: 100px 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--green-dark) 0%, #1a3a7a 60%, #0c3a1a 100%);
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(200,237,42,.12) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 50%, rgba(14,165,233,.10) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 0%, rgba(139,92,246,.08) 0%, transparent 40%);
}
.cta-inner { text-align: center; position: relative; z-index: 1; max-width: 740px; margin: 0 auto; }
.cta-inner h2 { color: white; margin-bottom: 18px; }
.cta-inner p { color: rgba(255,255,255,.78); font-size: 1.1rem; margin-bottom: 42px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ── Book form ── */
.book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.book-form-card {
  background: white; border-radius: var(--radius-xl); padding: 48px;
  box-shadow: var(--shadow-xl); border: 1.5px solid var(--gray-200);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.84rem; font-weight: 800; color: var(--green-dark); margin-bottom: 7px; }
.form-control {
  width: 100%; padding: 13px 18px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: 0.92rem; font-family: var(--font-sans);
  color: var(--text); background: var(--gray-50); transition: all var(--transition); outline: none;
}
.form-control:focus { border-color: var(--green); background: white; box-shadow: 0 0 0 4px rgba(74,124,63,.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-privacy { font-size: 0.78rem; color: var(--gray-500); margin-top: 16px; }
.form-privacy a { color: var(--green); }

.book-benefit {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px; background: var(--off-white); border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200); transition: all var(--transition); margin-bottom: 14px;
}
.book-benefit:hover { background: var(--green-light); border-color: rgba(74,124,63,.25); }
.book-benefit-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.book-contact { padding: 24px; background: var(--green-dark); border-radius: var(--radius-md); margin-bottom: 20px; }
.book-contact h4 { color: var(--yellow); margin-bottom: 12px; font-size: 0.95rem; }
.book-contact a { color: white; font-weight: 800; font-size: 1.05rem; }
.book-insurance { padding: 20px 24px; background: var(--blue-soft); border-radius: var(--radius-md); border: 1.5px solid rgba(14,165,233,.2); }
.book-insurance p { font-size: 0.84rem; color: var(--blue-dark); margin: 0; }

/* ── Footer ── */
.site-footer { background: var(--green-dark); color: rgba(255,255,255,.65); }
.footer-top { padding: 80px 0 60px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-logo { height: 70px; width: auto; margin-bottom: 20px; }
.footer-tagline { color: rgba(255,255,255,.6); font-size: 0.88rem; line-height: 1.75; margin-bottom: 20px; max-width: 300px; }
.footer-contact-info { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-info a { color: rgba(255,255,255,.7); font-size: 0.87rem; transition: color var(--transition); }
.footer-contact-info a:hover { color: var(--yellow); }
.footer-col h4 {
  color: white; font-size: 0.84rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1.5px solid rgba(255,255,255,.08);
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { color: rgba(255,255,255,.6); font-size: 0.87rem; transition: all var(--transition); display: block; }
.footer-col ul li a:hover { color: white; padding-left: 6px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65); font-size: 0.88rem; transition: all var(--transition-bounce);
  cursor: pointer; text-decoration: none;
}
.social-btn:hover { background: var(--yellow); border-color: var(--yellow); color: var(--green-dark); transform: translateY(-3px) scale(1.1); }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-input {
  flex: 1; padding: 11px 16px; background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.14); border-radius: var(--radius-full);
  font-family: var(--font-sans); font-size: 0.84rem; color: white; outline: none; transition: all var(--transition);
}
.newsletter-input:focus { border-color: rgba(200,237,42,.4); background: rgba(255,255,255,.12); }
.newsletter-input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-btn { padding: 11px 20px; background: var(--yellow); color: var(--green-dark); border: none; border-radius: var(--radius-full); font-weight: 800; font-size: 0.82rem; cursor: pointer; transition: all var(--transition); }
.newsletter-btn:hover { background: white; transform: scale(1.04); }
.footer-hours { margin-top: 16px; font-size: 0.82rem; line-height: 1.9; color: rgba(255,255,255,.45); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.07); }
.footer-bottom { padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,.35); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,.8); }
.footer-disclaimer { padding: 20px 0; border-top: 1px solid rgba(255,255,255,.05); }
.footer-disclaimer p { font-size: 0.73rem; color: rgba(255,255,255,.28); line-height: 1.65; margin: 0; text-align: center; }

/* ── Page Hero ── */
.page-hero {
  padding: 160px 0 80px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--green-dark) 0%, #0c3a6e 60%, var(--green-mid) 100%);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(200,237,42,.1) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(14,165,233,.08) 0%, transparent 40%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 780px; }
.breadcrumbs { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumbs a { color: rgba(255,255,255,.55); }
.breadcrumbs a:hover { color: var(--yellow); }
.breadcrumbs .sep { color: rgba(255,255,255,.28); }
.breadcrumbs .current { color: rgba(255,255,255,.88); }
.page-hero h1 { color: white; margin-bottom: 16px; }
.page-hero .lead { color: rgba(255,255,255,.78); }

/* ── Service page ── */
.service-overview { display: grid; grid-template-columns: 3fr 2fr; gap: 60px; align-items: start; }
.service-sidebar { position: sticky; top: 100px; }
.sidebar-card { background: white; border-radius: var(--radius-xl); padding: 36px; box-shadow: var(--shadow-lg); border: 1.5px solid var(--gray-200); margin-bottom: 24px; }
.sidebar-card h4 { margin-bottom: 16px; font-size: 1.05rem; }
.sidebar-nav { display: flex; flex-direction: column; gap: 4px; }
.sidebar-nav a { padding: 10px 16px; border-radius: var(--radius-sm); font-size: 0.87rem; font-weight: 700; color: var(--text-muted); transition: all var(--transition); }
.sidebar-nav a:hover { background: var(--green-light); color: var(--green); padding-left: 22px; }
.benefit-list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.benefit-item {
  display: flex; align-items: flex-start; gap: 12px; padding: 13px 16px;
  background: var(--green-light); border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 700; color: var(--green-dark);
}
.benefit-check {
  width: 22px; height: 22px; border-radius: 50%; background: var(--green); color: white;
  display: flex; align-items: center; justify-content: center; font-size: 0.7rem; flex-shrink: 0; margin-top: 1px;
}

/* ── Notices ── */
.notice { padding: 16px 20px; border-radius: var(--radius-sm); font-size: 0.82rem; line-height: 1.7; border-left: 3px solid; }
.notice-green { background: var(--green-light); border-color: var(--green); color: var(--green-dark); }
.notice-blue  { background: var(--blue-soft);  border-color: var(--blue);  color: var(--blue-dark); }
.notice-yellow { background: var(--yellow-soft); border-color: var(--yellow-deep); color: #4a4a00; }

/* ── Pills ── */
.pill-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.pill {
  padding: 9px 22px; background: white; border: 1.5px solid var(--green-light);
  border-radius: var(--radius-full); font-size: 0.88rem; font-weight: 800;
  color: var(--green); box-shadow: var(--shadow-sm); transition: all var(--transition-bounce);
  cursor: default;
}
.pill:hover { background: var(--green); color: white; border-color: var(--green); transform: translateY(-3px) scale(1.04); box-shadow: var(--shadow-md); }

/* ── Prose ── */
.prose h2 { margin: 40px 0 16px; }
.prose h3 { margin: 28px 0 12px; }
.prose p { margin-bottom: 18px; }
.prose ul { margin: 18px 0; display: flex; flex-direction: column; gap: 9px; }
.prose ul li { padding-left: 22px; position: relative; font-size: 0.95rem; color: var(--text-muted); }
.prose ul li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 800; }

/* ── Skip link ── */
.skip-link { position: absolute; top: -100px; left: 16px; background: var(--green); color: white; padding: 8px 16px; border-radius: 4px; z-index: 10000; font-weight: 800; transition: top 0.2s; }
.skip-link:focus { top: 16px; }

/* ── Svc card ── */
.svc-card { display: flex; flex-direction: column; text-decoration: none; cursor: pointer; }
.svc-arrow { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 800; color: var(--green); transition: gap var(--transition); margin-top: auto; }
.svc-card:hover .svc-arrow { gap: 12px; }

/* ── Colorful section divider ── */
.color-divider {
  height: 6px; width: 100%;
  background: linear-gradient(90deg, var(--green) 0%, var(--yellow) 25%, var(--teal) 50%, var(--blue) 75%, var(--purple) 100%);
}

/* ── Floating icons decoration ── */
.floating-icons { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.fi { position: absolute; font-size: 2rem; opacity: .06; animation: float 8s ease-in-out infinite; }
.fi:nth-child(2) { animation-duration: 11s; animation-delay: 2s; }
.fi:nth-child(3) { animation-duration: 9s; animation-delay: 4s; }
.fi:nth-child(4) { animation-duration: 13s; animation-delay: 1s; }
.fi:nth-child(5) { animation-duration: 7s; animation-delay: 3s; }

/* ── Animations ── */
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-18px)} }
@keyframes orb-drift { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(30px,-20px) scale(1.05)} 66%{transform:translate(-20px,15px) scale(0.95)} }
@keyframes scroll-left { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.75)} }
@keyframes pulse-ring { 0%{transform:scale(1);opacity:.7} 100%{transform:scale(2);opacity:0} }
@keyframes rotate-gradient { 0%{filter:hue-rotate(0deg)} 100%{filter:hue-rotate(360deg)} }
@keyframes fade-up { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes ripple-anim { to{transform:scale(2.5);opacity:0} }
@keyframes number-pop { 0%{transform:scale(.8);opacity:0} 60%{transform:scale(1.1)} 100%{transform:scale(1);opacity:1} }

/* Scroll reveal */
.reveal { opacity:0; transform:translateY(32px); transition: opacity .75s cubic-bezier(.4,0,.2,1), transform .75s cubic-bezier(.4,0,.2,1); }
.reveal.revealed { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:.1s; }
.reveal-delay-2 { transition-delay:.2s; }
.reveal-delay-3 { transition-delay:.3s; }
.reveal-delay-4 { transition-delay:.4s; }
.reveal-left { opacity:0; transform:translateX(-32px); transition: opacity .75s cubic-bezier(.4,0,.2,1), transform .75s cubic-bezier(.4,0,.2,1); }
.reveal-left.revealed { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(32px); transition: opacity .75s cubic-bezier(.4,0,.2,1), transform .75s cubic-bezier(.4,0,.2,1); }
.reveal-right.revealed { opacity:1; transform:translateX(0); }

/* ── Responsive ── */
@media(max-width:1100px){
  .g4{grid-template-columns:repeat(2,1fr)}
  .trust-grid{grid-template-columns:repeat(2,1fr)}
  .stats-row{grid-template-columns:repeat(2,1fr)}
  .footer-top{grid-template-columns:1fr 1fr;gap:36px}
}
@media(max-width:900px){
  .hero-inner{grid-template-columns:1fr;gap:50px}
  .hero{min-height:auto;padding:150px 0 80px}
  .hero-media{order:-1;display:block}
  .video-container{height:320px}
  .g3{grid-template-columns:repeat(2,1fr)}
  .about-split{grid-template-columns:1fr;gap:40px}
  .process-steps{grid-template-columns:1fr}
  .process-steps::before{display:none}
  .book-grid{grid-template-columns:1fr}
  .service-overview{grid-template-columns:1fr}
  .service-sidebar{position:static}
  .video-badge{display:none}
}
@media(max-width:680px){
  .primary-nav{display:none;position:fixed;inset:0;background:white;z-index:999;flex-direction:column;padding:90px 28px 28px;overflow-y:auto}
  .primary-nav.open{display:flex}
  .primary-nav ul{flex-direction:column;gap:0}
  .primary-nav>ul>li>a{padding:16px 8px;border-bottom:1px solid var(--gray-200);font-size:1rem;border-radius:0}
  .submenu{display:none;position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;border:none;background:var(--off-white);border-radius:0;padding:4px 0;margin-left:12px;border-left:3px solid rgba(42,159,214,.3)}
  .has-sub.sub-open>.submenu{display:block}
  .submenu li a{padding:12px 14px;border-bottom:1px solid var(--gray-200);font-size:0.92rem;border-radius:0}
  .submenu li a:hover{padding-left:14px;background:rgba(42,159,214,.06)}
  .nav-toggle{display:flex}
  .header-cta{display:none}
  .g2,.g3,.g4{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  .testimonial-card{padding:32px 24px}
  .testimonial-text{font-size:1rem}
  .footer-top{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;text-align:center}
  .hero-trust{display:none}
  .trust-grid{grid-template-columns:1fr}
  .stats-row{grid-template-columns:1fr 1fr}
  .stats-band-row{display:grid;grid-template-columns:1fr 1fr;gap:0}
  .stats-band-item{border-right:none;border-bottom:1px solid rgba(255,255,255,0.2);padding:24px 16px}
  .stats-band-item--last{border-bottom:none}
  .book-form-card{padding:28px 22px}
  .util-disclaimer{display:none}
  .lang-switcher-header span:not(.lang-flag){display:none}
}
@media(max-width:400px){ .stats-row{grid-template-columns:1fr} }
@media print{.site-header,.utility-bar,footer,.cta-band{display:none}.page-hero{padding:24px 0}body{font-size:14px}}
