/* ============================================================
   BLACKSHIELD — SHARED STYLESHEET
   Design tokens → Reset → Global → Components → Sections → Pages → Utils
   ============================================================ */

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  /* Colors */
  --bg: #0A0A0B;
  --surface: #131316;
  --surface-2: #1A1A1F;
  --text: #F4F3F1;
  --text-muted: #fafafa;
  --border: rgba(255, 255, 255, 0.08);
  --accent: #E01E2B;           /* ← ONE variable for full rebrand */
  --accent-hover: #FF2D3C;
  --accent-glow: rgba(224, 30, 43, 0.35);

  /* Typography */
  --font-display: 'Anton', sans-serif;
  --font-body: 'Archivo', sans-serif;

  /* Spacing (8px base) */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-8: 64px;
  --space-10: 80px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;

  /* Shadows */
  --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  --shadow-glow: 0 0 40px var(--accent-glow);
  --shadow-btn: 0 4px 24px rgba(224, 30, 43, 0.4);

  /* Section padding */
  --section-py: clamp(80px, 12vw, 160px);

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-fast: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 400ms;
  --dur-fast: 200ms;

  /* Header height */
  --header-h: 72px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: auto; /* Lenis handles this */
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(16px, 1.05vw, 17px);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Film grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.55;
  mix-blend-mode: overlay;
}

/* Every element: prevent grid/flex blowout */
*, *::before, *::after { min-width: 0; }

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
.display-1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.display-2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 7vw, 90px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.display-3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 60px);
  line-height: 1;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}

h1, h2, h3, h4 { font-family: var(--font-body); font-weight: 500; }
a, p, li { font-weight: 500; }
.section-heading {
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-2);
  position: relative;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 72px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text);
  word-break: break-word;
  overflow-wrap: break-word;
}

.section-sub {
  margin-top: var(--space-3);
  font-size: clamp(16px, 1.1vw, 18px);
  color: var(--text-muted);
  max-width: min(560px, 100%);
  line-height: 1.7;
}

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(16px, 5vw, 64px);
  box-sizing: border-box;
}

.section { padding-block: var(--section-py); overflow: hidden; }

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

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

.text-center { text-align: center; }
.text-center .section-sub { margin-inline: auto; }

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 0 rgba(0,0,0,0.3);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid #ffffff7e;
}

.btn-secondary:hover {
  background: var(--surface-2);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-outline-accent {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-outline-accent:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn);
}

.btn-lg { padding: 17px 36px; font-size: 15px; border-radius: var(--radius-md); }

/* Ghost link */
.link-ghost {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--dur-fast) var(--ease);
}

.link-ghost::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--dur) var(--ease);
}

.link-ghost:hover { color: var(--text); }
.link-ghost:hover::after { width: 100%; }

/* ============================================================
   6. HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  max-width: 100vw;
  /* overflow must stay visible so the dropdown can extend below the header */
  overflow: visible;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(10, 10, 11, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-width: 0;
  gap: var(--space-4);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  height: 100px;
  width: 100%;
  max-width: 180px;
  flex-shrink: 0;
  filter: brightness(1);
}

@media (max-width: 768px) {
  .logo-mark { height: 100px; max-width: 140px; }
}

@media (max-width: 480px) {
  .logo-mark { height:80px; max-width: 120px; }
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
}

.logo-tagline {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Nav */
.site-nav { display: flex; align-items: center; gap: 4px; }

.nav-link {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
  position: relative;
}

.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 1px;
  background: var(--accent);
}

/* Dropdown */
.nav-item { position: relative; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--dur-fast) var(--ease);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
  z-index: 1100;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Chevron icon on Services nav link */
.nav-link .fa-angle-down {
  font-size: 11px;
  transition: transform var(--dur-fast) var(--ease);
  display: inline-block;
  vertical-align: middle;
  margin-left: 2px;
}

.nav-item:hover .nav-link .fa-angle-down,
.nav-item:focus-within .nav-link .fa-angle-down {
  transform: rotate(180deg);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}

.nav-dropdown a:hover { background: var(--surface-2); color: var(--text); }

