/* ═══════════════════════════════════════════════════════════
   scale.css — Landing page for Meta ads traffic
   Virtual Assistants Philippines
   Prefix: scale-
   All animations guarded — styles.css kills them at ≤1024px
   ═══════════════════════════════════════════════════════════ */

/* ── CSS custom properties ───────────────────────────────── */
:root {
    --scale-teal: #14B8A6;
    --scale-cyan: #00FFFF;
    --scale-gold: #FFD700;
    --scale-yellow: #FFFF00;
    --scale-black: #000000;
    /* Teal tint over 90% black — a hint of the field ghosts through, text stays readable */
    --scale-card-bg: linear-gradient(135deg, rgba(20,184,166,0.08) 0%, rgba(20,184,166,0) 55%), #000000;
    --scale-card-border: rgba(20,184,166,0.3);
    --scale-max-w: 1100px;
}

/* ── Base ────────────────────────────────────────────────── */
body {
    background: #000000;
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ── Full-page force field background (same as /services) ── */
/* Hidden at ≤1024px by styles.css (#ffContainer guard)       */
/* 0.45 = clearly alive; text protected per-section, no global scrim */
.ff-container {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.62;
}

main {
    position: relative;
    z-index: 1;
}

/* ── Minimal Landing Header ──────────────────────────────── */
.scale-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(20,184,166,0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.scale-header-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    background: linear-gradient(135deg, #14B8A6, #00FFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.scale-header-logo:hover {
    transform: scale(1.04);
}

.scale-header-logo img {
    height: 44px;
    width: auto;
    flex-shrink: 0;
}

.scale-header-cta {
    display: inline-block;
    padding: 0.55rem 1.25rem;
    background: linear-gradient(135deg, #FFFF00, #00FFFF);
    color: #000000;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 12px rgba(0,255,255,0.2);
    white-space: nowrap;
}

.scale-header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 22px rgba(0,255,255,0.5);
    color: #000000;
}

/* ── Shared section layout ───────────────────────────────── */
.scale-section {
    padding: 10rem 0;
    position: relative;
}

.scale-container {
    max-width: var(--scale-max-w);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* ── Shared section title (webinar headline style) ───────── */
.scale-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: glow 3s ease-in-out infinite;
}

/* ── Eyebrow label — glowing cyan on a dark pill ─────────── */
.scale-eyebrow {
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 4px;
    color: var(--scale-cyan);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    padding: 0.55rem 1.4rem;
    background: rgba(0,0,0,0.85);
    border: 1px solid rgba(0,255,255,0.25);
    border-radius: 999px;
    text-shadow: 0 0 12px rgba(0,255,255,0.85), 0 0 30px rgba(0,255,255,0.45);
    box-shadow: 0 0 18px rgba(0,255,255,0.12);
}

/* ── Primary CTA button ──────────────────────────────────── */
.scale-btn-primary {
    display: inline-block;
    padding: 1rem 2.8rem;
    background: linear-gradient(135deg, #FFFF00, #00FFFF);
    color: #000000;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 15px rgba(0,255,255,0.2);
}

.scale-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0,255,255,0.55), 0 0 55px rgba(255,255,0,0.2);
    color: #000000;
}

/* ── Scroll animation ────────────────────────────────────── */
.scroll-animate {
    opacity: 0;
}

.scroll-animate.visible {
    opacity: 1;
    animation: scaleFadeInUp 0.7s ease forwards;
}

@keyframes scaleFadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── BR responsive helper ────────────────────────────────── */
.scale-br-hide {
    display: none;
}

@media (min-width: 600px) {
    .scale-br-hide {
        display: inline;
    }
}

/* ═══════════════════════════════════════════════════════════
   SECTION 1: Hero
   ═══════════════════════════════════════════════════════════ */
.scale-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 120px 2rem 5rem;
}

/* Soft radial vignette so text is always readable */
.scale-hero::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 70%;
    background: radial-gradient(
        ellipse at center,
        rgba(0,0,0,0.88) 0%,
        rgba(0,0,0,0.68) 45%,
        rgba(0,0,0,0.30) 72%,
        transparent 100%
    );
    filter: blur(32px);
    z-index: 1;
    pointer-events: none;
}

.scale-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
}

.scale-hero-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 5.2vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0;
    margin-bottom: 1.75rem;
    animation: glow 3s ease-in-out infinite;
}

.scale-hero-sub {
    font-size: 1.12rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.78;
    max-width: 640px;
    margin: 0 auto 2.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 4px 16px rgba(0,0,0,0.7);
}

/* Micro-proof row — dark pill so it reads over the particle field */
.scale-micro-proof {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.75rem;
    justify-content: center;
    align-items: center;
    margin-top: 1.75rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
    background: rgba(0,0,0,0.78);
    border: 1px solid rgba(20,184,166,0.25);
    border-radius: 999px;
    padding: 0.6rem 1.5rem;
}

