/* ============================================================
   ADMINOV — style.css
   Redesigned with Taste Skill / High-End Visual Design rules
   ============================================================

   DESIGN SETTINGS:
   DESIGN_VARIANCE:  8  (asymmetric, modern, editorial)
   MOTION_INTENSITY: 5  (fluid CSS, smooth spring easing)
   VISUAL_DENSITY:   4  (daily-app spacing, room to breathe)

   SKILL RULES APPLIED:
   - Font: Outfit (Inter BANNED)
   - No emojis in markup (Font Awesome icons only)
   - No 3-equal-col card grids (bento / zig-zag)
   - No centered hero (split-screen, left-aligned)
   - No pure black (#000) — slate-950 only
   - One accent color, saturation < 80%
   - Tinted shadows (not generic rgba black)
   - Noise texture on dark sections
   - Tactile button feedback (scale-[0.98] on press)
   - All transitions: cubic-bezier(0.16, 1, 0.3, 1)
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ── Design Tokens ── */
:root {
  /* Brand palette — deep navy + crimson red */
  --primary:        #1B3A7A;
  --primary-dark:   #0D1F4A;
  --primary-light:  #2554AA;
  --primary-bg:     #EEF3FF;
  --primary-mid:    #1F3E88;

  --secondary:      #C0522E;
  --secondary-dark: #9A3E22;
  --secondary-bg:   #FDEEE8;
  --secondary-vivid:#D05E36;

  --accent:         #16803A;
  --accent-light:   #DCFCE7;

  --danger:         #DC2626;

  /* Surface & background */
  --bg:             #F8F9FB;
  --bg-card:        #FFFFFF;
  --white:          #FFFFFF;

  /* Text — slate family (warm cool gray, consistent) */
  --dark:           #0F172A;  /* slate-950, NEVER pure #000 */
  --text:           #1E293B;  /* slate-800 */
  --text-muted:     #64748B;  /* slate-500 */
  --text-subtle:    #94A3B8;  /* slate-400 */

  /* Borders */
  --border:         #E2E8F0;  /* slate-200 */
  --border-subtle:  #F1F5F9;  /* slate-100 */

  /* Typography */
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', system-ui, -apple-system, sans-serif;

  /* Tinted shadows (navy-hued, not generic black) */
  --shadow-xs:  0 1px 2px rgba(27,58,122,0.06);
  --shadow-sm:  0 2px 6px rgba(27,58,122,0.08), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-md:  0 4px 16px rgba(27,58,122,0.10), 0 2px 4px rgba(15,23,42,0.05);
  --shadow-lg:  0 12px 32px rgba(27,58,122,0.12), 0 4px 8px rgba(15,23,42,0.06);
  --shadow-xl:  0 24px 56px rgba(27,58,122,0.14), 0 8px 16px rgba(15,23,42,0.07);
  --shadow-hero: 0 32px 80px rgba(27,58,122,0.22);

  /* Premium easing (spring-like) */
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:      cubic-bezier(0.4, 0, 1, 1);
  --ease-out:     cubic-bezier(0, 0, 0.2, 1);
  --transition:   0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-lg:0.4s  cubic-bezier(0.16, 1, 0.3, 1);

  /* Geometry */
  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-2xl:  32px;
  --radius-full: 9999px;

  /* Layout */
  --max-w:     1280px;
  --max-w-sm:  800px;
}

/* ── 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);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--dark);
  font-weight: 700;
  text-wrap: balance;
}

/* Display heading — tight tracking per taste-skill */
h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
  font-weight: 800;
}
h2 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
}
h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
}
h4 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  letter-spacing: -0.01em;
  font-weight: 600;
}

/* Body text — 65ch max per taste-skill */
p {
  margin-bottom: 1rem;
  max-width: 65ch;
}
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 60ch;
}

strong { font-weight: 700; color: var(--dark); }

