/* ═══════════════════════════════════════════
   Arkansas Paving Solutions — Global Styles
   Industrial · Yellow + Dark Grainy Concrete
   Street-sign / roadway-inspired identity
   ═══════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  /* Dark palette — very dark, slightly warm charcoal */
  --bg-page: #0C0C0E;
  --bg-surface: #111114;
  --bg-card: #151519;
  --bg-elevated: #1C1C22;
  --bg-raised: #23232A;
  --bg-border: rgba(255,255,255,0.06);
  --bg-border-strong: rgba(247, 194, 29, 0.22);

  /* Accent — yellow family */
  --accent: #F7C21D;
  --accent-bright: #FFD84D;
  --accent-dark: #D4A416;
  --accent-darker: #A88211;
  --accent-glow: rgba(247, 194, 29, 0.08);
  --accent-glow-strong: rgba(247, 194, 29, 0.18);

  /* Text */
  --text: #F5F5F5;
  --text-mid: #DEDEE2;
  --text-muted: #B4B4BB;
  --text-faint: #8E8E96;

  /* Radii — sharp angular */
  --radius-sm: 2px;
  --radius: 4px;
  --radius-lg: 6px;

  /* Layout */
  --max-w: 1360px;

  /* Easings */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-snappy: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-fluid: cubic-bezier(0.32, 0.72, 0, 1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.5);
  --shadow-lg: 0 30px 60px rgba(0,0,0,0.6);
  --shadow-yellow: 0 10px 40px -10px rgba(247, 194, 29, 0.35);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  background: var(--bg-page);
  color: var(--text-mid);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01', 'cv11';
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul, ol { list-style: none; }

/* Accessibility: Focus visible */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale, .reveal-clip, .reveal-word,
  .reveal-up, .reveal-mask { opacity: 1; transform: none; clip-path: none; }
  .marquee-track { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* Selection */
::selection {
  background: var(--accent);
  color: #0C0C0E;
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0A0A0C; }
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 0;
  border: 3px solid #0A0A0C;
}

/* ── Heavy grain overlay — characteristic of the new design ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.085;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n2'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.6' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n2)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Bebas Neue', 'Archivo Narrow', system-ui, sans-serif;
  color: var(--text);
  line-height: 0.95;
  letter-spacing: 0.01em;
  font-weight: 400;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.section-kicker::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--accent);
}

.section-title {
  font-family: 'Bebas Neue', system-ui, sans-serif;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.005em;
  color: var(--text);
  text-transform: uppercase;
}
.section-title em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}
.section-title--compact {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.05;
}
.section-intro {
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 62ch;
  margin-top: 1.25rem;
  font-family: 'Inter', sans-serif;
}

/* ── Layout ── */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) {
  .section-inner { padding: 0 2rem; }
}
@media (min-width: 1200px) {
  .section-inner { padding: 0 3rem; }
}
.section-pad {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .section-pad { padding-top: 8rem; padding-bottom: 8rem; }
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  background: var(--accent);
  color: #0C0C0E;
  padding: 1.05rem 2.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-fluid), box-shadow 0.3s ease, background 0.3s ease;
  will-change: transform;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,0.35) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease-fluid);
  pointer-events: none;
}
.btn-primary:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-yellow);
}
.btn-primary:hover::after {
  transform: translateX(120%);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border: 1.5px solid rgba(255,255,255,0.18);
  color: var(--text);
  padding: 1.05rem 2.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-radius: 0;
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s var(--ease-fluid), background 0.3s ease;
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  background: rgba(247,194,29,0.05);
}
.btn-ghost:active { transform: translateY(0); }

.btn-arrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  transition: transform 0.35s var(--ease);
}
.btn-primary:hover .btn-arrow-icon,
.btn-ghost:hover .btn-arrow-icon {
  transform: translateX(4px);
}