.nav-dropdown-icon {
  width: 28px; height: 28px;
  background: var(--surface-2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.header-phone {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  transition: color var(--dur-fast) var(--ease);
}

.header-phone:hover { color: var(--text); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--dur-fast) var(--ease);
}

.hamburger:hover { background: var(--surface); }

.hamburger-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur-fast) var(--ease), width var(--dur) var(--ease);
}

.hamburger.open .hamburger-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open .hamburger-line:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open .hamburger-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 32px) clamp(20px, 6vw, 48px) 48px;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  max-width: 100vw;
  transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav { flex: 1; }

.mobile-nav-link {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 8vw, 52px);
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: -0.01em;
  padding-block: 12px;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateX(-24px);
  transition: color var(--dur-fast) var(--ease);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-nav-link:hover { color: var(--accent); }

.mobile-nav-sub {
  padding-left: var(--space-3);
  border-bottom: 1px solid var(--border);
}

.mobile-nav-sub a {
  display: block;
  font-size: clamp(18px, 4vw, 24px);
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--text-muted);
  padding-block: 10px;
  opacity: 0;
  transform: translateX(-24px);
  transition: color var(--dur-fast) var(--ease);
}

.mobile-nav-sub a:hover { color: var(--accent); }

.mobile-menu-footer {
  margin-top: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  opacity: 0;
  transform: translateY(16px);
}

/* ============================================================
   7. FOOTER
   ============================================================ */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-top: clamp(60px, 8vw, 96px);
  padding-bottom: var(--space-6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(24px, 4vw, 64px);
  margin-bottom: clamp(40px, 6vw, 64px);
  width: 100%;
}

.footer-grid > * { min-width: 0; }

.footer-brand .logo { margin-bottom: var(--space-3); }

.footer-brand p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: var(--space-3);
}

.footer-social {
  display: flex;
  gap: var(--space-2);
}

.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
  transition: border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}

.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}

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

.footer-links a {
  font-size: 16px;
  color: var(--text-muted);
  transition: color var(--dur-fast) var(--ease);
}

.footer-links a:hover { color: var(--text); }

.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-contact-icon {
  width: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
  font-style: normal;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--space-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
}

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

.footer-bottom a { color: var(--accent); }

/* ============================================================
   8. FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  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 var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}

.wa-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.wa-float svg { width: 28px; height: 28px; }

/* WhatsApp pulse */
.wa-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.35);
  animation: wa-pulse 2s ease infinite;
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================================
   9. SECTION HEADING (reusable component)
   ============================================================ */
.sh { /* section heading wrapper */ }
.sh--center { text-align: center; }
.sh--center .section-sub { margin-inline: auto; }

/* ============================================================
   10. MEDIA PLACEHOLDER
   ============================================================ */
.media-placeholder {
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.media-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.015) 20px,
    rgba(255, 255, 255, 0.015) 21px
  );
}

.media-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 40%, var(--accent-glow) 0%, transparent 60%);
  opacity: 0.5;
}

.media-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
}

.media-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  background: rgba(10, 10, 11, 0.7);
  padding: 6px 10px;
  border-radius: 6px;
  backdrop-filter: blur(8px);
}

.media-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  z-index: 2;
  overflow: hidden;
}

.media-corner::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 40px 40px 0;
  border-color: transparent var(--accent) transparent transparent;
}

/* ============================================================
   11. CARD (reusable)
   ============================================================ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-card);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.card:hover {
  border-color: rgba(224, 30, 43, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.card:hover::before { opacity: 1; }

/* ============================================================
   12. SERVICE CARD
   ============================================================ */
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), var(--shadow-glow);
  border-color: rgba(224, 30, 43, 0.4);
}

.service-card-media {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.service-card-media .media-placeholder {
  height: 100%;
  border-radius: 0;
  min-height: unset;
}

.service-card-body {
  padding: clamp(20px, 2.5vw, 28px);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(224, 30, 43, 0.12);
  border: 1px solid rgba(224, 30, 43, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
  color: var(--accent);
  font-size: 18px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 28px);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: var(--space-2);
}

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

.service-card-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--dur-fast) var(--ease);
}

.service-card:hover .service-card-link { gap: 10px; }

