/* ==========================================================================
   HHB Contractors — styles.css
   Design system: dark navy/obsidian base, gold accents, premium minimal
   Fonts: Bricolage Grotesque (headings) / Outfit (UI) / Work Sans (body)
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. Custom Properties
   -------------------------------------------------------------------------- */
:root {
  --obsidian: #0A0A0A;
  --navy: #0D1B2A;
  --navy-mid: #112233;
  --gold: #D4A843;
  --gold-light: #F0D080;
  --gold-pale: rgba(212, 168, 67, 0.12);
  --gold-border: rgba(212, 168, 67, 0.18);
  --gold-border-hover: rgba(212, 168, 67, 0.55);
  --white: #FFFFFF;
  --ghost: #E8E2D6;
  --text-muted: rgba(232, 226, 214, 0.55);
  --glass: rgba(13, 27, 42, 0.5);
  --glass-border: rgba(212, 168, 67, 0.18);

  /* Spacing tokens */
  --space-xs:   8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  48px;
  --space-xl:  80px;
  --space-2xl: 120px;

  /* Border radius */
  --radius-sm:  6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Nav height */
  --nav-h: 80px;
}

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

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

body {
  background: var(--navy);
  color: var(--ghost);
  font-family: 'Work Sans', system-ui, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

ul, ol { list-style: none; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-sm);
  background: var(--gold);
  color: var(--obsidian);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: var(--space-sm); }

/* --------------------------------------------------------------------------
   2. Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
}

h1 { font-size: clamp(40px, 5.5vw, 76px); }
h2 { font-size: clamp(30px, 3.8vw, 52px); }
h3 { font-size: clamp(20px, 2.4vw, 30px); }
h4 { font-size: clamp(17px, 1.8vw, 22px); }

p {
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ghost);
}

.label {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.lead {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.7;
  color: var(--ghost);
  font-weight: 300;
}

.text-muted { color: var(--text-muted); }
.text-gold  { color: var(--gold); }
.text-white { color: var(--white); }

/* Gold gradient headline — hero only */
.headline-gradient {
  background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --------------------------------------------------------------------------
   3. Layout Utilities
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-2xl) 0;
}

.section--sm {
  padding: var(--space-xl) 0;
}