.scale-proof-dot {
    color: rgba(20,184,166,0.5);
    font-size: 1rem;
    line-height: 1;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 2: Pain cards
   ═══════════════════════════════════════════════════════════ */
.scale-pain {
    background: transparent;
}

/* NSVP band reads as part of the pain section — collapse the stacked 10rem+10rem padding */
.scale-section.scale-pain { padding-bottom: 2.5rem; }
.scale-section.scale-nsvp { padding-top: 0; }

.scale-pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 4rem;
}

/* Glow-card cover pattern (homepage canon): the opaque wrap hides the
   gc-mesh fill so only the 1px border ring glows */
.scale-card-wrap {
    position: relative;
    z-index: 2;
    border-radius: inherit;
    margin: 1px;
    height: 100%;
}

.scale-pain-card {
    --pointer-x: 50%;
    --pointer-y: 50%;
    --pointer-deg: 45deg;
    --proximity: 0;
    --glow-color: #14B8A6;
    position: relative;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scale-pain-card .scale-card-wrap {
    background: var(--scale-card-bg);
    border: 1px solid var(--scale-card-border);
    padding: 2.25rem 2rem;
    transition: border-color 0.3s ease;
}

.scale-pain-card:hover {
    box-shadow: 0 0 28px color-mix(in srgb, var(--glow-color) 20%, transparent);
    transform: translateY(-4px);
}

/* per-card glow colors — cyan / pink / gold. Border is neutral by default; color appears on hover. */
.scale-pain-grid .scale-pain-card:nth-child(1) { --glow-color: #00FFFF; }
.scale-pain-grid .scale-pain-card:nth-child(2) { --glow-color: #FF2EC4; }
.scale-pain-grid .scale-pain-card:nth-child(3) { --glow-color: #FFD700; }

.scale-pain-card:hover .scale-card-wrap {
    border-color: color-mix(in srgb, var(--glow-color) 90%, transparent);
}

.scale-pain-icon {
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: center;
}

.scale-pain-icon svg {
    width: 110px;
    height: 110px;
}

/* Pain icon animations — clock ticks, eyes blink, money flies off.
   Auto-disabled on ≤1024px by the global no-animation rule in styles.css. */
.clock-minute {
    transform-box: fill-box;
    transform-origin: 50% 100%;
    animation: clock-spin 6s steps(12) infinite;
}

.clock-hour {
    transform-box: fill-box;
    transform-origin: 0% 0%;
    animation: clock-spin 72s linear infinite;
}

@keyframes clock-spin {
    to { transform: rotate(360deg); }
}

.pain-eye {
    transform-box: fill-box;
    transform-origin: center;
    animation: eye-blink 4s ease-in-out infinite;
}

@keyframes eye-blink {
    0%, 90%, 100% { transform: scaleY(1); }
    93%, 96%      { transform: scaleY(0.12); }
}

.fly-bill {
    transform-box: fill-box;
    transform-origin: center;
    animation: fly-away 2.8s ease-out infinite;
}

.fly-2 {
    animation-delay: 1.4s;
}

@keyframes fly-away {
    0%   { transform: translate(-7px, 7px) rotate(-8deg); opacity: 0; }
    18%  { opacity: 1; }
    70%  { opacity: 0.85; }
    100% { transform: translate(6px, -8px) rotate(10deg); opacity: 0; }
}

.scale-pain-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: #00FFFF;
    letter-spacing: 0.4px;
    margin-bottom: 0.85rem;
    line-height: 1.4;
}

.scale-pain-card p {
    color: rgba(255,255,255,0.8);
    font-size: 0.92rem;
    line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 3: How It Works — numbered steps
   ═══════════════════════════════════════════════════════════ */
.scale-steps {
    /* Symmetric breathing room + black coverage above the title and below the Pulse closer box */
    padding-top: 16rem;
    padding-bottom: 16rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 8%, rgba(0,0,0,0.85) 92%, transparent 100%);
}

.scale-steps-list {
    max-width: 820px;
    margin: 4rem auto 0;
}

.scale-step {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    align-items: flex-start;
}

.scale-step-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--scale-cyan);
    line-height: 1;
    text-shadow: 0 0 26px rgba(0,255,255,0.38), 0 0 55px rgba(0,255,255,0.15);
    letter-spacing: -1px;
    flex-shrink: 0;
}

.scale-step-body h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.8px;
    margin-bottom: 0.75rem;
    padding-top: 0.65rem;
}

.scale-step-body p {
    color: rgba(255,255,255,0.72);
    font-size: 0.97rem;
    line-height: 1.82;
}

.scale-step-time {
    color: var(--scale-teal);
    font-weight: 600;
    font-style: normal;
}