/* Eyebrow / label text */
.eyebrow {
  display: inline-block;
  background: var(--primary-bg);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

/* Utility text */
.text-primary   { color: var(--primary); }
.text-secondary { color: var(--secondary-dark); }
.text-muted     { color: var(--text-muted); }
.text-white     { color: var(--white); }
.text-accent    { color: var(--accent); }
.text-center    { text-align: center; }

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-sm {
  max-width: var(--max-w-sm);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Sections */
.section    { padding: 5.5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 8rem 0; }

/* Grid utilities */
.grid-2 { display: grid; gap: 2rem; }
.grid-3 { display: grid; gap: 1.5rem; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* Background helpers */
.bg-white   { background: var(--white); }
.bg-light   { background: var(--bg); }
.bg-dark    { background: var(--dark); }
.bg-primary { background: var(--primary); }

/* Spacing */
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.w-full    { width: 100%; }
.hidden    { display: none !important; }
.relative  { position: relative; }

/* ── BUTTONS ── */
/* Base */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition),
    transform 0.15s var(--ease),
    box-shadow var(--transition);
  -webkit-user-select: none;
  user-select: none;
  border: none;
}
.btn:hover  { transform: translateY(-2px); }
/* Tactile press feedback per taste-skill */
.btn:active { transform: scale(0.98) translateY(0); }

.btn-lg  { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-sm  { padding: 0.6rem 1.35rem; font-size: 0.875rem; }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(27,58,122,0.30);
}
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 20px rgba(27,58,122,0.40);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(200,120,12,0.30);
}
.btn-secondary:hover {
  background: var(--secondary-dark);
  box-shadow: 0 6px 20px rgba(200,120,12,0.40);
}

/* CTA — amber, pulsing */
.btn-cta {
  background: var(--secondary-vivid);
  color: var(--dark);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(224,139,20,0.40);
  animation: ctaPulse 2.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.btn-cta:hover {
  background: var(--secondary);
  color: var(--white);
  animation: none;
  box-shadow: 0 8px 28px rgba(200,120,12,0.50);
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(224,139,20,0.40); }
  50%       { box-shadow: 0 4px 30px rgba(224,139,20,0.65); }
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(27,58,122,0.25);
}

.btn-outline-white {
  background: rgba(255,255,255,0.10);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.20);
  border-color: rgba(255,255,255,0.6);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  padding-left: 0;
  padding-right: 0;
}
.btn-ghost:hover {
  color: var(--primary-dark);
  transform: translateX(3px);
}
.btn-ghost:active { transform: translateX(1px) scale(0.98); }

/* CTA group */
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
}

/* ── ALERTS ── */
.alert-banner {
  background: var(--secondary-vivid);
  color: var(--dark);
  text-align: center;
  padding: 0.65rem 1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
}
.alert-banner a {
  text-decoration: underline;
  color: var(--primary-dark);
}

/* ── HEADER / NAVBAR ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: transparent;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0;
  gap: 1.5rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: background var(--transition);
}
.nav-logo:hover .nav-logo-icon { background: var(--primary-dark); }
.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--primary);
  letter-spacing: -0.04em;
  line-height: 1;
}
.nav-logo-text span { color: var(--secondary-vivid); }
.nav-logo-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  margin-top: 2px;
}

/* Nav links */
.nav-links {
  display: none;
  align-items: center;
  gap: 0.15rem;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-link {
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: var(--primary-bg);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  min-width: 270px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}
.nav-dropdown-item:hover {
  background: var(--primary-bg);
  color: var(--primary);
}
.nav-dropdown-item-icon {
  width: 32px;
  height: 32px;
  background: var(--primary-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: background var(--transition);
}
.nav-dropdown-item:hover .nav-dropdown-item-icon {
  background: var(--primary);
  color: var(--white);
}

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.nav-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
  background: var(--primary-bg);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  white-space: nowrap;
}
@media (min-width: 640px) { .nav-phone { display: flex; } }
.nav-phone:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}
.nav-cta { display: none; }
@media (min-width: 1024px) { .nav-cta { display: inline-flex; } }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background var(--transition);
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger:hover { background: var(--primary-bg); }
.hamburger-line {
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  gap: 0.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  transition: all var(--transition);
}
.mobile-menu-link:hover {
  background: var(--primary-bg);
  color: var(--primary);
}
.mobile-menu-link.sub {
  padding-left: 2.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.mobile-menu-link .menu-icon {
  width: 28px;
  height: 28px;
  background: var(--primary-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--primary);
  flex-shrink: 0;
}
.mobile-menu-sep {
  height: 1px;
  background: var(--border);
  margin: 0.5rem 0;
}
.mobile-menu-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.9rem;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  transition: background var(--transition);
}
.mobile-menu-cta:hover { background: var(--primary-dark); }