.section--obsidian { background: var(--obsidian); }
.section--navy     { background: var(--navy); }
.section--navy-mid { background: var(--navy-mid); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gap-sm  { gap: var(--space-sm); }
.gap-md  { gap: var(--space-md); }
.gap-lg  { gap: var(--space-lg); }

/* --------------------------------------------------------------------------
   4. Navigation
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease-out), border-color 0.35s var(--ease-out),
              box-shadow 0.35s var(--ease-out);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: var(--navy);
  border-bottom-color: var(--gold-border);
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  gap: var(--space-md);
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.nav__logo:hover { opacity: 0.85; }
.nav__logo img {
  height: 52px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__link {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ghost);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav__link:hover,
.nav__link.active {
  color: var(--gold);
  background: var(--gold-pale);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.nav__phone {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ghost);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.nav__phone:hover { color: var(--gold); }
.nav__phone svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s;
}
.nav__hamburger:hover { background: var(--gold-pale); }
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ghost);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  z-index: 899;
  border-top: 1px solid var(--gold-border);
  overflow-y: auto;
}
.nav__mobile.open { transform: translateX(0); }

.nav__mobile-link {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  color: var(--ghost);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--gold-border);
  transition: color 0.2s, padding-left 0.3s var(--ease-out);
}
.nav__mobile-link:hover {
  color: var(--gold);
  padding-left: var(--space-sm);
}

.nav__mobile-cta {
  margin-top: var(--space-md);
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s var(--ease-spring),
              background 0.2s,
              color 0.2s,
              border-color 0.2s,
              box-shadow 0.2s;
  text-decoration: none;
}
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.btn:active { transform: scale(0.97); }

.btn--gold {
  background: var(--gold);
  color: var(--obsidian);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 0 32px rgba(212,168,67,0.35);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--ghost);
  border-color: var(--gold-border-hover);
}
.btn--outline:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--gold);
  border-color: transparent;
  padding: 14px 0;
  letter-spacing: 0.06em;
}
.btn--ghost:hover {
  color: var(--gold-light);
  gap: 12px;
}

.btn--sm {
  font-size: 12px;
  padding: 10px 20px;
}

.btn--lg {
  font-size: 16px;
  padding: 18px 36px;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

/* --------------------------------------------------------------------------
   6. Hero Section
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.75) 0%,
    rgba(13, 27, 42, 0.70) 60%,
    rgba(13, 27, 42, 0.90) 100%
  );
  z-index: 1;
}

/* subtle grain texture overlay */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  padding: calc(var(--nav-h) + var(--space-xl)) 0 var(--space-xl);
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: var(--space-md);
}
.hero__tag span {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero__tag::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__headline {
  max-width: 820px;
  margin-bottom: var(--space-md);
}

.hero__sub {
  max-width: 620px;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  font-weight: 300;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}
.hero__trust-item::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero__scroll span {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* --------------------------------------------------------------------------
   7. Stats Bar
   -------------------------------------------------------------------------- */
.stats-bar {
  background: var(--obsidian);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: var(--space-lg) 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: var(--space-md) var(--space-sm);
  border-right: 1px solid var(--gold-border);
}
.stat-item:last-child { border-right: none; }

.stat-item__number {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4vw, 56px);
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-item__suffix {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 0.5em;
  color: var(--gold-light);
  vertical-align: super;
}

.stat-item__label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

/* --------------------------------------------------------------------------
   8. Section Headings
   -------------------------------------------------------------------------- */
.section-head {
  margin-bottom: var(--space-lg);
}

.section-head--center {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-head .label {
  display: block;
  margin-bottom: var(--space-sm);
}

.section-head h2 {
  margin-bottom: var(--space-sm);
}

.section-head p {
  color: var(--text-muted);
  max-width: 560px;
}

.section-head--center p {
  margin: 0 auto;
}

/* Gold divider line */
.section-head::after {
  display: none;
}

.divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 3px;
  margin: var(--space-sm) 0 var(--space-md);
}
.divider--center {
  margin: var(--space-sm) auto var(--space-md);
}

/* --------------------------------------------------------------------------
   9. Service Cards
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.service-card {
  position: relative;
  background: rgba(17, 34, 51, 0.6);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md) var(--space-md);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease-out),
              box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--gold-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4),
              0 0 0 1px rgba(212,168,67,0.1) inset;
}

.service-card__number {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 72px;
  color: rgba(212,168,67,0.06);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

.service-card__icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  flex-shrink: 0;
}
.service-card__icon svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
}

.service-card h3 {
  font-size: clamp(18px, 1.8vw, 22px);
  margin-bottom: var(--space-xs);
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
  flex: 1;
}

.service-card__price {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: var(--space-sm);
}

.service-card__link {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s, color 0.2s;
}
.service-card__link:hover {
  color: var(--gold-light);
  gap: 10px;
}
.service-card__link::after {
  content: '→';
}

/* --------------------------------------------------------------------------
   10. Why HHB Section
   -------------------------------------------------------------------------- */
.why__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.why__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.3) 0%, transparent 60%);
}

.why__image-badge {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  background: var(--navy);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  z-index: 1;
}
.why__image-badge .stat-item__number {
  font-size: 32px;
}
.why__image-badge .stat-item__label {
  text-align: left;
  margin-top: 2px;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.checklist__item:hover { background: var(--gold-pale); }

.checklist__icon {
  width: 24px;
  height: 24px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.checklist__icon svg {
  width: 12px;
  height: 12px;
  fill: var(--gold);
}

.checklist__text {
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ghost);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   11. HMO Spotlight
   -------------------------------------------------------------------------- */
.hmo-spotlight {
  position: relative;
  overflow: hidden;
}

.hmo-spotlight__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
}
.hmo-spotlight__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.hmo-spotlight__image:hover img { transform: scale(1.03); }
.hmo-spotlight__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10,10,10,0.5) 100%);
}

.hmo-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin: var(--space-md) 0;
}

.hmo-stat {
  background: var(--glass);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  backdrop-filter: blur(10px);
}

.hmo-stat__value {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--gold);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.hmo-stat__label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   12. Before / After Slider
   -------------------------------------------------------------------------- */
.ba-section {
  overflow: hidden;
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.ba-pair {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gold-border);
}

.ba-slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  user-select: none;
  cursor: col-resize;
}

