/* ============================================================
   MIRAI – Centre for Speech & Neuro Rehabilitation
   Main Stylesheet | Version 1.0
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@600;700;800&display=swap');

/* ── CSS Variables ── */
:root {
  --primary:          #0A2463;
  --primary-mid:      #1740A0;
  --primary-light:    #2563EB;
  --accent:           #00C9A7;
  --accent-dark:      #00A88E;
  --accent-light:     #5EEAD4;
  --white:            #FFFFFF;
  --off-white:        #F8FBFF;
  --bg-light:         #EEF5FF;
  --bg-card:          #F4F9FF;
  --text-dark:        #0A1628;
  --text-mid:         #1E3A5F;
  --text-gray:        #64748B;
  --text-light:       #94A3B8;
  --border-light:     rgba(10, 36, 99, 0.08);
  --border-glass:     rgba(255, 255, 255, 0.4);

  --gradient-primary:    linear-gradient(135deg, #0A2463 0%, #1740A0 50%, #2563EB 100%);
  --gradient-hero:       linear-gradient(135deg, #EEF5FF 0%, #DBEAFE 40%, #E0F2FE 100%);
  --gradient-accent:     linear-gradient(135deg, #00C9A7 0%, #2563EB 100%);
  --gradient-card:       linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(240,249,255,0.9) 100%);
  --gradient-glass:      linear-gradient(135deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.1) 100%);

  --glass-bg:            rgba(255, 255, 255, 0.72);
  --glass-border:        rgba(255, 255, 255, 0.5);
  --glass-shadow:        0 8px 32px rgba(10, 36, 99, 0.12);

  --shadow-xs:    0 2px 8px  rgba(10, 36, 99, 0.06);
  --shadow-sm:    0 4px 16px rgba(10, 36, 99, 0.08);
  --shadow-md:    0 8px 32px rgba(10, 36, 99, 0.12);
  --shadow-lg:    0 16px 56px rgba(10, 36, 99, 0.16);
  --shadow-xl:    0 32px 80px rgba(10, 36, 99, 0.2);
  --shadow-accent:0 8px 32px rgba(0, 201, 167, 0.25);

  --radius-xs:  6px;
  --radius-sm:  12px;
  --radius-md:  20px;
  --radius-lg:  32px;
  --radius-xl:  48px;
  --radius-full:9999px;

  --transition-fast:   0.15s ease;
  --transition-base:   0.3s ease;
  --transition-slow:   0.5s ease;
  --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;

  --container-max: 1280px;
  --container-xl:  1440px;
  --section-py:    80px;
  --section-py-lg: 120px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-family: var(--font-heading); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-family: var(--font-heading); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1rem, 2vw, 1.25rem); }
p  { color: var(--text-gray); line-height: 1.75; }

.text-accent   { color: var(--accent); }
.text-primary  { color: var(--primary); }
.text-white    { color: var(--white); }
.text-center   { text-align: center; }
.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Container ── */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

/* ── Section Spacing ── */
.section { padding-block: var(--section-py); }
.section-lg { padding-block: var(--section-py-lg); }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 201, 167, 0.1);
  border: 1px solid rgba(0, 201, 167, 0.25);
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}
.section-badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.section-title { margin-bottom: 16px; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-gray);
  max-width: 580px;
  line-height: 1.75;
}
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin-inline: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition-spring);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition-base);
}
.btn:hover::before { background: rgba(255,255,255,0.1); }

.btn-primary {
  background: var(--gradient-accent);
  color: var(--white);
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 201, 167, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border-light);
}
.btn-secondary:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--primary);
  padding: 0;
  font-weight: 600;
}
.btn-ghost:hover { color: var(--accent); }
.btn-ghost .arrow { transition: transform var(--transition-base); }
.btn-ghost:hover .arrow { transform: translateX(6px); }

.btn-lg { padding: 18px 44px; font-size: 1.05rem; }
.btn-sm { padding: 10px 24px; font-size: 0.875rem; }

/* ── Glassmorphism Card ── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
}

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.15);
}

/* ── Background Decorations ── */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.blob-primary { background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%); }
.blob-accent  { background: radial-gradient(circle, rgba(0,201,167,0.12) 0%, transparent 70%); }
.blob-light   { background: radial-gradient(circle, rgba(219,234,254,0.5) 0%, transparent 70%); }