.scale-step-connector {
    width: 1px;
    height: 3rem;
    background: linear-gradient(180deg, rgba(0,255,255,0.35) 0%, rgba(20,184,166,0.12) 100%);
    margin: 0.75rem 0 0.75rem 59px;
}

.scale-steps-closer {
    max-width: 680px;
    margin: 3.5rem auto 0;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.95);
    line-height: 1.75;
    background: #000000;
    border-left: 3px solid rgba(0,255,255,0.55);
    border-right: 3px solid rgba(0,255,255,0.55);
    padding: 1.5rem 2.5rem;
    border-radius: 0;
    position: relative;
    box-shadow: 0 0 30px rgba(0,255,255,0.08);
}

.scale-steps-closer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,255,255,0.3), transparent);
}

.scale-steps-closer::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,255,255,0.3), transparent);
}

/* ═══════════════════════════════════════════════════════════
   SECTION 5c: Case Study Grid — every story at a glance.
   Card styles come from utilities.css (.glow-card variants,
   .card-inner-center, .text-muted-sm)
   ═══════════════════════════════════════════════════════════ */
.scale-cs {
    background: transparent;
}

.scale-cs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    align-items: stretch;
}

.scale-cs-card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.scale-cs-card .text-muted-sm {
    flex: 1 1 auto;
}

.scale-cs-stars {
    color: #FFD700;
    font-size: 0.9rem;
    letter-spacing: 0.3rem;
    margin-bottom: 0.85rem;
    text-shadow: 0 0 14px rgba(255,215,0,0.4);
}

.glow-teal { --glow-color: #14B8A6; }

.scale-cs-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 0.7rem;
}

.scale-cs-name {
    color: #14B8A6;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.5px;
    margin-top: 1.1rem;
}

.scale-cs-role {
    color: rgba(255,255,255,0.45);
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 5: Guarantees — homepage "Zero Risk. All Upside."
   pattern. Card styles come from utilities.css
   (.glow-card variants, .card-inner-center, .card-title-cyan)
   ═══════════════════════════════════════════════════════════ */
.scale-guarantees {
    padding: 8rem 0;
    background: transparent;
}

/* Generic glow-card base (mirrors homepage index.css) */
.glow-card {
    --pointer-x: 50%;
    --pointer-y: 50%;
    --pointer-deg: 45deg;
    --proximity: 0;
    position: relative;
    border-radius: 12px;
}

.scale-guarantees-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 920px;
    margin: 3rem auto 0;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 5b: Bradley Video Testimonial — same as /case-studies
   ═══════════════════════════════════════════════════════════ */
.bvt-section {
    padding: 9rem 40px;
    position: relative;
    /* Solid black core with gradient fade edges — homepage .section-fade-edges pattern */
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.15) 3%, rgba(0,0,0,0.4) 6%, rgba(0,0,0,0.7) 10%, #000000 16%, #000000 84%, rgba(0,0,0,0.7) 90%, rgba(0,0,0,0.4) 94%, rgba(0,0,0,0.15) 97%, transparent 100%);
}

.bvt-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
}

.bvt-text-col {
    text-align: center;
}

.bvt-video-card {
    width: 100%;
    background: rgba(0,0,0,0.90);
    border: 1px solid rgba(0,255,255,0.15);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,255,255,0.08);
}

.bvt-badge {
    display: inline-block;
    background: rgba(20,184,166,0.12);
    border: 1px solid rgba(20,184,166,0.35);
    color: #14B8A6;
    font-size: 0.72rem;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.4rem 1.1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.bvt-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1rem;
    animation: glow 3s ease-in-out infinite;
}

.bvt-subtext {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.9);
}

.bvt-player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #050505;
}

.bvt-facade {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
}

.bvt-facade img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.bvt-facade:hover img {
    filter: brightness(1.12);
}