.ba-slider__before,
.ba-slider__after {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ba-slider__after {
  clip-path: inset(0 50% 0 0);
}

.ba-slider__before img,
.ba-slider__after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: var(--gold);
  z-index: 10;
}
.ba-slider__handle::before,
.ba-slider__handle::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 50%;
  top: 50%;
  margin-top: -18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-slider__handle::before {
  background: var(--navy);
  border: 2px solid var(--gold);
  width: 40px;
  height: 40px;
  margin-top: -20px;
  z-index: 1;
}
.ba-slider__handle::after {
  background: var(--gold);
  width: 20px;
  height: 20px;
  margin-top: -10px;
  z-index: 2;
  border-radius: 50%;
}

.ba-label {
  position: absolute;
  bottom: var(--space-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 5;
}
.ba-label--before {
  left: var(--space-sm);
  background: rgba(10,10,10,0.8);
  color: var(--ghost);
}
.ba-label--after {
  right: var(--space-sm);
  background: var(--gold);
  color: var(--obsidian);
}

.ba-info {
  padding: var(--space-sm) var(--space-md);
  background: var(--navy-mid);
}
.ba-info__type {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.ba-info h4 {
  font-size: 15px;
  margin-bottom: 2px;
}
.ba-info p {
  font-size: 12px;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   13. Process Steps
   -------------------------------------------------------------------------- */
.process {
  position: relative;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), var(--gold), var(--gold-border), transparent);
}

.process__step {
  position: relative;
  padding: 0 var(--space-md);
  text-align: center;
}

.process__step-num {
  width: 56px;
  height: 56px;
  background: var(--navy-mid);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.process__step h4 {
  font-size: 17px;
  margin-bottom: var(--space-xs);
}

.process__step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   14. Portfolio Grid
   -------------------------------------------------------------------------- */
.portfolio-filter {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.filter-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 8px 18px;
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gold-pale);
  border-color: var(--gold);
  color: var(--gold);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.portfolio-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  background: var(--navy-mid);
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
  cursor: pointer;
}
.portfolio-card:hover {
  border-color: var(--gold-border-hover);
  transform: translateY(-4px);
}

.portfolio-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.portfolio-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.portfolio-card:hover .portfolio-card__img img { transform: scale(1.05); }

.portfolio-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.portfolio-card:hover .portfolio-card__img::after { opacity: 1; }

.portfolio-card__body {
  padding: var(--space-md);
}

.portfolio-card__tag {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.portfolio-card h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.portfolio-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   15. Testimonial / Reviews
   -------------------------------------------------------------------------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.review-card {
  background: rgba(17,34,51,0.6);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: border-color 0.3s, transform 0.3s;
}
.review-card:hover {
  border-color: var(--gold-border-hover);
  transform: translateY(-3px);
}

.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-sm);
}
.review-card__stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.review-card__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ghost);
  margin-bottom: var(--space-md);
  font-style: italic;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.review-card__name {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.review-card__role {
  font-size: 12px;
  color: var(--text-muted);
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
}
.google-badge__stars {
  display: flex;
  gap: 2px;
}
.google-badge__stars svg { width: 18px; height: 18px; fill: var(--gold); }
.google-badge__text {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}
.google-badge__sub {
  font-size: 11px;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   16. Pricing Cards
   -------------------------------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  align-items: start;
}

.pricing-card {
  background: rgba(17,34,51,0.7);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.pricing-card:hover {
  border-color: var(--gold-border-hover);
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: var(--gold);
  background: rgba(212,168,67,0.06);
  transform: scale(1.03);
  box-shadow: 0 0 60px rgba(212,168,67,0.15);
}
.pricing-card--featured:hover { transform: scale(1.03) translateY(-4px); }

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--obsidian);
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__tier {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.pricing-card h3 {
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: var(--space-sm);
}

.pricing-card__price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--gold);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
  line-height: 1;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--space-lg);
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ghost);
  line-height: 1.5;
}
.pricing-card__feature::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23D4A843' d='M13.5 4L6 11.5 2.5 8l-1 1L6 13.5 14.5 5z'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

/* --------------------------------------------------------------------------
   17. FAQ Accordion
   -------------------------------------------------------------------------- */
.faq {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq__item {
  background: rgba(17,34,51,0.5);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq__item.open {
  border-color: var(--gold-border-hover);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md);
  cursor: pointer;
  gap: var(--space-sm);
}
.faq__question h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ghost);
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0;
  line-height: 1.4;
}
.faq__item.open .faq__question h4 { color: var(--white); }

