﻿/* ===== IQ Investigation Private Detective Agency — Main Stylesheet ===== */
/* Google Fonts loaded via <link> in HTML for faster page load */

:root {
  --navy: #010535;
  --navy-light: #0a1628;
  --gold: #c9a227;
  --gold-light: #e8c547;
  --gold-pale: #fff8e0;
  --maroon: #a61c2e;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-50: #f4f5f8;
  --gray-100: #e8eaf0;
  --gray-200: #d1d5e0;
  --gray-400: #8b93a8;
  --gray-600: #4a5068;
  --gray-800: #1e2235;
  --shadow-sm: 0 2px 8px rgba(1, 5, 53, 0.06);
  --shadow-md: 0 8px 30px rgba(1, 5, 53, 0.1);
  --shadow-lg: 0 20px 60px rgba(1, 5, 53, 0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --header-h: 76px;
  --mobile-bar-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  touch-action: manipulation;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.7;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  min-height: 100dvh;
  padding-bottom: env(safe-area-inset-bottom);
  padding-top: var(--header-offset, 76px);
  transition: padding-top 0.25s ease;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: none;
}

::selection {
  background: var(--gold-pale);
  color: var(--navy);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

img, video, svg, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
  min-width: 0;
}

.header,
.footer,
.section,
.hero,
.trust-bar,
.stats-strip,
.cta-banner {
  max-width: 100%;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar a { color: var(--gold-light); }
.top-bar a:hover { color: var(--white); }

.top-bar__left, .top-bar__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== HEADER / NAV ===== */
.header {
  background: var(--white);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  border-top: none;
  position: fixed;
  top: var(--direct-call-h, 38px);
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  margin: 0;
  box-shadow: none;
  transition: box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.header.scrolled {
  background: var(--navy);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.28);
}

.header.scrolled .logo__name { color: var(--white); }

.header.scrolled .logo__highlight {
  background: none;
  -webkit-text-fill-color: var(--gold-light);
  color: var(--gold-light);
}

.header.scrolled .logo__tag { color: var(--gold-light); }

.header.scrolled .nav a {
  color: rgba(255, 255, 255, 0.72);
}

.header.scrolled .nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.header.scrolled .nav a.active {
  color: var(--gold-light);
  background: rgba(201, 162, 39, 0.15);
  font-weight: 600;
}

.header.scrolled .nav__cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

.header.scrolled .nav__cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
}

.header.scrolled .hamburger span { background: var(--white); }

.header.scrolled::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, var(--gold) 50%, transparent 95%);
  opacity: 0.75;
  pointer-events: none;
}

.check-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(145deg, #34d399 0%, #16a34a 100%);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.35);
}

.check-mark::after {
  content: '';
  width: 5px;
  height: 9px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}

.check-mark--sm { width: 18px; height: 18px; }
.check-mark--sm::after { width: 4px; height: 7px; }

.check-mark--xs { width: 15px; height: 15px; }
.check-mark--xs::after { width: 3px; height: 6px; border-width: 0 1.5px 1.5px 0; }

.check-mark--gold {
  background: linear-gradient(145deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: 0 2px 8px rgba(201, 162, 39, 0.45);
}

.check-mark--gold::after { border-color: var(--navy); }

.logo__name,
.logo__highlight,
.logo__tag,
.nav a,
.hamburger span {
  transition: color 0.35s ease, background 0.35s ease, -webkit-text-fill-color 0.35s ease;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 1;
  min-width: 0;
}

.logo img {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.logo__text {
  line-height: 1.15;
  min-width: 0;
}

.logo__name {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.8vw, 1.2rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.logo__highlight {
  font-size: 1.15em;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold) 0%, #a67c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.06em;
}

.logo__tag {
  font-size: clamp(0.55rem, 1.8vw, 0.68rem);
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav { display: flex; align-items: center; gap: 4px; }

.nav a {
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: 8px;
  transition: all var(--transition);
}

.nav a:hover,
.nav a.active {
  color: var(--navy);
  background: var(--gold-pale);
}

.nav a.active { color: var(--maroon); font-weight: 600; }

.nav__cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  margin-left: 8px;
  border-radius: 8px !important;
}

.nav__cta:hover {
  background: var(--maroon) !important;
  color: var(--white) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1;
  position: relative;
  transition: transform 0.25s ease;
}

.hamburger:active { transform: scale(0.92); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.2s ease, background 0.2s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav drawer header (injected via JS) */
.nav__head {
  display: none;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 45%, var(--gold-pale) 100%);
  padding: clamp(48px, 8vw, 90px) 0 clamp(56px, 9vw, 100px);
  position: relative;
  overflow: hidden;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: center;
}

.hero__mesh {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(1, 5, 53, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1, 5, 53, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
  animation: meshDrift 24s linear infinite;
}

@keyframes meshDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 40px 40px, 40px 40px; }
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: min(500px, 80vw);
  height: min(500px, 80vw);
  background: radial-gradient(circle, rgba(201,162,39,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(1,5,53,0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
  position: relative;
  z-index: 1;
  min-width: 0;
  width: 100%;
}

.hero__content {
  min-width: 0;
  max-width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero__title span { color: var(--maroon); }

.hero__type-line {
  font-size: clamp(1rem, 2.8vw, 1.15rem);
  color: var(--gray-600);
  margin-bottom: 16px;
  font-weight: 500;
  min-height: 1.6em;
}

.hero__typewriter {
  color: var(--navy);
  font-weight: 700;
  border-right: 2px solid var(--gold);
  padding-right: 4px;
  animation: cursorBlink 0.9s step-end infinite;
}

.hero__typewriter.is-typing {
  border-right-color: var(--gold);
}

@keyframes cursorBlink {
  50% { border-right-color: transparent; }
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn--primary:hover {
  background: var(--maroon);
  border-color: var(--maroon);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}

.btn--whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.38);
}

.btn--whatsapp img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 2.5vw, 16px);
  max-width: 520px;
  margin-top: 8px;
}

.stat {
  position: relative;
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 18px 12px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--maroon));
  opacity: 0.85;
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 162, 39, 0.35);
}