/* CTA action groups */
.final-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 480px) {
  .final-cta-actions {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
}
.final-cta-actions .btn-primary,
.final-cta-actions .btn-ghost {
  width: 100%;
  max-width: 320px;
  text-align: center;
}
@media (min-width: 480px) {
  .final-cta-actions .btn-primary,
  .final-cta-actions .btn-ghost {
    width: auto;
    max-width: none;
  }
}

/* ── Skip link ── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #0C0C0E;
  font-weight: 700;
}
.skip-link:focus { left: 0; }


/* ═══════════════════════════════════════════
   SCROLL PROGRESS
   ═══════════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--accent);
  z-index: 100;
  transition: width 0.1s linear;
  box-shadow: 0 0 16px rgba(247, 194, 29, 0.6);
}


/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(12, 12, 14, 0.78);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-bottom: 1px solid rgba(247, 194, 29, 0.12);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.site-header.nav-open {
  z-index: 9999 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: transparent !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .header-inner { padding: 0.9rem 2rem; }
}
@media (min-width: 1200px) {
  .header-inner { padding: 1rem 3rem; }
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}
.logo-img {
  height: 68px;
  width: auto;
  transition: height 0.35s var(--ease), transform 0.5s var(--ease-fluid), filter 0.35s ease;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.45));
  transform-origin: left center;
}
@media (min-width: 768px) { .logo-img { height: 84px; } }
.is-scrolled .logo-img { height: 54px; }
@media (min-width: 768px) { .is-scrolled .logo-img { height: 64px; } }
.logo-block:hover .logo-img {
  transform: scale(1.06) rotate(-2deg);
  filter: drop-shadow(0 4px 16px rgba(247, 194, 29, 0.35)) drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}
.logo-block:active .logo-img {
  transform: scale(0.98) rotate(0);
}

/* Nav toggle — hamburger */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.nav-toggle-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 22px;
}
.nav-toggle-bar {
  height: 2px;
  background: var(--accent);
  border-radius: 0;
  transition: all 0.3s var(--ease);
}
.nav-toggle-bar:nth-child(2) { width: 15px; margin-left: auto; }
.nav-toggle-bar:nth-child(3) { width: 18px; }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* Nav menu container */
.nav-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-surface);
  z-index: 9999;
  flex-direction: column;
  padding: 5rem 1.75rem calc(2rem + env(safe-area-inset-bottom, 0px));
  gap: 0.25rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent 0px,
    transparent 40px,
    rgba(247, 194, 29, 0.025) 40px,
    rgba(247, 194, 29, 0.025) 80px
  );
  pointer-events: none;
}
.nav-menu.is-open { display: flex; }

@media (min-width: 1024px) {
  .nav-menu {
    display: flex !important;
    position: static;
    inset: auto;
    width: auto;
    height: auto;
    background: none;
    backdrop-filter: none;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 0;
    overflow: visible;
    z-index: auto;
  }
  .nav-menu::before { display: none; }
}

.nav-close {
  position: absolute;
  top: 1.2rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  border: 1px solid rgba(247, 194, 29, 0.25);
}
.nav-close-icon { font-size: 1.75rem; line-height: 1; }
@media (min-width: 1024px) { .nav-close { display: none; } }

.nav-menu-links { display: flex; flex-direction: column; gap: 0; position: relative; z-index: 1; }
@media (min-width: 1024px) {
  .nav-menu-links {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}

.nav-menu-links a,
.nav-dropdown-toggle {
  padding: 1rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  transition: color 0.2s ease;
  white-space: nowrap;
  position: relative;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
@media (min-width: 1024px) {
  .nav-menu-links a,
  .nav-dropdown-toggle {
    padding: 0.6rem 0.95rem;
    font-size: 0.84rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    border-bottom: none;
  }
}

/* Underline sweep */
.nav-menu-links a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.65, 0.05, 0.36, 1);
}
@media (min-width: 1024px) {
  .nav-menu-links a::after { bottom: 2px; }
}
.nav-menu-links a:not(.header-cta):hover::after { transform: scaleX(1); }
.nav-menu-links a:hover,
.nav-dropdown-toggle:hover { color: var(--accent); }

/* Header CTA */
.header-cta,
.nav-menu-links a.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.35rem;
  background: var(--accent);
  color: #0C0C0E !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border-radius: 0;
  border-bottom: none;
  transition: background 0.2s ease, transform 0.3s var(--ease-fluid), box-shadow 0.3s ease;
}
.header-cta:hover,
.nav-menu-links a.header-cta:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(247, 194, 29, 0.35);
}
.header-cta--nav { margin-top: 1.25rem; align-self: flex-start; }
@media (min-width: 1024px) { .header-cta--nav { margin-top: 0; align-self: center; margin-left: 0.5rem; } }
.header-cta--drawer { display: none; }