.faq__icon {
  width: 28px;
  height: 28px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s var(--ease-out);
}
.faq__item.open .faq__icon {
  background: var(--gold);
  transform: rotate(45deg);
}
.faq__icon svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
  transition: fill 0.2s;
}
.faq__item.open .faq__icon svg { fill: var(--obsidian); }

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease-out);
}
.faq__answer-inner {
  padding: 0 var(--space-md) var(--space-md);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   18. CTA Sections
   -------------------------------------------------------------------------- */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(212,168,67,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__content {
  position: relative;
  z-index: 1;
}

.cta-section h2 { margin-bottom: var(--space-sm); }
.cta-section p {
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  font-size: 16px;
}

/* --------------------------------------------------------------------------
   19. Contact Form
   -------------------------------------------------------------------------- */
.contact-form {
  background: rgba(17,34,51,0.6);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ghost);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(10,10,10,0.5);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23D4A843' d='M5 8l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 40px;
}

.form-group select option {
  background: var(--navy);
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,168,67,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}
.form-success.visible { display: block; }
.form-success svg {
  width: 56px;
  height: 56px;
  fill: var(--gold);
  margin: 0 auto var(--space-md);
}
.form-success h3 { color: var(--gold); margin-bottom: var(--space-sm); }

/* Contact info panel */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: rgba(17,34,51,0.4);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  transition: border-color 0.2s, background 0.2s;
}
.contact-info__item:hover {
  border-color: var(--gold-border-hover);
  background: var(--gold-pale);
}
.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info__icon svg { width: 20px; height: 20px; fill: var(--gold); }

.contact-info__label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.contact-info__value {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}
.contact-info__sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Trust signals */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--ghost);
  white-space: nowrap;
}
.trust-badge svg { width: 14px; height: 14px; fill: var(--gold); }

/* --------------------------------------------------------------------------
   20. Blog Layout
   -------------------------------------------------------------------------- */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-lg);
  align-items: start;
}

.blog-posts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.blog-card {
  background: rgba(17,34,51,0.6);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.blog-card:hover {
  border-color: var(--gold-border-hover);
  transform: translateY(-4px);
}

.blog-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
}
.blog-card:hover .blog-card__img img { transform: scale(1.04); }

.blog-card__body {
  padding: var(--space-md);
}

.blog-card__cat {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.blog-card h3 {
  font-size: 18px;
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}

.blog-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.blog-card__meta {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

/* Blog sidebar */
.blog-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + var(--space-md));
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.sidebar-widget {
  background: rgba(17,34,51,0.6);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.sidebar-widget h4 {
  font-size: 16px;
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--gold-border);
}

.sidebar-widget input[type="search"] {
  width: 100%;
  background: rgba(10,10,10,0.5);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--white);
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
}
.sidebar-widget input[type="search"]:focus {
  outline: none;
  border-color: var(--gold);
}

.sidebar-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.sidebar-cat {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  color: var(--text-muted);
  transition: all 0.2s;
}
.sidebar-cat:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
  color: var(--gold);
}

/* Blog post article */
.post-article {
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: var(--ghost);
}
.post-article h2 {
  font-size: clamp(22px, 2.5vw, 30px);
  margin: var(--space-lg) 0 var(--space-sm);
}
.post-article h3 {
  font-size: clamp(18px, 2vw, 24px);
  margin: var(--space-md) 0 var(--space-xs);
}
.post-article p { margin-bottom: var(--space-md); }
.post-article ul,
.post-article ol {
  margin: var(--space-sm) 0 var(--space-md) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.post-article li { color: var(--ghost); }
.post-article strong { color: var(--white); font-weight: 600; }
.post-article a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* --------------------------------------------------------------------------
   21. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--obsidian);
  border-top: 1px solid var(--gold-border);
  padding: var(--space-2xl) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.footer__brand img {
  height: 56px;
  width: auto;
  margin-bottom: var(--space-md);
}

.footer__tagline {
  font-family: 'Work Sans', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ghost);
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer__contact-item:hover { color: var(--gold); }
.footer__contact-item svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
  flex-shrink: 0;
}

