/* ================================================================
   NobleStone Attorneys PLLC — Design System v2
   Elementor-style | Poppins + Nunito | Navy · Gold · Blue
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600&family=Nunito:wght@300;400;500;600;700;800&display=swap');

/* ── Reset ──────────────────────────────────────────────────── */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box;font:inherit;}
img,svg,video{display:block;max-width:100%;}
ul,ol{list-style:none;}
a{text-decoration:none;}
button{border:none;cursor:pointer;background:none;}

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
  /* Brand */
  --navy:         #0D2B5E;
  --navy-dark:    #071428;
  --navy-mid:     #1a3a70;
  --gold:         #C9A84C;
  --gold-light:   #e8c97a;
  --gold-dim:     rgba(201,168,76,0.15);
  --blue:         #1a56db;
  --blue-light:   #3b74f5;
  --blue-faint:   rgba(26,86,219,0.08);
  --red:          #e63946;

  /* Surfaces */
  --bg:           #f4f6fb;
  --bg-white:     #ffffff;
  --bg-dark:      #071428;
  --bg-section:   #eef2fb;
  --card:         #ffffff;

  /* Text */
  --text:         #0f172a;
  --muted:        #64748b;
  --light:        rgba(255,255,255,0.85);

  /* Gradients */
  --grad-hero:    linear-gradient(135deg, #071428 0%, #0D2B5E 55%, #1a56db 100%);
  --grad-navy:    linear-gradient(135deg, #0D2B5E 0%, #071428 100%);
  --grad-blue:    linear-gradient(135deg, #1a56db 0%, #0D2B5E 100%);
  --grad-gold:    linear-gradient(135deg, #C9A84C 0%, #e8c97a 100%);
  --grad-card:    linear-gradient(160deg, #f8faff 0%, #eef2fb 100%);

  /* Typography */
  --ff-head:      'Poppins', sans-serif;
  --ff-body:      'Nunito', sans-serif;
  --fs:           16px;
  --lh:           1.7;

  /* Shape */
  --r:            12px;
  --r-sm:         8px;
  --r-lg:         20px;
  --r-xl:         32px;

  /* Shadows */
  --sh-sm:        0 2px 10px rgba(13,43,94,0.06);
  --sh:           0 8px 32px rgba(13,43,94,0.10);
  --sh-lg:        0 20px 64px rgba(13,43,94,0.16);
  --sh-gold:      0 8px 32px rgba(201,168,76,0.30);
  --sh-blue:      0 8px 32px rgba(26,86,219,0.30);

  /* Layout */
  --max:          1170px;
  --tr:           0.3s ease;

  /* Legacy aliases */
  --accent:       var(--blue);
  --accent-2:     var(--navy);
  --radius:       var(--r);
  --max-width:    var(--max);
  --font-base:    var(--ff-head);
  --font-body:    var(--ff-body);
  --text-primary: var(--text);
  --bg:           #f4f6fb;
  --card:         #ffffff;
}

/* ── Base ───────────────────────────────────────────────────── */
html { font-size: var(--fs); scroll-behavior: smooth; }

body {
  font-family: var(--ff-body) !important;
  font-size: var(--fs);
  line-height: var(--lh);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--ff-head);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }
h5 { font-size: 1.1rem; font-weight: 600; }
h6 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); }

p { color: var(--muted); margin-bottom: 1rem; line-height: 1.75; }

a { color: var(--blue); transition: color var(--tr); }
a:hover { color: var(--navy); }

strong { font-weight: 700; color: var(--text); }

/* ── Container & Layout ─────────────────────────────────────── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 90px 0; }
.section-alt { background: var(--bg-section); }
.section-dark {
  background: var(--bg-dark);
  color: var(--light);
}
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.7); }

/* Section header pattern */
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section-head h6 { margin-bottom: 0.75rem; color: var(--gold); }
.section-head h2 { margin-bottom: 1rem; }
.section-head p { font-size: 1.05rem; }

/* Eyebrow / kicker */
.eyebrow {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.eyebrow-blue { color: var(--blue-light); }

/* Grid utilities */
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-auto-sm { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { flex-direction: column; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.items-center { align-items: center; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--ff-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all var(--tr);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-blue);
  color: #fff;
  border-color: transparent;
}
.btn-primary:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--sh-blue);
}
.btn-gold {
  background: var(--grad-gold);
  color: var(--navy);
  border-color: transparent;
}
.btn-gold:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--sh-gold);
}
.btn-outline {
  background: transparent;
  border-color: var(--blue);
  color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  border-color: rgba(13,43,94,0.15);
  color: var(--navy);
}
.btn-ghost:hover {
  background: var(--blue-faint);
  border-color: var(--blue);
  color: var(--blue);
}
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.82rem; }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1rem; }