.stat__icon {
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 6px;
  opacity: 0.9;
}

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.8vw, 1.85rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.stat__num span {
  background: linear-gradient(135deg, var(--navy) 0%, var(--maroon) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat__label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

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

.hero__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  text-align: center;
  max-width: 380px;
  width: 100%;
  position: relative;
}

.hero__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, var(--gold), var(--navy), var(--gold));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.55;
}

.hero__card img { width: 100px; margin: 0 auto 20px; }

.hero__card h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.hero__card p { color: var(--gray-600); font-size: 0.92rem; margin-bottom: 16px; }

.hero__trust-list {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.hero__trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy);
}

.hero__float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__float--1 { top: 12%; left: -6%; }
.hero__float--2 { bottom: 15%; right: -5%; }

@media (min-width: 1025px) {
  .hero__visual {
    align-items: center;
    justify-content: center;
    min-height: 420px;
  }

  .hero__float--1 {
    top: 10%;
    left: -4%;
    right: auto;
    bottom: auto;
    white-space: nowrap;
    z-index: 2;
  }

  .hero__float--2 {
    top: auto;
    left: auto;
    bottom: 8%;
    right: -4%;
    white-space: nowrap;
    z-index: 2;
  }
}

.hero__float .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.92); }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--navy);
  padding: 14px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.trust-bar__track {
  display: flex;
  gap: 40px;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.92);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-bar__item > span:not(.check-mark):first-child {
  color: var(--gold-light);
  font-size: 1rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== DIRECT CALL STRIP (fixed above header) ===== */
.direct-call-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1001;
  background: linear-gradient(90deg, #8b1524 0%, var(--maroon) 50%, #8b1524 100%);
  color: var(--white);
  padding: 8px 12px;
  padding-top: max(8px, env(safe-area-inset-top));
  text-align: center;
  font-size: clamp(0.72rem, 2.4vw, 0.88rem);
  line-height: 1.45;
  font-weight: 500;
  margin: 0;
  border: none;
  box-shadow: none;
}

.direct-call-strip + .header {
  margin-top: -1px;
}

.direct-call-strip a {
  color: var(--gold-light);
  font-weight: 700;
  white-space: nowrap;
}

.direct-call-strip a:hover {
  color: var(--white);
  text-decoration: underline;
}

@media (max-width: 480px) {
  .direct-call-strip {
    font-size: 0.7rem;
    padding: 7px 8px;
    padding-top: max(7px, env(safe-area-inset-top));
  }
}

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section--gray { background: var(--off-white); }

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}

.section__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 14px;
}

.section__desc { color: var(--gray-600); font-size: 1rem; }

/* ===== SEO KEYWORDS ===== */
.keyword-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 8px;
}

.keyword-pills span {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 50px;
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--gold);
  letter-spacing: 0.02em;
}

.hero .keyword-pills {
  display: none;
}

/* Live solved cases — hero welcome strip */
.live-solved {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  margin: 0 0 20px;
  width: 100%;
  max-width: 100%;
  text-align: left;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 50px;
  box-shadow: none;
  overflow: hidden;
}

.live-solved.is-switching .live-solved__dot {
  animation-duration: 1s;
}

.live-solved__dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  50% { box-shadow: 0 0 0 4px rgba(34, 197, 94, 0); }
}

.live-solved__line {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: clamp(0.74rem, 2vw, 0.82rem);
  font-weight: 500;
  color: var(--gray-600);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity 0.22s ease;
}

.live-solved__line.is-exiting { opacity: 0; }
.live-solved__line.is-entering { opacity: 0; }

.live-solved__label {
  color: var(--maroon);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.live-solved__name {
  color: var(--navy);
  font-weight: 600;
}

.live-solved__city {
  color: var(--gray-600);
  font-weight: 500;
}

.live-solved__verified {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

.live-solved__verified .check-mark {
  width: 14px;
  height: 14px;
}

.live-solved__verified .check-mark::after {
  width: 3px;
  height: 5px;
  border-width: 0 1.5px 1.5px 0;
}

.live-solved__sep {
  color: var(--gray-400);
  margin: 0 5px;
  font-weight: 400;
}

.hero .keyword-pills span {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.seo-section {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.seo-content {
  max-width: 820px;
  margin: 0 auto;
}

.seo-content p {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.seo-content strong {
  color: var(--navy);
  font-weight: 600;
}

.keyword-pills--wrap {
  margin-top: 24px;
  justify-content: center;
}

.keyword-pills--wrap span {
  font-size: 0.68rem;
  background: var(--gold-pale);
  border-color: rgba(201, 162, 39, 0.4);
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 28px);
  align-items: stretch;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--maroon));
  transform: scaleX(0);
  transition: transform var(--transition);
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 160px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(145deg, var(--off-white) 0%, var(--gray-50) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--gray-100);
}

.service-card__image picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.45s ease;
}

.service-card__tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

.service-card:hover .service-card__image img {
  transform: scale(1.04);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(1, 5, 53, 0.35) 100%);
  pointer-events: none;
}

.service-card__icon-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--gold-pale);
  z-index: 2;
}

.service-card__icon-badge img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  transform: none !important;
}

.service-card__body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--gold-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card__icon img { width: 32px; height: 32px; }

.service-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 700;
}

.service-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
  flex: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--maroon);
}

