/* ============================================================
   RED CLAW LASER — styles.css
   Shared across all pages
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;600;700&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Barlow+Condensed:wght@400;600;700&display=swap');

/* ── Variables ─────────────────────────────────────────── */
:root {
  --ink:        #000814;
  --prussian:   #001d3d;
  --navy:       #003566;
  --brass:      #c9962a;
  --brass-light:#e0b84a;
  --oxide:      #7a3b1e;
  --oxide-dark: #4a2010;
  --steel:      #8ea8b8;
  --steel-light:#b8cdd8;
  --offwhite:   #f0f0f0;
  --muted:      #8899aa;

  --font-display: 'Chakra Petch', monospace;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body:  'Barlow', sans-serif;

  --nav-h: 72px;
  --section-pad: clamp(60px, 8vw, 120px);
  --max-w: 1200px;
  --radius: 4px;

  --glow-brass: 0 0 12px rgba(201,150,42,0.4), 0 0 32px rgba(201,150,42,0.15);
  --glow-steel: 0 0 12px rgba(142,168,184,0.3);
}

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

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

body {
  background: var(--ink);
  color: var(--offwhite);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.65;
  overflow-x: hidden;
}

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

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

p { max-width: 65ch; }

.label {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
}

/* ── Layout ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

.section { padding-block: var(--section-pad); }

.section--prussian { background: var(--prussian); }
.section--navy     { background: var(--navy); }
.section--ink      { background: var(--ink); }

/* Divider line: oxide → brass → steel */
.section-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--oxide) 20%, var(--brass) 50%, var(--steel) 80%, transparent);
  border: none;
  margin: 0;
}

/* ── Navigation ────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: rgba(0, 8, 20, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201,150,42,0.2);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.nav-logo svg {
  width: 32px;
  height: 38px;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--offwhite);
  line-height: 1.15;
}

.nav-logo-text span {
  display: block;
  font-size: 0.6rem;
  color: var(--brass);
  letter-spacing: 0.25em;
  font-weight: 600;
}

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

.nav-links a {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: var(--radius);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--offwhite);
}

.nav-links a.active {
  color: var(--brass);
}

/* Nav CTA button */
.btn-nav {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink) !important;
  background: var(--brass);
  padding: 9px 18px;
  border-radius: var(--radius);
  transition: background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-nav:hover {
  background: var(--brass-light);
  box-shadow: var(--glow-brass);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--offwhite);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: rgba(0,8,20,0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--offwhite);
  transition: color 0.2s;
}

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

.nav-mobile .btn-cta-mobile {
  margin-top: 8px;
  background: var(--brass);
  color: var(--ink);
  padding: 14px 36px;
  font-size: 1rem;
  border-radius: var(--radius);
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--brass);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--brass-light);
  box-shadow: var(--glow-brass);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--offwhite);
  border: 1px solid rgba(240,240,240,0.3);
}

.btn-outline:hover {
  border-color: var(--brass);
  color: var(--brass);
  transform: translateY(-1px);
}

/* ── Hero (Homepage) ─────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(0,29,61,0.7) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(122,59,30,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(0,53,102,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-inline: clamp(20px, 5vw, 60px);
}

.hero-eyebrow {
  margin-bottom: 16px;
  text-align: center;
  font-size: 0.88rem;
  margin-inline: auto;
}

/* ── LASER Animation ────────────────────────────────────── */
.laser-word-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
}

.laser-word {
  font-family: var(--font-display);
  font-size: clamp(6rem, 22vw, 22rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 0.9;
  display: inline-flex;
  position: relative;
  user-select: none;
}

.laser-word .letter {
  display: inline-block;
  position: relative;
  background: linear-gradient(
    160deg,
    #4a1e08 0%,
    #7a3b1e 20%,
    #5c2d0e 40%,
    #8b4513 60%,
    #6b3010 80%,
    #3d1a08 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: background 0.25s ease;
  filter: drop-shadow(0 2px 8px rgba(122,59,30,0.4));
}

.laser-word .letter.cleaning {
  background: linear-gradient(160deg, #fff8e0 0%, #ffd60a 30%, #ffffff 50%, #ffd60a 70%, #fff8e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(255,214,10,0.9)) drop-shadow(0 0 24px rgba(201,150,42,0.7));
  transition: background 0.1s ease, filter 0.1s ease;
}

.laser-word .letter.cleaned {
  background: linear-gradient(
    160deg,
    #6e8e9e 0%,
    #8ea8b8 20%,
    #a8c2ce 40%,
    #8ea8b8 60%,
    #7a9aaa 80%,
    #90aaba 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 1px 4px rgba(142,168,184,0.3));
  transition: background 0.35s ease;
}

.laser-beam {
  position: absolute;
  top: -5%;
  left: -2%;
  width: 3px;
  height: 110%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(201,150,42,0.2) 10%,
    rgba(201,150,42,0.8) 25%,
    #ffd60a 45%,
    #ffffff 50%,
    #ffd60a 55%,
    rgba(201,150,42,0.8) 75%,
    rgba(201,150,42,0.2) 90%,
    transparent 100%
  );
  box-shadow:
    0 0 6px #ffd60a,
    0 0 14px #c9962a,
    0 0 28px rgba(201,150,42,0.5);
  opacity: 0;
  pointer-events: none;
  border-radius: 2px;
}

/* Spark particles */
.spark {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #ffd60a;
  border-radius: 50%;
  pointer-events: none;
  animation: spark-fly 0.6s ease-out forwards;
  box-shadow: 0 0 4px #ffd60a;
}

@keyframes spark-fly {
  0%   { transform: translate(0,0) scale(1); opacity: 1; }
  100% { transform: translate(var(--dx), var(--dy)) scale(0); opacity: 0; }
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-tagline strong {
  color: var(--offwhite);
  font-weight: 600;
}

.hero-sub {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--muted);
  margin-bottom: 40px;
  margin-inline: auto;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.4;
  pointer-events: none;
}

.scroll-hint span {
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

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

/* ── Interior Page Hero ──────────────────────────────────── */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
  padding-bottom: clamp(40px, 6vw, 80px);
  position: relative;
  overflow: hidden;
  background: var(--prussian);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 30% 50%, rgba(0,53,102,0.5) 0%, transparent 70%);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass) 50%, transparent);
}

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

