/* ============================================
   American Asphalt — White House, TN
   American flag theme: asphalt black + flag red
   + deep navy + chrome cyan (from logo script)
   Oswald + DM Sans | Vanilla CSS
   ============================================ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  scrollbar-width: thin;
  scrollbar-color: #c8102e #0c0f14;
  overflow-x: clip;
}

::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: #0c0f14; }
::-webkit-scrollbar-thumb { background: #c8102e; border-radius: 4px; border: 2px solid #0c0f14; }
::-webkit-scrollbar-thumb:hover { background: #e63a4e; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan-bright); text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul, ol { list-style: none; }

::selection { background: rgba(200, 16, 46, 0.35); color: #fff; }
:focus-visible { outline: 2px solid var(--cyan-bright); outline-offset: 3px; }


/* --- Custom Properties --- */
:root {
  /* Flag red (primary CTA) */
  --red: #c8102e;
  --red-bright: #e63a4e;
  --red-deep: #9e0c24;
  --red-soft: rgba(200, 16, 46, 0.16);
  --red-glow: rgba(230, 58, 78, 0.4);

  /* Deep flag navy */
  --navy: #0a2a66;
  --navy-bright: #1e5bc6;
  --navy-deep: #061b45;
  --navy-soft: rgba(30, 91, 198, 0.18);
  --navy-glow: rgba(30, 91, 198, 0.32);

  /* Chrome cyan (logo "Asphalt" script) */
  --cyan: #1fb6d8;
  --cyan-bright: #5fe0f5;
  --cyan-deep: #128aa8;
  --cyan-soft: rgba(31, 182, 216, 0.15);
  --cyan-glow: rgba(95, 224, 245, 0.32);
  --cyan-undertone: rgba(31, 182, 216, 0.08);

  /* Accent = chrome cyan (headings highlight + links) */
  --accent: var(--cyan);
  --accent-bright: var(--cyan-bright);
  --accent-deep: var(--cyan-deep);
  --accent-soft: var(--cyan-soft);
  --accent-glow: var(--cyan-glow);
  --accent-undertone: var(--cyan-undertone);
  --border-accent: rgba(95, 224, 245, 0.3);
  --border-red: rgba(230, 58, 78, 0.32);
  --border-navy: rgba(30, 91, 198, 0.28);

  /* Brand gradients */
  --red-grad: linear-gradient(135deg, #e63a4e 0%, #c8102e 55%, #9e0c24 100%);
  --chrome-grad: linear-gradient(135deg, #eafcff 0%, #5fe0f5 28%, #1fb6d8 62%, #128aa8 100%);
  /* American flag stripes: horizontal red / white bands (NOT a vertical tricolor) */
  --flag-stripes: repeating-linear-gradient(180deg, #c8102e 0, #c8102e 2px, #ffffff 2px, #ffffff 4px);

  /* Backgrounds: asphalt blacks with a cool blue undertone */
  --bg-page: #0c0f14;
  --bg-elevated: #11151c;
  --bg-card: #161b24;
  --bg-muted: #1c2330;

  --border: rgba(255, 255, 255, 0.1);

  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.92);
  --text-subtle: rgba(255, 255, 255, 0.82);
  --text-faint: rgba(255, 255, 255, 0.7);

  --radius: 8px;
  --radius-lg: 12px;
  --max-w: 1200px;

  --shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snappy: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.45, 0.64, 1);

  --font-display: 'Oswald', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --btn-hex: polygon(10px 0%, calc(100% - 10px) 0%, 100% 50%, calc(100% - 10px) 100%, 10px 100%, 0% 50%);
}


/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.1;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--red);
}