.service-card__link:hover { color: var(--gold); }

.service-enquiry-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: color var(--transition);
}

.service-enquiry-btn__icon {
  filter: brightness(0) saturate(100%) invert(18%) sepia(42%) saturate(2500%) hue-rotate(328deg) brightness(90%);
  transition: filter var(--transition);
}

.service-enquiry-btn:hover {
  color: #1da851;
}

.service-enquiry-btn:hover .service-enquiry-btn__icon {
  filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(600%) hue-rotate(95deg) brightness(95%);
}

/* Service enquiry modal */
.service-enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.service-enquiry-modal[hidden] { display: none; }

body.enquiry-modal-open { overflow: hidden; }

.service-enquiry-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.72);
  backdrop-filter: blur(4px);
}

.service-enquiry-modal__panel {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  animation: enquiryModalIn 0.28s ease;
}

@keyframes enquiryModalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.service-enquiry-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--gray-100);
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--gray-600);
  cursor: pointer;
  transition: background var(--transition);
}

.service-enquiry-modal__close:hover {
  background: var(--gray-200);
  color: var(--navy);
}

.service-enquiry-modal__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--maroon);
  background: rgba(128, 0, 32, 0.08);
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.service-enquiry-modal__title {
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.service-enquiry-modal__service {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.service-enquiry-modal__desc {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-bottom: 18px;
  line-height: 1.5;
}

.service-enquiry-modal__submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.form-group input.input-error {
  border-color: #e53935;
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.12);
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-pale);
}

.why-card__icon {
  width: 64px;
  height: 64px;
  background: var(--white);
  border: 2px solid var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all var(--transition);
}

.why-card:hover .why-card__icon {
  background: var(--navy);
  border-color: var(--navy);
}

.why-card__icon img { width: 30px; transition: filter var(--transition); }
.why-card:hover .why-card__icon img { filter: brightness(10); }

.why-card h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.why-card p { font-size: 0.85rem; color: var(--gray-600); }

.why-card__check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #166534;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ===== PROCESS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 28px 16px;
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.process-step:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold-pale);
}

@media (min-width: 769px) {
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 52px;
    right: -22px;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--maroon));
    z-index: 1;
  }
}

.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 16px;
}

.process-step h4 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 8px;
}

.process-step p { font-size: 0.85rem; color: var(--gray-600); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,162,39,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 8px;
}

.cta-banner p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }

.cta-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(232, 197, 71, 0.35);
  padding: 6px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cta-banner__actions .btn { min-width: 160px; justify-content: center; }

/* ===== TESTIMONIALS / REVIEWS ROTATOR ===== */
.testimonials-wrap {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.reviews-rotator {
  position: relative;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 5vw, 36px);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 8px;
  right: 18px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 4.5rem);
  color: var(--gold-pale);
  line-height: 1;
  pointer-events: none;
}

.review-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--maroon));
}

.review-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.review-card.is-exiting {
  opacity: 0;
  transform: translateY(-10px);
}

.review-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #166534;
  background: #ecfdf5;
  border: 1px solid rgba(22, 163, 74, 0.25);
  padding: 5px 12px 5px 8px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.review-card__stars {
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: 14px;
  letter-spacing: 3px;
}

.review-card__quote {
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  color: var(--gray-600);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 22px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-100);
}

.review-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, #1a2d5a 100%);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  flex-shrink: 0;
  border: 2px solid var(--gold-pale);
  box-shadow: var(--shadow-sm);
}

.review-card__name {
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
}

.review-card__role {
  font-size: 0.82rem;
  color: var(--gray-600);
  margin-top: 2px;
}

.review-card__case {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.review-progress {
  height: 3px;
  background: var(--gray-100);
  border-radius: 3px;
  margin-top: 20px;
  overflow: hidden;
}

.review-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--maroon));
  border-radius: 3px;
}

@keyframes reviewProgress {
  from { width: 0; }
  to { width: 100%; }
}

.testimonials-grid,
.testimonials-slider {
  display: none;
}

.slider-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--gray-200);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold-pale);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.testimonial-card__stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }

.testimonial-card blockquote {
  font-size: 0.92rem;
  color: var(--gray-600);
  font-style: italic;
  margin-bottom: 18px;
  line-height: 1.7;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9rem;
}

.testimonial-card__name { font-weight: 600; color: var(--navy); font-size: 0.9rem; }
.testimonial-card__role { font-size: 0.78rem; color: var(--gray-400); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--off-white), var(--white));
  padding: 50px 0;
  border-bottom: 1px solid var(--gray-100);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--maroon); }

.page-hero p { color: var(--gray-600); max-width: 600px; }

.page-hero--banner {
  position: relative;
  padding: clamp(56px, 10vw, 90px) 0;
  overflow: hidden;
  border-bottom: none;
}

.page-hero--banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../image/banner.webp') center/cover no-repeat;
}

.page-hero--banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(1, 5, 53, 0.93) 0%, rgba(10, 22, 40, 0.82) 100%);
}

.page-hero--banner .container { position: relative; z-index: 1; }

.page-hero--banner h1 { color: var(--white); }

.page-hero--banner p { color: rgba(255, 255, 255, 0.82); max-width: 640px; }

.page-hero--banner .breadcrumb { color: rgba(255, 255, 255, 0.55); }

.page-hero--banner .breadcrumb a { color: var(--gold-light); }

/* ===== EVIDENCE GALLERY ===== */
.evidence-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.evidence-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.evidence-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-md);
  z-index: 1;
}

.evidence-item picture {
  display: block;
  width: 100%;
  height: 100%;
}

.evidence-item picture,
.evidence-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.evidence-item__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 12px 10px;
  background: linear-gradient(transparent, rgba(1, 5, 53, 0.85));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
}