.bvt-player iframe,
.bvt-player video {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

.bvt-attr {
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 6: Final CTA
   ═══════════════════════════════════════════════════════════ */
.scale-final-cta {
    background: transparent;
    padding-bottom: 10rem;
}

.scale-cta-card {
    --pointer-x: 50%;
    --pointer-y: 50%;
    --pointer-deg: 45deg;
    --proximity: 0;
    --glow-color: #00FFFF;
    position: relative;
    cursor: default;
    border-radius: 12px;
    max-width: 860px;
    margin: 0 auto;
}

.scale-cta-card-inner {
    position: relative;
    z-index: 2;
    /* cyan→gold corner tints over 92% black — slight see-through */
    background: linear-gradient(135deg, rgba(0,255,255,0.04) 0%, rgba(0,0,0,0) 50%, rgba(255,215,0,0.04) 100%), #000000;
    border: 1px solid rgba(0,255,255,0.2);
    border-radius: 20px;
    padding: 4.5rem 3.5rem;
    text-align: center;
    box-shadow:
        0 0 0 1px rgba(0,255,255,0.08),
        0 0 60px rgba(0,255,255,0.06),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

/* Gold eyebrow above the final headline */
.scale-cta-eyebrow {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--scale-cyan);
    text-shadow: 0 0 12px rgba(0,255,255,0.7);
    margin-bottom: 1rem;
}

/* Bigger final button with standing glow */
.scale-btn-final {
    padding: 1.15rem 3.2rem;
    font-size: 0.9rem;
    box-shadow: 0 0 20px rgba(0,255,255,0.25), 0 0 40px rgba(0,255,255,0.1);
}

/* Trust micro-row under the final button */
.scale-cta-trust-row {
    margin-top: 1.1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.04em;
}

.scale-cta-trust-sep {
    margin: 0 0.65rem;
    color: rgba(0,255,255,0.35);
}

.scale-cta-card-inner h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.7rem, 4vw, 2.7rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    animation: glow 3s ease-in-out infinite;
}

.scale-cta-card-inner p {
    color: rgba(255,255,255,0.72);
    font-size: 1.05rem;
    line-height: 1.82;
    max-width: 580px;
    margin: 0 auto 2.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.9);
}

/* ═══════════════════════════════════════════════════════════
   Minimal Landing Footer
   ═══════════════════════════════════════════════════════════ */
/* Black footer, same bottom-bar style as the homepage site-footer */
.scale-footer {
    position: relative;
    z-index: 1;
    background: #000000;
    border-top: 2px solid rgba(20,184,166,0.3);
    padding: 2rem;
    font-family: 'Inter', sans-serif;
}

.scale-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.scale-footer-bottom p {
    color: #666;
    font-size: 0.85rem;
}

.scale-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
}

.scale-footer-links a {
    color: #14B8A6;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.scale-footer-links a:hover {
    color: #00FFFF;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (≤900px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .scale-pain-grid {
        grid-template-columns: 1fr 1fr;
    }

    .scale-pain-grid .scale-pain-card:last-child {
        grid-column: 1 / -1;
        max-width: 480px;
        margin: 0 auto;
    }

    .scale-cs-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .scale-guarantees-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.85rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤768px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .scale-header {
        padding: 0.9rem 1.25rem;
    }

    .scale-header-logo {
        font-size: 0.9rem;
    }

    .scale-header-logo img {
        height: 36px;
    }

    .scale-section {
        padding: 6rem 0;
    }

    .scale-hero {
        padding: 110px 1.25rem 3.5rem;
        min-height: auto;
    }

    .scale-hero-headline {
        font-size: 2.2rem;
        letter-spacing: 0.5px;
    }

    .scale-hero-sub {
        font-size: 0.97rem;
    }

    .scale-section-title {
        font-size: 1.65rem;
    }

    .scale-container {
        padding: 0 1.25rem;
    }

    .scale-pain-grid {
        grid-template-columns: 1fr;
        margin-top: 2.5rem;
    }

    .scale-pain-grid .scale-pain-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    .scale-step {
        grid-template-columns: 80px 1fr;
        gap: 1.25rem;
    }

    .scale-step-num {
        font-size: 3rem;
    }

    .scale-step-connector {
        margin-left: 39px;
    }

    .scale-step-body h3 {
        font-size: 1rem;
    }

    .scale-steps-closer {
        padding: 1.25rem 1.5rem;
        font-size: 0.92rem;
    }

    .scale-cs-grid {
        grid-template-columns: 1fr;
    }

    .scale-guarantees-grid {
        grid-template-columns: 1fr;
    }

    /* Bradley video testimonial — mobile padding (same as /case-studies) */
    .bvt-section {
        padding: 2.5rem 1rem;
    }

    .bvt-heading {
        font-size: 1.6rem;
    }

    .scale-cta-card-inner {
        padding: 2.5rem 1.25rem;
    }

    .scale-final-cta {
        padding-bottom: 4rem;
    }

    .scale-micro-proof {
        font-size: 0.72rem;
        gap: 0.3rem 0.5rem;
    }

    .scale-proof-dot {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Small phone (≤480px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .scale-guarantees-grid {
        grid-template-columns: 1fr;
    }

    .scale-hero-headline {
        font-size: 1.85rem;
        letter-spacing: 0;
    }

    .scale-section-title {
        font-size: 1.4rem;
    }

    .scale-step {
        grid-template-columns: 64px 1fr;
        gap: 1rem;
    }

    .scale-step-num {
        font-size: 2.5rem;
    }

    .scale-step-connector {
        margin-left: 31px;
    }

    .scale-btn-primary {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
    }

    .scale-header-cta {
        font-size: 0.65rem;
        padding: 0.5rem 0.85rem;
    }

    /* Wordmark text would collide with the CTA chip at this width — logo image only */
    .scale-header-logo {
        font-size: 0;
        gap: 0;
    }
}
