/* ============================================
   A TEX SERVICE CO. — Hybrid Light/Dark Theme v3
   Colors: Navy (#0f1b2d) + Copper (#d4751c)
   ============================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy-950: #060d18;
    --navy-900: #0a1423;
    --navy-800: #0f1b2d;
    --navy-700: #162540;
    --navy-600: #1e3355;
    --navy-500: #2a4570;
    --navy-400: #3d5f8a;
    --navy-300: #5a7faa;

    --copper-700: #a35a10;
    --copper-600: #bf6a14;
    --copper: #d4751c;
    --copper-400: #e08838;
    --copper-300: #e9a05e;
    --copper-200: #f0bb8a;

    --red-dim: #4a1c1c;
    --red: #e74c3c;
    --green-dim: #1a3a1a;
    --green: #2ecc71;

    --white: #ffffff;
    --gray-100: #f0f2f5;
    --gray-200: #dce0e8;
    --gray-300: #b0b8c8;
    --gray-400: #8892a6;
    --gray-500: #5f6b80;

    /* Light section tokens */
    --light-bg: #ffffff;
    --light-bg-alt: #f5f6fa;
    --light-card-bg: #ffffff;
    --light-card-border: rgba(15, 27, 45, 0.08);
    --light-text-heading: #0f1b2d;
    --light-text-body: #4a5568;
    --light-text-muted: #718096;
    --light-divider: rgba(15, 27, 45, 0.08);
    --shadow-light-sm: 0 2px 8px rgba(15, 27, 45, 0.06);
    --shadow-light-md: 0 8px 24px rgba(15, 27, 45, 0.08);
    --shadow-light-lg: 0 16px 48px rgba(15, 27, 45, 0.1);

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.4);
    --shadow-lg: 0 16px 60px rgba(0,0,0,0.5);
    --shadow-xl: 0 24px 80px rgba(0,0,0,0.6);
    --shadow-glow: 0 0 30px rgba(212,117,28,0.3);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--navy-900);
    color: var(--gray-200);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

/* ---- Skip Link (accessibility) ---- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    padding: 12px 24px;
    background: var(--copper);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 16px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Typography ---- */
.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 16px;
    position: relative;
    padding-left: 20px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 2px;
    background: var(--copper);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
}

.text-accent { color: var(--copper); }

/* ---- Light Section Overrides ---- */
.compare .section-title,
.value .section-title,
.services .section-title,
.industries .section-title,
.how .section-title,
.why .section-title,
.book .section-title {
    color: var(--light-text-heading);
}

.compare .section-tag,
.value .section-tag,
.services .section-tag,
.industries .section-tag,
.how .section-tag,
.why .section-tag,
.book .section-tag {
    color: var(--copper-700);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn--primary {
    background: var(--copper);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--copper-400);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.25);
}

.btn--outline:hover {
    border-color: var(--copper);
    color: var(--copper);
    transform: translateY(-2px);
}

.btn:focus-visible {
    outline: 2px solid var(--copper);
    outline-offset: 3px;
}

.btn--lg { padding: 18px 36px; font-size: 1.05rem; }
.btn--sm { padding: 10px 20px; font-size: 0.85rem; }
.btn--full { width: 100%; }

.btn--glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent, rgba(212,117,28,0.4), transparent);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.btn--glow:hover::before {
    opacity: 1;
    animation: borderBeam 2s linear infinite;
}

@keyframes borderBeam {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.btn__spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Reveal Animation ---- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal[data-delay="1"] { transition-delay: 0.15s; }
.reveal[data-delay="2"] { transition-delay: 0.3s; }
.reveal[data-delay="3"] { transition-delay: 0.45s; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.nav--scrolled {
    background: rgba(10, 20, 35, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(212,117,28,0.1);
    box-shadow: var(--shadow-md);
}

.nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav__logo-img {
    height: 56px;
    width: auto;
    transition: var(--transition);
}

.nav--scrolled .nav__logo-img {
    height: 46px;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}

.nav__link {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-300);
    letter-spacing: 0.02em;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--copper);
    transition: var(--transition);
}

.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }

.nav__phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--copper-300);
    font-weight: 600;
}