.services-cta {
  text-align: center;
  margin-top: 40px;
}

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-content h2 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.about-content p { color: var(--gray-600); margin-bottom: 16px; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--off-white);
  border-radius: var(--radius);
}

.about-feature__check {
  width: 24px;
  height: 24px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.about-feature span { font-size: 0.9rem; font-weight: 500; color: var(--navy); }

.about-visual {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  border: 1px solid var(--gray-100);
}

.about-visual img { width: 120px; margin: 0 auto 24px; }

.about-visual h3 {
  font-family: var(--font-display);
  color: var(--navy);
  margin-bottom: 12px;
}

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

.value-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}

.value-card h4 { color: var(--navy); margin-bottom: 8px; font-size: 1.05rem; }
.value-card p { color: var(--gray-600); font-size: 0.88rem; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-item__icon {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-item h4 { font-size: 0.85rem; color: var(--gold-light); margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 0.92rem; color: rgba(255,255,255,0.85); }
.contact-item a:hover { color: var(--gold-light); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.contact-form h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition);
}

.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(201,162,39,0.15);
}

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

.service-enquiry-modal__form textarea {
  min-height: 88px;
}

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

.form-success {
  display: none;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 18px;
  font-size: 0.9rem;
}

.btn--whatsapp-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366 0%, #1da851 100%) !important;
  border: none;
}

.btn--whatsapp-submit:hover {
  background: linear-gradient(135deg, #1da851 0%, #128c3e 100%) !important;
  transform: translateY(-2px);
}

.btn--whatsapp-submit:disabled {
  opacity: 0.75;
  cursor: wait;
  transform: none;
}

/* ===== POLICY PAGES ===== */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.4rem;
  margin: 32px 0 12px;
}

.policy-content h2:first-child { margin-top: 0; }

.policy-content p,
.policy-content li {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.policy-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.policy-content ul li { margin-bottom: 8px; }

.policy-updated {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 28px;
}

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--off-white); }

.faq-question .icon {
  font-size: 1.3rem;
  color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item.open .faq-question .icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 22px 18px;
}

.faq-answer p { color: var(--gray-600); font-size: 0.9rem; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer .logo__name { color: var(--white); }
.footer .logo__highlight {
  background: none;
  -webkit-text-fill-color: var(--gold-light);
  color: var(--gold-light);
}
.footer .logo__tag { color: var(--gold-light); }

.footer__desc {
  font-size: 0.88rem;
  margin-top: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 18px;
  font-weight: 600;
}

.footer ul li { margin-bottom: 10px; }

.footer ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer ul a:hover { color: var(--gold-light); }

/* ===== STATS STRIP (above footer, white bg) ===== */
.stats-strip {
  background: var(--white);
  padding: clamp(40px, 6vw, 56px) 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.stats-strip__eyebrow {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 3vw, 24px);
  max-width: 920px;
  margin: 0 auto;
}

.stats-strip__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: clamp(22px, 4vw, 30px) clamp(14px, 3vw, 20px);
  border-radius: var(--radius-lg);
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.stats-strip__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 162, 39, 0.35);
}

.stats-strip__item--highlight {
  background: linear-gradient(180deg, var(--gold-pale) 0%, var(--white) 100%);
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow: var(--shadow-sm);
}

.stats-strip__item--highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 3px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.stats-strip__icon {
  font-size: 1.2rem;
  line-height: 1;
}

.stats-strip__num {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.stats-strip__item--highlight .stats-strip__num {
  color: var(--maroon);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stats-strip__gain {
  display: block;
  font-family: var(--font-body, inherit);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #15803d;
  line-height: 1.2;
  animation: todayBadgeIn 0.6s ease 0.3s both;
}

.stats-strip__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-600);
}

.stats-strip__item--highlight .stats-strip__label {
  color: var(--navy);
}

.stats-strip__today {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  padding: 3px 9px 3px 7px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
  animation: todayBadgeIn 0.5s ease;
}

.stats-strip__today--mint {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.14) 0%, rgba(34, 197, 94, 0.06) 100%);
  border-color: rgba(34, 197, 94, 0.28);
  color: #15803d;
}

.stats-strip__today--gold {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.18) 0%, rgba(201, 162, 39, 0.06) 100%);
  border-color: rgba(201, 162, 39, 0.35);
  color: #92680a;
}

.stats-strip__today--sky {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.14) 0%, rgba(14, 165, 233, 0.05) 100%);
  border-color: rgba(14, 165, 233, 0.28);
  color: #0369a1;
}

.stats-strip__today--rose {
  background: linear-gradient(135deg, rgba(190, 24, 93, 0.12) 0%, rgba(190, 24, 93, 0.05) 100%);
  border-color: rgba(190, 24, 93, 0.22);
  color: #9d174d;
}

.stats-strip__today-icon {
  font-size: 0.72rem;
  line-height: 1;
  animation: todayArrowBounce 2.2s ease-in-out infinite;
}