.section-header--center .section-label::before { display: none; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.9rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.06;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-intro {
  font-family: var(--font-body);
  color: var(--text-subtle);
  max-width: 65ch;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.text-accent {
  background: var(--chrome-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 22px rgba(95, 224, 245, 0.35));
}

.text-red {
  color: var(--red-bright);
}


/* --- Layout --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  position: relative;
}

.section--dark { background: var(--bg-page); }

.section--elevated {
  background: var(--bg-elevated);
  position: relative;
}

.section--elevated::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 0%, var(--navy-soft), transparent 58%),
    radial-gradient(circle at 12% 92%, var(--red-soft), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.section--elevated > * { position: relative; z-index: 1; }

.section-header { margin-bottom: 2.5rem; }
.section-header--center { text-align: center; }
.section-header--center .section-intro { margin-left: auto; margin-right: auto; }

/* Decorative divider: a small Stars-and-Stripes flag (canton + red/white stripes) */
.flag-rule {
  position: relative;
  height: 14px;
  width: 92px;
  border-radius: 2px;
  overflow: hidden;
  background: var(--flag-stripes);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  margin: 0 0 1.5rem;
}
/* Blue canton, top-left, covering the upper stripes */
.flag-rule::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 38px;
  height: 8px;
  background: var(--navy);
}
/* Tiny white stars dotted across the canton */
.flag-rule::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 3px;
  width: 32px;
  height: 6px;
  background-image: radial-gradient(circle, #ffffff 0.7px, transparent 1px);
  background-size: 6.5px 3px;
}
.section-header--center .flag-rule { margin-left: auto; margin-right: auto; }


/* --- Skip Link --- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--red-grad);
  color: #fff;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  border-radius: var(--radius);
}
.skip-link:focus { left: 0.5rem; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}


/* --- Scroll Progress Bar (flag colors) --- */
.scroll-progress {
  position: fixed; top: 0; left: 0; width: 0%; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--navy-bright));
  box-shadow: 0 0 12px var(--red-glow);
  z-index: 9999;
  transition: width 0.1s linear;
  pointer-events: none;
}


/* --- Grain Overlay --- */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9998;
  pointer-events: none; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}


/* --- Header + Navigation --- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.header--scrolled {
  background: rgba(12, 15, 20, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--red-soft);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  display: flex; align-items: center; justify-content: space-between;
  height: 104px; gap: 1rem;
  transition: height 0.3s var(--ease);
}
.header--scrolled .header-inner { height: 84px; }

.header-logo {
  max-height: 90px; width: auto;
  transition: max-height 0.3s var(--ease), transform 0.3s var(--ease), filter 0.3s ease;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.6));
}
.header--scrolled .header-logo { max-height: 70px; }
.header-logo:hover {
  transform: scale(1.04) translateY(-1px);
  filter: drop-shadow(0 0 16px rgba(95, 224, 245, 0.5));
}

.nav-links { display: flex; align-items: center; gap: 2rem; }

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-muted);
  position: relative; transition: color 0.2s ease;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px;
  background: var(--red-grad);
  transform-origin: bottom right; transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.nav-links a:hover { color: var(--cyan-bright); }
.nav-links a:hover::after { transform-origin: bottom left; transform: scaleX(1); }

.header-cta { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; }
.header--scrolled .header-cta { padding: 0.45rem 1.1rem; font-size: 0.82rem; }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 36px; height: 36px; cursor: pointer; padding: 0; z-index: 50;
}
.nav-toggle-bar {
  display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s ease;
}
.nav-toggle--active .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle--active .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle--active .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; top: 0; right: 0; width: min(320px, 90vw);
  height: 100vh; height: 100dvh;
  background: linear-gradient(180deg, #11151c 0%, #061b45 140%);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  z-index: 51; padding: 5rem 2rem 2rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  border-left: 3px solid var(--red);
  transform: translateX(100%); visibility: hidden;
  transition: transform 0.35s var(--ease), visibility 0.35s ease;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.mobile-menu--open { transform: translateX(0); visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--text);
  padding: 0.75rem 0; border-bottom: 1px solid var(--border);
  transition: color 0.2s ease;
}
.mobile-menu a:hover { color: var(--cyan-bright); }
.mobile-menu-close {
  position: absolute; top: 1.2rem; right: 1.5rem; width: 2.5rem; height: 2.5rem;
  display: flex; align-items: center; justify-content: center; border-radius: var(--radius);
  background: var(--red); color: #fff; font-size: 1.5rem; transition: background 0.2s ease;
}
.mobile-menu-close:hover { background: var(--red-bright); }

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


/* --- Hero --- */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; overflow: hidden;
  background: var(--bg-page);
  padding-top: clamp(3rem, 7vh, 5.5rem);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }

.hero-shell {
  position: relative; z-index: 10; width: 100%;
  display: flex; flex-direction: column; align-items: center; padding-bottom: 4.5rem;
}

.hero-img,
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; opacity: 0.5; z-index: 0;
  filter: saturate(1.08) contrast(1.05);
}

/* Asphalt + flag-colored wash */
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 78% 18%, rgba(95, 224, 245, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 16% 82%, rgba(200, 16, 46, 0.26) 0%, transparent 58%),
    radial-gradient(ellipse at 88% 92%, rgba(30, 91, 198, 0.26) 0%, transparent 55%),
    linear-gradient(180deg, rgba(8, 11, 16, 0.86) 0%, rgba(10, 13, 20, 0.78) 42%, rgba(8, 11, 16, 0.98) 100%);
  z-index: 1;
}

/* Vertical flag-color accent lines on hero edges */
.hero::before, .hero::after {
  content: ''; position: absolute; top: 10%; width: 2px; height: 60%;
  opacity: 0.4; z-index: 2; pointer-events: none;
}
.hero::before { left: clamp(1rem, 3vw, 2.5rem); background: linear-gradient(180deg, transparent, var(--red), transparent); }
.hero::after { right: clamp(1rem, 3vw, 2.5rem); background: linear-gradient(180deg, transparent, var(--navy-bright), transparent); }

.hero-content {
  position: relative; z-index: 10; max-width: var(--max-w);
  margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2rem); width: 100%; text-align: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: rgba(12, 15, 20, 0.6);
  border: 1px solid var(--border-accent);
  color: var(--cyan-bright);
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  border-radius: 9999px; margin-bottom: 1.5rem;
  animation: fadeUp 0.8s var(--ease) 0.2s both;
}
.hero-badge svg { width: 15px; height: 15px; color: var(--red-bright); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7.4vw, 4.7rem);
  font-weight: 700; text-transform: uppercase; line-height: 1.04;
  color: var(--text); margin-bottom: 1.25rem; letter-spacing: -0.01em;
}
.hero-title-line { display: block; overflow: hidden; padding: 0 0.5em; margin: 0 -0.5em; }
.hero-title-line--accent { overflow: visible; padding-bottom: 0.12em; }
.hero-title-line span { display: inline-block; animation: titleReveal 0.9s var(--ease) both; }
.hero-title-line:nth-child(1) span { animation-delay: 0.4s; }
.hero-title-line:nth-child(2) span { animation-delay: 0.65s; }
.hero-title-line--accent span {
  background: var(--chrome-grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 26px rgba(95, 224, 245, 0.5));
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.55vw, 1.18rem); font-weight: 500;
  color: var(--text); max-width: 56ch; line-height: 1.7; margin: 0 auto 2rem;
  animation: fadeUp 0.8s var(--ease) 1.1s both;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; justify-content: center;
  animation: fadeUp 0.8s var(--ease) 1.3s both;
}

.hero-trust {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(12, 15, 20, 0.9);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--red-soft);
  z-index: 10; padding: 1rem 0;
}
.hero-trust-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2rem);
  display: flex; justify-content: space-around; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); white-space: nowrap;
}
.hero-trust-item svg { color: var(--cyan-bright); width: 20px; height: 20px; flex-shrink: 0; }

/* Red/white stripe band along the hero bottom (above trust bar) */
.hero-stripes {
  position: absolute; bottom: 0; left: 0; right: 0; height: 8px; z-index: 9;
  background: var(--flag-stripes); opacity: 0.95;
}