.nav__phone:hover { color: var(--copper); }
.nav__cta { flex-shrink: 0; }

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(212,117,28,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 20%, rgba(30,51,85,0.3) 0%, transparent 60%),
        linear-gradient(180deg, var(--navy-900) 0%, transparent 30%, transparent 70%, var(--navy-900) 100%);
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212,117,28,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,117,28,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 60% 50% at 30% 50%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at 30% 50%, black, transparent);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(212,117,28,0.1);
    border: 1px solid rgba(212,117,28,0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--copper-300);
    margin-bottom: 28px;
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    background: var(--copper);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero__title-accent {
    color: var(--copper);
    display: block;
}

/* Typing cursor */
.hero__title-accent .cursor {
    display: inline-block;
    width: 3px;
    height: 0.9em;
    background: var(--copper);
    margin-left: 4px;
    vertical-align: text-bottom;
    animation: blink 0.8s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero__sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--gray-300);
    max-width: 600px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero__trust {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    margin-bottom: 24px;
    background: rgba(212, 117, 28, 0.08);
    border: 1px solid rgba(212, 117, 28, 0.22);
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--gray-200);
    font-weight: 500;
    line-height: 1.4;
}

/* ===================== FAQ ===================== */
.faq {
    padding: 120px 0;
    background: var(--light-bg);
    position: relative;
}

.faq__header {
    text-align: center;
    margin-bottom: 56px;
}

.faq__list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq__item {
    background: var(--light-bg);
    border: 1px solid rgba(15, 27, 45, 0.1);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq__item:hover {
    border-color: rgba(212, 117, 28, 0.3);
    box-shadow: 0 6px 24px rgba(15, 27, 45, 0.06);
}

.faq__item[open] {
    border-color: var(--copper);
    box-shadow: 0 8px 28px rgba(212, 117, 28, 0.12);
}

.faq__question {
    list-style: none;
    cursor: pointer;
    padding: 22px 24px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy-800);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    user-select: none;
    font-family: 'Space Grotesk', sans-serif;
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__icon {
    color: var(--copper);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.faq__item[open] .faq__icon {
    transform: rotate(180deg);
}

.faq__answer {
    padding: 0 24px 24px;
    color: var(--gray-500);
    line-height: 1.7;
    font-size: 0.98rem;
    margin: 0;
}

@media (max-width: 640px) {
    .faq { padding: 80px 0; }
    .faq__question { padding: 18px 18px; font-size: 0.98rem; }
    .faq__answer { padding: 0 18px 20px; font-size: 0.94rem; }
}

.hero__trust svg {
    color: var(--copper);
    flex-shrink: 0;
}

.hero__trust-name {
    color: var(--copper);
    font-weight: 700;
}

.hero__proof {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.hero__proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--gray-300);
    font-weight: 500;
}

.hero__proof-item svg {
    color: var(--copper);
    flex-shrink: 0;
}

/* Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    animation: floatDown 3s ease-in-out infinite;
}

.hero__scroll span {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray-400);
    font-weight: 500;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--copper), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes floatDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ============================================
   HERO SPLIT LAYOUT & ANIMATED MACHINE
   ============================================ */
.hero__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

.hero__visual-glow {
    position: absolute;
    width: 340px;
    height: 340px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(212,117,28,0.12) 0%, rgba(212,117,28,0.04) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.hero__machine {
    position: relative;
    animation: machineFloat 6s ease-in-out infinite;
    will-change: transform;
}

@keyframes machineFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero__machine-svg {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5)) drop-shadow(0 0 40px rgba(212,117,28,0.1));
}

/* Spinning drum inside washer */
.hero__machine-drum {
    transform-origin: 160px 240px;
    animation: drumSpin 8s linear infinite;
}

@keyframes drumSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Pulsing control light */
.hero__machine-light {
    animation: lightPulse 2s ease-in-out infinite;
}

@keyframes lightPulse {
    0%, 100% { opacity: 0.6; filter: drop-shadow(0 0 2px rgba(212,117,28,0.3)); }
    50% { opacity: 1; filter: drop-shadow(0 0 8px rgba(212,117,28,0.8)); }
}

/* Floating badges around machine */
.hero__float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(15,27,45,0.85);
    border: 1px solid rgba(212,117,28,0.25);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--copper-300);
    white-space: nowrap;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    pointer-events: none;
    z-index: 3;
}

.hero__float-badge svg {
    color: var(--copper);
    flex-shrink: 0;
}