.stats-strip__today-num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.stats-strip__today-label {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

@keyframes todayBadgeIn {
  from { opacity: 0; transform: translateY(4px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes todayArrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@media (max-width: 640px) {
  .stats-strip__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 0 36px;
  width: 100%;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 22px;
  width: 100%;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__legal a {
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

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

.footer__copyright {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 520px;
}

.footer__copyright-line {
  display: block;
  width: 56px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer__copyright p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.03em;
  line-height: 1.65;
}

.footer__copyright p strong {
  color: var(--gold-light);
  font-weight: 600;
}

.footer__copyright-tag {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232, 197, 71, 0.7);
}

.footer__bottom--solo {
  padding-top: 28px;
  border-top: none;
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--white) !important;
  transition: all var(--transition);
}

.footer__social a:hover {
  background: var(--gold);
  color: var(--navy) !important;
  transform: translateY(-2px);
}

/* SEO — visually hidden, crawlable keyword block */
.seo-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.seo-hidden a {
  color: inherit;
  text-decoration: none;
}

.footer .container {
  position: relative;
}

/* ===== FLOATING BUTTONS ===== */
.float-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.float-btn:hover { transform: scale(1.1); }

.float-btn--whatsapp { background: #25d366; }
.float-btn--call { background: var(--navy); }
.float-btn--whatsapp img { width: 28px; filter: brightness(0) invert(1); }
.float-btn--call img { width: 28px; filter: brightness(0) invert(1); }
.float-btn--chatbot {
  background: #ffffff;
  padding: 0;
  overflow: hidden;
  border: none;
  box-shadow: 0 4px 14px rgba(1, 5, 53, 0.16), 0 0 0 1px rgba(1, 5, 53, 0.06);
}
.float-btn--chatbot:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(1, 5, 53, 0.22), 0 0 0 1px rgba(1, 5, 53, 0.08);
}
.float-btn--chatbot img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  filter: none;
  display: block;
  background: #ffffff;
}

/* ===== IQ CHATBOT ===== */
.iq-chatbot__panel {
  position: fixed;
  bottom: 108px;
  right: 24px;
  width: min(380px, calc(100vw - 32px));
  max-height: min(520px, calc(100vh - 140px));
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(1, 5, 53, 0.22), 0 0 0 1px rgba(1, 5, 53, 0.06);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.96);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
  overflow: hidden;
}

.iq-chatbot__panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.iq-chatbot__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a2d5a 100%);
  color: var(--white);
}

.iq-chatbot__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.iq-chatbot__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: #ffffff;
  border: none;
  box-shadow: 0 0 0 1.5px rgba(1, 5, 53, 0.12);
  flex-shrink: 0;
}

.iq-chatbot__title {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.iq-chatbot__status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  opacity: 0.88;
  margin-top: 2px;
}

.iq-chatbot__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
  animation: statusPulse 2s ease-in-out infinite;
}

.iq-chatbot__close {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.iq-chatbot__close:hover { background: rgba(255, 255, 255, 0.22); }

.iq-chatbot__messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 200px;
  max-height: 300px;
  background: #f8f9fc;
}

.iq-chatbot__msg {
  max-width: 88%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.84rem;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
}

.iq-chatbot__msg--bot {
  align-self: flex-start;
  background: var(--white);
  color: var(--text);
  border: 1px solid rgba(1, 5, 53, 0.08);
  border-bottom-left-radius: 4px;
}

.iq-chatbot__msg--user {
  align-self: flex-end;
  background: var(--navy);
  color: var(--white);
  border-bottom-right-radius: 4px;
}

.iq-chatbot__msg--typing {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 12px 16px;
}

.iq-chatbot__msg--typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #94a3b8;
  animation: chatTyping 1.2s ease-in-out infinite;
}

.iq-chatbot__msg--typing span:nth-child(2) { animation-delay: 0.15s; }
.iq-chatbot__msg--typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes chatTyping {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.45; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.iq-chatbot__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 16px 4px;
  background: #f8f9fc;
  border-top: 1px solid rgba(1, 5, 53, 0.06);
}

.iq-chatbot__chip {
  border: 1px solid rgba(1, 5, 53, 0.12);
  background: var(--white);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.iq-chatbot__chip:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(37, 99, 235, 0.45);
}

.iq-chatbot__form {
  display: flex;
  gap: 8px;
  padding: 12px 16px 16px;
  background: var(--white);
  border-top: 1px solid rgba(1, 5, 53, 0.06);
}

.iq-chatbot__input {
  flex: 1;
  border: 1px solid rgba(1, 5, 53, 0.14);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.84rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.iq-chatbot__input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(1, 5, 53, 0.08);
}

.iq-chatbot__send {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}

.iq-chatbot__send:hover {
  background: #1a2d5a;
  transform: scale(1.05);
}

.mobile-contact-bar__item--chatbot {
  background: #ffffff;
  border: none;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 4px 14px rgba(1, 5, 53, 0.16), 0 0 0 1px rgba(1, 5, 53, 0.06);
  overflow: hidden;
}

.mobile-contact-bar__item--chatbot .mobile-contact-bar__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
}

.mobile-contact-bar__item--chatbot .mobile-contact-bar__icon img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  filter: none;
  background: #ffffff;
}

body.iq-chatbot-open .scroll-top {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .iq-chatbot__panel {
    bottom: calc(88px + env(safe-area-inset-bottom));
    right: 16px;
    max-height: min(480px, calc(100vh - 120px));
  }
}

@media (max-width: 480px) {
  .iq-chatbot__panel {
    right: 12px;
    left: 12px;
    width: auto;
    bottom: calc(76px + env(safe-area-inset-bottom));
  }
}

/* ===== MOBILE CONTACT BAR (right-side icon buttons) ===== */
.mobile-contact-bar {
  display: none;
  position: fixed;
  bottom: max(16px, env(safe-area-inset-bottom));
  right: 16px;
  left: auto;
  top: auto;
  z-index: 1100;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: auto;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.mobile-contact-bar.is-visible {
  opacity: 1;
  transform: none;
}

.mobile-contact-bar__item {
  width: 52px;
  height: 52px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.mobile-contact-bar__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, transparent 55%);
  pointer-events: none;
  border-radius: 50%;
}

.mobile-contact-bar__icon {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.mobile-contact-bar__icon img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
}

.mobile-contact-bar__item--wa {
  background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
  animation: waGlow 2.5s ease-in-out infinite;
}