/* ── ════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 90px;
  overflow: hidden;
}

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

.hero-content { padding-block: 60px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 28px;
  animation: float 3s ease-in-out infinite;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease infinite;
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.hero-title .highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-avatars {
  display: flex;
  align-items: center;
}
.trust-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: -10px;
}
.trust-avatar:first-child { margin-left: 0; }
.trust-text { font-size: 0.85rem; color: var(--text-gray); }
.trust-text strong { color: var(--text-dark); display: block; }

/* Hero Visual */
.hero-visual { position: relative; }

.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 600px;
}

.hero-main-card {
  width: 380px;
  height: 480px;
  border-radius: 32px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(32px) saturate(200%) brightness(1.08);
  -webkit-backdrop-filter: blur(32px) saturate(200%) brightness(1.08);
  border: 1.5px solid rgba(255,255,255,0.55);
  box-shadow:
    0 32px 72px rgba(10,36,99,0.18),
    0 8px 24px rgba(37,99,235,0.10),
    inset 0 1.5px 0 rgba(255,255,255,0.72),
    inset 0 -1px 0 rgba(255,255,255,0.18);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* Top specular shimmer — Apple liquid glass highlight */
.hero-main-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  border-radius: 32px 32px 60% 60% / 32px 32px 40px 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.0) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Coloured ambient orb behind glass */
.hero-main-card::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,201,167,0.35) 0%, rgba(37,99,235,0.18) 60%, transparent 100%);
  filter: blur(24px);
  pointer-events: none;
  z-index: 0;
}

/* Logo + orb wrapper inside the glass card */
.hero-glass-orb {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255,255,255,0.60);
  box-shadow:
    0 8px 32px rgba(37,99,235,0.15),
    inset 0 1px 0 rgba(255,255,255,0.80);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

.hero-glass-orb img {
  width: 80px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(37,99,235,0.25));
}

/* Ambient top-left orb */
.hero-orb-1 {
  position: absolute;
  top: -50px; left: -50px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,168,245,0.40) 0%, rgba(37,99,235,0.10) 70%, transparent 100%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}

/* Glass label at bottom */
.hero-glass-label {
  position: relative;
  z-index: 3;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.50);
  border-radius: 16px;
  padding: 14px 24px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.60);
  width: calc(100% - 48px);
}

.hero-glass-label strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.hero-glass-label span {
  font-size: 0.75rem;
  color: var(--text-gray);
}

.hero-illustration {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: luminosity;
  opacity: 0.3;
}

/* Floating Stat Cards */
.hero-stat-card {
  position: absolute;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  min-width: 140px;
  animation: float var(--dur, 4s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-gray);
  font-weight: 500;
}
.stat-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.hero-stat-1 {
  top: 60px; left: -40px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-md);
  --dur: 3.5s;
}
.hero-stat-2 {
  bottom: 100px; right: -50px;
  background: rgba(10,36,99,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-xl);
  --dur: 4.5s; --delay: 0.5s;
}
.hero-stat-2 .stat-num,
.hero-stat-2 .stat-label { color: var(--white); }
.hero-stat-3 {
  bottom: -20px; left: -20px;
  background: rgba(0,201,167,0.95);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: var(--shadow-accent);
  --dur: 4s; --delay: 1s;
}
.hero-stat-3 .stat-num,
.hero-stat-3 .stat-label { color: var(--white); }

/* ── Stats Bar ── */
.stats-bar {
  background: var(--primary);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }

.stat-value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-value .suffix {
  font-size: 0.6em;
  color: var(--accent);
}
.stat-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ── Services Section ── */
.services { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border: 1px solid var(--border-light);
  transition: all var(--transition-spring);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(37,99,235,0.1);
}

.service-icon-wrap {
  width: 64px; height: 64px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 24px;
  transition: transform var(--transition-spring);
}
.service-card:hover .service-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
}

.service-icon-blue   { background: rgba(37,99,235,0.1); }
.service-icon-teal   { background: rgba(0,201,167,0.1); }
.service-icon-indigo { background: rgba(99,102,241,0.1); }
.service-icon-purple { background: rgba(168,85,247,0.1); }
.service-icon-rose   { background: rgba(244,63,94,0.1); }
.service-icon-amber  { background: rgba(245,158,11,0.1); }

.service-card h3 {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 700;
}
.service-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-light);
  transition: gap var(--transition-base);
}
.service-card:hover .service-link { gap: 12px; }

/* ── Why MIRAI ── */
.why-mirai { background: var(--white); }

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

.why-visual {
  position: relative;
  height: 560px;
}

.why-main-img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  background: var(--gradient-hero);
  overflow: hidden;
  position: relative;
}