.page-hero-kicker {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-hero-kicker::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--brass);
}

.page-hero h1 { margin-bottom: 16px; }

.page-hero p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--steel);
  max-width: 55ch;
}

/* ── Benefits Strip ─────────────────────────────────────── */
.benefits-strip {
  background: var(--prussian);
  border-top: 1px solid rgba(201,150,42,0.15);
  border-bottom: 1px solid rgba(201,150,42,0.15);
  padding-block: 48px;
}

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

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.benefit-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(201,150,42,0.1);
  border: 1px solid rgba(201,150,42,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brass);
  font-size: 1.6rem;
}

.benefit-item h3 {
  font-size: 1.2rem;
  color: var(--offwhite);
}

.benefit-item p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 26ch;
}

/* Real images replacing placeholders */
.ba-img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(201,150,42,0.1);
  display: block;
}

.content-img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(201,150,42,0.1);
  display: block;
}

.content-img--tall {
  aspect-ratio: 3/4;
  min-height: unset;
}

/* ── Service Tiles ──────────────────────────────────────── */
.services-section { padding-block: var(--section-pad); }

.section-header {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--muted); font-size: 1.05rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(201,150,42,0.1);
  border: 1px solid rgba(201,150,42,0.15);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-tile {
  background: var(--prussian);
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.service-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--brass);
  transition: height 0.4s ease;
}

.service-tile:hover {
  background: rgba(0,53,102,0.9);
}

.service-tile:hover::before {
  height: 100%;
}

.service-tile-icon {
  width: 40px;
  height: 40px;
  color: var(--brass);
}

.service-tile h3 {
  font-size: 1.3rem;
}

.service-tile p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

.service-tile-link {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

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

.service-tile-link::after {
  content: '→';
}

/* ── How It Works ───────────────────────────────────────── */
.how-it-works { padding-block: var(--section-pad); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--brass), transparent 50%, var(--brass));
  opacity: 0.3;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(201,150,42,0.4);
  background: rgba(0,29,61,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brass);
  position: relative;
  z-index: 1;
}

.step h3 { font-size: 1.05rem; }
.step p { font-size: 0.9rem; color: var(--muted); }

/* ── Comparison Table ───────────────────────────────────── */
.comparison { padding-block: var(--section-pad); }

.comparison-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-top: 48px;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.comparison-table th {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-bottom: 18px;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  color: var(--muted);
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.comparison-table th.rcl {
  color: var(--brass);
  position: relative;
}

.comparison-table th.rcl::after {
  content: '';
  position: absolute;
  bottom: 0; left: 10%; right: 10%;
  height: 2px;
  background: var(--brass);
}

.comparison-table td.rcl {
  background: rgba(201,150,42,0.05);
  color: var(--offwhite);
}

.check { color: #4caf82; }
.cross { color: #c44b3a; }
.warn  { color: #e0a030; }

.comparison-table tr:last-child td { border-bottom: none; }

/* ── Service Area ───────────────────────────────────────── */
.service-area { padding-block: var(--section-pad); }

.service-area-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.service-area-text h2 { margin-bottom: 16px; }
.service-area-text p { color: var(--muted); margin-bottom: 24px; }

.area-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.area-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-condensed);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.area-list li::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--brass);
  flex-shrink: 0;
}

.img-placeholder {
  background: rgba(0,29,61,0.6);
  border: 1px dashed rgba(201,150,42,0.3);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
}

.img-placeholder svg {
  opacity: 0.4;
  color: var(--brass);
}

/* Tall placeholder variant */
.img-placeholder--tall { aspect-ratio: 3/4; }
.img-placeholder--wide { aspect-ratio: 16/9; }
.img-placeholder--square { aspect-ratio: 1; }

/* ── Before/After Grid ──────────────────────────────────── */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.ba-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ba-label {
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  text-align: center;
}

/* ── CTA Band ───────────────────────────────────────────── */
.cta-band {
  padding-block: clamp(60px, 8vw, 100px);
  text-align: center;
  background: var(--prussian);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,150,42,0.06) 0%, transparent 70%);
}