.mobile-contact-bar__tip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(1, 5, 53, 0.25);
  pointer-events: none;
  z-index: 2;
}

.mobile-contact-bar__tip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--navy);
}

.mobile-contact-bar__item--call {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2d5a 100%);
}

.mobile-contact-bar__item--call.call-open {
  background: linear-gradient(135deg, #0a1628 0%, var(--navy) 100%);
  box-shadow: 0 4px 18px rgba(1, 5, 53, 0.35);
}

.mobile-contact-bar__item--call.call-closed {
  background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.mobile-contact-bar__text,
.mobile-contact-bar__status {
  display: none;
}

.mobile-contact-bar__item:active {
  transform: scale(0.92);
}

@keyframes waGlow {
  0%, 100% { box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 4px 22px rgba(37, 211, 102, 0.65); }
}

@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}

@keyframes barSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Call hours toast */
.call-toast {
  position: fixed;
  bottom: calc(100px + env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.82rem;
  max-width: min(320px, 90vw);
  text-align: center;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201, 162, 39, 0.35);
}

.call-toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.call-toast strong { color: var(--gold-light); display: block; margin-bottom: 4px; }

@media (min-width: 1025px) {
  .call-toast {
    bottom: 24px;
  }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 46px;
  height: 46px;
  background: var(--navy);
  color: var(--gold-light);
  border: 2px solid rgba(232, 197, 71, 0.45);
  border-radius: 50%;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 998;
  box-shadow: 0 6px 24px rgba(1, 5, 53, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(201, 162, 39, 0.4);
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .hero .container { grid-template-columns: 1fr; }
  .hero__visual { max-width: 420px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1.5px solid var(--gray-100);
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
    box-shadow: 0 2px 10px rgba(1, 5, 53, 0.08);
    flex-shrink: 0;
  }

  .hamburger.open {
    border-color: var(--navy);
    background: var(--navy);
    box-shadow: 0 4px 16px rgba(1, 5, 53, 0.25);
  }

  .hamburger.open span { background: var(--white); }

  .header {
    border-bottom: 1px solid var(--gray-100);
    box-shadow: 0 4px 22px rgba(1, 5, 53, 0.08);
    transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  }

  .header.scrolled {
    background: var(--navy);
    border-bottom-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.28);
  }

  .header.scrolled::after {
    opacity: 1;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  }

  .header.scrolled .hamburger {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
  }

  .header.scrolled .hamburger span { background: var(--white); }

  .header::after {
    content: '';
    position: absolute;
    left: clamp(16px, 4vw, 24px);
    right: clamp(16px, 4vw, 24px);
    bottom: 0;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 50%, var(--navy) 100%);
    opacity: 0.7;
    pointer-events: none;
  }

  .header .container {
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: 62px;
  }

  .logo { gap: 8px; max-width: calc(100% - 56px); }

  .logo img {
    width: 44px;
    height: 44px;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--white);
    z-index: 1070;
    box-shadow: 0 2px 20px rgba(1, 5, 53, 0.1);
  }

  body.nav-open .header .logo__name { color: var(--navy); }

  body.nav-open .header .logo__highlight {
    background: linear-gradient(135deg, var(--gold) 0%, #a67c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  body.nav-open .header .logo__tag { color: var(--gold); }

  body.nav-open .header .hamburger {
    border-color: var(--gray-100);
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
    box-shadow: 0 2px 10px rgba(1, 5, 53, 0.08);
  }

  body.nav-open .header .hamburger span { background: var(--navy); }

  body.nav-open .header::after {
    opacity: 1;
    background: linear-gradient(90deg, var(--gold) 0%, var(--maroon) 50%, var(--gold) 100%);
  }

  body.nav-open .direct-call-strip {
    z-index: 1080;
  }

  body.nav-open .hamburger {
    z-index: 1081;
  }

  body.nav-open .mobile-contact-bar {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .nav {
    position: fixed;
    top: var(--header-offset, 76px);
    right: 0;
    width: min(300px, 88vw);
    height: calc(100dvh - var(--header-offset, 76px));
    height: calc(100vh - var(--header-offset, 76px));
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 18px 28px;
    padding-bottom: max(28px, env(safe-area-inset-bottom));
    box-shadow: -12px 0 48px rgba(1, 5, 53, 0.2);
    border-left: 3px solid var(--gold);
    border-top: 1px solid var(--gray-100);
    transform: translate3d(100%, 0, 0);
    transition: transform 0.42s cubic-bezier(0.32, 0.72, 0, 1);
    z-index: 1055;
    gap: 4px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    will-change: transform;
  }

  .nav__head {
    display: block;
    padding-bottom: 18px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--gray-100);
    position: relative;
    opacity: 0;
    transform: translate3d(18px, 0, 0);
    transition: opacity 0.32s ease, transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
  }

  .nav__head::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 52px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--maroon));
    border-radius: 2px;
  }

  .nav__head-brand {
    display: block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
  }

  .nav__head-iq {
    background: linear-gradient(135deg, var(--gold) 0%, #a67c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: 0.05em;
  }

  .nav__head-sub {
    display: block;
    margin-top: 4px;
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold);
  }

  .nav.open .nav__head {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .nav.open {
    transform: translate3d(0, 0, 0);
  }

  .nav a {
    padding: 13px 14px;
    font-size: 0.96rem;
    min-height: 48px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    border: 1px solid transparent;
    opacity: 0;
    transform: translate3d(18px, 0, 0);
    transition:
      opacity 0.32s ease,
      transform 0.38s cubic-bezier(0.32, 0.72, 0, 1),
      color 0.2s ease,
      background 0.2s ease,
      border-color 0.2s ease;
  }

  .nav a + a {
    border-top: 1px solid rgba(232, 234, 240, 0.85);
    border-radius: 0;
    margin-top: 2px;
    padding-top: 14px;
  }

  .nav a.active {
    color: var(--maroon);
    font-weight: 600;
    background: linear-gradient(90deg, var(--gold-pale) 0%, transparent 100%);
    border-left: 3px solid var(--gold);
    padding-left: 11px;
    border-radius: 0 10px 10px 0;
  }

  .nav.open a {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .nav.open a:nth-of-type(1) { transition-delay: 0.06s; }
  .nav.open a:nth-of-type(2) { transition-delay: 0.1s; }
  .nav.open a:nth-of-type(3) { transition-delay: 0.14s; }
  .nav.open a:nth-of-type(4) { transition-delay: 0.18s; }
  .nav.open a:nth-of-type(5) { transition-delay: 0.22s; }

  .nav__cta {
    margin-left: 0 !important;
    margin-top: 14px !important;
    text-align: center;
    justify-content: center;
    border-top: none !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 16px rgba(1, 5, 53, 0.2);
  }

  .nav-overlay {
    position: fixed;
    top: var(--header-offset, 76px);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(1, 5, 53, 0.42);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    backdrop-filter: blur(10px) saturate(120%);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    touch-action: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    will-change: opacity;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .nav-overlay {
      background: rgba(1, 5, 53, 0.72);
    }
  }

@media (max-width: 1024px) {
  .mobile-contact-bar { display: flex; }
  .float-actions { display: none !important; visibility: hidden !important; pointer-events: none !important; }

  .scroll-top {
    bottom: max(24px, env(safe-area-inset-bottom));
    left: 16px;
  }

  .hero {
    min-height: auto;
    padding: 40px 0 50px;
    text-align: center;
    overflow: hidden;
  }

  .hero__content {
    width: 100%;
    max-width: 100%;
  }

  .hero__desc { margin-left: auto; margin-right: auto; max-width: 100%; }
  .hero__actions { justify-content: center; width: 100%; max-width: 100%; }
  .hero__type-line { max-width: 100%; }
  .live-solved {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 7px 10px;
    gap: 7px;
    border-radius: 50px;
  }
  .live-solved__line { font-size: 0.72rem; }
  .live-solved__sep { margin: 0 4px; }
  .hero__stats { margin: 0 auto; max-width: 100%; }
  .hero__visual { display: block; margin-top: 10px; width: 100%; max-width: 100%; }
  .hero__card { max-width: 100%; width: 100%; }
  .hero__float { display: none; }

  .section { padding: clamp(40px, 8vw, 56px) 0; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { display: none; }
  .testimonials-slider { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer__legal { gap: 8px 16px; }
  .footer__legal a { font-size: 0.78rem; }
  .footer__copyright p { font-size: 0.74rem; padding: 0 8px; }
  .cta-banner .container { flex-direction: column; text-align: center; }
  .cta-banner__actions { width: 100%; justify-content: center; }
  .cta-banner .btn { width: 100%; justify-content: center; }
  .values-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .evidence-gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .top-bar .container { justify-content: center; text-align: center; }
  .top-bar__left { display: none; }
}

@media (max-width: 1024px) {
  .mobile-contact-bar { display: flex; }
  .float-actions { display: none !important; visibility: hidden !important; pointer-events: none !important; }

  .scroll-top {
    bottom: max(24px, env(safe-area-inset-bottom));
    left: 16px;
  }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr; gap: 10px; }
  .stat { display: flex; align-items: center; justify-content: space-between; text-align: left; padding: 14px 18px; }
  .stat__label { margin-top: 0; }
  .btn { padding: 14px 22px; font-size: 0.9rem; width: 100%; justify-content: center; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__title { font-size: clamp(1.55rem, 6.8vw, 1.95rem); }
  .hero__badge { font-size: 0.65rem; padding: 5px 10px; letter-spacing: 0.05em; }
  .hero__desc { font-size: 0.95rem; }
  .live-solved { padding: 6px 10px; margin-bottom: 18px; }
  .live-solved__dot { width: 7px; height: 7px; }
  .live-solved__line { font-size: 0.68rem; }
  .float-btn { width: 50px; height: 50px; }
  .logo img { width: 40px; height: 40px; }
  .logo__name { font-size: 0.88rem; max-width: 100%; overflow: hidden; text-overflow: ellipsis; }
  .logo__tag { font-size: 0.5rem; letter-spacing: 0.06em; max-width: 100%; overflow: hidden; text-overflow: ellipsis; }
  .header .container { min-height: 58px; padding-top: 8px; padding-bottom: 8px; }
  .hamburger { width: 42px; height: 42px; border-radius: 11px; }
  .nav { width: min(280px, 90vw); }
  .service-card__image { aspect-ratio: 16 / 11; min-height: 150px; }
  .review-card { min-height: 250px; padding: 20px 16px; }
  .review-card__avatar { width: 46px; height: 46px; font-size: 0.8rem; }
  .evidence-gallery { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 14px; }
}

/* ===== ADVANCED FEATURES ===== */
.scroll-progress {
  position: fixed;
  top: var(--header-offset, 76px);
  left: 0;
  right: 0;
  height: 3px;
  z-index: 1200;
  background: transparent;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--maroon), var(--navy));
  box-shadow: 0 0 12px rgba(201, 162, 39, 0.5);
  transition: width 0.08s linear;
}

/* ===== MOBILE — fit screen, prevent auto zoom ===== */
@media (max-width: 1024px) {
  input,
  select,
  textarea,
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
  }

  .trust-bar {
    overflow: hidden;
    max-width: 100%;
    width: 100%;
  }

  .trust-bar__track {
    max-width: none;
  }

  .direct-call-strip {
    white-space: normal;
    line-height: 1.4;
  }

  .direct-call-strip a {
    white-space: normal;
  }

  .direct-call-strip,
  .header,
  .header .container {
    max-width: 100%;
    width: 100%;
  }

  .hero,
  .section,
  .footer,
  .cta-banner {
    max-width: 100%;
    overflow-x: clip;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .trust-bar__track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; }
  .fade-up { opacity: 1; transform: none; }
  .hero__mesh { animation: none; }
}

/* ===== BLOG & NEWS ===== */
.content-hub-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0a1640 55%, #1a1048 100%);
  color: var(--white);
  padding: clamp(48px, 8vw, 72px) 0;
  position: relative;
  overflow: hidden;
}