/* Nav dropdown */
.nav-dropdown { position: relative; border-bottom: 1px solid rgba(255,255,255,0.04); }
@media (min-width: 1024px) { .nav-dropdown { border-bottom: none; } }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
  justify-content: space-between;
}
@media (min-width: 1024px) { .nav-dropdown-toggle { width: auto; } }
.nav-dropdown-chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}
.nav-dropdown-toggle[aria-expanded="true"] .nav-dropdown-chevron { transform: rotate(180deg); }

.nav-dropdown-panel {
  display: none;
  padding: 0.25rem 0 0.5rem 1.25rem;
}
.nav-dropdown-panel.is-open { display: block; }
@media (min-width: 1024px) {
  .nav-dropdown:hover .nav-dropdown-panel { display: block; animation: dropdownFade 0.25s var(--ease); }
}
@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(-6px) translateX(-50%); }
  to { opacity: 1; transform: translateY(0) translateX(-50%); }
}

@media (min-width: 1024px) {
  .nav-dropdown-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-elevated);
    border: 1px solid var(--bg-border);
    border-top: 2px solid var(--accent);
    border-radius: 0;
    padding: 0.75rem;
    min-width: 240px;
    box-shadow: 0 24px 44px rgba(0,0,0,0.55);
    z-index: 70;
  }
}

.nav-dropdown-grid { display: flex; flex-direction: column; gap: 0; }
.nav-dropdown-grid a {
  padding: 0.65rem 0.85rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-mid);
  border-radius: 0;
  border-bottom: none;
  transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
}
.nav-dropdown-grid a::after { display: none; }
.nav-dropdown-grid a:hover {
  background: var(--accent-glow);
  color: var(--accent);
  padding-left: 1.1rem;
}
.nav-dropdown-all {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--bg-border);
}
.nav-dropdown-all a {
  color: var(--accent) !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

/* Nav backdrop */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 49;
}
.nav-backdrop:not([hidden]) { display: block; }


/* ═══════════════════════════════════════════
   YELLOW CAUTION STRIPE — reusable divider
   ═══════════════════════════════════════════ */
.caution-stripe {
  height: 16px;
  background-image: repeating-linear-gradient(
    -45deg,
    var(--accent) 0,
    var(--accent) 20px,
    #0C0C0E 20px,
    #0C0C0E 40px
  );
  position: relative;
  z-index: 2;
}

.dashed-line {
  height: 2px;
  background-image: repeating-linear-gradient(
    90deg,
    var(--accent) 0,
    var(--accent) 20px,
    transparent 20px,
    transparent 36px
  );
  width: 100%;
}


/* ═══════════════════════════════════════════
   SERVICE CARDS — angular industrial tiles
   ═══════════════════════════════════════════ */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.5s var(--ease-fluid), border-color 0.4s ease, box-shadow 0.4s ease;
  isolation: isolate;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s var(--ease-fluid);
  z-index: 3;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(247, 194, 29, 0.28);
  box-shadow: var(--shadow-lg), var(--shadow-yellow);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12,12,14,0.85));
  z-index: 1;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  filter: grayscale(0.15) contrast(1.05);
}
.service-card:hover .service-card-img img {
  transform: scale(1.08);
  filter: grayscale(0) contrast(1.1);
}
.service-card-body {
  padding: 1.5rem 1.5rem 1.5rem;
}
.service-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  line-height: 1;
}
.service-card-title a {
  color: inherit;
  transition: color 0.2s ease;
}
.service-card-title a:hover { color: var(--accent); }
.service-card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--accent);
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(247, 194, 29, 0.3);
  transition: gap 0.3s ease, border-color 0.3s ease;
}
.service-card:hover .service-card-link {
  gap: 0.7rem;
  border-color: var(--accent);
}


/* ═══════════════════════════════════════════
   TRUST / VALUES CARDS
   ═══════════════════════════════════════════ */