/* Legacy .btn without variant */
button.btn:not([class*="btn-"]),
a.btn:not([class*="btn-"]) {
  background: var(--grad-blue);
  color: #fff;
}

/* ── Accessibility ──────────────────────────────────────────── */
.skip-link {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
  left: 12px; top: 12px; width: auto; height: auto;
  padding: 8px 16px; background: #000; color: #fff; z-index: 9999; border-radius: 4px;
}

/* ── Scroll Progress ────────────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--grad-gold); z-index: 9999; width: 0; transition: width 0.1s;
}

/* ════════════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13,43,94,0.08);
  transition: box-shadow var(--tr);
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(13,43,94,0.10); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 1.5rem;
  height: 78px;
  max-width: var(--max);
  margin: 0 auto;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand .logo { width: 48px; height: auto; }
.brand-text {}
.brand-text .firm-name {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.3px;
}
.brand-text .tagline {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Desktop nav */
.desktop-nav { display: flex; align-items: center; gap: 0.25rem; }
.desktop-nav ul { display: flex; align-items: center; gap: 0.1rem; }
.desktop-nav a {
  display: inline-block;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  font-family: var(--ff-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  transition: all var(--tr);
}
.desktop-nav a:hover { background: var(--blue-faint); color: var(--blue); }
.desktop-nav a.active { color: var(--blue); }
.desktop-nav .btn-cta {
  margin-left: 0.5rem;
  padding: 0.6rem 1.5rem;
  background: var(--grad-blue);
  color: #fff;
  border-radius: 50px;
  font-size: 0.88rem;
}
.desktop-nav .btn-cta:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--sh-blue);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px; height: 44px;
  background: var(--blue-faint);
  border-radius: 10px;
  gap: 5px;
  transition: background var(--tr);
}
.hamburger span {
  width: 22px; height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--tr);
}
.hamburger:hover { background: var(--grad-blue); }
.hamburger:hover span { background: #fff; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile sidebar */
.mobile-sidebar {
  position: fixed;
  top: 0; right: -100%;
  width: 300px; max-width: 85vw; height: 100vh;
  background: #fff;
  box-shadow: -8px 0 40px rgba(13,43,94,0.2);
  z-index: 600;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.mobile-sidebar.active { right: 0; }

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #eef2f8;
}
.sidebar-brand { display: flex; align-items: center; gap: 10px; }
.sidebar-close {
  width: 36px; height: 36px;
  background: var(--blue-faint);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); transition: all var(--tr);
}
.sidebar-close:hover { background: var(--red); color: #fff; }

.sidebar-nav { padding: 1rem 0; }
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.9rem 1.5rem;
  font-family: var(--ff-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
}
.sidebar-link span { font-size: 1.2rem; }
.sidebar-icon {
  width: 34px; height: 34px; min-width: 34px;
  background: linear-gradient(135deg, var(--navy), #1e40af);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: var(--gold);
  transition: background .2s;
}
.sidebar-link:hover .sidebar-icon,
.sidebar-link.active .sidebar-icon {
  background: linear-gradient(135deg, var(--blue), #1e40af);
}
.sidebar-link:hover {
  background: var(--blue-faint);
  border-left-color: var(--blue);
  color: var(--blue);
  padding-left: 1.75rem;
}
.sidebar-link.active {
  background: linear-gradient(90deg, var(--blue-faint) 0%, transparent 100%);
  border-left-color: var(--blue);
  color: var(--blue);
}
.sidebar-link-primary {
  margin: 1rem 1.5rem 0;
  background: var(--grad-blue);
  color: #fff !important;
  border-radius: 50px;
  border: none !important;
  justify-content: center;
}
.sidebar-link-primary:hover {
  background: var(--navy);
  padding-left: 1.5rem !important;
  box-shadow: var(--sh-blue);
}

.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 550;
  opacity: 0; visibility: hidden;
  transition: all 0.35s ease;
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

/* ════════════════════════════════════════════════════════════
   HERO — Full bleed, gradient overlay
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--grad-hero);
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(7,20,40,0.93) 0%,
    rgba(13,43,94,0.85) 50%,
    rgba(26,86,219,0.70) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  padding: 100px 0;
}
.hero-copy { color: #fff; }
.hero-copy .eyebrow { color: var(--gold-light); margin-bottom: 1rem; }
.hero-copy h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-copy h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}
.hero-copy .lead {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 540px;
  margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat {}
.hero-stat strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hero-stat span { font-size: 0.82rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 1px; }

/* Hero card */
.hero-card {
  background: rgba(255,255,255,0.97);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  box-shadow: var(--sh-lg);
}
.hero-card-head { margin-bottom: 1.75rem; }
.hero-card-head h3 { color: var(--navy); margin-bottom: 0.35rem; font-size: 1.35rem; }
.hero-card-head p { color: var(--muted); font-size: 0.9rem; margin: 0; }
.hero-form { display: flex; flex-direction: column; gap: 1rem; }
.hero-form input,
.hero-form select,
.hero-form textarea {
  padding: 0.85rem 1.1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--r);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--text);
  background: #f8faff;
  transition: border-color var(--tr), box-shadow var(--tr);
  outline: none;
}
.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.10);
  background: #fff;
}
.hero-form input::placeholder { color: #a0aec0; }

/* ════════════════════════════════════════════════════════════
   STATS STRIP
   ════════════════════════════════════════════════════════════ */
.stats-strip {
  background: var(--grad-navy);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { padding: 1rem; }
.stat-number {
  display: block;
  font-family: var(--ff-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stats-strip .stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  margin: auto;
}

/* ════════════════════════════════════════════════════════════
   CARDS
   ════════════════════════════════════════════════════════════ */
.card {
  background: var(--card);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: all var(--tr);
  border: 1px solid rgba(13,43,94,0.06);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: rgba(26,86,219,0.1);
}
.card-body { padding: 1.75rem; }
.card-body h3 { margin-bottom: 0.65rem; font-size: 1.2rem; }
.card-body p { margin-bottom: 1.1rem; font-size: 0.93rem; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--ff-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: gap var(--tr);
}
.card-link:hover { gap: 0.75rem; color: var(--navy); }
.card-link::after { content: '→'; }

/* Practice Card */
.practice-card {
  background: var(--card);
  border-radius: var(--r-lg);
  padding: 2rem;
  border: 1px solid rgba(13,43,94,0.07);
  border-top: 4px solid var(--gold);
  box-shadow: var(--sh-sm);
  transition: all var(--tr);
}
.practice-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-top-color: var(--blue);
}
.practice-icon {
  width: 56px; height: 56px;
  background: var(--blue-faint);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--blue);
  transition: background var(--tr);
}
.practice-card:hover .practice-icon { background: var(--grad-blue); color: #fff; }
.practice-icon svg { width: 28px; height: 28px; }
.practice-card h3 { margin-bottom: 0.65rem; font-size: 1.15rem; }
.practice-card p { margin-bottom: 1.25rem; font-size: 0.92rem; line-height: 1.65; }

/* ════════════════════════════════════════════════════════════
   ABOUT / FEATURE SPLIT
   ════════════════════════════════════════════════════════════ */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.feature-split.reverse { direction: rtl; }
.feature-split.reverse > * { direction: ltr; }
.feature-media { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/3; }
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-media::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--r-xl);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}
.feature-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--grad-gold);
  color: var(--navy);
  padding: 1.5rem 2rem;
  border-radius: var(--r-lg);
  text-align: center;
  box-shadow: var(--sh-gold);
}
.feature-badge strong { display: block; font-size: 2rem; font-weight: 800; font-family: var(--ff-head); line-height: 1; }
.feature-badge span { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.feature-content .eyebrow { margin-bottom: 0.75rem; }
.feature-content h2 { margin-bottom: 1rem; }
.feature-content p { margin-bottom: 1.5rem; }
.feature-list { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 2rem; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%231a56db'%3E%3Cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z' clip-rule='evenodd'/%3E%3C/svg%3E") center/contain no-repeat;
  margin-top: 2px;
}

/* ════════════════════════════════════════════════════════════
   TEAM
   ════════════════════════════════════════════════════════════ */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 2rem; }