.content-hub-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(201, 162, 39, 0.18) 0%, transparent 45%);
  pointer-events: none;
}

.content-hub-hero .container { position: relative; z-index: 1; }

.content-hub-hero .breadcrumb a { color: var(--gold-light); }
.content-hub-hero .breadcrumb { color: rgba(255,255,255,0.55); margin-bottom: 14px; }

.content-hub-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: 12px;
  max-width: 720px;
}

.content-hub-hero p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  max-width: 620px;
  line-height: 1.65;
}

.content-hub-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.content-hub-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201, 162, 39, 0.35);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.content-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
}

.content-filters__btn {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--gray-100);
  background: var(--white);
  color: var(--gray-600);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.25s ease;
}

.content-filters__btn:hover,
.content-filters__btn.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.blog-featured {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(20px, 3vw, 32px);
  margin-bottom: 48px;
  align-items: stretch;
}

.blog-featured__main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201, 162, 39, 0.25);
}

.blog-featured__main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(1, 5, 53, 0.92) 100%);
}

.blog-featured__body {
  position: relative;
  z-index: 1;
  padding: clamp(20px, 4vw, 32px);
  color: var(--white);
}

.blog-featured__tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--maroon);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-featured__body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.25;
  margin-bottom: 10px;
}

.blog-featured__body h2 a { color: inherit; }
.blog-featured__body h2 a:hover { color: var(--gold-light); }