.hero-particles { position: absolute; inset: 0; z-index: 3; pointer-events: none; overflow: hidden; }
.dust-particle {
  position: absolute; width: 2px; height: 2px;
  background: rgba(255, 255, 255, 0.75); border-radius: 50%;
  box-shadow: 0 0 6px rgba(95, 224, 245, 0.5);
  animation: dustFloat linear infinite;
}


/* --- Buttons --- */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--red-grad); color: #fff;
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.95rem 2.1rem; text-decoration: none; position: relative; overflow: hidden;
  clip-path: var(--btn-hex);
  filter: drop-shadow(0 6px 16px rgba(200, 16, 46, 0.28));
  transition: transform 0.35s var(--ease-spring), filter 0.35s var(--ease), background 0.3s ease;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
  transform: translateX(-100%); transition: transform 0.6s var(--ease); pointer-events: none;
}
.btn-primary:hover::after { transform: translateX(100%); }
.btn-primary:hover { transform: translateY(-3px); filter: drop-shadow(0 14px 28px rgba(230, 58, 78, 0.5)); color: #fff; }
.btn-primary:active { transform: scale(0.98) translateY(0); }
.btn-primary:visited { color: #fff; }

/* Ghost: chrome-cyan ring */
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: transparent; color: var(--text);
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.95rem 2.1rem; text-decoration: none; position: relative; isolation: isolate;
  clip-path: var(--btn-hex);
  transition: transform 0.35s var(--ease-spring), color 0.3s ease;
}
.btn-ghost::before { content: ''; position: absolute; inset: 0; background: var(--cyan); z-index: -2; transition: background 0.3s ease; }
.btn-ghost::after { content: ''; position: absolute; inset: 2px; background: var(--bg-page); clip-path: var(--btn-hex); z-index: -1; transition: background 0.3s ease; }
.btn-ghost:hover { color: var(--cyan-bright); transform: translateY(-3px); }
.btn-ghost:hover::before { background: var(--cyan-bright); }
.btn-ghost:hover::after { background: rgba(31, 182, 216, 0.1); }
.btn-ghost:active { transform: scale(0.98) translateY(0); }

.btn-phone {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--red-grad); color: #fff;
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.95rem 2.1rem; text-decoration: none;
  clip-path: var(--btn-hex);
  filter: drop-shadow(0 6px 16px rgba(200, 16, 46, 0.28));
  transition: transform 0.35s var(--ease-spring), filter 0.35s var(--ease);
}
.btn-phone::before {
  content: ''; width: 1.1em; height: 1.1em; background-color: #fff;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V21c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V21c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain; mask-size: contain; flex-shrink: 0;
}
.btn-phone:hover { transform: translateY(-3px); filter: drop-shadow(0 14px 28px rgba(230, 58, 78, 0.5)); color: #fff; }
.btn-phone:active { transform: scale(0.98) translateY(0); }
.btn-phone:visited { color: #fff; }


/* --- Service Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  position: relative; min-height: 400px; border-radius: var(--radius-lg);
  overflow: hidden; cursor: pointer; border: 1px solid var(--border);
  transition: border-color 0.4s ease, transform 0.45s var(--ease-spring), box-shadow 0.4s var(--ease);
  display: block; text-decoration: none;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--red-grad); z-index: 20; transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card-media { position: absolute; inset: 0; z-index: 0; }
.service-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.service-card:hover .service-card-media img { transform: scale(1.07); }
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12, 15, 20, 0.35) 0%, rgba(12, 15, 20, 0.7) 50%, rgba(12, 15, 20, 0.97) 100%);
  z-index: 1;
}
.service-card-content {
  position: relative; z-index: 10; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 2rem 1.85rem 1.85rem; height: 100%;
}
.service-card-badge {
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan-bright); margin-bottom: 0.75rem;
}
.service-card-title {
  font-family: var(--font-display); font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  font-weight: 700; text-transform: uppercase; color: var(--text); line-height: 1.1;
}
.service-card-desc { color: var(--text-muted); margin-top: 0.75rem; line-height: 1.55; font-size: 0.92rem; }
.service-card-link {
  color: var(--cyan-bright); font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; font-size: 0.82rem; letter-spacing: 0.08em;
  display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.15rem; transition: gap 0.3s var(--ease);
}
.service-card:hover .service-card-link { gap: 0.8rem; }
.service-card-link svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.service-card:hover .service-card-link svg { transform: translateX(4px); }
.service-card:hover {
  border-color: var(--border-accent);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(95, 224, 245, 0.18);
  transform: perspective(1000px) rotateX(1deg) rotateY(-1deg) translateY(-6px);
}


/* --- About --- */
.about-grid { display: grid; grid-template-columns: 55% 45%; gap: 3rem; align-items: center; }
.about-media { position: relative; }
.about-image-wrapper {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 2px solid var(--border-accent);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55); position: relative;
}
.about-image-wrapper::after {
  content: ''; position: absolute; top: -40px; right: -40px; width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(95, 224, 245, 0.28), transparent 70%);
  pointer-events: none; z-index: 1;
}
.about-image-wrapper img, .about-image-wrapper video {
  width: 100%; height: 100%; display: block; position: relative; z-index: 0; object-fit: cover;
}
/* Hex stats badge echoing the logo's hex frame */
.about-stats-badge {
  position: absolute; bottom: -1.25rem; right: 1.25rem; width: 132px; height: 132px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; z-index: 5; filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.55));
}
.about-stats-badge::before {
  content: ''; position: absolute; inset: 0; background: var(--red-grad);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); z-index: 0;
}
.about-stats-badge::after {
  content: ''; position: absolute; inset: 2px; background: var(--bg-card);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); z-index: 1;
}
.about-stats-badge > * { position: relative; z-index: 2; }
.about-stats-value {
  background: var(--chrome-grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  font-family: var(--font-display); font-weight: 700; font-size: 1.55rem; line-height: 1;
  text-transform: uppercase; letter-spacing: 0.02em;
}
.about-stats-label {
  color: var(--text-subtle); font-size: 0.72rem; margin-top: 0.3rem;
  font-family: var(--font-display); letter-spacing: 0.08em; text-transform: uppercase;
}
.about-content { display: flex; flex-direction: column; justify-content: center; }
.about-check-list {
  list-style: none; padding: 0; margin: 1.5rem 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1rem;
}
.about-check-list li {
  display: flex; align-items: center; gap: 0.75rem; padding: 0.4rem 0;
  color: var(--text-muted); font-size: 0.95rem;
}
.about-check-list li::before {
  content: ''; flex-shrink: 0; width: 20px; height: 20px; background-color: var(--cyan);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-size: contain; mask-size: contain;
}


/* --- Before / After Slider --- */
.ba-wrap {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center;
}
.ba-slider {
  position: relative; width: 100%; aspect-ratio: 3 / 4; max-height: 560px;
  border-radius: var(--radius-lg); overflow: hidden; user-select: none;
  border: 2px solid var(--border-accent); box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
  touch-action: pan-y;
}
.ba-slider img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none;
}
.ba-after { z-index: 1; }
.ba-before-wrap {
  position: absolute; inset: 0; z-index: 2; width: 50%; overflow: hidden;
  border-right: 3px solid #fff;
}
.ba-before-wrap img { width: auto; min-width: 1px; }
.ba-tag {
  position: absolute; bottom: 1rem; z-index: 3;
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 0.35rem 0.8rem;
  border-radius: 9999px; color: #fff;
}
.ba-tag--before { left: 1rem; background: rgba(158, 12, 36, 0.92); }
.ba-tag--after { right: 1rem; background: rgba(18, 138, 168, 0.92); z-index: 1; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 44px; transform: translateX(-50%);
  z-index: 4; cursor: ew-resize; display: flex; align-items: center; justify-content: center;
}
.ba-handle::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: 3px;
  transform: translateX(-50%); background: #fff; box-shadow: 0 0 14px rgba(0, 0, 0, 0.5);
}
.ba-handle-grip {
  position: relative; width: 44px; height: 44px; border-radius: 50%;
  background: var(--red-grad); border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}