.team-card {
  background: var(--card);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  text-align: center;
  border: 1px solid rgba(13,43,94,0.06);
  transition: all var(--tr);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.team-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top center;
}
.team-card-body { padding: 1.25rem; }
.team-card-body h3 { font-size: 1rem; margin-bottom: 0.3rem; color: var(--navy); }
.team-card-body .role { font-size: 0.82rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.75rem; }
.team-card-body .location { font-size: 0.82rem; color: var(--muted); margin-bottom: 1rem; }

/* Team carousel / preview */
.team-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 2rem;
  padding: 1rem 0;
}
.avatar-card { text-align: center; }
.avatar-card a { display: block; text-decoration: none; color: inherit; }
.avatar-img-wrap {
  width: 130px; height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 3px solid transparent;
  background: var(--grad-gold);
  padding: 3px;
  transition: all var(--tr);
}
.avatar-img-wrap img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.avatar-card:hover .avatar-img-wrap { border-color: var(--blue); transform: scale(1.05); box-shadow: 0 8px 24px rgba(26,86,219,0.2); }
.avatar-card h4 { font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 0.2rem; }
.avatar-card .role { font-size: 0.78rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* ════════════════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════════════════ */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.testimonial-card {
  background: var(--card);
  border-radius: var(--r-lg);
  padding: 2rem;
  border-left: 4px solid var(--gold);
  box-shadow: var(--sh-sm);
  transition: all var(--tr);
  position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-size: 5rem;
  color: var(--gold-dim);
  font-family: Georgia, serif;
  line-height: 1;
}
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-text {
  font-size: 0.97rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head);
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-info strong { display: block; font-size: 0.92rem; color: var(--navy); margin-bottom: 0.1rem; }
.testimonial-info span { font-size: 0.8rem; color: var(--muted); }

/* ════════════════════════════════════════════════════════════
   NEWS / INSIGHTS
   ════════════════════════════════════════════════════════════ */
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.news-card {
  background: var(--card);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid rgba(13,43,94,0.06);
  transition: all var(--tr);
  display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--sh); }