.hero__float-badge--1 {
    top: 8%;
    right: 0;
    animation: badgeFloat1 5s ease-in-out infinite;
}

.hero__float-badge--2 {
    bottom: 22%;
    left: -10px;
    animation: badgeFloat2 6s ease-in-out infinite;
}

.hero__float-badge--3 {
    top: 42%;
    right: -16px;
    animation: badgeFloat3 5.5s ease-in-out infinite;
}

@keyframes badgeFloat1 {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-8px) translateX(4px); }
}

@keyframes badgeFloat2 {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(6px) translateX(-5px); }
}

@keyframes badgeFloat3 {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-10px) translateX(-3px); }
}

/* ============================================
   EQUIPMENT MARQUEE
   ============================================ */
.marquee {
    background: var(--navy-950);
    border-top: 1px solid rgba(212,117,28,0.1);
    border-bottom: 1px solid rgba(212,117,28,0.1);
    padding: 16px 0;
    overflow: hidden;
}

.marquee__track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee__content {
    display: flex;
    gap: 0;
    flex-shrink: 0;
}

.marquee__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 32px;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.marquee__dot {
    width: 4px;
    height: 4px;
    background: var(--copper);
    border-radius: 50%;
    flex-shrink: 0;
}

.marquee:hover .marquee__track {
    animation-play-state: paused;
}

/* ============================================
   COMPARE SECTION
   ============================================ */
.compare {
    padding: 120px 0;
    position: relative;
    background: var(--light-bg);
}

.compare::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, var(--navy-950), var(--light-bg));
    z-index: 0;
}

.compare__header {
    text-align: center;
    margin-bottom: 64px;
}

.compare__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: stretch;
    max-width: 900px;
    margin: 0 auto;
}

.compare__col {
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid;
}

.compare__col--bad {
    background: rgba(231,76,60,0.04);
    border-color: rgba(231,76,60,0.15);
}

.compare__col--good {
    background: rgba(212,117,28,0.05);
    border-color: rgba(212,117,28,0.25);
    box-shadow: 0 0 40px rgba(212,117,28,0.08);
}

.compare__col-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--light-divider);
}

.compare__col--bad .compare__col-header { color: var(--red); border-bottom-color: rgba(231,76,60,0.15); }
.compare__col--good .compare__col-header { color: var(--copper); border-bottom-color: rgba(212,117,28,0.2); }

.compare__col-header h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
}

.compare__list {
    list-style: none;
}

.compare__list li {
    position: relative;
    padding: 10px 0 10px 28px;
    font-size: 0.9rem;
    color: var(--light-text-body);
    border-bottom: 1px solid rgba(15,27,45,0.06);
    line-height: 1.5;
}

.compare__list li:last-child { border-bottom: none; }

.compare__col--bad .compare__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(231,76,60,0.15);
    border: 1.5px solid rgba(231,76,60,0.3);
}

.compare__col--good .compare__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(212,117,28,0.15);
    border: 1.5px solid rgba(212,117,28,0.3);
}

.compare__list li strong {
    color: var(--light-text-heading);
    font-weight: 700;
}

.compare__col--good .compare__list li strong {
    color: var(--copper-700);
}

.compare__vs {
    display: flex;
    align-items: center;
    justify-content: center;
}

.compare__vs span {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--light-text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--light-bg-alt);
    padding: 12px 8px;
    border-radius: var(--radius-sm);
}

/* ============================================
   PAIN SECTION
   ============================================ */
.pain {
    padding: 120px 0;
    background: var(--navy-950);
    position: relative;
}

.pain::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, var(--light-bg), var(--navy-950));
    z-index: 0;
}

.pain__header {
    text-align: center;
    margin-bottom: 64px;
}

.pain__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.pain__card {
    background: rgba(15,27,45,0.6);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
}

.pain__card:hover {
    transform: translateY(-4px);
    border-color: rgba(212,117,28,0.2);
    box-shadow: var(--shadow-lg);
}

.pain__card-icon {
    color: var(--copper);
    margin-bottom: 20px;
}

.pain__card-stat {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    line-height: 1;
}

.pain__card-label {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--copper-300);
    margin-bottom: 16px;
}

.pain__card-text {
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.7;
}