/* ============================================================
   13. STAT COUNTER
   ============================================================ */
.stat-block {
  text-align: center;
  padding: clamp(20px, 3vw, 32px);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  color: var(--text);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.stat-suffix {
  font-size: clamp(22px, 2.5vw, 36px);
  color: var(--accent);
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ============================================================
   14. PROCESS STEP
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: var(--space-2);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
  z-index: 0;
  /* Line hidden — background image is used instead */
  display: none;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-3) var(--space-2);
}

.process-num {
  font-family: var(--font-display);
  font-size: clamp(52px, 5vw, 72px);
  line-height: 1;
  color: var(--text-muted);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  display: block;
  margin-bottom: 12px;
  transition: color var(--dur) var(--ease), -webkit-text-stroke var(--dur) var(--ease);
}

.process-step:hover .process-num {
  color: transparent;
  -webkit-text-stroke: 1px var(--accent);
}

.process-dot {
  width: 10px;
  height: 10px;
  background: var(--surface-2);
  border: 2px solid var(--border);
  border-radius: 50%;
  margin: 0 auto var(--space-3);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.process-step:hover .process-dot {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}

.process-step h3 {
  font-size: clamp(24px, 1.2vw, 20px);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-display);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   15. PACKAGE / TIER CARD
   ============================================================ */
.package-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 40px);
  position: relative;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  overflow: hidden;
  min-width: 0;
  width: 100%;
}

.package-card.featured {
  border-color: rgba(224, 30, 43, 0.5);
  background: linear-gradient(135deg, var(--surface), rgba(224, 30, 43, 0.05));
}

.package-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 20px;
  right: -28px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 36px;
  transform: rotate(40deg);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), var(--shadow-glow);
}

.package-tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.package-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.package-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}

.package-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--space-4);
}

.package-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.package-feature-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
  font-style: normal;
}

/* ============================================================
   16. TESTIMONIAL CARD
   ============================================================ */
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 36px);
  min-width: 0;
  overflow: hidden;
  width: 100%;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: var(--space-2);
}

.testimonial-text {
  font-size: clamp(16px, 1.3vw, 16px);
  line-height: 1.7;
  color: var(--text);
  margin-bottom: var(--space-3);
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--accent);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
}

.testimonial-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============================================================
   17. FAQ ACCORDION
   ============================================================ */
.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 500;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease);
}

.faq-question:hover { color: var(--accent); }

.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--text-muted);
  transition: transform var(--dur) var(--ease), border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--accent);
  color: var(--accent);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--dur) var(--ease);
}

.faq-answer-inner {
  padding-bottom: var(--space-3);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   18. CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--surface) 0%, rgba(224, 30, 43, 0.08) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 6vw, 80px) clamp(16px, 4vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-2);
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-2);
}

.cta-banner p {
  font-size: clamp(16px, 1.1vw, 16px);
  color: var(--text-muted);
  margin-bottom: var(--space-5);
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: var(--space-5);
}

.cta-banner-actions {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   19. BEFORE/AFTER SLIDER
   ============================================================ */
.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: ew-resize;
  user-select: none;
  border: 1px solid var(--border);
  width: 100%;
  touch-action: none;
}

.ba-before, .ba-after {
  position: absolute;
  inset: 0;
}

.ba-after {
  clip-path: inset(0 50% 0 0);
  transition: none;
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
  pointer-events: none;
  color: var(--bg);
  font-size: 18px;
}

.ba-label {
  position: absolute;
  top: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(10, 10, 11, 0.7);
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: 4px;
  backdrop-filter: blur(8px);
  z-index: 5;
  pointer-events: none;
}

.ba-label-before { left: 16px; }
.ba-label-after { right: 16px; }

/* ============================================================
   20. TRUST STRIP / LOGOS
   ============================================================ */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 56px);
  flex-wrap: wrap;
  overflow: hidden;
  width: 100%;
}

.trust-logo {
  opacity: 0.35;
  filter: grayscale(1);
  transition: opacity var(--dur) var(--ease), filter var(--dur) var(--ease);
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.trust-logo:hover {
  opacity: 1;
  filter: none;
  color: var(--accent);
}

/* ============================================================
   21. HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  /* removed max-height — was squashing tall viewports */
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 11, 0.82) 0%,
    rgba(10, 10, 11, 0.55) 50%,
    rgba(10, 10, 11, 0.75) 100%
  );
  z-index: 1;
}