.footer__col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--gold-border);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-family: 'Work Sans', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s, padding-left 0.2s;
}
.footer__link:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer__bottom {
  border-top: 1px solid var(--gold-border);
  padding: var(--space-md) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer__legal {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  color: var(--text-muted);
}

.footer__legal a {
  color: var(--gold);
  transition: opacity 0.2s;
}
.footer__legal a:hover { opacity: 0.7; }

/* --------------------------------------------------------------------------
   22. Floating Buttons (WhatsApp + Mobile Call)
   -------------------------------------------------------------------------- */
.wa-btn {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-md);
  z-index: 800;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s, width 0.3s var(--ease-out);
  overflow: hidden;
  white-space: nowrap;
  text-decoration: none;
}
.wa-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.wa-btn__label {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: white;
  max-width: 0;
  overflow: hidden;
  transition: max-width 0.3s var(--ease-out), margin-left 0.3s;
}
.wa-btn:hover {
  width: auto;
  padding: 0 20px 0 16px;
  border-radius: 28px;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}
.wa-btn:hover .wa-btn__label {
  max-width: 120px;
  margin-left: 8px;
}
.wa-btn:hover svg { transform: scale(1.1); }

/* Pulse ring */
.wa-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2.5s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(1.7); opacity: 0; }
}
.wa-btn:hover::before { animation: none; }