.pain__bottom {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.pain__bottom p {
    font-size: 1.05rem;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.pain__bottom em {
    color: var(--gray-300);
    font-style: italic;
}

.pain__bottom-strong {
    font-family: var(--font-heading);
    font-size: 1.4rem !important;
    font-weight: 700;
    color: var(--copper) !important;
}

/* ============================================
   VALUE PROPOSITION
   ============================================ */
.value {
    padding: 120px 0;
    position: relative;
    background: var(--light-bg-alt);
}

.value::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, var(--navy-950), var(--light-bg-alt));
    z-index: 0;
}

.value__content {
    text-align: center;
    margin-bottom: 64px;
}

.value__sub {
    font-size: 1.1rem;
    color: var(--light-text-body);
    max-width: 500px;
    margin: 0 auto;
}

.value__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value__card {
    background: var(--light-card-bg);
    border: 1px solid var(--light-card-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
    box-shadow: var(--shadow-light-sm);
}

.value__card:hover {
    transform: translateY(-4px);
    border-color: rgba(212,117,28,0.3);
    box-shadow: var(--shadow-light-md);
}

.value__card--featured {
    border-color: rgba(212,117,28,0.3);
    background: rgba(212,117,28,0.04);
    transform: scale(1.02);
}

.value__card--featured:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: 0 0 30px rgba(212,117,28,0.15);
}

.value__card-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(212,117,28,0.15);
    line-height: 1;
    margin-bottom: 16px;
}

.value__card--featured .value__card-number { color: rgba(212,117,28,0.3); }

.value__card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--light-text-heading);
    margin-bottom: 12px;
}

.value__card-text {
    color: var(--light-text-body);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: 120px 0;
    background: var(--light-bg);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,117,28,0.25), transparent);
}

.services__header {
    text-align: center;
    margin-bottom: 64px;
}

.services__sub {
    font-size: 1.1rem;
    color: var(--light-text-body);
    max-width: 500px;
    margin: 0 auto;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Trust strip beneath the 3-tier Service Plans grid. Reinforces the
   "flat-rate, no office fees" differentiator surfaced in the section
   subhead, but in a quieter visual register so it doesn't compete
   with the cards for attention. Added 2026-05-14 with the offer ladder. */
.services__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    padding: 16px 24px;
    background: var(--light-card-bg);
    border: 1px solid var(--light-card-border);
    border-radius: var(--radius-md);
    color: var(--light-text-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.services__trust svg {
    color: var(--copper);
    flex-shrink: 0;
}

.services__card {
    background: var(--light-card-bg);
    border: 1px solid var(--light-card-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light-sm);
}

.services__card:hover {
    transform: translateY(-6px);
    border-color: rgba(212,117,28,0.35);
    box-shadow: var(--shadow-light-lg);
}

.services__card--featured {
    border-color: rgba(212,117,28,0.35);
    background: linear-gradient(135deg, rgba(212,117,28,0.06), var(--light-card-bg));
}

.services__card--featured:hover {
    box-shadow: var(--shadow-glow), var(--shadow-lg);
}

.services__card-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--copper);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 8px 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 2px 8px rgba(212,117,28,0.3);
    border-bottom-left-radius: var(--radius-sm);
    z-index: 2;
}

.services__card-icon {
    color: var(--copper);
    margin-bottom: 24px;
    transition: var(--transition);
}

.services__card:hover .services__card-icon { transform: scale(1.1); }

.services__card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--light-text-heading);
    margin-bottom: 4px;
}

.services__card-sub {
    font-size: 0.8rem;
    color: var(--copper-700);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    font-style: italic;
}

.services__card-text {
    color: var(--light-text-body);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.services__card-list { list-style: none; }

.services__card-list li {
    position: relative;
    padding-left: 20px;
    font-size: 0.88rem;
    color: var(--light-text-body);
    margin-bottom: 8px;
}

.services__card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--copper);
}

/* ============================================
   INDUSTRIES
   ============================================ */
.industries {
    padding: 120px 0;
    position: relative;
    background: var(--light-bg-alt);
}

.industries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,117,28,0.25), transparent);
}

.industries__header {
    text-align: center;
    margin-bottom: 64px;
}