.ba-handle-grip svg { width: 22px; height: 22px; color: #fff; }
.ba-range {
  position: absolute; inset: 0; z-index: 5; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; margin: 0;
}


/* --- Process --- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.process-line {
  position: absolute; top: 52px; left: 12%; width: 76%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--red-soft), var(--red), var(--navy-bright), var(--cyan), transparent);
  opacity: 0.7; z-index: 0; pointer-events: none;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-step-circle {
  width: 96px; height: 96px; margin: 0 auto; position: relative;
  display: flex; align-items: center; justify-content: center; background: transparent;
  transition: transform 0.3s var(--ease-spring), filter 0.3s ease;
}
.process-step-circle::before {
  content: ''; position: absolute; inset: 0; background: var(--red-grad);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); z-index: 0; transition: background 0.3s ease;
}
.process-step-circle::after {
  content: ''; position: absolute; inset: 2px; background: var(--bg-card);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); z-index: 1; transition: background 0.3s ease;
}
.process-step:hover .process-step-circle { transform: scale(1.06); filter: drop-shadow(0 0 24px var(--red-glow)); }
.process-step:hover .process-step-circle::after { background: var(--bg-muted); }
.process-step-icon {
  color: var(--cyan-bright); position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center; line-height: 0; transform: translateY(1px);
}
.process-step-icon svg { width: 38px; height: 38px; display: block; }
.process-step-number {
  position: absolute; top: -8px; right: calc(50% - 56px); width: 30px; height: 30px; border-radius: 50%;
  background: var(--red-grad); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px rgba(200, 16, 46, 0.5); z-index: 3;
}
.process-step-title {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  font-size: 1rem; letter-spacing: 0.04em; margin-top: 1.5rem; color: var(--text);
}
.process-step-desc {
  color: var(--text-subtle); font-size: 0.88rem; margin-top: 0.5rem;
  max-width: 220px; margin-inline: auto; line-height: 1.55;
}


/* --- Areas --- */
.areas-badge {
  display: inline-block; padding: 0.35rem 1.1rem;
  background: var(--navy-soft); border: 1px solid var(--border-navy); color: var(--navy-bright);
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; border-radius: 9999px; margin-bottom: 1.5rem;
}
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.85rem; }
.area-tile {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.1rem 1rem; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 0.55rem;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s var(--ease-spring);
  position: relative; overflow: hidden; text-decoration: none; color: inherit; cursor: pointer;
}
.area-tile:focus-visible { outline: 2px solid var(--cyan-bright); outline-offset: 3px; }
.area-tile::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 50%, var(--accent-undertone) 100%);
  opacity: 0; transition: opacity 0.3s ease;
}
.area-tile:hover { border-color: var(--border-accent); transform: translateY(-3px); }
.area-tile:hover::before { opacity: 1; }
.area-tile-icon { color: var(--red-bright); width: 16px; height: 16px; flex-shrink: 0; position: relative; z-index: 1; }
.area-tile-icon svg { width: 16px; height: 16px; }
.area-tile-name {
  font-family: var(--font-display); font-weight: 500; color: var(--text); font-size: 0.88rem;
  position: relative; z-index: 1; letter-spacing: 0.01em;
}
.area-tile:hover .area-tile-name { color: var(--cyan-bright); }