/* Mobile sticky call bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--navy);
  border-top: 1px solid var(--gold-border);
  padding: 10px var(--space-md);
}

.mobile-cta-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  background: var(--gold);
  color: var(--obsidian);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 14px;
  width: 100%;
  transition: background 0.2s;
}
.mobile-cta-bar a:hover { background: var(--gold-light); }
.mobile-cta-bar svg { width: 18px; height: 18px; fill: var(--obsidian); }

/* --------------------------------------------------------------------------
   23. Page-specific: Service Pages
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + var(--space-xl)) 0 var(--space-xl);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(10,10,10,0.92) 0%,
    rgba(13,27,42,0.80) 55%,
    rgba(13,27,42,0.30) 100%
  );
}
.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

/* Related services mini-grid */
.related-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.related-card {
  background: rgba(17,34,51,0.6);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.related-card:hover {
  border-color: var(--gold-border-hover);
  transform: translateY(-3px);
}
.related-card h4 {
  font-size: 15px;
}
.related-card p {
  font-size: 12px;
  color: var(--text-muted);
}
.related-card .service-card__link {
  margin-top: auto;
  padding-top: var(--space-xs);
}

/* Case study box */
.case-study {
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}
.case-study__label {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}
.case-study h3 {
  font-size: clamp(20px, 2.5vw, 26px);
  margin-bottom: var(--space-sm);
}

.case-study__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-md);
}
.case-study__stat {
  text-align: center;
}
.case-study__stat-value {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.case-study__stat-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   24. About Page
   -------------------------------------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.team-card {
  background: rgba(17,34,51,0.6);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.team-card:hover {
  border-color: var(--gold-border-hover);
  transform: translateY(-4px);
}

.team-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--navy-mid);
}
.team-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__body {
  padding: var(--space-md);
}
.team-card__role {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.team-card h3 { font-size: 22px; margin-bottom: var(--space-sm); }
.team-card p { font-size: 14px; color: var(--text-muted); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.value-card {
  background: rgba(17,34,51,0.6);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: border-color 0.3s, transform 0.3s;
}
.value-card:hover {
  border-color: var(--gold-border-hover);
  transform: translateY(-3px);
}
.value-card__icon {
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
}
.value-card__icon svg { width: 24px; height: 24px; fill: var(--gold); }
.value-card h4 { font-size: 17px; margin-bottom: 6px; }
.value-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* --------------------------------------------------------------------------
   25. 404 Page
   -------------------------------------------------------------------------- */
.notfound {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.notfound__code {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(100px, 18vw, 200px);
  color: transparent;
  -webkit-text-stroke: 2px var(--gold-border);
  letter-spacing: -0.05em;
  line-height: 0.9;
  margin-bottom: var(--space-md);
}

/* --------------------------------------------------------------------------
   26. Scroll Animations
   -------------------------------------------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up--delay-1 { transition-delay: 0.1s; }
.fade-up--delay-2 { transition-delay: 0.2s; }
.fade-up--delay-3 { transition-delay: 0.3s; }
.fade-up--delay-4 { transition-delay: 0.4s; }
.fade-up--delay-5 { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   27. Breadcrumbs
   -------------------------------------------------------------------------- */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}
.breadcrumbs__item {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
}
.breadcrumbs__item a {
  color: var(--text-muted);
  transition: color 0.2s;
}
.breadcrumbs__item a:hover { color: var(--gold); }
.breadcrumbs__sep {
  color: var(--gold-border-hover);
  font-size: 10px;
}

/* --------------------------------------------------------------------------
   28. Responsive — Tablet (≤ 1024px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  :root {
    --space-xl:  60px;
    --space-2xl: 90px;
  }

  .grid-2    { gap: var(--space-md); }
  .grid-3    { grid-template-columns: repeat(2, 1fr); }
  .grid-4    { grid-template-columns: repeat(2, 1fr); }

  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid   { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid   { grid-template-columns: repeat(2, 1fr); }
  .ba-grid        { grid-template-columns: repeat(2, 1fr); }
  .footer__grid   { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
  .values-grid    { grid-template-columns: repeat(2, 1fr); }

  .process__steps { grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
  .process__steps::before { display: none; }

  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  .blog-grid { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }

  .nav__links { display: none; }
  .nav__phone { display: none; }
  .nav__hamburger { display: flex; }

  .pricing-card--featured { transform: scale(1); }
  .pricing-card--featured:hover { transform: translateY(-4px); }
}

/* --------------------------------------------------------------------------
   29. Responsive — Mobile (≤ 640px)
   -------------------------------------------------------------------------- */
@media (max-width: 640px) {
  :root {
    --space-xl:  48px;
    --space-2xl: 72px;
    --space-lg:  36px;
    --nav-h: 64px;
  }

  .grid-2         { grid-template-columns: 1fr; }
  .grid-3         { grid-template-columns: 1fr; }
  .grid-4         { grid-template-columns: 1fr 1fr; }
  .services-grid  { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .reviews-grid   { grid-template-columns: 1fr; }
  .pricing-grid   { grid-template-columns: 1fr; }
  .ba-grid        { grid-template-columns: 1fr; }
  .team-grid      { grid-template-columns: 1fr; }
  .values-grid    { grid-template-columns: 1fr 1fr; }
  .hmo-stats      { grid-template-columns: 1fr 1fr; }
  .related-services { grid-template-columns: 1fr; }
  .form-grid      { grid-template-columns: 1fr; }
  .form-group--full { grid-column: 1; }

  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item       { border-right: none; border-bottom: 1px solid var(--gold-border); }
  .stat-item:last-child { border-bottom: none; }

  .process__steps { grid-template-columns: 1fr; }
  .footer__grid   { grid-template-columns: 1fr; }
  .blog-posts     { grid-template-columns: 1fr; }

  .btn-group      { flex-direction: column; }
  .btn            { width: 100%; justify-content: center; }

  .hero__trust { gap: var(--space-sm); }

  .mobile-cta-bar { display: block; }
  .wa-btn { bottom: calc(var(--space-sm) + 56px + 14px); }

  .contact-form { padding: var(--space-md); }

  .nav__logo img { height: 40px; }
}

/* --------------------------------------------------------------------------
   30. Focus Visible — Keyboard Accessibility
   -------------------------------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* --------------------------------------------------------------------------
   31. Utilities
   -------------------------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.hidden { display: none !important; }

[data-filter-item] { transition: opacity 0.3s, transform 0.3s; }
[data-filter-item].filtered-out {
  display: none;
}

/* --------------------------------------------------------------------------
   32. Blog Layout
   -------------------------------------------------------------------------- */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-2xl);
  align-items: start;
}

.blog-layout--article {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-2xl);
}

/* Blog index — card list */
.blog-posts { display: flex; flex-direction: column; gap: var(--space-xl); }

.blog-card {
  background: var(--navy-mid);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212,168,67,0.12);
  display: grid;
  grid-template-columns: 320px 1fr;
  transition: border-color 0.2s, transform 0.2s;
}

.blog-card:hover { border-color: rgba(212,168,67,0.35); transform: translateY(-2px); }

.blog-card__img-wrap { display: block; overflow: hidden; }
.blog-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card__img-wrap img { transform: scale(1.04); }

.blog-card__body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-ui);
}