.trust-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .trust-cards-grid { grid-template-columns: repeat(3, 1fr); }
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  padding: 2.25rem 2rem;
  transition: transform 0.4s var(--ease-fluid), border-color 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.trust-card::before {
  content: attr(data-num);
  position: absolute;
  top: -1.8rem;
  right: -0.6rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10rem;
  font-weight: 400;
  line-height: 1;
  color: rgba(247, 194, 29, 0.06);
  pointer-events: none;
  letter-spacing: -0.02em;
}
.trust-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.5s var(--ease-fluid);
}
.trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 194, 29, 0.25);
  background: var(--bg-elevated);
}
.trust-card:hover::after { transform: scaleY(1); }
.trust-card-icon {
  width: 54px;
  height: 54px;
  background: var(--accent-glow);
  border: 1px solid rgba(247, 194, 29, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.trust-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
  line-height: 1.05;
}
.trust-card-desc {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}


/* ═══════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════ */

.faq-list { display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.3s ease;
  position: relative;
}
.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.4s var(--ease-fluid);
}
.faq-item:hover,
.faq-item.is-open {
  border-color: rgba(247, 194, 29, 0.25);
  background: var(--bg-elevated);
}
.faq-item.is-open::before,
.faq-item:hover::before { transform: scaleY(1); }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-align: left;
  font-size: 1rem;
  transition: color 0.2s ease;
}
.faq-trigger:hover { color: var(--accent); }
.faq-trigger-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
  color: var(--accent);
}
.faq-item.is-open .faq-trigger-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq-answer-inner {
  padding: 0 1.5rem 1.35rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.75;
}


/* ═══════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════ */

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 520px) {
  .form-row-2col { grid-template-columns: 1fr; }
}
.form-group { margin-bottom: 1.1rem; }
.form-label {
  display: block;
  color: var(--text-mid);
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.5rem;
}
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  padding: 0.95rem 1.1rem;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  border-radius: 0;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.form-input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(247, 194, 29, 0.03);
}
.form-input::placeholder { color: var(--text-faint); }
textarea.form-input { resize: vertical; min-height: 130px; line-height: 1.55; }
select.form-input { appearance: none; }


/* ═══════════════════════════════════════════
   ANIMATION SYSTEM
   ═══════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Mask reveal — industrial wipe */
.reveal-mask {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transition: opacity 1.1s var(--ease), clip-path 1.1s var(--ease);
}
.reveal-mask.visible {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

/* Word-level reveal — used on hero title */
.reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px) skewY(4deg);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-word.visible {
  opacity: 1;
  transform: translateY(0) skewY(0);
}

/* Staggered children */
.reveal-stagger > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.07s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.14s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.21s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.28s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.35s; }
.reveal-stagger > *:nth-child(7) { transition-delay: 0.42s; }
.reveal-stagger > *:nth-child(8) { transition-delay: 0.49s; }
.reveal-stagger > *:nth-child(9) { transition-delay: 0.56s; }
.reveal-stagger > *:nth-child(10) { transition-delay: 0.63s; }
.reveal-stagger > *:nth-child(11) { transition-delay: 0.7s; }


/* ═══════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════ */

.contact-section {
  background: var(--bg-surface);
  position: relative;
}
.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 80px,
    rgba(247, 194, 29, 0.02) 80px,
    rgba(247, 194, 29, 0.02) 81px
  );
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  position: relative;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 5fr 7fr; gap: 4rem; }
}
.contact-info-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-left: 3px solid var(--accent);
  transition: transform 0.3s var(--ease-fluid), background 0.3s ease;
}
.contact-info-card:hover { transform: translateX(4px); background: var(--bg-elevated); }
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-glow);
  border: 1px solid rgba(247, 194, 29, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.contact-info-card-label {
  color: var(--text-faint);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.contact-info-card-value {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
}
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  padding: 1.75rem;
  position: relative;
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent);
}
@media (min-width: 768px) {
  .contact-form-wrap { padding: 2.25rem; }
}


/* ═══════════════════════════════════════════
   MOBILE CTA BAR
   ═══════════════════════════════════════════ */

.mobile-cta-bar {
  position: fixed;
  bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  left: 10px;
  right: 10px;
  z-index: 40;
  background: rgba(12, 12, 14, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(247, 194, 29, 0.18);
  padding: 0.6rem;
  display: flex;
  gap: 0.45rem;
  transform: translateY(calc(100% + 16px));
  transition: transform 0.35s var(--ease);
}
.mobile-cta-bar.is-visible { transform: translateY(0); }
.mobile-cta-bar .btn-primary,
.mobile-cta-bar .btn-ghost {
  flex: 1;
  text-align: center;
  padding: 0.8rem 0.75rem;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
}
@media (min-width: 1024px) { .mobile-cta-bar { display: none; } }


/* ═══════════════════════════════════════════
   FLOATING CALL CTA
   ═══════════════════════════════════════════ */

.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 35;
  width: 60px;
  height: 60px;
  background: var(--accent);
  color: #0C0C0E;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(247, 194, 29, 0.4);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.3s ease, transform 0.3s var(--ease);
  pointer-events: none;
  animation: floatingPulse 2.4s ease-in-out infinite;
}
@keyframes floatingPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(247, 194, 29, 0.4); }
  50% { box-shadow: 0 6px 36px rgba(247, 194, 29, 0.65); }
}
.floating-cta.is-visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.floating-cta:hover { background: var(--accent-bright); transform: scale(1.08); }
@media (max-width: 1023px) { .floating-cta { display: none; } }


/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

.site-footer {
  background: #08080A;
  border-top: 1px solid rgba(247, 194, 29, 0.1);
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 2rem;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 6px;
  background-image: repeating-linear-gradient(
    90deg,
    var(--accent) 0,
    var(--accent) 44px,
    transparent 44px,
    transparent 72px
  );
}
.site-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 0%, rgba(247, 194, 29, 0.05), transparent 40%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.1fr; }
}
.footer-brand-img {
  height: 56px;
  width: auto;
  margin-bottom: 1.25rem;
}
.footer-brand-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 34ch;
  margin-bottom: 1rem;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: color 0.2s ease;
}
.footer-social:hover { color: var(--accent); }

.footer-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(247, 194, 29, 0.2);
}
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a {
  color: var(--text-muted);
  font-size: 0.94rem;
  transition: color 0.2s ease, padding-left 0.25s var(--ease);
  position: relative;
}
.footer-links a:hover {
  color: var(--accent);
  padding-left: 0.5rem;
}
.footer-links a.link-accent { color: var(--accent); font-weight: 700; }

.footer-bottom {
  position: relative;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--bg-border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-legal { color: var(--text-faint); font-size: 0.85rem; }
.footer-legal-links { display: flex; gap: 1.25rem; }
.footer-legal-links a {
  color: var(--text-faint);
  font-size: 0.85rem;
  transition: color 0.2s ease;
}
.footer-legal-links a:hover { color: var(--accent); }


/* ═══════════════════════════════════════════
   SUB-PAGE HERO (about, contact, services, etc.)
   ═══════════════════════════════════════════ */

.page-hero {
  position: relative;
  padding: 10rem 0 5rem;
  background: var(--bg-page);
  overflow: hidden;
  z-index: 0;
  border-bottom: 1px solid rgba(247, 194, 29, 0.08);
}
@media (min-width: 768px) {
  .page-hero { padding: 12rem 0 6rem; }
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent 0,
      transparent 80px,
      rgba(247, 194, 29, 0.025) 80px,
      rgba(247, 194, 29, 0.025) 160px
    ),
    radial-gradient(ellipse at 20% 30%, rgba(247, 194, 29, 0.08), transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -120px;
  bottom: -60px;
  width: 380px;
  height: 380px;
  background-image: radial-gradient(circle, rgba(247, 194, 29, 0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.page-hero > .section-inner { position: relative; z-index: 1; }
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-faint);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.page-hero-breadcrumb a { transition: color 0.2s ease; }
.page-hero-breadcrumb a:hover { color: var(--accent); }
.page-hero-breadcrumb-sep { color: var(--accent); opacity: 0.5; }

.page-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.93;
  letter-spacing: 0.005em;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  max-width: 16ch;
}
.page-hero-title em {
  font-style: normal;
  color: var(--accent);
  position: relative;
  display: inline-block;
}
.page-hero-title em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4%;
  height: 4px;
  background: var(--accent);
  transform-origin: left center;
  transform: scaleX(0);
  animation: titleUnderline 0.9s var(--ease) 0.8s forwards;
}
@keyframes titleUnderline {
  to { transform: scaleX(1); }
}
.page-hero-intro {
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 60ch;
}


/* ═══════════════════════════════════════════
   CITY GRID (service areas)
   ═══════════════════════════════════════════ */

.city-search {
  position: relative;
  max-width: 480px;
  margin-bottom: 2.25rem;
}
.city-search-input {
  padding-left: 3rem;
  background: var(--bg-card);
  border: 1px solid rgba(247, 194, 29, 0.18);
}
.city-search::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F7C21D' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.city-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
@media (min-width: 640px) { .city-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .city-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1200px) { .city-grid { grid-template-columns: repeat(5, 1fr); } }

.city-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  color: var(--text-mid);
  font-size: 0.92rem;
  font-weight: 500;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, transform 0.25s var(--ease-fluid);
  cursor: default;
  position: relative;
}
.city-chip::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.city-chip:hover {
  border-color: rgba(247, 194, 29, 0.35);
  color: var(--text);
  background: var(--bg-elevated);
  transform: translateY(-2px);
}
.city-chip:hover::before { opacity: 1; transform: scale(1.3); }
.city-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.city-page-btn {
  padding: 0.45rem 0.75rem;
  min-width: 38px;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  color: var(--text-mid);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.city-page-btn:hover {
  border-color: rgba(247, 194, 29, 0.4);
  color: var(--accent);
}
.city-page-btn.is-active {
  background: var(--accent);
  color: #0C0C0E;
  border-color: var(--accent);
}
.city-page-btn:disabled { opacity: 0.35; cursor: not-allowed; }


/* ═══════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════ */

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}
.gallery-item {
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  border: 1px solid var(--bg-border);
  transition: transform 0.5s var(--ease-fluid), border-color 0.4s ease, box-shadow 0.4s ease;
  cursor: zoom-in;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12,12,14,0.7));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  filter: grayscale(0.15);
}
.gallery-item:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 194, 29, 0.4);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(247, 194, 29, 0.3);
}
.gallery-item:hover img { transform: scale(1.07); filter: grayscale(0); }
.gallery-item:hover::after { opacity: 1; }


/* ═══════════════════════════════════════════
   MARQUEE (services ticker)
   ═══════════════════════════════════════════ */

.marquee {
  overflow: hidden;
  background: #0A0A0C;
  border-top: 1px solid rgba(247, 194, 29, 0.15);
  border-bottom: 1px solid rgba(247, 194, 29, 0.15);
  padding: 1rem 0;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marqueeScroll 48s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
}
.marquee-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  transform: rotate(45deg);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════
   GENERIC SECTION BACKGROUNDS / MODIFIERS
   ═══════════════════════════════════════════ */

.section-alt {
  background: var(--bg-surface);
  position: relative;
}
.section-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 120px,
    rgba(247, 194, 29, 0.018) 120px,
    rgba(247, 194, 29, 0.018) 121px
  );
  pointer-events: none;
}
.section-alt > .section-inner { position: relative; z-index: 1; }

.section-accent {
  background:
    linear-gradient(135deg, rgba(247, 194, 29, 0.04), transparent 50%),
    var(--bg-page);
  position: relative;
}


/* ═══════════════════════════════════════════
   FINAL CTA — dark w/ yellow pattern
   ═══════════════════════════════════════════ */

.final-cta {
  background: #0A0A0C;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(247, 194, 29, 0.15);
  border-bottom: 1px solid rgba(247, 194, 29, 0.15);
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(247, 194, 29, 0.12) 0%, rgba(247, 194, 29, 0.04) 35%, transparent 65%);
  pointer-events: none;
  border-radius: 50%;
}
.final-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 90px,
    rgba(247, 194, 29, 0.025) 90px,
    rgba(247, 194, 29, 0.025) 180px
  );
  pointer-events: none;
  mix-blend-mode: overlay;
}
.final-cta .section-inner { position: relative; z-index: 2; }
.final-cta .section-title {
  color: var(--text);
  margin-bottom: 1rem;
}
.final-cta .section-intro {
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--text-muted);
}


/* ═══════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════ */

.stack-sm { display: flex; flex-direction: column; gap: 0.5rem; }
.stack-md { display: flex; flex-direction: column; gap: 1rem; }
.stack-lg { display: flex; flex-direction: column; gap: 1.5rem; }
.center-text { text-align: center; }

.ar-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 2px solid var(--accent);
  pointer-events: none;
}
.ar-corner--tl { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.ar-corner--tr { top: 12px; right: 12px; border-left: none; border-bottom: none; }
.ar-corner--bl { bottom: 12px; left: 12px; border-right: none; border-top: none; }
.ar-corner--br { bottom: 12px; right: 12px; border-left: none; border-top: none; }