/* --- Contact --- */
.contact-grid { display: grid; grid-template-columns: 60% 40%; gap: 2rem; align-items: start; }
.contact-form-panel {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2.5rem; position: relative; overflow: hidden;
}
.contact-form-panel::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--flag-stripes); }
.contact-form-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; text-transform: uppercase; margin-bottom: 1.5rem; letter-spacing: 0.02em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-label { font-family: var(--font-display); font-weight: 500; color: var(--text-muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; }
.form-input, .form-textarea, .form-select {
  background: var(--bg-muted); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 0.85rem 1rem; color: var(--text); font-family: var(--font-body);
  font-size: 16px; line-height: 1.5; transition: border-color 0.25s ease; width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--cyan); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-faint); }
.form-select { appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235fe0f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.9rem center; background-size: 18px; padding-right: 2.5rem;
}
.form-error { color: #ff6b6b; font-size: 0.85rem; margin-top: 0.25rem; }
.form-submit { width: 100%; margin-top: 1rem; position: relative;
  clip-path: polygon(16px 0%, calc(100% - 16px) 0%, 100% 50%, calc(100% - 16px) 100%, 16px 100%, 0% 50%); }
.form-honey { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.altcha-row { margin: 0.25rem 0 1rem; }
altcha-widget { --altcha-max-width: 100%; }

.form-success { display: none; text-align: center; padding: 3rem 2rem; }
.form-success.is-visible { display: block; }
.form-success-icon {
  width: 64px; height: 64px; margin: 0 auto 1.5rem; border-radius: 50%;
  background: var(--cyan-soft); border: 2px solid var(--cyan); display: flex; align-items: center; justify-content: center;
  color: var(--cyan-bright); animation: pulse 2s ease-in-out infinite;
}
.form-success-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; text-transform: uppercase; }
.form-success-text { color: var(--text-muted); font-size: 0.95rem; }

.contact-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-cta-card {
  background: var(--bg-card); border: 1px solid var(--border-accent); border-radius: var(--radius-lg);
  padding: 2rem; text-align: center; position: relative; overflow: hidden;
}
.contact-cta-card::after {
  content: ''; position: absolute; top: -60px; right: -60px; width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(95, 224, 245, 0.18), transparent 70%); pointer-events: none;
}
.offer-badge {
  display: inline-block; background: var(--red-grad); color: #fff; padding: 0.45rem 1rem; border-radius: 6px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 1rem; box-shadow: 0 6px 18px rgba(200, 16, 46, 0.4);
}
.contact-cta-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; text-transform: uppercase; margin: 1rem 0 0.5rem; letter-spacing: 0.02em; }
.contact-cta-text { color: var(--text-subtle); font-size: 0.9rem; line-height: 1.55; }
.contact-phone-btn { width: 100%; margin-top: 1.25rem; }
.contact-detail-list { margin-top: 1.25rem; text-align: left; display: flex; flex-direction: column; gap: 0.75rem; }
.contact-detail {
  display: flex; align-items: center; gap: 0.75rem; color: var(--text-muted); font-size: 0.92rem;
}
.contact-detail svg { color: var(--cyan-bright); width: 18px; height: 18px; flex-shrink: 0; }
.contact-detail a { color: var(--text-muted); }
.contact-detail a:hover { color: var(--cyan-bright); }
.contact-reasons-title { font-family: var(--font-display); font-size: 1rem; font-weight: 600; text-transform: uppercase; margin-bottom: 1rem; color: var(--cyan-bright); letter-spacing: 0.04em; }
.contact-reasons { list-style: none; padding: 0; text-align: left; margin-top: 0; }
.contact-reasons li { display: flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0; color: var(--text-muted); font-size: 0.92rem; }
.contact-reasons li::before {
  content: ''; flex-shrink: 0; width: 16px; height: 16px; background-color: var(--red-bright);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-size: contain; mask-size: contain;
}