.blog-featured__excerpt {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  margin-bottom: 14px;
}

.blog-featured__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-featured__side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.blog-mini-card {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-mini-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.blog-mini-card__img {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 10px;
  overflow: hidden;
}

.blog-mini-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-mini-card__body h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 6px;
}

.blog-mini-card__body h3 a:hover { color: var(--maroon); }

.blog-mini-card__date {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
}

.content-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.content-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.content-card.is-hidden { display: none; }

.content-card__image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.content-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.content-card:hover .content-card__image img { transform: scale(1.05); }

.content-card__cat {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(1, 5, 53, 0.82);
  color: var(--gold-light);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.content-card__body {
  padding: 18px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.content-card__date {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--maroon);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.content-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 10px;
}

.content-card__title a:hover { color: var(--maroon); }

.content-card__excerpt {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}

.content-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--maroon);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.content-card__link:hover { gap: 10px; }

/* News ticker */
.news-ticker {
  background: var(--maroon);
  color: var(--white);
  padding: 10px 0;
  overflow: hidden;
}

.news-ticker__track {
  display: flex;
  gap: 40px;
  animation: newsTicker 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.news-ticker__item {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.news-ticker__item strong { color: var(--gold-light); margin-right: 8px; }

@keyframes newsTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.news-spotlight {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.news-spotlight__card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 18px;
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--white) 100%);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease;
}

.news-spotlight__card:hover { transform: translateY(-4px); }

.news-spotlight__img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
}

.news-spotlight__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-spotlight__badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--maroon);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.news-spotlight__card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 8px;
}

.news-spotlight__card h3 a:hover { color: var(--maroon); }

.news-spotlight__card p {
  font-size: 0.84rem;
  color: var(--gray-600);
  line-height: 1.55;
  margin-bottom: 10px;
}

.news-spotlight__date {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
}

/* Article detail page */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.article-main {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.article-main__hero {
  aspect-ratio: 21 / 9;
  overflow: hidden;
  max-height: 380px;
}

.article-main__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-main__content {
  padding: clamp(24px, 4vw, 40px);
}

.article-main__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
}

.article-main__content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.2rem);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 20px;
}

.article-prose {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.8;
}

.article-prose h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  margin: 28px 0 12px;
}

.article-prose h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin: 22px 0 10px;
}

.article-prose p { margin-bottom: 16px; }

.article-prose ul {
  margin: 0 0 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-prose li { line-height: 1.65; }

.article-prose a {
  color: var(--maroon);
  font-weight: 600;
  text-decoration: underline;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
}

.article-tags span,
.article-tags a {
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-600);
}

.article-sidebar {
  position: sticky;
  top: calc(var(--header-offset, 76px) + 16px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.article-sidebar__box {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.article-sidebar__box h4 {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}

.article-sidebar__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.article-sidebar__list a {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--gray-600);
  line-height: 1.4;
}

.article-sidebar__list a:hover { color: var(--maroon); }

.article-cta {
  margin-top: 32px;
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy) 0%, #0f1f4d 100%);
  color: var(--white);
  text-align: center;
}

.article-cta h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.article-cta p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}

.content-hub-seo {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.content-hub-seo p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.75;
}

@media (max-width: 1024px) {
  .blog-featured { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: repeat(2, 1fr); }
  .news-spotlight { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}

@media (max-width: 640px) {
  .content-grid { grid-template-columns: 1fr; }
  .news-spotlight__card { grid-template-columns: 1fr; }
  .news-spotlight__img { aspect-ratio: 16/10; max-height: 180px; }
  .blog-mini-card__img { width: 72px; height: 72px; }
}