.industries__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.industries__item {
    text-align: center;
    padding: 40px 24px;
    background: var(--light-card-bg);
    border: 1px solid var(--light-card-border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    box-shadow: var(--shadow-light-sm);
}

.industries__item:hover {
    transform: translateY(-4px);
    border-color: rgba(212,117,28,0.3);
    box-shadow: var(--shadow-light-md);
}

.industries__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,117,28,0.1);
    border-radius: var(--radius-md);
    color: var(--copper);
    transition: var(--transition);
}

.industries__item:hover .industries__icon {
    background: rgba(212,117,28,0.15);
    transform: scale(1.05);
}

.industries__item h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--light-text-heading);
    margin-bottom: 8px;
}

.industries__item p {
    font-size: 0.85rem;
    color: var(--light-text-body);
    line-height: 1.5;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how {
    padding: 120px 0;
    background: var(--light-bg);
    position: relative;
}

.how::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,117,28,0.25), transparent);
}

.how__header {
    text-align: center;
    margin-bottom: 80px;
}

.how__grid {
    max-width: 700px;
    margin: 0 auto;
}

.how__step {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.how__step-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--copper);
    background: rgba(212,117,28,0.1);
    border: 1.5px solid rgba(212,117,28,0.25);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.how__step:hover .how__step-number {
    background: rgba(212,117,28,0.15);
    transform: scale(1.05);
}

.how__step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--light-text-heading);
    margin-bottom: 8px;
}

.how__step-content p {
    color: var(--light-text-body);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.how__step-time {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--copper-700);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.how__step-connector {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(212,117,28,0.3), rgba(212,117,28,0.05));
    margin-left: 28px;
}

/* ============================================
   WHY US
   ============================================ */
.why {
    padding: 120px 0;
    position: relative;
    background: var(--light-bg-alt);
}

.why::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,117,28,0.25), transparent);
}

.why__header {
    text-align: center;
    margin-bottom: 64px;
}

.why__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.why__item {
    display: flex;
    gap: 20px;
    padding: 32px;
    background: var(--light-card-bg);
    border: 1px solid var(--light-card-border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    box-shadow: var(--shadow-light-sm);
}

.why__item:hover {
    transform: translateY(-3px);
    border-color: rgba(212,117,28,0.3);
    box-shadow: var(--shadow-light-md);
}

.why__item-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,117,28,0.1);
    border-radius: var(--radius-sm);
    color: var(--copper);
    transition: var(--transition);
}

.why__item:hover .why__item-icon { background: rgba(212,117,28,0.15); }

.why__item h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--light-text-heading);
    margin-bottom: 6px;
}

.why__item p {
    font-size: 0.88rem;
    color: var(--light-text-body);
    line-height: 1.6;
}

/* ============================================
   SOCIAL PROOF
   ============================================ */
.proof {
    padding: 120px 0;
    background: var(--navy-950);
    position: relative;
}

.proof::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, var(--light-bg-alt), var(--navy-950));
    z-index: 0;
}

.proof__header {
    text-align: center;
    margin-bottom: 64px;
}

.proof__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.proof__card {
    background: rgba(15,27,45,0.6);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition);
}

.proof__card:hover {
    transform: translateY(-4px);
    border-color: rgba(212,117,28,0.15);
    box-shadow: var(--shadow-md);
}

.proof__card--wide {
    grid-column: 1 / -1;
    border-color: rgba(212,117,28,0.15);
    background: rgba(212,117,28,0.03);
}

.proof__stars {
    display: flex;
    gap: 4px;
    color: var(--copper);
    margin-bottom: 20px;
}

.proof__quote {
    font-size: 0.95rem;
    color: var(--gray-200);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: normal;
}

.proof__quote strong {
    color: var(--copper-300);
    font-weight: 600;
}

.proof__author-info {
    display: flex;
    flex-direction: column;
}

.proof__author-info strong {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--white);
}

.proof__author-info span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ============================================
   BOOKING FORM
   ============================================ */
.book {
    padding: 120px 0;
    position: relative;
    background: var(--light-bg);
}

.book::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, var(--navy-950), var(--light-bg));
    z-index: 0;
}

.book__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.book__sub {
    font-size: 1rem;
    color: var(--light-text-body);
    margin-bottom: 32px;
    line-height: 1.7;
}

.book__benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.book__benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--light-text-body);
    font-weight: 500;
}

.book__benefit svg {
    color: var(--copper);
    flex-shrink: 0;
}