.hero-glow {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(224, 30, 43, 0.18) 0%, transparent 65%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  /* top clears the fixed header; bottom reserves room for scroll cue */
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: clamp(96px, 12vh, 48px);
  max-width: min(780px, 100%);
  width: 100%;
  /* overflow must be visible — hidden was clipping the buttons */
  overflow: visible;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: clamp(12px, 2vh, 24px);
  opacity: 0;
  transform: translateY(12px);

  /* Red-theme bordered badge */
  padding: 7px 16px;
  border: 1px solid var(--text);
  border-radius: 25px;
  background: rgba(224, 30, 43, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 16px rgba(224, 30, 43, 0.2), inset 0 1px 0 rgba(255,255,255,0.05);
}

.hero-eyebrow-dot {
  width: 5px;
  height: 5px;
  background: var(--text);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--text);
}

.hero h1 {
  font-family: var(--font-display);
  /* viewport-height aware: 18vh caps the font so 3 lines + other elements fit in one screen */
  font-size: clamp(40px, min(10vw, 18vh), 100px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(20px);
  margin-bottom: clamp(16px, 2.5vh, 32px);
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero-sub {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: min(480px, 100%);
  margin-bottom: clamp(20px, 3vh, 40px);
  opacity: 0;
  transform: translateY(16px);
}

.hero-actions {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
}

.hero-scroll-text {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ============================================================
   21b. HERO SWIPER SLIDER
   ============================================================ */
.hero-slider-section {
  display: block;
  padding: 0;
}

.hero-swiper {
  width: 100%;
  height: 100svh;
  min-height: 600px;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slide .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,11,0.85) 0%, rgba(10,10,11,0.55) 50%, rgba(10,10,11,0.75) 100%);
  z-index: 1;
}

.hero-slide .hero-glow {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(224,30,43,0.18) 0%, transparent 65%);
  z-index: 1;
  pointer-events: none;
}

.hero-slide .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Ensure all slide content is visible (GSAP only animates slide 1 on load) */
.hero-slide .hero-content h1,
.hero-slide .hero-content .hero-sub,
.hero-slide .hero-content .hero-actions {
  opacity: 1;
  transform: none;
}

/* Eyebrow pill used in slider slides */
.hero-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 16px;
  border: 1px solid rgba(224,30,43,0.4);
  border-radius: 25px;
  background: rgba(224,30,43,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: clamp(12px, 2vh, 24px);
}

/* Pagination dots */
/* Hero slider pagination */
.hero-swiper .swiper-pagination {
  bottom: 28px !important;
  z-index: 20;
}

.hero-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5) !important;
  opacity: 1 !important;
  border-radius: 50%;
  transition: width 0.3s, border-radius 0.3s, background 0.3s;
}

.hero-swiper .swiper-pagination-bullet-active {
  width: 24px !important;
  border-radius: 4px !important;
  background: var(--accent) !important;
}

@media (max-width: 768px) {
  .hero-swiper .swiper-pagination {
    bottom: 20px !important;
  }

  .hero-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }

  .hero-swiper .swiper-pagination-bullet-active {
    width: 28px !important;
  }
}

/* Prev / Next arrow buttons */
.hero-swiper-prev,
.hero-swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(10,10,11,0.5);
  backdrop-filter: blur(8px);
  color: var(--text);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s;
}

.hero-swiper-prev { left: 24px; }
.hero-swiper-next { right: 24px; }

.hero-swiper-prev:hover,
.hero-swiper-next:hover {
  background: var(--accent);
  border-color: var(--accent);
}

@media (max-width: 480px) {
  .hero-swiper-prev,
  .hero-swiper-next { display: none; }
}

/* ============================================================
   22. PAGE HERO (sub-pages)
   ============================================================ */