/* ── SECTION HEADERS ── */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 56ch;
  margin: 0 auto;
}
.section-header .divider {
  width: 48px;
  height: 3px;
  background: var(--secondary-vivid);
  border-radius: var(--radius-full);
  margin: 1.25rem auto 0;
}

/* ── HERO ── */
/* Split-screen hero, left-aligned — DESIGN_VARIANCE: 8 */
.hero {
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
  /* min-h-[100dvh] prevents iOS Safari layout jumping */
  min-height: 100dvh;
  display: flex;
  align-items: center;
}

/* Static gradient overlay on hero */
.hero-bg-img { display: none; }

/* About page hero */
.about-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #2a1a6e 100%);
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 0;
}
.about-hero .container { position: relative; z-index: 1; }

/* Noise texture overlay on dark section */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Radial glow — bottom right */
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(224,139,20,0.10) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Top-left faint glow */
.hero-glow-tl {
  position: absolute;
  top: -15%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,84,170,0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 5rem 0 4rem;
}
@media (min-width: 900px) {
  .hero-inner {
    /* Asymmetric: 58/42 split — NOT centered */
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
  }
}

/* Hero left content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.16);
  /* True glass: inner refraction border */
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}
.hero-badge i { color: var(--secondary-vivid); }

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: clamp(2.4rem, 6vw, 4.25rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
}
.hero h1 .line-accent {
  color: var(--secondary-vivid);
  display: block;
}

.hero-lead {
  color: rgba(255,255,255,0.75);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 52ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.01em;
}
.hero-trust-item i { color: var(--secondary-vivid); font-size: 0.9rem; }

/* Hero right — glassmorphism card */
.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  /* Inner refraction border — taste-skill liquid glass */
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.14),
    var(--shadow-hero);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
}
@media (max-width: 899px) { .hero-card { display: none; } }

.hero-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.hero-card-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
}
.hero-card-item:last-child { border-bottom: none; }
.hero-card-item:hover {
  background: rgba(255,255,255,0.07);
  padding-left: 1rem;
  border-radius: var(--radius);
}
.hero-card-icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-vivid);
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: background var(--transition);
}
.hero-card-item:hover .hero-card-icon {
  background: var(--secondary-vivid);
  color: var(--dark);
  border-color: var(--secondary-vivid);
}
.hero-card-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.88);
  flex: 1;
}
.hero-card-arrow {
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  transition: all var(--transition);
}
.hero-card-item:hover .hero-card-arrow {
  color: var(--secondary-vivid);
  transform: translateX(3px);
}

/* ── VALUE STRIP ── */
.value-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
.value-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .value-items { grid-template-columns: repeat(4, 1fr); }
}
.value-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.value-item-icon {
  width: 42px;
  height: 42px;
  background: var(--primary-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}
.value-item-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  line-height: 1.3;
}
.value-item-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1px;
}

/* ── SERVICES BENTO GRID ── */
/* Asymmetric — NO 3-equal-cols (BANNED per taste-skill) */
/* ── SERVICE CARDS GRID (homepage) ── */
.services-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.375rem 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary-vivid));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-card-icon {
  background: var(--primary);
  color: var(--white);
}

.service-card-icon {
  width: 36px;
  height: 36px;
  background: var(--primary-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 0.875rem;
  flex-shrink: 0;
  transition: all var(--transition);
}
.service-card-icon i {
  font-size: 0.85rem !important;
  line-height: 1;
}

.service-card-body { flex: 1; }
.service-card-body h4 {
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
}
.service-card-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap var(--transition);
}
.service-card:hover .service-card-link { gap: 0.55rem; }

.service-card--cta {
  background: var(--primary-bg);
  border-color: var(--primary-bg);
}
.service-card--cta:hover { background: var(--white); }

/* Legacy bento styles kept for other pages */
.services-bento {
  display: grid;
  gap: 1.25rem;
}