.news-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.news-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.news-meta {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
  color: var(--muted); margin-bottom: 0.75rem;
}
.news-meta .tag {
  background: var(--blue-faint);
  color: var(--blue);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}
.news-card-body h3 { margin-bottom: 0.65rem; font-size: 1.13rem; }
.news-card-body p { flex: 1; margin-bottom: 1.25rem; font-size: 0.9rem; }

/* ════════════════════════════════════════════════════════════
   CTA STRIP
   ════════════════════════════════════════════════════════════ */
.cta-strip {
  background: var(--grad-hero);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::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");
}
.cta-strip-inner { position: relative; z-index: 1; }
.cta-strip h2 { color: #fff; margin-bottom: 1rem; }
.cta-strip p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 2.5rem; font-size: 1.05rem; }
.cta-strip-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ════════════════════════════════════════════════════════════
   PAYMENT
   ════════════════════════════════════════════════════════════ */
.payment-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem; margin-top: 2.5rem; }
.payment-btn {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.85rem 1.75rem;
  background: var(--card);
  border: 1.5px solid rgba(13,43,94,0.1);
  border-radius: 50px;
  font-family: var(--ff-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--tr);
}
.payment-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--sh);
}
.payment-btn img { width: 30px; height: 20px; object-fit: contain; }
.payment-note {
  display: flex; align-items: center; gap: 0.75rem;
  max-width: 600px; margin: 2rem auto 0;
  padding: 1rem 1.5rem;
  background: var(--bg-section);
  border-radius: var(--r);
  font-size: 0.87rem;
  color: var(--muted);
}