.why-badge-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
}
.why-badge-card.top { top: -20px; right: -30px; }
.why-badge-card.bottom { bottom: -20px; left: -30px; }

.why-badge-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  background: var(--bg-light);
  flex-shrink: 0;
}
.why-badge-text strong { display: block; font-size: 1.1rem; color: var(--text-dark); }
.why-badge-text span   { font-size: 0.8rem; color: var(--text-gray); }

.why-features { display: flex; flex-direction: column; gap: 20px; }

.why-feature {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
  background: var(--white);
}
.why-feature:hover {
  border-color: rgba(37,99,235,0.2);
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.why-feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: transform var(--transition-spring);
}
.why-feature:hover .why-feature-icon { transform: scale(1.1); background: var(--gradient-accent); }

.why-feature-body h4 { margin-bottom: 6px; font-size: 1rem; }
.why-feature-body p  { font-size: 0.875rem; line-height: 1.65; }

/* ── Conditions ── */
.conditions { background: var(--bg-light); }

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.condition-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all var(--transition-spring);
  position: relative;
  overflow: hidden;
}
.condition-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}
.condition-card:hover::after { transform: scaleX(1); }
.condition-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.condition-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
  transition: transform var(--transition-spring);
}
.condition-card:hover .condition-icon { transform: scale(1.15); }
.condition-card h4 { font-size: 0.95rem; color: var(--text-dark); font-weight: 600; }

/* ── Process ── */
.process { background: var(--white); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 40px);
  right: calc(12.5% + 40px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary-light));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px; height: 80px;
  margin: 0 auto 24px;
}
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-spring);
  position: relative;
  z-index: 1;
}
.process-step:hover .step-num { transform: scale(1.1); }
.step-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--accent-light);
  animation: ring-pulse 2s ease infinite;
  animation-delay: var(--delay, 0s);
}

.step-body h3 { font-size: 1rem; color: var(--text-dark); margin-bottom: 10px; }
.step-body p  { font-size: 0.85rem; color: var(--text-gray); line-height: 1.65; }

/* ── Testimonials ── */
.testimonials { background: var(--bg-light); }

.testimonial-track { position: relative; overflow: hidden; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px; right: 28px;
  font-size: 5rem;
  line-height: 1;
  color: var(--bg-light);
  font-family: Georgia, serif;
  font-weight: 900;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #F59E0B;
  font-size: 1rem;
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); }
.author-role { font-size: 0.8rem; color: var(--text-gray); }

/* ── Team ── */
.team { background: var(--white); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  text-align: center;
  transition: all var(--transition-spring);
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.team-photo {
  height: 220px;
  background: var(--gradient-hero);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-photo-inner {
  width: 120px; height: 160px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 800;
}

.team-info { padding: 24px 20px; }
.team-info h4 { font-size: 1rem; color: var(--text-dark); margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--accent-dark); font-weight: 600; margin-bottom: 10px; }
.team-qual { font-size: 0.78rem; color: var(--text-gray); }

/* ── CTA Section ── */
.cta-section {
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
  padding-block: 100px;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%; left: -5%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(0,201,167,0.08);
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}
.cta-inner h2 { color: var(--white); margin-bottom: 16px; }
.cta-inner p  { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 40px; }
.cta-buttons  { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Map Section ── */
.map-section { background: var(--off-white); }

.map-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-info {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.map-info h3 { margin-bottom: 24px; font-size: 1.4rem; }

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}
.contact-detail:last-of-type { border-bottom: none; margin-bottom: 0; }
.contact-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: 0.8rem; color: var(--text-gray); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.contact-detail span { font-size: 0.9rem; color: var(--text-dark); font-weight: 500; line-height: 1.5; }

/* ── FAQ Section ── */
.faq { background: var(--white); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}
.faq-item.open { box-shadow: var(--shadow-md); border-color: rgba(37,99,235,0.2); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  background: var(--white);
  transition: background var(--transition-fast);
}
.faq-question:hover { background: var(--bg-light); }
.faq-question .chevron {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  transition: transform var(--transition-base), background var(--transition-base);
  color: var(--primary);
}
.faq-item.open .chevron { transform: rotate(180deg); background: var(--accent); color: var(--white); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.875rem;
  color: var(--text-gray);
  line-height: 1.75;
}

/* ── Banner Slideshow ── */
.banner-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.banner-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}
.banner-slide.active { opacity: 1; }

/* Dark overlay — used on .page-hero (white text) */
.banner-overlay-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(10,36,99,0.84) 0%,
    rgba(10,36,99,0.68) 55%,
    rgba(37,99,235,0.44) 100%
  );
}
/* Light directional overlay — left solid for readable text, right opens for image */
.banner-overlay-light {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(232,242,255,0.98)  0%,
    rgba(230,240,255,0.97) 42%,
    rgba(218,234,255,0.70) 58%,
    rgba(200,225,255,0.30) 72%,
    rgba(180,215,255,0.06) 100%
  );
}