.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: 12px; }
.cta-band p { color: var(--muted); margin-bottom: 32px; margin-inline: auto; }
.cta-band .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Content Sections ───────────────────────────────────── */
.content-section {
  padding-block: var(--section-pad);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }

.content-text .label { margin-bottom: 12px; }
.content-text h2 { margin-bottom: 16px; }
.content-text p { color: var(--muted); margin-bottom: 16px; }

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--muted);
}

.feature-list li::before {
  content: '›';
  color: var(--brass);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: -1px;
}

/* Callout box */
.callout {
  background: rgba(0,29,61,0.6);
  border-left: 3px solid var(--brass);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin-top: 32px;
}

.callout p {
  font-size: 0.95rem;
  color: var(--steel);
  font-style: italic;
  margin: 0;
}

/* ── Why Laser (full-width) ─────────────────────────────── */
.why-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--navy);
  border-top: 1px solid rgba(201,150,42,0.15);
  border-bottom: 1px solid rgba(201,150,42,0.15);
  overflow: hidden;
  border-radius: var(--radius);
}

.why-item {
  padding: clamp(24px, 4vw, 48px);
  border-right: 1px solid rgba(201,150,42,0.1);
  transition: background 0.3s;
}

.why-item:last-child { border-right: none; }
.why-item:hover { background: rgba(0,53,102,0.8); }

.why-item .label { margin-bottom: 12px; }
.why-item h3 { margin-bottom: 10px; font-size: 1.1rem; }
.why-item p { font-size: 0.88rem; color: var(--muted); }

/* ── Stat Row ───────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(201,150,42,0.1);
  border: 1px solid rgba(201,150,42,0.15);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
}

.stat-item {
  background: var(--prussian);
  padding: 32px 28px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--brass);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Contact ────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  margin-top: 48px;
}

.contact-info h3 { margin-bottom: 24px; font-size: 1.1rem; }

.contact-method {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-method-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(201,150,42,0.1);
  border: 1px solid rgba(201,150,42,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brass);
}

.contact-method-text .label { margin-bottom: 4px; }

.contact-method-text p {
  font-size: 1rem;
  color: var(--offwhite);
  margin: 0;
}

.contact-method-text small {
  font-size: 0.82rem;
  color: var(--muted);
}

.form-placeholder {
  background: rgba(0,29,61,0.5);
  border: 1px dashed rgba(201,150,42,0.3);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  color: var(--muted);
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.form-placeholder p { margin: 0 auto 8px; }
.form-placeholder code {
  font-size: 0.75rem;
  color: var(--brass);
  background: rgba(201,150,42,0.1);
  padding: 2px 6px;
  border-radius: 2px;
  display: block;
  margin-top: 8px;
  word-break: break-all;
}

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(201,150,42,0.15);
  padding-block: 48px 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand { display: flex; flex-direction: column; gap: 14px; }

.footer-brand p {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 32ch;
}

.footer-col h4 {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--offwhite); }

.footer-contact p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 6px;
  max-width: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(136,153,170,0.6);
  margin: 0;
}

.footer-cert {
  display: flex;
  gap: 16px;
  align-items: center;
}

.cert-badge {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(136,153,170,0.6);
  border: 1px solid rgba(136,153,170,0.2);
  padding: 4px 10px;
  border-radius: var(--radius);
}

/* ── Scroll Reveal Animations ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .btn-nav   { display: none; }
  .nav-toggle { display: flex; }

  .benefits-grid,
  .steps-grid,
  .stats-row { grid-template-columns: 1fr; gap: 24px; }

  .steps-grid::before { display: none; }

  .services-grid { grid-template-columns: 1fr; }

  .service-area-inner,
  .content-grid,
  .ba-grid { grid-template-columns: 1fr; }

  .content-grid.reverse { direction: ltr; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }

  .comparison-table { font-size: 0.8rem; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; }

  .why-strip { grid-template-columns: 1fr; }
  .why-item { border-right: none; border-bottom: 1px solid rgba(201,150,42,0.1); }
  .why-item:last-child { border-bottom: none; }
}

@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .contact-grid { grid-template-columns: 1fr; }

  .comparison-table th:nth-child(3),
  .comparison-table td:nth-child(3) { display: none; } /* hide media blasting on small screens, keep Red Claw Laser */

  .ba-grid { grid-template-columns: 1fr; }

  .hero-ctas { flex-direction: column; align-items: center; }
  .hero { padding-bottom: 80px; }
  .scroll-hint { display: none; }

  .cta-band .cta-btns { flex-direction: column; align-items: center; }
}