/* ════════════════════════════════════════════════════════════
   FORMS
   ════════════════════════════════════════════════════════════ */
.form-modern { max-width: 640px; margin: 0 auto; }
.form-row { position: relative; margin-bottom: 1.5rem; }
.form-row label {
  position: absolute;
  top: 0.85rem; left: 1.1rem;
  font-size: 0.9rem;
  color: var(--muted);
  transition: all 0.2s ease;
  pointer-events: none;
  background: transparent;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 1.5rem 1.1rem 0.5rem;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--r);
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color var(--tr), box-shadow var(--tr);
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.10);
}
.form-row input:focus ~ label,
.form-row input:not(:placeholder-shown) ~ label,
.form-row textarea:focus ~ label,
.form-row textarea:not(:placeholder-shown) ~ label {
  top: 0.35rem; font-size: 0.75rem; color: var(--blue);
}
.form-row input::placeholder { color: transparent; }
.form-row textarea::placeholder { color: transparent; }
.form-row.full { grid-column: 1/-1; }

/* Simple form (no float labels) */
.input, input[type="text"], input[type="email"], input[type="tel"],
input[type="search"], textarea, select {
  padding: 0.85rem 1.1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--r);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color var(--tr), box-shadow var(--tr);
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.10);
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-dark);
  color: var(--light);
  padding: 90px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand {}
.footer-brand .logo-footer { width: 140px; margin-bottom: 1.25rem; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 280px; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--tr);
}
.social-btn:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
.footer-col h5 {
  font-family: var(--ff-head);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: all 0.2s ease;
  display: inline-block;
}
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-col address {
  font-style: normal;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}
.footer-col address a { color: rgba(255,255,255,0.65); }
.footer-col address a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); margin-left: 1rem; transition: color var(--tr); }
.footer-bottom a:hover { color: var(--gold); }

.logo-small { width: 110px; }
.logo-footer { width: 150px; }

/* ════════════════════════════════════════════════════════════
   BACK TO TOP + SCROLL PROGRESS
   ════════════════════════════════════════════════════════════ */
#backToTop {
  position: fixed;
  bottom: 100px; right: 2rem;
  width: 48px; height: 48px;
  background: var(--grad-blue);
  border-radius: 50%;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-blue);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all var(--tr);
  z-index: 400;
  cursor: pointer;
  font-size: 1.2rem;
}
#backToTop.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { background: var(--navy); transform: translateY(-3px); }

/* ════════════════════════════════════════════════════════════
   ANIMATIONS / REVEAL
   ════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.2,0.9,0.3,1), transform 0.7s cubic-bezier(0.2,0.9,0.3,1);
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.in-view { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.in-view { opacity: 1; transform: none; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-12px); }
}
@keyframes goldGlow {
  0%,100% { text-shadow: 0 0 10px rgba(201,168,76,0.4), 0 0 20px rgba(201,168,76,0.2); }
  50%     { text-shadow: 0 0 20px rgba(201,168,76,0.7), 0 0 40px rgba(201,168,76,0.4); }
}

.animate-fade-in { animation: fadeIn 0.8s ease forwards; }
.animate-fade-up { animation: fadeInUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.35s; }

/* ════════════════════════════════════════════════════════════
   UTILITIES
   ════════════════════════════════════════════════════════════ */