/* Push banner subject toward the right column where the glass card sits */
.hero .banner-slide {
  background-position: 70% center;
}

/* Stack order: slideshow (0) → page-hero ::before pattern (1) → content (2+) */
.page-hero::before  { z-index: 1; }
.page-hero-content  { z-index: 2 !important; }
.page-hero .blob    { z-index: 1; }
/* Blobs are already position:absolute — only raise their z-index, never change position */
.hero .blob         { z-index: 2; }
.hero .container    { position: relative; z-index: 2; }

/* ── Blog ── */
.blog { background: var(--bg-light); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all var(--transition-spring);
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.blog-thumb {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.blog-thumb-inner {
  width: 100%; height: 100%;
  background: var(--gradient-hero);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  transition: transform var(--transition-slow);
}
.blog-card:hover .blog-thumb-inner { transform: scale(1.05); }

.blog-cat {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.blog-body { padding: 28px 24px; }
.blog-meta {
  display: flex;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 12px;
}
.blog-body h3 { font-size: 1rem; color: var(--text-dark); margin-bottom: 10px; line-height: 1.45; }
.blog-body p  { font-size: 0.85rem; line-height: 1.7; margin-bottom: 20px; }

/* ── Breadcrumb ── */
.breadcrumb {
  background: var(--bg-light);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  margin-top: 80px;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}
.breadcrumb-list li { color: var(--text-gray); }
.breadcrumb-list li a { color: var(--primary-light); }
.breadcrumb-list li a:hover { text-decoration: underline; }
.breadcrumb-list .sep { color: var(--text-light); }

/* ── Page Hero ── */
.page-hero {
  background: var(--gradient-primary);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; max-width: 700px; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 32px; }

/* ── Service Page Body ── */
.service-body { background: var(--white); }

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

.service-content h2 { margin-bottom: 20px; }
.service-content h3 { margin: 32px 0 12px; font-size: 1.2rem; }
.service-content p  { margin-bottom: 16px; }
.service-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.service-content ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-gray);
}
.service-content ul li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.service-sidebar { position: sticky; top: 100px; }

.sidebar-cta-card {
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.sidebar-cta-card::before {
  content: '';
  position: absolute;
  top: -30%; right: -20%;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.sidebar-cta-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 10px; }
.sidebar-cta-card p  { color: rgba(255,255,255,0.75); font-size: 0.85rem; margin-bottom: 24px; }

.sidebar-services {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
}
.sidebar-services h4 {
  padding: 20px 24px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-gray);
  border-bottom: 1px solid var(--border-light);
}
.sidebar-services a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  font-size: 0.875rem;
  color: var(--text-dark);
  font-weight: 500;
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}
.sidebar-services a:last-child { border-bottom: none; }
.sidebar-services a:hover {
  background: var(--bg-light);
  color: var(--primary-light);
  padding-left: 32px;
}

/* ── WhatsApp Sticky ── */
.whatsapp-sticky {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.whatsapp-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  color: white;
  font-size: 1.6rem;
  transition: transform var(--transition-spring);
  animation: wa-pulse 2.5s ease infinite;
}
.whatsapp-btn:hover { transform: scale(1.12); }

.whatsapp-tooltip {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-base);
  pointer-events: none;
}
.whatsapp-sticky:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ── Forms ── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: all var(--transition-fast);
  outline: none;
}
.form-control:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.08);
}
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ── About Page ── */
.about-story { background: var(--white); }
.about-mission { background: var(--bg-light); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}
.value-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.value-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.value-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.value-card p  { font-size: 0.875rem; }

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ── Success Stories ── */
.story-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  border: 1px solid var(--border-light);
  margin-bottom: 32px;
  transition: all var(--transition-base);
}
.story-card:hover { box-shadow: var(--shadow-lg); }

/* ── Careers ── */
.job-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 36px;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
  transition: all var(--transition-base);
}
.job-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(37,99,235,0.2);
  transform: translateX(8px);
}
.job-badge {
  background: rgba(0,201,167,0.1);
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}
.job-meta {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--text-gray);
}