.service-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
/* Spotlight-border: subtle top accent line */
.service-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-tile:hover {
  border-color: var(--primary-bg);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.service-tile:hover::before { opacity: 1; }

.service-tile--featured {
  background: var(--primary-dark);
  border-color: transparent;
}
.service-tile--featured::before {
  background: linear-gradient(90deg, var(--secondary-vivid), transparent);
  opacity: 0.7;
}
.service-tile--featured h3,
.service-tile--featured h4 { color: var(--white); }
.service-tile--featured p   { color: rgba(255,255,255,0.72); max-width: 100%; }
.service-tile--featured .tile-icon { background: rgba(255,255,255,0.10); color: var(--secondary-vivid); border: 1px solid rgba(255,255,255,0.15); }
.service-tile--featured:hover { transform: translateY(-3px); box-shadow: var(--shadow-xl); }

.tile-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
  transition: all var(--transition);
}
.service-tile:hover .tile-icon {
  background: var(--primary);
  color: var(--white);
}
.service-tile h3 {
  font-size: 1.2rem;
  margin-bottom: 0.625rem;
}
.service-tile h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.service-tile p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  max-width: 100%;
}
.tile-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.25rem;
  background: var(--primary-bg);
  color: var(--primary);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  align-self: flex-start;
}
.service-tile--featured .tile-badge {
  background: rgba(224,139,20,0.15);
  color: var(--secondary-vivid);
  border: 1px solid rgba(224,139,20,0.20);
}
.tile-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  transition: all var(--transition);
  align-self: flex-start;
}
.service-tile--featured .tile-cta { color: var(--secondary-vivid); }
.tile-cta:hover {
  gap: 0.65rem;
  color: var(--primary-dark);
}
.service-tile--featured .tile-cta:hover { color: var(--white); }

/* ── IDF SECTION ── */
.idf-section {
  background: var(--primary-dark);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
/* Noise texture on dark sections */
.idf-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
}
.idf-section::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(27,58,122,0.4) 0%, transparent 65%);
  pointer-events: none;
}
.idf-inner {
  display: grid;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) {
  .idf-inner { grid-template-columns: 1.1fr 0.9fr; }
}

.idf-eyebrow {
  display: inline-block;
  background: rgba(224,139,20,0.15);
  color: var(--secondary-vivid);
  border: 1px solid rgba(224,139,20,0.20);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.idf-section h2 {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.idf-section p {
  color: rgba(255,255,255,0.72);
  max-width: 50ch;
}

/* IDF checklist on dark bg */
.idf-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.75rem 0;
}
.idf-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.5;
}
.idf-checklist li i {
  color: var(--secondary-vivid);
  font-size: 0.85rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* Department grid */
.idf-dept-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.idf-dept-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  transition: all var(--transition);
}
.idf-dept-item:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}
.idf-dept-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.idf-dept-name i { color: var(--secondary-vivid); font-size: 0.75rem; }
.idf-dept-num {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.15rem;
}

/* ── PROCESS / HOW IT WORKS ── */
.process-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .process-grid { grid-template-columns: repeat(3, 1fr); }
}
.process-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
/* Top accent line on process steps */
.process-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary-vivid));
  opacity: 0;
  transition: opacity var(--transition);
}
.process-step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.process-step:hover::before { opacity: 1; }
.process-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  letter-spacing: -0.05em;
  transition: color var(--transition);
}
.process-step:hover .process-number { color: var(--primary-bg); }
.process-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-bg);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.35rem;
  margin: 0 auto 1.5rem;
  transition: all var(--transition);
}
.process-step:hover .process-icon {
  background: var(--primary);
  color: var(--white);
}
.process-step h3 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}
.process-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 100%;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--primary-dark);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,58,122,0.6) 0%, transparent 60%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-item {
  text-align: center;
  padding: 1rem;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.stat-item:hover { background: rgba(255,255,255,0.04); }
/* Organic numbers (not round) per taste-skill */
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--secondary-vivid);
  line-height: 1;
  letter-spacing: -0.04em;
  /* tabular-nums for data displays */
  font-variant-numeric: tabular-nums;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* ── TESTIMONIALS ── */
/* No emoji avatars — use styled initials */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: transparent;
}
.testimonial-quote-mark {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: Georgia, serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--border);
  font-weight: 900;
  pointer-events: none;
}
.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}
.stars i { color: var(--secondary-vivid); font-size: 0.875rem; }
.testimonial-content {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
  max-width: 100%;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
/* Styled initials avatar (no emoji per taste-skill) */
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-bg);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--primary);
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}
.testimonial-location {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1px;
}
.testimonial-location i { color: var(--primary); font-size: 0.7rem; }

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: var(--primary-bg);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.highlight-box.secondary {
  background: var(--secondary-bg);
  border-left-color: var(--secondary);
}
.highlight-box.accent {
  background: var(--accent-light);
  border-left-color: var(--accent);
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: transparent;
}
.card h4 { margin-bottom: 0.625rem; }
.card p  { font-size: 0.9rem; color: var(--text-muted); max-width: 100%; }