.text-center { text-align: center; }
.text-white { color: #fff !important; }
.text-gold { color: var(--gold) !important; }
.text-blue { color: var(--blue) !important; }
.text-navy { color: var(--navy) !important; }
.text-muted { color: var(--muted) !important; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.p-card { padding: 2rem; }
.muted { color: var(--muted); }
.small { font-size: 0.85rem; }
.hidden { display: none !important; }
.tag-pill {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: var(--blue-faint);
  color: var(--blue);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Section mini-header (left-aligned two-line) */
.section-label {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
}
.section-label a.see-all {
  font-family: var(--ff-head);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue);
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.section-label a.see-all:hover { gap: 0.6rem; }
.section-label a.see-all::after { content: '→'; }

/* Dividers */
.divider { height: 1px; background: rgba(13,43,94,0.07); margin: 0; }

/* inline icon */
.icon-sm { width: 18px; height: 18px; }
.icon-md { width: 24px; height: 24px; }

/* ════════════════════════════════════════════════════════════
   CHATBOT WIDGET
   ════════════════════════════════════════════════════════════ */
.chatbot-container {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 9999;
}
.chatbot-trigger {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--grad-blue);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(26,86,219,0.4);
  cursor: pointer; transition: all var(--tr);
  position: relative;
}
.chatbot-trigger:hover { transform: scale(1.08); box-shadow: 0 12px 40px rgba(26,86,219,0.5); }
.chatbot-trigger-icon { width: 30px; height: 30px; color: #fff; }
.chatbot-trigger-icon svg { width: 100%; height: 100%; }
.chatbot-trigger-icon .icon-chat { display: block; }
.chatbot-trigger-icon .icon-close { display: none; }
.chatbot-trigger.active .icon-chat { display: none; }
.chatbot-trigger.active .icon-close { display: block; }
.chatbot-badge {
  position: absolute; top: -3px; right: -3px;
  width: 22px; height: 22px;
  background: var(--red); color: #fff;
  font-size: 11px; font-weight: 700;
  border-radius: 50%; border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center;
  animation: pulse-badge 2s infinite;
}
.chatbot-badge.hidden { display: none; }
@keyframes pulse-badge { 0%,100%{transform:scale(1);} 50%{transform:scale(1.12);} }

.chatbot-window {
  position: absolute;
  bottom: 80px; right: 0;
  width: 380px; max-width: calc(100vw - 40px);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  opacity: 0; visibility: hidden;
  transform: translateY(16px) scale(0.96);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
  max-height: 560px; overflow: hidden;
}
.chatbot-window.active { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }

.chatbot-header {
  background: var(--grad-blue);
  color: #fff;
  padding: 1.1rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.chatbot-header-info { display: flex; align-items: center; gap: 0.75rem; }
.chatbot-avatar {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.chatbot-avatar svg { width: 24px; height: 24px; color: #fff; }
.chatbot-header-text h4 { margin: 0; font-size: 0.95rem; font-weight: 700; color: #fff; }
.chatbot-status { font-size: 0.78rem; color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 5px; }
.status-dot { width: 7px; height: 7px; background: #4ade80; border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;} 50%{opacity:0.5;} }
.chatbot-close {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  color: #fff; display: flex; align-items: center; justify-content: center;
  transition: background var(--tr);
}
.chatbot-close:hover { background: rgba(255,255,255,0.25); }
.chatbot-close svg { width: 16px; height: 16px; }

.chatbot-body {
  flex: 1; overflow-y: auto;
  padding: 1.25rem;
  background: #f7f9fc;
  min-height: 260px; max-height: 300px;
}
.chatbot-welcome { text-align: center; padding: 1.5rem 0.5rem; }
.welcome-avatar {
  width: 60px; height: 60px;
  background: var(--grad-blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: var(--sh-blue);
}
.welcome-avatar svg { width: 30px; height: 30px; color: #fff; }
.chatbot-welcome h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.4rem; }
.chatbot-welcome p { font-size: 0.88rem; color: var(--muted); margin: 0; }
.chatbot-messages { display: flex; flex-direction: column; gap: 10px; }
.chat-msg { display: flex; gap: 8px; max-width: 88%; animation: fadeInMsg 0.3s ease; }
@keyframes fadeInMsg { from{opacity:0;transform:translateY(8px);}to{opacity:1;transform:none;} }
.chat-msg.bot { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; flex-direction: row-reverse; }
.msg-avatar { width: 30px; height: 30px; background: var(--grad-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.chat-msg.user .msg-avatar { background: #e2e8f0; }
.msg-avatar svg { width: 16px; height: 16px; color: #fff; }
.chat-msg.user .msg-avatar svg { color: #666; }
.msg-bubble { padding: 10px 14px; border-radius: 16px; font-size: 0.88rem; line-height: 1.55; }
.chat-msg.bot .msg-bubble { background: #fff; color: var(--text); border-bottom-left-radius: 4px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.chat-msg.user .msg-bubble { background: var(--grad-blue); color: #fff; border-bottom-right-radius: 4px; }
.chatbot-typing { display: none; align-items: center; gap: 8px; padding: 6px 0; }
.chatbot-typing.active { display: flex; }
.typing-dots { display: flex; gap: 4px; padding: 10px 14px; background: #fff; border-radius: 16px; border-bottom-left-radius: 4px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.typing-dots span { width: 7px; height: 7px; background: var(--blue); border-radius: 50%; animation: typingBounce 1.4s infinite ease-in-out; }
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce { 0%,60%,100%{transform:translateY(0);}30%{transform:translateY(-7px);} }

.chatbot-quick-actions { padding: 10px 14px; display: flex; flex-wrap: wrap; gap: 6px; background: #fff; border-top: 1px solid #eee; }
.quick-btn { padding: 6px 12px; background: #f0f4ff; border: 1px solid #d9e3ff; border-radius: 50px; font-size: 0.8rem; color: var(--blue); cursor: pointer; transition: all 0.2s; }
.quick-btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.chatbot-footer { padding: 14px; background: #fff; border-top: 1px solid #eee; }
.chatbot-input-wrapper {
  display: flex; align-items: center; gap: 8px;
  background: #f7f9fc; border: 1.5px solid #e2e8f0;
  border-radius: 24px; padding: 4px 4px 4px 14px;
  transition: all 0.2s;
}
.chatbot-input-wrapper:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,86,219,0.08); }
.chatbot-input { flex: 1; border: none; background: transparent; font-size: 0.88rem; outline: none; padding: 8px 0; }
.chatbot-input::placeholder { color: #aaa; }
.chatbot-send {
  width: 38px; height: 38px;
  background: var(--grad-blue); border-radius: 50%;
  color: #fff; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; flex-shrink: 0;
}
.chatbot-send:hover { transform: scale(1.06); box-shadow: var(--sh-blue); }
.chatbot-send svg { width: 18px; height: 18px; }
.chatbot-disclaimer { text-align: center; font-size: 0.72rem; color: #aaa; margin-top: 8px; }

/* ════════════════════════════════════════════════════════════
   PAGE HERO BANNERS (interior pages)
   ════════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--grad-hero);
  padding: 90px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' 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='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h6 { color: var(--gold-light); margin-bottom: 0.75rem; }
.page-hero h1 { color: #fff; margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; margin-top: 1.5rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--tr); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-card { max-width: 480px; }
  .feature-split, .feature-split.reverse { grid-template-columns: 1fr; direction: ltr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .hero { min-height: auto; }
  .hero-inner { padding: 60px 0; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .desktop-nav { display: none; }
  .hamburger { display: flex; }
  .header-inner { height: 68px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-badge { position: relative; bottom: auto; right: auto; margin-top: 1rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .chatbot-window { width: calc(100vw - 32px); right: -8px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.6rem; }
  .hero-btns { flex-direction: column; }
  .btn { justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-number { font-size: 2.2rem; }
  .container { padding: 0 1rem; }
}

/* ── Selection & Scrollbar ──────────────────────────────────── */
::selection { background: var(--blue); color: #fff; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }
