/* ==========================================================================
   ROXLY APPLIANCE & REFRIGERATION REPAIR — Design System
   Implements the exact visual system spec: near-black hero (#0D0D0D),
   electric orange accent (#F54E08), alternating dark/white/gray sections,
   massive condensed two-color headlines, glass nav, scroll-reveal.
   ========================================================================== */

:root {
  /* Brand */
  --orange: #F54E08;
  --orange-dark: #D43D00;
  --orange-glow: rgba(245, 78, 8, 0.08);
  --brand: var(--orange);
  --brand-dark: var(--orange-dark);
  --brand-light: #FF6B35;
  --brand-glow: var(--orange-glow);
  --brand-tint: #FFF1EA;

  /* Neutrals — spec grays */
  --hero-bg: #000000;
  --gray-900: #111827;
  --gray-800: #1F2937;
  --gray-100: #F9FAFB;
  --white: #FFFFFF;

  /* Legacy aliases used throughout components */
  --ink: var(--gray-900);
  --near-black: var(--gray-900);
  --charcoal: var(--gray-800);
  --gray-700: #2A2E31;
  --gray-600: #3A3F43;
  --slate: #5B6268;
  --line: #E5E7EB;
  --line-strong: #C9CDD2;
  --surface: var(--gray-100);
  --success: #22C55E;

  /* Type */
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Menlo, monospace;

  /* Layout */
  --max-w: 1280px;
  --nav-h: 64px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --shadow-card: 0 1px 2px rgba(14,16,18,0.04), 0 4px 12px rgba(14,16,18,0.05);
  --shadow-card-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-brand: 0 10px 26px rgba(245, 78, 8, 0.32);
  --transition: 0.2s ease;
  --sticky-cta-h: 64px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {

  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
}
body.has-sticky-cta { padding-bottom: 0; }
@media (max-width: 899px) { body.has-sticky-cta { padding-top: var(--sticky-cta-h); } }

img { max-width: 100%; display: block; }
a { color: var(--brand-dark); }
a:hover { color: var(--brand); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  color: var(--gray-900);
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
  text-transform: none;
}
h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.98;
}
h1 .accent { color: var(--orange); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0 0 1em; color: var(--slate); font-size: 1rem; line-height: 1.7; }
.lede { font-size: 1.2rem; color: var(--gray-700); line-height: 1.5; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}
.section { padding: 64px 0; }
.section--tight { padding: 40px 0; }
.section--surface { background: var(--surface); }
.section--ink { background: var(--gray-900); color: var(--white); }
.section--ink h2, .section--ink h3 { color: var(--white); }
.section--ink p { color: #C7CCD1; }
.section--cta { background: linear-gradient(135deg, #1a0800, #2d1200); color: var(--white); }
.section--cta h2 { color: var(--white); }
.section--cta p { color: #E8C9B8; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-glow);
  border: 1px solid rgba(245,78,8,0.3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
  font-weight: 700;
}
.section--ink .eyebrow, .hero .eyebrow {
  color: var(--white);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
}

.section-head { max-width: 720px; margin-bottom: 36px; }
.section-head p { font-size: 1.08rem; }
.section-head--center { max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }

/* Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.1;
  transition: all 0.2s ease;
  min-height: 46px;
}
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { filter: brightness(1.1); color: var(--white); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(245,78,8,0.4); }
.btn-dark { background: var(--gray-900); color: var(--white); }
.btn-dark:hover { filter: brightness(1.15); color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn-outline:hover { background: var(--orange); color: var(--white); }
.btn-outline-invert { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline-invert:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.08); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; min-height: 38px; }
.btn-lg { padding: 17px 32px; font-size: 1.1rem; }
.btn-xl { padding: 20px 40px; font-size: 1.25rem; }
.btn-block { width: 100%; }

/* Announcement bar ------------------------------------------------------ */
.announce-bar {
  background: var(--near-black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: center;
  padding: 10px 16px;
  border-top: 2px solid var(--brand);
}
.announce-bar a { color: var(--brand-light); font-weight: 700; text-decoration: none; }
.announce-bar a:hover { text-decoration: underline; }
.announce-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 18px;
}
.announce-item { white-space: nowrap; }
.announce-item--right { color: #A7ACB0; display: none; }
.announce-sep { margin: 0 6px; opacity: 0.5; }
@media (min-width: 720px) {
  .announce-bar-inner { justify-content: space-between; }
  .announce-item--right { display: inline-flex; align-items: center; }
}

/* Header ----------------------------------------------------------------*/
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(17, 24, 39, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--nav-h);
}
.brand-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo img { height: 32px; width: auto; }
.brand-logo .brand-suffix {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  color: #9AA1A8;
  letter-spacing: 0.03em;
  border-left: 1px solid #3A3F43;
  padding-left: 12px;
  line-height: 1.25;
  display: none;
  text-transform: uppercase;
}
@media (min-width: 640px) { .brand-logo .brand-suffix { display: block; } }

.main-nav { display: none; }
.main-nav ul { list-style: none; display: flex; gap: 26px; margin: 0; padding: 0; }
.main-nav a {
  color: #D3D7DA;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--white); border-bottom-color: var(--brand); }
.has-mega { position: relative; }
.mega-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 20px;
  min-width: 480px;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
}
.has-mega:hover .mega-panel,
.has-mega:focus-within .mega-panel { display: grid; }
.mega-panel a { display: block; padding: 7px 4px; font-size: 0.9rem; border-bottom: none; color: var(--charcoal); }
.mega-panel a:hover { color: var(--brand); }
.mega-panel .mega-all { grid-column: 1 / -1; border-top: 1px solid var(--line); margin-top: 6px; padding-top: 10px; font-weight: 600; color: var(--brand-dark); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-phone {
  display: none;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  text-decoration: none;
}
@media (min-width: 900px) { .header-phone { display: inline-flex; } .main-nav { display: block; } }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1.5px solid #3A3F43;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }
.hamburger { position: relative; width: 22px; height: 16px; display: inline-block; }
.hamburger span {
  position: absolute; left: 0; width: 100%; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 7px; }
.hamburger span:nth-child(3) { top: 14px; }
.menu-toggle[aria-expanded="true"] .hamburger span:nth-child(1) { top: 7px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .hamburger span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .hamburger span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

/* Mobile nav drawer ------------------------------------------------------*/
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
}
.mobile-nav.is-open { display: block; }
.mobile-nav-backdrop { position: absolute; inset: 0; background: rgba(20,23,26,0.5); }
.mobile-nav-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(360px, 88vw);
  height: 100%;
  background: var(--white);
  padding: 18px;
  overflow-y: auto;
}
.mobile-nav-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.mobile-nav a { display: block; }
.mobile-nav-close {
  width: 48px; height: 48px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  background: var(--white); cursor: pointer; font-size: 1.1rem;
}
.mobile-nav-list { list-style: none; margin: 0; padding: 0; }
.mobile-nav-list > li { border-bottom: 1px solid var(--line); }
.mobile-nav-list > li > a, .mobile-nav-list > li > button {
  width: 100%; text-align: left; background: none; border: none;
  padding: 16px 4px; font-size: 1.05rem; font-weight: 600; color: var(--ink);
  text-decoration: none; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; min-height: 56px;
}
/* The chevron that shows a row expands a submenu — sized and weighted to
   read clearly at a glance, not a thin decorative arrow. */
.mobile-nav-list > li > button [aria-hidden="true"] {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand);
  background: var(--brand-tint);
  border-radius: var(--radius-sm);
  transition: transform 0.15s ease;
}
.mobile-nav-list > li > button[aria-expanded="true"] [aria-hidden="true"] { transform: rotate(90deg); }
.mobile-sub { list-style: none; margin: 0 0 10px; padding: 0 0 0 10px; display: none; }
.mobile-sub.is-open { display: block; }
.mobile-sub li a { padding: 13px 4px; font-weight: 400; font-size: 0.98rem; color: var(--slate); text-decoration: none; display: block; min-height: 48px; }
.mobile-nav-cta { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.mobile-nav-cta .btn { min-height: 52px; font-size: 1.02rem; }

/* Hero --------------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 800px 600px at -100px -100px, rgba(245,78,8,0.15), transparent),
    var(--hero-bg);
  color: var(--white);
  padding: 56px 0 60px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 30% 20%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 30% 20%, black, transparent 70%);
  animation: hero-grid-drift 40s linear infinite;
  pointer-events: none;
}
@keyframes hero-grid-drift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 56px 56px, 56px 56px; }
}
@media (prefers-reduced-motion: reduce) { .hero::before { animation: none; } }
.hero-grid { position: relative; z-index: 2; display: grid; gap: 36px; grid-template-columns: 1fr; width: 100%; }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.1fr 0.9fr; align-items: start; } }
.hero h1 { color: var(--white); }
.hero .lede { color: #D3D7DA; max-width: 54ch; }
.hero-trust-list {
  list-style: none; margin: 20px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 8px 20px;
}
.hero-trust-list li {
  font-family: var(--font-body); font-size: 0.92rem; font-weight: 600; color: #C7CCD1;
  display: flex; align-items: center; gap: 8px;
}
.hero-trust-list li::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--brand); flex-shrink: 0;
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* Trust bar — stat-style strip directly under the hero. Values are honest
   claims (no fabricated counts or ratings), styled the way a fabricated
   number would be, so it reads as confident without inventing anything. */
.trust-bar {
  background: var(--gray-900);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 22px 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 12px;
  text-align: center;
}
@media (min-width: 700px) { .trust-bar-inner { grid-template-columns: repeat(4, 1fr); } }
.trust-bar-item { display: flex; flex-direction: column; gap: 2px; }
.trust-bar-num { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: var(--orange); line-height: 1; }
.trust-bar-label { font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.08em; }

/* Selector: signature dataplate-style residential/commercial toggle ----- */
/* Hero lead-capture form — white card floating over the dark hero,
   matching the sister site's "Get Fast Service Today" form exactly. */
.hero-form {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
  overflow: hidden;
}
@media (min-width: 960px) { .hero-form { position: sticky; top: 88px; } }
.hero-form-header {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  padding: 18px 24px;
}
.hero-form-title { display: block; font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; }
.hero-form-sub { display: block; font-size: 0.82rem; font-weight: 600; margin-top: 4px; opacity: 0.95; }
.hero-form-body { padding: 24px; max-height: calc(100vh - 220px); overflow-y: auto; }
.hero-form-body .form-tabs { margin-bottom: 18px; }
.hero-form-body label { font-size: 0.8rem; font-weight: 600; color: #374151; margin-bottom: 4px; }
.hero-form-body .req { color: var(--orange); margin-left: 2px; }
.hero-form-body input, .hero-form-body select, .hero-form-body textarea {
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.95rem;
}
.hero-form-body input::placeholder, .hero-form-body textarea::placeholder { color: #9CA3AF; }
.hero-form-body input:focus, .hero-form-body select:focus, .hero-form-body textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245,78,8,0.1);
}
.hero-form-body .form-success.is-visible { background: #EAF6ED; }
.btn-book {
  display: block;
  width: 100%;
  height: 52px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 4px;
}
.btn-book:hover { filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(245,78,8,0.4); }

.selector {
  background: var(--charcoal);
  border: 1px solid #3A4046;
  border-radius: var(--radius-md);
  padding: 22px;
}
.selector-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9AA1A8;
  margin-bottom: 12px;
}
.selector-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.selector-tab {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: #C7CCD1;
  background: #1B1F23;
  border: 1px solid #3A4046;
  border-radius: var(--radius-sm);
  padding: 12px 10px;
  cursor: pointer;
  text-align: center;
  min-height: 44px;
}
.selector-tab[aria-selected="true"] { background: var(--brand); border-color: var(--brand); color: var(--white); }
.selector-panel { display: none; }
.selector-panel.is-active { display: block; }
.selector-panel ul { list-style: none; margin: 0 0 16px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 14px; }
.selector-panel a {
  font-size: 0.88rem; color: #E5E8EA; text-decoration: none; padding: 6px 0; display: block; border-bottom: 1px dashed #3A4046;
}
.selector-panel a:hover { color: var(--brand); }

/* Dataplate chips (signature component) ---------------------------------*/
.dataplate-row { display: flex; flex-wrap: wrap; gap: 8px; }
.dataplate-chip {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  padding: 6px 10px;
  text-decoration: none;
}
.dataplate-chip:hover { border-color: var(--brand); color: var(--brand-dark); }
.dataplate-chip .k { color: #9AA1A8; margin-right: 4px; }

/* Brand grid — dark cards with wordmark-style labels, grouped by tier */
.brand-grid-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.35);
  margin: 26px 0 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-grid-label:first-of-type { margin-top: 0; }
.brand-grid-label::before, .brand-grid-label::after { content: ""; flex: 1; height: 1px; background: rgba(255,255,255,0.1); }
.brand-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (min-width: 640px) { .brand-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 900px) { .brand-grid--standard { grid-template-columns: repeat(6, 1fr); } }
.brand-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 18px 16px;
  min-height: 84px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
}
.brand-card--premium { min-height: 92px; background: rgba(255,255,255,0.055); font-size: 1.1rem; }
a.brand-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(245,78,8,0.45);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}

/* Cards -------------------------------------------------------------------*/
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: 1fr 1fr; } .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 28px;
  text-decoration: none;
  color: inherit;
  display: block;
  box-shadow: none;
  transition: all 0.2s ease;
}
.card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.card h3 { margin-bottom: 6px; font-size: 1.15rem; }