/* Card icon */
.card-icon-lg {
  width: 64px;
  height: 64px;
  background: var(--primary-bg);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.card-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

/* 4-col grid */
.grid-4 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Value cards (About page) */
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  border-top: 3px solid var(--secondary-vivid);
  transition: all var(--transition);
}
.value-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--secondary-vivid);
}
.value-card .icon {
  width: 56px;
  height: 56px;
  background: var(--primary-bg);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.35rem;
  margin: 0 auto 1.25rem;
}

/* Checklist */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
}
.checklist li i {
  color: var(--accent);
  font-size: 0.875rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.checklist-lg li { font-size: 1rem; gap: 0.875rem; }

/* Dept tags */
.dept-grid { display: flex; flex-wrap: wrap; gap: 0.625rem; }
.dept-tag {
  background: var(--white);
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: 0.4rem 0.875rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  transition: all var(--transition);
}
.dept-tag:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
}
.badge-primary { background: var(--primary-bg); color: var(--primary); }
.badge-secondary { background: var(--secondary-bg); color: var(--secondary-dark); }
.badge-accent { background: var(--accent-light); color: var(--accent); }

/* ── CTA BLOCK ── */
.cta-block {
  background: var(--primary-dark);
  border-radius: var(--radius-2xl);
  padding: 4rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
}
.cta-block::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(224,139,20,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-block h2 { color: var(--white); margin-bottom: 1rem; position: relative; z-index: 1; }
.cta-block p  {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}
.cta-block .cta-group { justify-content: center; position: relative; z-index: 1; }
.cta-block .cta-note {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  position: relative;
  z-index: 1;
}

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0.875rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item:hover { border-color: var(--primary-bg); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: transparent;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.faq-question:hover { color: var(--primary); }
.faq-question.open {
  background: var(--primary);
  color: var(--white);
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: all var(--transition);
  color: var(--text-muted);
}
.faq-question.open .faq-icon {
  background: rgba(255,255,255,0.20);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-answer.open { max-height: 600px; }
.faq-answer-inner {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
}
.faq-answer-inner p { max-width: 100%; }
.faq-answer-inner ol { margin-left: 1.25rem; }
.faq-answer-inner ol li { margin-bottom: 0.5rem; }

/* ── FORMS ── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}
.form-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
}
.form-required { color: var(--danger); }
.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  transition: all var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27,58,122,0.10);
}
.form-control::placeholder { color: var(--text-subtle); }
select.form-control { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
textarea.form-control { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.8rem; color: var(--text-muted); }
.form-success { background: var(--accent-light); border: 1.5px solid var(--accent); border-radius: var(--radius); padding: 1.5rem; text-align: center; display: none; }
.form-success h3 { color: var(--accent); margin-bottom: 0.5rem; }

/* ── SERVICE HERO (detail pages) ── */
.service-hero {
  background: var(--primary-dark);
  padding: 5rem 0 3.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.service-hero::before {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,84,170,0.25) 0%, transparent 65%);
  pointer-events: none;
}
.service-hero h1 { color: var(--white); position: relative; z-index: 1; }
.service-hero p   { color: rgba(255,255,255,0.75); position: relative; z-index: 1; }
.service-hero-icon {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-vivid);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.30); }

/* ── CONTACT PAGE ── */
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg);
  border-radius: var(--radius);
  margin-bottom: 0.875rem;
  transition: all var(--transition);
}
.contact-info-item:hover { background: var(--primary-bg); transform: translateX(3px); }
.contact-info-icon {
  width: 42px;
  height: 42px;
  background: var(--primary-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
  transition: all var(--transition);
}
.contact-info-item:hover .contact-info-icon { background: var(--primary); color: var(--white); }
.contact-info-label { font-family: var(--font-heading); font-weight: 600; font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.2rem; }
.contact-info-value { font-family: var(--font-heading); font-weight: 700; font-size: 1rem; color: var(--dark); }
.contact-info-value a { color: var(--primary); }

/* ── PARTNERS MARQUEE ── */
.partners-section {
  padding: 2.5rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.partners-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 1.75rem;
}
.partners-marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.partners-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: partners-scroll 22s linear infinite;
}
.partners-track:hover { animation-play-state: paused; }
.partner-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.partner-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: filter 0.3s, opacity 0.3s;
}
.partner-logo img:hover { filter: grayscale(0%); opacity: 1; }
@keyframes partners-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.3fr; } }

.footer-brand p {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.50);
  max-width: 34ch;
}
.footer-section h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  letter-spacing: -0.01em;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.50);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.footer-links a::before { content: '→'; font-size: 0.7rem; opacity: 0; transition: all var(--transition); }
.footer-links a:hover { color: var(--white); padding-left: 0.4rem; }
.footer-links a:hover::before { opacity: 1; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}
.footer-contact-item i { color: var(--secondary-vivid); margin-top: 0.1rem; flex-shrink: 0; }
.footer-phone { font-size: 1.1rem; font-weight: 700; color: var(--secondary-vivid) !important; font-family: var(--font-heading); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; }

/* Footer logo on dark */
.footer-logo-text { color: var(--white) !important; }
.footer-logo-text span { color: var(--secondary-vivid) !important; }

/* ── SVG LOGO ── */
.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.nav-logo-img--footer {
  height: 38px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
@media (max-width: 640px) {
  .nav-logo-img { height: 34px; }
}

/* ── FLOATING RDV FAB (mobile) ── */
.phone-fab {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  background: var(--primary);
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 4px 20px rgba(27,58,122,0.45);
  transition: all var(--transition);
  animation: fabPulse 2.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  cursor: pointer;
  border: none;
}
@media (max-width: 768px) { .phone-fab { display: flex; } }
.phone-fab:hover {
  transform: scale(1.1);
  animation: none;
  background: var(--primary-dark);
  box-shadow: 0 8px 28px rgba(27,58,122,0.60);
}
.phone-fab:active { transform: scale(0.96); }
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(27,58,122,0.45); }
  50%       { box-shadow: 0 4px 32px rgba(27,58,122,0.75); }
}

/* ── BOOKING MODAL ── */
.rdv-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(13,31,74,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  animation: modalFadeIn 0.25s var(--ease);
}
.rdv-modal-overlay.open { display: flex; }
@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.rdv-modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  box-shadow: var(--shadow-xl);
  animation: modalSlideUp 0.3s var(--ease);
  position: relative;
}
@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.rdv-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.75rem 1.75rem 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  gap: 1rem;
}
.rdv-modal-header h2 {
  font-size: clamp(1.1rem, 3vw, 1.45rem);
  margin: 0;
}
.rdv-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  flex-shrink: 0;
  transition: all var(--transition);
}
.rdv-modal-close:hover {
  background: var(--border);
  color: var(--dark);
}

.rdv-modal-body {
  padding: 1.5rem 1.75rem 1.75rem;
}

.rdv-modal-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1.75rem;
}
.rdv-modal-success.visible { display: block; }
.rdv-modal-success .success-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.rdv-modal-success h3 { margin-bottom: 0.75rem; }

/* Time slot grid */
.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.time-slot {
  padding: 0.5rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
  font-family: var(--font-body);
}
.time-slot:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-bg);
}
.time-slot.selected {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}
@media (max-width: 640px) {
  .time-slots { grid-template-columns: repeat(2, 1fr); }
}

/* ── SCROLL ANIMATIONS ── */
/* Hardware-accelerated: only transform + opacity */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.55s var(--ease) forwards; }
.fade-in-1 { animation-delay: 0.08s; }
.fade-in-2 { animation-delay: 0.16s; }
.fade-in-3 { animation-delay: 0.24s; }
.fade-in-4 { animation-delay: 0.32s; }

/* ── RESPONSIVE OVERRIDES ── */
@media (max-width: 640px) {
  .section { padding: 3.5rem 0; }
  .section-lg { padding: 4.5rem 0; }
  .hero { min-height: auto; }
  .hero-inner { padding: 4rem 0 3rem; }
  .cta-block { padding: 2.5rem 1.5rem; }
  .idf-section { padding: 4rem 0; }
  .contact-card { padding: 1.75rem; }

  /* Mobile: collapse asymmetric layouts to single col */
  .services-bento { grid-template-columns: 1fr; }
  .idf-inner, .hero-inner { grid-template-columns: 1fr; }
}