.blog-card__cat {
  background: var(--gold-pale);
  color: var(--gold);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-card__title { font-size: clamp(1rem,1.8vw,1.2rem); line-height: 1.35; }
.blog-card__title a { color: var(--ghost); text-decoration: none; }
.blog-card__title a:hover { color: var(--gold); }

.blog-card__excerpt { color: var(--text-muted); font-size: 14px; line-height: 1.65; flex: 1; }

.blog-card__cta {
  color: var(--gold);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: gap 0.2s;
}
.blog-card__cta:hover { color: var(--gold-light); }

/* Blog article */
.blog-article__header {
  background: var(--navy);
  padding: var(--space-2xl) 0 var(--space-xl);
}

.blog-article__hero-wrap {
  margin-bottom: var(--space-lg);
  border-radius: 12px;
  overflow: hidden;
  max-height: 420px;
}

.blog-article__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-article__cat {
  background: var(--gold-pale);
  color: var(--gold);
  padding: 3px 10px;
  border-radius: 4px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.blog-article__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-sm);
}

.blog-article__meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-size: 13px;
}

/* Article body prose */
.blog-article__body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: rgba(232,226,214,0.85);
}

.blog-article__lead {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--ghost);
  border-left: 3px solid var(--gold);
  padding-left: var(--space-md);
  margin-bottom: var(--space-xl);
  font-weight: 400;
}

.blog-article__body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  letter-spacing: -0.02em;
  color: var(--ghost);
  margin: var(--space-xl) 0 var(--space-md);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(212,168,67,0.15);
}

.blog-article__body h2:first-of-type { border-top: none; padding-top: 0; }

.blog-article__body p { margin-bottom: var(--space-md); }

.blog-article__body ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-md);
}

.blog-article__body ul li {
  padding-left: var(--space-lg);
  position: relative;
  margin-bottom: var(--space-sm);
}

.blog-article__body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.blog-article__body a { color: var(--gold); }
.blog-article__body a:hover { color: var(--gold-light); }

.blog-article__body strong { color: var(--ghost); }

.blog-callout {
  background: var(--navy-mid);
  border-left: 3px solid var(--gold);
  padding: var(--space-md) var(--space-lg);
  border-radius: 0 8px 8px 0;
  margin: var(--space-lg) 0;
  color: var(--gold-light);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1rem;
}

/* Blog table */
.blog-table-wrap {
  overflow-x: auto;
  margin: var(--space-lg) 0;
  border-radius: 8px;
  border: 1px solid rgba(212,168,67,0.15);
}

.blog-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-ui);
  font-size: 14px;
}

.blog-table thead th {
  background: var(--navy-mid);
  color: var(--gold);
  font-weight: 600;
  text-align: left;
  padding: var(--space-sm) var(--space-md);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
  border-bottom: 1px solid rgba(212,168,67,0.2);
}

.blog-table tbody td {
  padding: var(--space-sm) var(--space-md);
  color: var(--ghost);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.blog-table tbody tr:last-child td { border-bottom: none; }
.blog-table tbody tr:nth-child(even) td { background: rgba(255,255,255,0.02); }

/* Sidebar */
.blog-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-lg));
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.sidebar-card {
  background: var(--navy-mid);
  border: 1px solid rgba(212,168,67,0.12);
  border-radius: 10px;
  padding: var(--space-md);
}

.sidebar-card__title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.sidebar-links { list-style: none; padding: 0; margin: 0; }
.sidebar-links li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.sidebar-links li:last-child { border-bottom: none; }

.sidebar-link {
  display: block;
  padding: var(--space-sm) 0;
  color: var(--ghost);
  font-family: var(--font-ui);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}
.sidebar-link:hover { color: var(--gold); padding-left: 6px; }

/* --------------------------------------------------------------------------
   33. Case Study Block
   -------------------------------------------------------------------------- */
.case-study {
  background: var(--navy-mid);
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: 12px;
  padding: var(--space-lg);
}

.case-study__label {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.case-study h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.case-study__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.case-study__stat {
  background: rgba(212,168,67,0.06);
  border: 1px solid rgba(212,168,67,0.15);
  border-radius: 8px;
  padding: var(--space-sm);
}

.case-study__stat-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
}

.case-study__stat-label {
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* BA grid used in portfolio */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.ba-section { padding: var(--space-2xl) 0; }

/* --------------------------------------------------------------------------
   34. Blog / Portfolio responsive overrides
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .blog-card { grid-template-columns: 1fr; }
  .blog-card__img-wrap { height: 200px; }
  .ba-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .blog-article__title { font-size: 1.6rem; }
  .case-study__stats { grid-template-columns: 1fr 1fr; }
}