.form-input.is-invalid, .form-textarea.is-invalid, .form-select.is-invalid { border-color: #ff6b6b; }
.field-error { color: #ff6b6b; font-size: 0.8rem; margin-top: 0.25rem; }
.form-submit.is-loading .submit-text { visibility: hidden; }
.form-submit.is-loading .submit-spinner { display: block; }
.submit-spinner {
  display: none; position: absolute; top: 50%; left: 50%; margin-top: -10px; margin-left: -10px;
  width: 20px; height: 20px; border: 2px solid rgba(255, 255, 255, 0.4); border-top-color: #fff;
  border-radius: 50%; animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }


/* --- Footer --- */
.footer { background: var(--bg-elevated); border-top: 1px solid var(--border); padding: 3rem 0 2.5rem; position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--flag-stripes); opacity: 0.95; }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2rem);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem;
}
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-bottom { width: 100%; text-align: center; padding-top: 1.5rem; border-top: 1px solid var(--border); margin-top: 0.5rem; }
.footer-bottom p { color: var(--text-faint); font-size: 0.8rem; }
.footer-logo { max-height: 98px; width: auto; }
.footer-links { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.footer-link { color: var(--text-subtle); font-size: 0.9rem; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.04em; transition: color 0.2s ease; }
.footer-link:hover { color: var(--cyan-bright); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { color: var(--text-subtle); transition: color 0.2s ease, transform 0.2s ease; display: inline-flex; }
.footer-social a:hover { color: var(--cyan-bright); transform: translateY(-2px); }
.footer-social svg { width: 22px; height: 22px; }


/* --- Floating CTA (Mobile) --- */
.floating-cta {
  position: fixed; bottom: 0; left: 0; right: 0; padding: 0.75rem 1rem;
  background: rgba(12, 15, 20, 0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-accent); z-index: 50; display: none;
  transition: transform 0.3s var(--ease), opacity 0.3s ease;
}
.floating-cta-btn {
  display: flex; align-items: center; justify-content: center; width: 100%;
  background: var(--red-grad); color: #fff; font-family: var(--font-display); font-size: 0.95rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; padding: 0.9rem; text-decoration: none; gap: 0.5rem;
  clip-path: polygon(16px 0%, calc(100% - 16px) 0%, 100% 50%, calc(100% - 16px) 100%, 16px 100%, 0% 50%);
}
.floating-cta--hidden { transform: translateY(100%); opacity: 0; pointer-events: none; }


/* --- Keyframes --- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes titleReveal { from { transform: translateY(110%) skewY(4deg); opacity: 0; } to { transform: translateY(0) skewY(0deg); opacity: 1; } }
@keyframes dustFloat { 0% { transform: translateY(0) translateX(0); opacity: 0; } 10% { opacity: 0.7; } 90% { opacity: 0.25; } 100% { transform: translateY(-100vh) translateX(40px); opacity: 0; } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.04); } }
@keyframes float { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-10px); } }


/* --- Scroll Animations --- */
.animate-on-scroll { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.animate-on-scroll.revealed { opacity: 1; transform: translateY(0); }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }
[data-delay="7"] { transition-delay: 0.7s; }


/* --- Responsive --- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
  .process-line { display: none; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ba-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .ba-slider { max-width: 460px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .header-inner > .header-cta { display: none; }
  .mobile-menu .header-cta { display: inline-flex; margin-top: 1rem; }
  .nav-toggle { display: flex; }
  .header-inner { height: 80px; }
  .header--scrolled .header-inner { height: 70px; }
  .header-logo { max-height: 64px; }
  .header--scrolled .header-logo { max-height: 54px; }

  .hero { padding-top: clamp(5rem, 12vh, 7rem); padding-bottom: 86px; }
  .hero-trust-inner { gap: 0.75rem 1.25rem; }
  .hero-trust-item { font-size: 0.72rem; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 340px; }

  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .floating-cta { display: block; }
  body { padding-bottom: 72px; }

  .footer-inner { justify-content: center; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .contact-form-panel { padding: 1.75rem 1.5rem; }
  .section-header { margin-bottom: 2rem; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
  .ba-slider { aspect-ratio: 3 / 4; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .dust-particle { display: none; }
}