.page-hero {
  padding-top: calc(var(--header-h) + clamp(40px, 8vw, 100px));
  padding-bottom: clamp(40px, 8vw, 100px);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg .media-placeholder {
  height: 100%;
  border-radius: 0;
  min-height: unset;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,11,0.9) 0%, rgba(10,10,11,0.6) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.breadcrumb a { color: var(--text-muted); transition: color var(--dur-fast) var(--ease); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--border); }

/* ============================================================
   23. SHIELD WATERMARK
   ============================================================ */
.shield-watermark {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  opacity: 0.03;
  pointer-events: none;
  width: clamp(200px, 35vw, 480px);
  filter: drop-shadow(0 0 40px rgba(224, 30, 43, 0.3));
}

/* ============================================================
   24. COMPARISON TABLE
   ============================================================ */
.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.compare-table th, .compare-table td {
  padding: clamp(12px, 1.5vw, 18px) clamp(14px, 2vw, 24px);
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.compare-table thead th {
  background: var(--surface);
  font-family: var(--font-display);
  font-size: clamp(14px, 1.5vw, 18px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-block: 20px;
}

.compare-table thead th:first-child { text-align: left; }

.compare-table thead th.accent-col {
  background: rgba(224, 30, 43, 0.1);
  border-left: 1px solid rgba(224, 30, 43, 0.3);
  border-right: 1px solid rgba(224, 30, 43, 0.3);
  color: var(--accent);
}

.compare-table tbody tr:hover td { background: var(--surface-2); }

.compare-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-muted);
}

.compare-table tbody td.accent-col {
  background: rgba(224, 30, 43, 0.04);
  border-left: 1px solid rgba(224, 30, 43, 0.15);
  border-right: 1px solid rgba(224, 30, 43, 0.15);
}

.compare-check { color: #4ade80; font-size: 16px; }
.compare-x { color: var(--text-muted); font-size: 16px; }
.compare-partial { color: #fbbf24; font-size: 16px; }

/* ============================================================
   25. TEAM CARD
   ============================================================ */
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 30, 43, 0.3);
}

.team-card-media {
  height: 280px;
  position: relative;
}

.team-card-media .media-placeholder {
  height: 100%;
  border-radius: 0;
  min-height: unset;
}

.team-card-body {
  padding: var(--space-3);
}

.team-card-name {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.team-card-role {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-2);
}