/* ── Blog Page ── */
.blog-hero { background: var(--gradient-hero); padding-block: 60px; margin-top: 80px; }
.blog-categories {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.cat-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1.5px solid var(--border-light);
  color: var(--text-gray);
  background: var(--white);
  transition: all var(--transition-fast);
}
.cat-btn:hover, .cat-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* ── Local Page ── */
.local-hero { background: var(--gradient-primary); padding: 120px 0 80px; margin-top: 80px; }
.local-hero h1 { color: var(--white); }
.local-hero p { color: rgba(255,255,255,0.8); margin-bottom: 32px; }

/* ── 404 Page ── */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--gradient-hero);
}
.error-code {
  font-size: clamp(6rem, 20vw, 10rem);
  font-weight: 900;
  color: var(--primary);
  opacity: 0.12;
  line-height: 1;
  position: absolute;
}
.error-content { position: relative; z-index: 1; }

/* ── Thank You ── */
.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--gradient-hero);
}
.check-circle {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
  margin: 0 auto 32px;
  box-shadow: var(--shadow-accent);
  animation: bounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Animations ── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.3); opacity: 0.7; }
}
@keyframes ring-pulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45); }
  50%       { box-shadow: 0 8px 40px rgba(37, 211, 102, 0.7); }
}
@keyframes bounceIn {
  from { transform: scale(0.3); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* AOS-style scroll animations */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos="fade-left"] { transform: translateX(-40px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos="fade-right"] { transform: translateX(40px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="zoom-in"] { transform: scale(0.85); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }

[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos-delay="400"] { transition-delay: 0.4s; }
[data-aos-delay="500"] { transition-delay: 0.5s; }
[data-aos-delay="600"] { transition-delay: 0.6s; }

/* ── Utility Classes ── */
.mt-4  { margin-top: 1rem; }
.mt-8  { margin-top: 2rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-8  { margin-bottom: 2rem; }
.d-flex { display: flex; }
.gap-4  { gap: 1rem; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ── Responsive ── */
@media (max-width: 1200px) {
  .services-grid        { grid-template-columns: repeat(2, 1fr); }
  .conditions-grid      { grid-template-columns: repeat(3, 1fr); }
  .team-grid            { grid-template-columns: repeat(2, 1fr); }
  .stats-grid           { grid-template-columns: repeat(2, 1fr); }
  .map-grid             { grid-template-columns: 1fr; }
  .service-content-grid { grid-template-columns: 1fr; }
  .service-sidebar      { position: static; }
}

@media (max-width: 900px) {
  :root {
    --section-py:    60px;
    --section-py-lg: 80px;
  }
  .hero-grid     { grid-template-columns: 1fr; text-align: center; }
  .hero-visual   { display: none; }
  .hero-subtitle { max-width: 100%; }
  .hero-trust    { justify-content: center; }
  .hero-cta      { justify-content: center; }
  .why-grid      { grid-template-columns: 1fr; }
  .why-visual    { height: 300px; }
  .contact-grid  { grid-template-columns: 1fr; }
  .faq-grid      { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .values-grid   { grid-template-columns: 1fr 1fr; }
  .blog-grid     { grid-template-columns: 1fr 1fr; }
  .form-row      { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .services-grid     { grid-template-columns: 1fr; }
  .conditions-grid   { grid-template-columns: repeat(2, 1fr); }
  .team-grid         { grid-template-columns: 1fr; }
  .stats-grid        { grid-template-columns: 1fr 1fr; }
  .stat-item         { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .testimonial-grid  { grid-template-columns: 1fr; }
  .process-steps     { grid-template-columns: 1fr; }
  .values-grid       { grid-template-columns: 1fr; }
  .blog-grid         { grid-template-columns: 1fr; }
  .job-card          { flex-direction: column; align-items: flex-start; }
  .hero-cta          { flex-direction: column; }
  .hero-cta .btn     { width: 100%; justify-content: center; }
  .cta-buttons       { flex-direction: column; align-items: center; }
  .grid-2, .grid-3   { grid-template-columns: 1fr; }
  .map-grid          { grid-template-columns: 1fr; }
}

/* ── Scrollbar ── */
::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track  { background: var(--bg-light); }
::-webkit-scrollbar-thumb  { background: var(--primary-light); border-radius: 4px; }

/* ── Selection ── */
::selection { background: rgba(37,99,235,0.2); color: var(--primary); }

/* ── Print ── */
@media print { .whatsapp-sticky, .site-header { display: none !important; } }