.book__phone {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(212,117,28,0.08);
    border: 1px solid rgba(212,117,28,0.2);
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: relative;
}

.book__phone:hover {
    background: rgba(212,117,28,0.12);
    border-color: rgba(212,117,28,0.3);
}

.book__phone-pulse {
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--copper);
    border-radius: 50%;
    animation: phonePulse 2s ease-in-out infinite;
}

@keyframes phonePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212,117,28,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(212,117,28,0); }
}

.book__phone svg {
    color: var(--copper);
    flex-shrink: 0;
}

.book__phone-label {
    font-size: 0.8rem;
    color: var(--light-text-muted);
    display: block;
}

.book__phone-number {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--copper);
}

/* Form Styles */
.book__form {
    background: var(--light-card-bg);
    border: 1px solid var(--light-card-border);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-light-md);
}

.form__group { margin-bottom: 20px; }

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form__label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--light-text-heading);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.form__input {
    width: 100%;
    padding: 14px 16px;
    background: var(--light-bg-alt);
    border: 1.5px solid rgba(15,27,45,0.12);
    border-radius: var(--radius-sm);
    color: var(--light-text-heading);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: var(--transition);
    outline: none;
}

.form__input::placeholder { color: var(--light-text-muted); }

.form__input:focus {
    border-color: var(--copper);
    box-shadow: 0 0 0 3px rgba(212,117,28,0.15);
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238892a6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form__select option { background: var(--light-bg); color: var(--light-text-heading); }
.form__textarea { resize: vertical; min-height: 80px; }

.form__disclaimer {
    text-align: center;
    font-size: 0.75rem;
    color: var(--light-text-muted);
    margin-top: 12px;
}

.form__input.error {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(231,76,60,0.15);
}

/* Success State */
.book__success {
    display: none;
    text-align: center;
    padding: 60px 40px;
    background: var(--light-card-bg);
    border: 1px solid rgba(212,117,28,0.25);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-light-sm);
}

.book__success.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.book__success-icon { color: var(--copper); margin-bottom: 20px; }

.book__success h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--light-text-heading);
    margin-bottom: 12px;
}

.book__success p {
    color: var(--light-text-body);
    font-size: 0.95rem;
    line-height: 1.7;
}

.book__success a { color: var(--copper); font-weight: 600; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   STICKY CTA
   ============================================ */
.sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    z-index: 900;
    background: rgba(10, 20, 35, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212,117,28,0.15);
    padding: 12px 0;
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cta.show { bottom: 0; }

.sticky-cta__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.sticky-cta__live {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--copper-300);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sticky-cta__pulse {
    width: 6px;
    height: 6px;
    background: var(--copper);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.sticky-cta__text {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--gray-200);
}

.sticky-cta__actions {
    display: flex;
    gap: 12px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy-950);
    border-top: none;
    padding: 80px 0 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, var(--light-bg), var(--navy-950));
    z-index: 0;
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    margin-bottom: 60px;
}

.footer__logo {
    height: 50px;
    width: auto;
    margin-bottom: 16px;
}

.footer__tagline {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--copper);
    margin-bottom: 8px;
}

.footer__desc {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.6;
    max-width: 280px;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer__col h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer__col a,
.footer__col span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 10px;
}

.footer__col a:hover { color: var(--copper); }
.footer__col svg { flex-shrink: 0; color: var(--copper); }

.footer__service-area {
    font-size: 0.78rem;
    color: var(--gray-400);
    margin-top: 8px;
    font-style: italic;
}

.footer__privacy {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
}
.footer__privacy p {
    font-size: 0.75rem;
    color: var(--gray-500);
    line-height: 1.6;
    max-width: 700px;
}
.footer__privacy strong {
    color: var(--gray-400);
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__bottom p {
    font-size: 0.78rem;
    color: var(--gray-500);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero__split {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .hero__content { max-width: 100%; }

    .hero__visual {
        min-height: 320px;
        order: -1;
    }

    .hero__machine-svg { width: 220px; }

    .hero__proof { justify-content: center; }
    .hero__actions { justify-content: center; }
    .hero__badge { margin: 0 auto 28px; }

    .services__grid,
    .pain__grid,
    .value__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries__grid { grid-template-columns: repeat(2, 1fr); }

    .book__wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .compare__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .compare__vs span {
        display: block;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(6,13,24,0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 999;
    }

    .nav__links.open { display: flex; }
    .nav__links .nav__link { font-size: 1.2rem; }
    .nav__cta { display: none; }
    .nav__toggle { display: flex; }

    .nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav__toggle.open span:nth-child(2) { opacity: 0; }
    .nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero__title { font-size: 2.2rem; }

    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; justify-content: center; }
    .hero__proof { flex-direction: column; gap: 12px; }
    .hero__scroll { display: none; }
    .hero__visual { min-height: 260px; }
    .hero__machine-svg { width: 180px; }
    .hero__float-badge { font-size: 0.68rem; padding: 6px 10px; }
    .hero__float-badge--3 { display: none; }

    .pain__grid,
    .services__grid,
    .value__grid,
    .proof__grid,
    .why__grid {
        grid-template-columns: 1fr;
    }

    .industries__grid { grid-template-columns: repeat(2, 1fr); }

    .value__card--featured { transform: none; }
    .value__card--featured:hover { transform: translateY(-4px); }

    .form__row { grid-template-columns: 1fr; }
    .book__form { padding: 28px; }

    .pain, .value, .services, .industries, .how, .why, .proof, .book, .compare {
        padding: 80px 0;
    }

    .section-title { font-size: 1.8rem; }

    .sticky-cta__text { display: none; }
    .sticky-cta__live { display: none; }
    .sticky-cta__actions { width: 100%; }
    .sticky-cta__actions .btn { flex: 1; }

    .footer__links { grid-template-columns: 1fr 1fr; }
    .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

    .marquee__item { padding: 0 20px; font-size: 0.72rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero__title { font-size: 1.8rem; }
    .hero__visual { min-height: 200px; }
    .hero__machine-svg { width: 150px; }
    .hero__float-badge--2 { display: none; }
    .industries__grid { grid-template-columns: 1fr; }
    .footer__links { grid-template-columns: 1fr; }
    .services__card-badge { font-size: 0.6rem; padding: 6px 12px; }
}

/* ---- Accessibility: Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .marquee__track { animation: none; }
    .hero__machine-drum { animation: none; }
    .hero__machine { animation: none; }
    .hero__float-badge { animation: none; }
    .hero__machine-light { animation: none; }
    .hero__visual-glow { animation: none; }
}

/* Linked services card variant — homepage's 'Emergency Rapid Response'
   card becomes a clickable link to /emergency-commercial-laundry-repair-san-antonio.
   Removes default link decoration; adds hover lift to signal interactivity. */
.services__card--linked {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.services__card--linked:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 48px rgba(212, 117, 28, 0.18);
}
.services__card-cta {
    display: inline-block;
    margin-top: 16px;
    color: var(--copper);
    font-weight: 700;
    font-size: 0.95rem;
}

/* ============================================================
   EMERGENCY REPAIR PAGE — page-specific styles
   Scoped under body.page-emergency to avoid leaking to homepage.
   See docs/superpowers/specs/2026-05-01-emergency-repair-page-design.md
   ============================================================ */

.page-emergency .breadcrumbs {
    font-size: 0.85rem;
    color: var(--gray-300);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.page-emergency .breadcrumbs a {
    color: var(--copper);
    text-decoration: none;
    transition: color 0.2s ease;
}
.page-emergency .breadcrumbs a:hover { color: var(--copper-300); }
.page-emergency .breadcrumbs__sep { color: var(--gray-500); }

/* Hero adjusted for content-first layout (no animated visual on this page) */
.page-emergency .hero--emergency {
    min-height: auto;
    padding: 120px 0 80px;
}
.page-emergency .hero__emergency-container {
    max-width: 880px;
    text-align: left;
}
.page-emergency .hero__title--emergency {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    line-height: 1.05;
    margin-bottom: 24px;
}
.page-emergency .hero__actions--emergency {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    max-width: 480px;
    margin-bottom: 28px;
}

/* Giant phone CTA (the hybrid weight rule: ~2x the callback button) */
.btn--phone-giant {
    padding: 22px 32px;
    font-size: 1.25rem;
    line-height: 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.btn--phone-giant__label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.85;
    font-weight: 600;
}
.btn--phone-giant__number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
}
.btn--callback {
    padding: 14px 24px;
    font-size: 0.95rem;
    text-align: center;
    flex-direction: column;
    gap: 2px;
}
.btn--callback small {
    font-size: 0.78rem;
    opacity: 0.7;
    font-weight: 500;
}

/* Downtime section — single-quote spotlight */
.page-emergency .downtime {
    padding: 80px 0;
    background: var(--light-bg);
}
.page-emergency .downtime__quote {
    max-width: 760px;
    margin: 0 auto 32px;
    padding: 36px;
    border-left: 4px solid var(--copper);
    background: var(--light-bg-alt);
    border-radius: 0 14px 14px 0;
    position: relative;
}
.page-emergency .downtime__quote-mark {
    color: rgba(212, 117, 28, 0.18);
    position: absolute;
    top: 16px;
    right: 16px;
}
.page-emergency .downtime__quote blockquote {
    margin: 0;
}
.page-emergency .downtime__quote blockquote p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--navy-800);
    margin-bottom: 20px;
}
.page-emergency .downtime__quote cite {
    font-style: normal;
    display: flex;
    flex-direction: column;
}
.page-emergency .downtime__quote cite strong {
    color: var(--navy-800);
    font-weight: 700;
}
.page-emergency .downtime__quote cite span {
    color: var(--gray-500);
    font-size: 0.9rem;
}
.page-emergency .downtime__framing {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    color: var(--gray-500);
    font-size: 1.05rem;
    line-height: 1.65;
}

/* What we fix */
.page-emergency .what-we-fix {
    padding: 100px 0;
    background: var(--navy-900);
    color: var(--gray-200);
}
.page-emergency .what-we-fix__header {
    text-align: center;
    margin-bottom: 48px;
}
.page-emergency .what-we-fix__list {
    list-style: none;
    padding: 0;
    margin: 0 auto 28px;
    max-width: 760px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px 24px;
}
.page-emergency .what-we-fix__list li {
    padding: 12px 0 12px 32px;
    position: relative;
    color: var(--gray-200);
    font-size: 1rem;
}
.page-emergency .what-we-fix__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--copper);
    box-shadow: 0 0 0 4px rgba(212, 117, 28, 0.12);
}
.page-emergency .what-we-fix__note {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    color: var(--gray-300);
    font-size: 0.95rem;
    font-style: italic;
}