.team-card-bio {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   26. FORM
   ============================================================ */
.form-group {
  margin-bottom: var(--space-3);
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  max-width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 15px;
  color: var(--text);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  appearance: none;
  box-sizing: border-box;
}

.form-control:focus {
  outline: none;
  border-color: rgba(224, 30, 43, 0.5);
  box-shadow: 0 0 0 3px rgba(224, 30, 43, 0.12);
}

.form-control::placeholder { color: var(--text-muted); opacity: 0.6; }

.form-control.error { border-color: rgba(224, 30, 43, 0.6); }

.form-error {
  font-size: 12px;
  color: var(--accent);
  margin-top: 6px;
  display: none;
}

.form-error.show { display: block; }

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238E8E96' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

select.form-control option { background: var(--surface); }

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

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

/* Toast */
.toast {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 10000;
  background: var(--surface);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  min-width: 280px;
  max-width: 380px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transform: translateY(120%) scale(0.95);
  opacity: 0;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.toast.show {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.toast-icon { font-size: 20px; flex-shrink: 0; }
.toast-text { flex: 1; }
.toast-title { color: var(--text); }
.toast-msg { font-size: 13px; font-weight: 400; color: var(--text-muted); margin-top: 2px; }

/* ============================================================
   27. CONTACT INFO CARDS
   ============================================================ */
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.contact-card:hover {
  border-color: rgba(224, 30, 43, 0.3);
  transform: translateY(-2px);
}

.contact-card-icon {
  width: 64px;
  height: 64px;
  background: rgba(224, 30, 43, 0.1);
  border: 1px solid rgba(224, 30, 43, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-card-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.contact-card-value {
  font-size: clamp(16px, 1.2vw, 17px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}

.contact-card-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================================
   28. MAP
   ============================================================ */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: clamp(260px, 45vw, 400px);
  background: var(--surface-2);
  width: 100%;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(1) invert(1) contrast(0.85);
  border: none;
}

/* ============================================================
   29. SWIPER OVERRIDES
   ============================================================ */
.swiper-button-next, .swiper-button-prev {
  color: var(--text) !important;
  background: var(--surface) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  border: 1px solid var(--border) !important;
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease) !important;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
}

.swiper-button-next::after, .swiper-button-prev::after { font-size: 12px !important; font-weight: 900 !important; }

.swiper-pagination-bullet {
  background: var(--text-muted) !important;
  opacity: 0.4 !important;
}

.swiper-pagination-bullet-active {
  background: var(--accent) !important;
  opacity: 1 !important;
  width: 24px !important;
  border-radius: 4px !important;
  transition: width 0.3s ease !important;
}

/* ============================================================
   30. SCROLL REVEAL (initial state, GSAP controls)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
}

/* ============================================================
   31. USP GRID
   ============================================================ */
.usp-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  position: relative;
  overflow: hidden;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.usp-card::before {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.usp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 30, 43, 0.3);
}

.usp-card:hover::before { opacity: 1; }

.usp-icon {
  width: 64px;
  height: 64px;
  background: rgba(224, 30, 43, 0.1);
  border: 1px solid rgba(224, 30, 43, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--accent);
  margin-bottom: var(--space-3);
}

.usp-card h3 {
  font-size: clamp(24px, 1.4vw, 28px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: var(--font-display);
}

.usp-card p { font-size: 16px; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   32. VALUE/MISSION CARDS
   ============================================================ */
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  text-align: center;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 30, 43, 0.3);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: rgba(224, 30, 43, 0.1);
  border: 1px solid rgba(224, 30, 43, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--accent);
  margin-bottom: var(--space-3);
  margin-inline: auto;
}

.value-card h3 {
  font-family: var(--font-display);
font-size: clamp(24px, 1.4vw, 28px);
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.value-card p { font-size: 16px; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   33. MILESTONE / HIGHLIGHT STRIP
   ============================================================ */
.milestones-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(40px, 5vw, 64px);
}

/* ============================================================
   34. BRAND PARTNER STRIP
   ============================================================ */
.brand-strip-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
  text-align: center;
}

/* ============================================================
   35. REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-eyebrow, .hero h1, .hero-sub, .hero-actions, .hero-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   36. TWO-COL UTILITY
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}

.two-col-start { align-items: start; }
.two-col > * { min-width: 0; overflow-wrap: break-word; }

/* ============================================================
   37. RESPONSIVE — OVERFLOW-SAFE
   ============================================================ */

/* ---- 1280px cap ---- */
@media (max-width: 1280px) {
  .container { padding-inline: clamp(16px, 4vw, 48px); }
}

/* ---- Tablet landscape 1024px ---- */
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .two-col { gap: clamp(24px, 4vw, 56px); }
  .hero h1 { font-size: clamp(64px, 15vw, 64px); }
}

/* ---- Tablet portrait 768px ---- */
@media (max-width: 768px) {
  /* ---- Header ---- */
  .site-nav, .header-phone { display: none !important; }
  .hamburger { display: flex !important; }
  .header-actions .btn { display: none !important; }
  .header-inner { position: relative; justify-content: center; }
  .header-inner .logo { position: absolute; left: 50%; transform: translateX(-50%); }
  .header-inner .header-actions { margin-left: auto; }

  /* ---- Grids collapse ---- */
  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: minmax(0,1fr) !important; }
  .process-grid { grid-template-columns: minmax(0,1fr) !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid-2 { grid-template-columns: minmax(0,1fr) !important; gap:0px;}
  .two-col { grid-template-columns: minmax(0,1fr) !important; gap: var(--space-4); }
  .two-col-start { align-items: initial; }
  .story-section .container { grid-template-columns: minmax(0,1fr) !important; }

  /* ---- Hero ---- */
  .hero h1 { font-size: clamp(64px, 15vw, 64px); }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 360px;
    justify-content: center;
  }
  .hero-content {
    padding-top: calc(var(--header-h) + 12px);
    padding-bottom: clamp(80px, 14vh, 120px);
  }

  /* ---- Page hero ---- */
  .page-hero {
    padding-top: calc(var(--header-h) + 32px);
    padding-bottom: clamp(36px, 6vw, 64px);
  }
  .display-2 { font-size: clamp(54px, 9vw, 60px); word-break: break-word; }

  /* ---- Sections ---- */
  .section { padding-block: clamp(56px, 10vw, 120px); }
  --section-py: clamp(56px, 10vw, 120px);

  /* ---- Cards ---- */
  .package-card.featured::before { display: none; }
  .contact-card { flex-direction: column; }

  /* ---- Facility gallery ---- */
  .facility-gallery { grid-template-columns: 1fr 1fr !important; }
  .facility-gallery .facility-gallery-item { grid-column: span 1 !important; }

  /* ---- Project grid ---- */
  .project-grid { grid-template-columns: 1fr 1fr !important; }
  .project-item:first-child { grid-column: span 2; }

  /* ---- Service big card ---- */
  .service-big-card,
  .service-big-card.reversed {
    grid-template-columns: minmax(0,1fr) !important;
    direction: ltr !important;
  }
  .service-big-card-media { min-height: 220px !important; }

  /* ---- CTA banner ---- */
  .cta-banner-actions {
    flex-direction: column;
    align-items: center;
  }
  .cta-banner-actions .btn { width: 100%; max-width: 340px; justify-content: center; }

  /* ---- Comparison table ---- */
  .compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-lg);
  }

  /* ---- Stats ---- */
  .stat-number { font-size: clamp(48px, 8vw, 56px); }
  .stat-block { padding: clamp(16px, 2.5vw, 28px); }

  /* ---- Footer ---- */
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  /* ---- WA float ---- */
  .wa-float { right: 16px; bottom: 24px; width: 52px; height: 52px; }
}