/* Scroll reveal ---------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.reveal.is-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; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-visible { opacity: 1; transform: none; transition: none; }
}
.card p { margin-bottom: 0; font-size: 0.94rem; }
.card .card-tag {
  font-family: var(--font-display); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700;
  color: var(--brand-dark); margin-bottom: 8px; display: block;
}
.card-icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-tint);
  border-radius: var(--radius-sm);
  color: var(--brand-dark);
  margin-bottom: 14px;
  filter: drop-shadow(0 4px 8px rgba(245,78,8,0.15));
  transition: transform 0.2s ease;
}
.card:hover .card-icon { transform: scale(1.08); }
.card-icon svg { width: 26px; height: 26px; }
.section--ink .card-icon, [style*="background:#1B1F23"] .card-icon { background: rgba(245,78,8,0.18); }

/* Offer / promo -----------------------------------------------------------*/
.promo {
  background: var(--brand-tint);
  border: 1px solid #FAD3BC;
  border-radius: var(--radius-md);
  padding: 28px;
  display: grid;
  gap: 18px;
}
@media (min-width: 760px) { .promo { grid-template-columns: auto 1fr auto; align-items: center; } }
.promo-badge {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--brand-dark);
  white-space: nowrap;
}
.promo-terms { font-size: 0.78rem; color: var(--slate); margin-top: 10px; }
.promo-terms summary { cursor: pointer; font-weight: 600; color: var(--charcoal); }

/* Process steps -------------------------------------------------------- */
.steps {
  list-style: none; margin: 0; padding: 0; counter-reset: step;
  display: grid; gap: 32px 16px; text-align: center;
  position: relative;
}
@media (min-width: 760px) { .steps { grid-template-columns: repeat(4, 1fr); } }
/* Connecting line behind the circles, desktop only */
@media (min-width: 760px) {
  .steps { position: relative; }
  .steps::before {
    content: "";
    position: absolute;
    top: 26px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--line);
    z-index: 0;
  }
}
.steps li {
  counter-increment: step;
  background: transparent;
  border: none;
  padding: 0;
  position: relative;
  z-index: 1;
}
.steps li::before {
  content: counter(step);
  counter-reset: none;
  font-family: var(--font-display);
  color: var(--white);
  background: var(--brand);
  font-weight: 800;
  font-size: 1.3rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: var(--shadow-brand);
}
.steps li strong,
.steps li .step-title { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink); margin-bottom: 6px; }
.steps li p { font-size: 0.88rem; margin-bottom: 0; }

/* FAQ accordion ---------------------------------------------------------*/
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 4px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--brand);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item .faq-a { padding: 0 4px 18px; color: var(--slate); }

/* Breadcrumbs -------------------------------------------------------------*/
.breadcrumbs { font-size: 0.82rem; color: var(--slate); padding: 14px 0; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; }
.breadcrumbs a { color: var(--slate); text-decoration: none; }
.breadcrumbs a:hover { color: var(--brand-dark); }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 6px; color: var(--line-strong); }

/* Forms ---------------------------------------------------------------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-card-lg);
}
.form-card h3 { font-size: 1.3rem; }
.form-tabs { display: flex; gap: 8px; margin-bottom: 20px; border-bottom: 1px solid var(--line); }
.form-tab {
  font-weight: 600; font-size: 0.92rem; padding: 10px 6px; background: none; border: none; cursor: pointer;
  color: var(--slate); border-bottom: 2px solid transparent; min-height: 44px;
}
.form-tab[aria-selected="true"] { color: var(--ink); border-bottom-color: var(--brand); }
.form-panel { display: none; }
.form-panel.is-active { display: block; }
.field-row { display: grid; gap: 14px; margin-bottom: 14px; }
@media (min-width: 640px) { .field-row.cols-2 { grid-template-columns: 1fr 1fr; } .field-row.cols-3 { grid-template-columns: 1fr 1fr 1fr; } }
/* Standalone .field (not inside a .field-row) — used by the simplified
   4-field lead forms; generous spacing since there are few fields. */
.form-card form > .field { margin-bottom: 20px; }
.form-card form > .field label { font-size: 0.92rem; }
.form-card form > .field input,
.form-card form > .field select,
.form-card form > .field textarea { padding: 14px 14px; font-size: 1rem; }
label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--charcoal); margin-bottom: 6px; }
input, select, textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 11px 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--white);
  min-height: 44px;
}
textarea { min-height: 96px; resize: vertical; }
input:focus, select:focus, textarea:focus, a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 3px solid #FBB68F;
  outline-offset: 1px;
}
.field-hint { font-size: 0.78rem; color: var(--slate); margin-top: 4px; }
.field-error { font-size: 0.8rem; color: #B3261E; margin-top: 4px; display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #B3261E; }
.field.has-error .field-error { display: block; }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; }
.checkbox-row input { width: 20px; height: 20px; min-height: auto; flex-shrink: 0; margin-top: 2px; }
.checkbox-row label { font-size: 0.82rem; font-weight: 400; color: var(--slate); margin: 0; }
.form-note { font-size: 0.78rem; color: var(--slate); margin-top: 12px; }
.form-success, .form-error-summary { display: none; padding: 16px; border-radius: var(--radius-sm); margin-bottom: 16px; font-size: 0.92rem; }
.form-success.is-visible { display: block; background: #EAF6ED; border: 1px solid #B7E2C1; color: #1E5A2E; }
.form-error-summary.is-visible { display: block; background: #FBEAE9; border: 1px solid #F1B7B4; color: #8C231C; }
.file-drop { border: 1.5px dashed var(--line-strong); border-radius: var(--radius-sm); padding: 16px; text-align: center; font-size: 0.85rem; color: var(--slate); }

/* Reviews ---------------------------------------------------------------*/
.review-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid transparent;
  border-radius: var(--radius-md);
  padding: 24px 24px 20px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.review-card:hover { border-left-color: var(--orange); }
.review-card::before {
  content: "\201C";
  position: absolute;
  top: -6px; right: 16px;
  font-family: Georgia, serif;
  font-size: 4rem;
  color: #F1F2F4;
  line-height: 1;
  z-index: 0;
}
.review-card > * { position: relative; z-index: 1; }
.review-stars { color: #FBBC04; font-size: 1rem; letter-spacing: 2px; margin-bottom: 8px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}
.review-meta { font-family: var(--font-body); font-size: 0.78rem; color: var(--slate); margin-top: 10px; display: flex; align-items: center; gap: 10px; }
.review-source { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: #4285F4; }
.review-placeholder {
  border: 1.5px dashed var(--line-strong); border-radius: var(--radius-md); padding: 30px; text-align: center; color: var(--slate);
}

/* Table (specs / coverage) ----------------------------------------------*/
table.spec-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
table.spec-table th, table.spec-table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); }
table.spec-table th { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--slate); }

/* Callout / disclaimer boxes --------------------------------------------*/
.callout { border-left: 3px solid var(--brand); background: var(--surface); padding: 16px 18px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: 0.92rem; }
.callout-safety { border-left-color: var(--ink); }
.callout p:last-child { margin-bottom: 0; }

/* Footer ------------------------------------------------------------------*/
.site-footer { background: var(--gray-900); color: rgba(255,255,255,0.6); padding: 56px 0 24px; }
.footer-grid { display: grid; gap: 32px; grid-template-columns: 1fr; margin-bottom: 36px; }
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.site-footer h4 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-display); font-weight: 700; margin-bottom: 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: color 0.2s ease; }
.site-footer a:hover { color: var(--white); }
.footer-brand img { height: 40px; margin-bottom: 16px; }
.footer-address { font-size: 0.88rem; line-height: 1.6; }
.footer-address a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 22px; display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: space-between; font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 6px 16px; list-style: none; margin: 0; padding: 0; }
.footer-legal-links a { color: rgba(255,255,255,0.4); font-size: 0.78rem; }
.footer-legal-links a:hover { color: var(--white); }

/* Sticky mobile CTA — redesigned for maximum legibility (older users):
   large filled classic icons (not thin modern line icons), bold stacked
   label + value, orange top border tying back to the logo mark. */
.sticky-cta {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: auto;
  z-index: 1050;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
  border-top: none;
  border-bottom: 2px solid var(--orange);
  height: var(--sticky-cta-h);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
@media (min-width: 900px) { .sticky-cta { display: none; } }
.sticky-cta a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  line-height: 1.15;
  -webkit-tap-highlight-color: transparent;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.sticky-cta .icon { width: 22px; height: 22px; flex-shrink: 0; }
.sticky-cta .label { display: none; }
.sticky-cta .value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.82rem, 4vw, 1rem);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.sticky-cta .call { background: var(--orange); color: var(--white); }
.sticky-cta .book { background: transparent; color: var(--white); border-left: 1px solid rgba(255,255,255,0.15); }
.sticky-cta .call:active { background: var(--brand-dark); }
.sticky-cta .book { background: var(--ink); color: var(--white); }
.sticky-cta .book:active { background: var(--charcoal); }

/* Utility -------------------------------------------------------------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--ink); color: var(--white);
  padding: 12px 18px; z-index: 100; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.small { font-size: 0.85rem; color: var(--slate); }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.badge {
  font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--slate); background: var(--surface); border: 1px solid var(--line); border-radius: 3px; padding: 5px 9px;
}
hr.divider { border: none; border-top: 1px solid var(--line); margin: 40px 0; }
.two-col { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 960px) { .two-col { grid-template-columns: 2fr 1fr; } }
.related-links ul { list-style: none; margin: 0; padding: 0; }
.related-links li { border-bottom: 1px solid var(--line); }
.related-links a { display: block; padding: 11px 2px; text-decoration: none; color: var(--charcoal); font-size: 0.93rem; }
.related-links a:hover { color: var(--brand-dark); }