/* Process — 3 step ordered list */
.page-emergency .process {
    padding: 100px 0;
    background: var(--light-bg);
}
.page-emergency .process__header {
    text-align: center;
    margin-bottom: 48px;
}
.page-emergency .process__steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    counter-reset: step-counter;
}
.page-emergency .process__step {
    background: var(--light-bg-alt);
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid rgba(15, 27, 45, 0.08);
}
.page-emergency .process__step-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: rgba(212, 117, 28, 0.2);
    margin-bottom: 12px;
}
.page-emergency .process__step h3 {
    font-size: 1.15rem;
    color: var(--navy-800);
    margin-bottom: 12px;
    font-weight: 700;
}
.page-emergency .process__step p {
    color: var(--gray-500);
    font-size: 0.96rem;
    line-height: 1.65;
    margin: 0;
}

/* Single-quote proof variant */
.page-emergency .proof--single {
    padding: 100px 0;
    background: var(--light-bg-alt);
}
.page-emergency .proof--single .proof__header {
    text-align: center;
    margin-bottom: 48px;
}
.page-emergency .proof__card--featured {
    max-width: 820px;
    margin: 0 auto;
    background: var(--light-bg);
    border: 1px solid rgba(212, 117, 28, 0.22);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 12px 36px rgba(15, 27, 45, 0.06);
}
.page-emergency .proof__card--featured .proof__quote {
    font-size: 1.18rem;
    line-height: 1.65;
    color: var(--navy-800);
    margin: 16px 0 24px;
}

@media (max-width: 720px) {
    .page-emergency .hero--emergency { padding: 100px 0 60px; }
    .page-emergency .downtime__quote { padding: 28px 22px; }
    .page-emergency .what-we-fix__list { grid-template-columns: 1fr; }
    .page-emergency .process__steps { grid-template-columns: 1fr; }
    .page-emergency .proof__card--featured { padding: 28px 22px; }
    .btn--phone-giant { padding: 18px 24px; }
    .btn--phone-giant__number { font-size: 1.3rem; }
}