/* ---- Mobile 480px ---- */
@media (max-width: 480px) {
  .container { padding-inline: 16px; }

  /* Grids */
  .grid-4,
  .footer-grid,
  .project-grid,
  .facility-gallery { grid-template-columns: minmax(0,1fr) !important; }
  .facility-gallery .facility-gallery-item { grid-column: span 1 !important; height: 220px !important; }
  .project-item:first-child { grid-column: span 1 !important; }

  /* Hero */
  .hero h1 { font-size: clamp(64px, 15vw, 64px); }
  .hero-actions .btn { max-width: 100%; }
  .hero-content { padding-bottom: var(--space-8); }

  /* Trust strip */
  .trust-strip { gap: clamp(16px, 4vw, 32px); }

  /* Process */
  .process-step { padding: var(--space-2) var(--space-1); }
  .process-num { font-size: clamp(40px, 10vw, 56px); }

  /* Cards */
  .contact-card { gap: var(--space-2); }
  .package-card { padding: clamp(20px, 5vw, 28px); }
  .testimonial-card { padding: clamp(20px, 5vw, 28px); }
  .usp-card { padding: clamp(20px, 5vw, 28px); }

  /* Buttons */
  .cta-banner-actions .btn { max-width: 100%; }

  /* Footer */
  .footer-grid { grid-template-columns: minmax(0,1fr) !important; }
  .footer-social { flex-wrap: wrap; }

  /* Section heading */
  .section-title { font-size: clamp(42px, 8vw, 48px); }

  /* WA float */
  .wa-float { right: 14px; bottom: 20px; width: 48px; height: 48px; }
  .wa-float::before { display: none; }
}

/* ---- Very small 360px ---- */
@media (max-width: 360px) {
  .container { padding-inline: 14px; }
  .hero h1 { font-size: clamp(64px, 15vw, 64px); }
  .display-2 { font-size: clamp(54px, 11vw, 48px); }
  .btn { padding: 12px 20px; font-size: 12px; }
  .btn-lg { padding: 14px 22px; font-size: 13px; }
  .header-inner { padding-inline: 14px; }
  .mobile-menu { padding-top: calc(var(--header-h) + 20px); padding-inline: 20px; }
}

/* ============================================================
   37. SECTION-SPECIFIC OVERRIDES
   ============================================================ */

/* Before/After slider — home page fixed heights */
.ba-slider--home {
  height: 600px;        /* desktop */
}

@media (max-width: 768px) {
  .ba-slider--home {
    height: auto;
    aspect-ratio: 16/9;
  }
}

@media (max-width: 480px) {
  .ba-slider--home {
    height: auto;
    aspect-ratio: 16/9;   /* square — fills full mobile width, shows complete car */
  }
}

/* CTA Book Now — background image inside the banner card */
.cta-bg-section .cta-banner {
  background-image: url('../assets/images/book.jpg');
  background-size: cover;
  background-position: center;
  border-color: rgba(255, 255, 255, 0.775);
  border-width: 1px;
}

/* Dark overlay on top of the image so text stays readable */
.cta-bg-section .cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  transform: none;
  border-radius: inherit;
  background: rgba(10, 10, 11, 0.72);
  z-index: 0;
}

/* Push all card content above the overlay */
.cta-bg-section .cta-banner > * {
  position: relative;
  z-index: 1;
}

/* Process section — background image */
.process-section {
  position: relative;
  background-image: url('../assets/images/steps.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Dark overlay so numbers and text stay legible */
.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 11, 0.82);
  z-index: 0;
  pointer-events: none;
}

.process-section .container {
  position: relative;
  z-index: 1;
}

/* Lighten number stroke on dark bg */
.process-section .process-num {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
}

.process-section .process-step:hover .process-num {
  -webkit-text-stroke: 1px var(--accent);
}

/* PPF Brands strip */
.brands-strip {
  background: var(--bg);
  padding-block: clamp(48px, 7vw, 80px);
  border-top: 1px solid var(--border);
}

.brands-strip-header {
  text-align: center;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.brands-strip-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-top: var(--space-1);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--space-2);
}

.brand-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(20px, 2.5vw, 32px) clamp(12px, 1.5vw, 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
  cursor: default;
}

.brand-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(224,30,43,0.12) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.brand-card:hover {
  border-color: rgba(224, 30, 43, 0.4);
  transform: translateY(-4px);
}

.brand-card:hover::before { opacity: 1; }

.brand-card-name {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.4vw, 20px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  z-index: 1;
  text-align: center;
  line-height: 1.2;
}

.brand-card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(224, 30, 43, 0.1);
  border: 1px solid rgba(224, 30, 43, 0.2);
  border-radius: 4px;
  padding: 2px 8px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .brands-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 480px) {
  .brands-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Trust strip section */
.trust-stats-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(40px, 6vw, 72px);
}

/* Project grid */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  grid-template-rows: auto;
  gap: var(--space-3);
  width: 100%;
  overflow: hidden;
}

.project-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}

.project-item:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.project-item .media-placeholder {
  height: 100%;
  border-radius: 0;
  min-height: unset;
}

/* About story */
.story-section .container {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
  overflow: hidden;
}

/* About facility gallery */
.facility-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: var(--space-2);
  overflow: hidden;
  width: 100%;
}

.facility-gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  /* aspect-ratio: 4/3; */
  height: 300px !important;
  min-width: 0;
}

.facility-gallery-item .media-placeholder {
  height: 100%;
  border-radius: 0;
  min-height: unset;
}

/* Google reviews badge */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  max-width: 100%;
  flex-shrink: 1;
  min-width: 0;
}

.google-badge-rating {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--accent);
}

.google-badge-stars { color: #FBBC04; letter-spacing: 1px; }

/* Section-specific responsive overrides */
@media (max-width: 768px) {
  .story-section .container { grid-template-columns: minmax(0,1fr) !important; gap: var(--space-4); }
  .project-grid { grid-template-columns: minmax(0,1fr) minmax(0,1fr) !important; }
  .project-item:first-child { grid-column: span 2 !important; }
  .facility-gallery { grid-template-columns: minmax(0,1fr) minmax(0,1fr) !important; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 480px) {
  .story-section .container { grid-template-columns: minmax(0,1fr) !important; }
  .project-grid { grid-template-columns: minmax(0,1fr) !important; }
  .project-item:first-child { grid-column: span 1 !important; }
  .facility-gallery { grid-template-columns: minmax(0,1fr) !important; }
  .footer-grid { grid-template-columns: minmax(0,1fr) !important; }
}
