/**
 * BLADE BOSS — HOME PAGE STYLES
 *
 * Migrated from Home.html (2,387 lines of embedded CSS).
 * Zero Elementor. Zero !important. 100% design tokens.
 *
 * Depends on: design-tokens.css, base.css
 * Loaded by: BB_Public_Pages::registerAssets()
 *
 * Variable mapping from old → new:
 *   --bb-tactical-green  → --bb-green
 *   --bb-high-vis-orange → --bb-orange
 *   --bb-stealth-navy    → --bb-navy
 *   --bb-forest          → --bb-green-light
 *   --bb-emerald         → (removed, unused)
 *   --bb-grass           → --bb-green-bright
 *   --bb-mint            → --bb-green-mint
 *   --ease-out-expo      → --ease-out
 *   --ease-out-back      → --ease-out-back
 *
 * @since 2.3.0
 */


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Z-INDEX MANAGEMENT (home-specific layers)
   Uses design-token --z-* as base anchors
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Home hero is full-bleed behind nav — kill ALL top padding */
.bb-page-home {
    padding-top: 0;
}

.bb-page-home .bb-main {
    padding-top: 0;
}

.sticky-cta       { z-index: var(--z-nav); }                 /* 100 */
.lawn-score-widget { z-index: calc(var(--z-nav) - 1); }      /* 99 */
.trust-indicator  { z-index: calc(var(--z-nav) - 2); }       /* 98 */
.viewing-counter  { z-index: var(--z-above); }               /* 10 */
.exit-popup       { z-index: var(--z-toast); }               /* 2000 */


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   DEBUG PANEL
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.debug-mode {
    position: fixed;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.92);
    color: #00ff00;
    padding: var(--space-3);
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    z-index: 9999;
    max-width: 300px;
    border: 1px solid #00ff00;
    border-radius: var(--radius-sm);
    display: none;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.debug-mode.active {
    display: block;
}

.debug-line {
    margin: 4px 0;
    padding: 2px 0;
    border-bottom: 1px solid rgba(0, 255, 0, 0.15);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   VIEWING COUNTER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.viewing-counter {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--bb-white);
    padding: 0.65rem 1.15rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-sm);
    color: var(--bb-charcoal);
    animation: bb-slideInRight 0.5s var(--ease-out);
}

.viewing-dot {
    width: 8px;
    height: 8px;
    background: var(--bb-green-bright);
    border-radius: 50%;
    animation: bb-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    background: var(--bb-navy);
    overflow: hidden;
    padding-top: 200px;
    padding-bottom: var(--space-10);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 94, 52, 0.8) 0%, rgba(10, 15, 21, 0.92) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-6);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    align-items: center;
}

.hero-text h1 {
    font-size: var(--text-5xl);
    color: var(--bb-white);
    margin-bottom: var(--space-5);
    animation: bb-slideInLeft 0.8s var(--ease-out);
    letter-spacing: -0.02em;
}

.hero-text h1,
.hero-text h1 * {
    color: var(--bb-white);
}

.hero-text h1 .hero-highlight {
    color: var(--bb-green-bright);
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.hero-brand {
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--bb-green-bright);
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    animation: bb-fadeIn 0.5s var(--ease-out);
}

.hero-highlight {
    color: var(--bb-green-bright);
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
    display: inline-block;
    animation: bb-glow 2s ease-in-out infinite alternate;
}

.hero-subtext {
    font-size: var(--text-xl);
    color: var(--bb-white);
    margin-bottom: var(--space-6);
    opacity: 0.9;
    animation: bb-slideInLeft 0.8s var(--ease-out) 0.2s both;
}

.hero-cta-group {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    animation: bb-slideInLeft 0.8s var(--ease-out) 0.4s both;
    margin-bottom: var(--space-8);
}

/* Hero context: secondary buttons are white on dark */
.hero .btn-secondary {
    color: var(--bb-white);
    border-color: var(--bb-white);
}

.hero .btn-secondary:hover {
    background: var(--bb-white);
    color: var(--bb-green);
}


/* ━━━ Trust Badges ━━━ */

.trust-badges {
    display: flex;
    gap: var(--space-6);
    animation: bb-fadeIn 1s var(--ease-out) 0.8s both;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--bb-white);
    opacity: 0.9;
    font-size: var(--text-sm);
}

.trust-badge-icon {
    width: 24px;
    height: 24px;
    color: var(--bb-green-bright);
    flex-shrink: 0;
}


/* ━━━ Hero Before/After Slider ━━━ */

.hero-transform {
    position: relative;
    animation: bb-slideInRight 0.8s var(--ease-out) 0.6s both;
}

.transform-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.transform-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.before-after-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    cursor: grab;
    background: var(--bb-charcoal);
    touch-action: pan-y;
}

.before-after-slider:active {
    cursor: grabbing;
}

.ba-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
}

.ba-after {
    clip-path: inset(0 0 0 50%);
    will-change: clip-path;
}

.ba-slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--bb-orange);
    transform: translateX(-50%);
    cursor: ew-resize;
    z-index: 10;
    will-change: left;
    transition: width var(--duration-fast) var(--ease-out);
}

.ba-slider-handle:hover {
    width: 5px;
}

.ba-slider-handle::before {
    content: '\25C0 \25B6';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    background: var(--bb-orange);
    border: 3px solid var(--bb-white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    font-size: 11px;
    color: var(--bb-white);
    font-weight: 700;
    letter-spacing: 3px;
    transition: transform var(--duration-normal) var(--ease-out);
}

.ba-slider-handle:hover::before {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.ba-label {
    position: absolute;
    padding: 0.4rem 0.85rem;
    background: rgba(0, 0, 0, 0.7);
    color: var(--bb-white);
    font-weight: 700;
    font-size: var(--text-xs);
    border-radius: var(--radius-sm);
    letter-spacing: 0.05em;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.ba-label.before {
    top: 1rem;
    left: 1rem;
}

.ba-label.after {
    top: 1rem;
    right: 1rem;
}

.transform-caption {
    text-align: center;
    margin-top: var(--space-4);
    color: var(--bb-white);
    font-size: var(--text-sm);
    opacity: 0.85;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ACTIVITY TICKER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.activity-ticker {
    background: var(--bb-navy);
    color: var(--bb-white);
    padding: 0.85rem 0;
    position: relative;
    overflow: hidden;
}

.ticker-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
}

.ticker-icon {
    color: var(--bb-green-bright);
    flex-shrink: 0;
}

.ticker-icon.pulse {
    animation: bb-pulse 2s ease-in-out infinite;
}

.ticker-content {
    font-size: var(--text-sm);
    opacity: 0.9;
}

.ticker-item {
    animation: bb-slideInFromRight 0.4s var(--ease-out);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TRANSFORMATION GALLERY
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.transformation-gallery {
    background: var(--bb-off-white);
    position: relative;
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.transformation-card {
    background: var(--bb-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition:
        transform 0.4s var(--ease-out),
        box-shadow 0.4s var(--ease-out);
    cursor: pointer;
    transform-origin: center bottom;
}

.transformation-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-xl);
}

.transform-images {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: var(--bb-charcoal);
}

.transform-before,
.transform-after {
    position: absolute;
    width: 50%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.transform-before {
    left: 0;
}

.transform-after {
    right: 0;
}

.transformation-card:hover .transform-before {
    transform: scale(1.05);
}

.transformation-card:hover .transform-after {
    transform: scale(1.05);
}

.transform-divider {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--bb-white);
    transform: translateX(-50%);
    z-index: 1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

.transform-divider::before {
    content: 'VS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bb-orange);
    color: var(--bb-white);
    padding: 0.2rem 0.5rem;
    font-size: var(--text-xs);
    font-weight: 700;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.transform-labels {
    position: absolute;
    top: var(--space-3);
    left: var(--space-3);
    right: var(--space-3);
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.transform-label {
    padding: 0.2rem 0.65rem;
    background: rgba(0, 0, 0, 0.75);
    color: var(--bb-white);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    letter-spacing: 0.05em;
}

.transform-info {
    padding: var(--space-5);
}

.transform-timeline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--bb-green);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: var(--text-sm);
}

.transform-description {
    color: var(--bb-charcoal);
    margin-bottom: var(--space-4);
    line-height: 1.7;
    font-size: var(--text-base);
}

.transform-stats {
    display: flex;
    gap: var(--space-6);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--bb-green);
    font-family: var(--font-display);
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--bb-mid-gray);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   VIDEO TESTIMONIAL
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.video-testimonial {
    background: linear-gradient(135deg, var(--bb-green) 0%, var(--bb-green-light) 100%);
    color: var(--bb-white);
    text-align: center;
}

.video-testimonial .section-title,
.video-testimonial .section-subtitle {
    color: var(--bb-white);
}

.video-testimonial .section-subtitle {
    opacity: 0.9;
}

.video-wrapper {
    position: relative;
    max-width: var(--max-width-sm);
    margin: 0 auto var(--space-8);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-thumbnail {
    position: relative;
    padding-bottom: 56.25%;
    background: var(--bb-charcoal);
}

.video-thumbnail img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--bb-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        transform var(--duration-slow) var(--ease-out-back),
        box-shadow var(--duration-slow) var(--ease-out);
    box-shadow: 0 4px 20px rgba(245, 120, 66, 0.5);
    border: none;
    padding: 0;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 6px 30px rgba(245, 120, 66, 0.7);
}

.play-icon {
    width: 0;
    height: 0;
    border-left: 22px solid var(--bb-white);
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    margin-left: 4px;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PROCESS SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.process-section {
    background: var(--bb-white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
}

.process-step {
    text-align: center;
    padding: var(--space-6);
    transition: transform var(--duration-slow) var(--ease-out-back);
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--bb-orange);
    color: var(--bb-white);
    font-size: var(--text-xl);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto var(--space-5);
    box-shadow: 0 4px 12px rgba(245, 120, 66, 0.3);
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(245, 120, 66, 0.4);
}

.step-title {
    font-size: var(--text-2xl);
    color: var(--bb-charcoal);
    margin-bottom: var(--space-4);
}

.step-description {
    color: var(--bb-mid-gray);
    line-height: 1.8;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TOOLS PREVIEW
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.tools-preview {
    background: var(--bb-off-white);
}

.tools-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    align-items: center;
    margin-bottom: var(--space-10);
}

.tool-mockup {
    transform: perspective(1000px) rotateY(-8deg);
    transition: transform 0.5s var(--ease-out);
}

.tool-mockup:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.tool-screen {
    background: var(--bb-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.tool-header {
    background: var(--bb-green);
    padding: 0.85rem var(--space-4);
    display: flex;
    gap: 0.5rem;
}

.tool-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.tool-content {
    padding: var(--space-6);
}

.tool-features li {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
    font-size: var(--text-base);
    color: var(--bb-charcoal);
    line-height: 1.5;
}

.check-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: var(--bb-green);
    color: var(--bb-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NEIGHBORHOOD COMPARISON
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.neighborhood-comparison {
    background: linear-gradient(135deg, var(--bb-off-white) 0%, var(--bb-smoke) 100%);
}

.comparison-wrapper {
    position: relative;
    z-index: 1;
}

.comparison-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.text-strike {
    text-decoration: line-through;
    opacity: 0.5;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-6);
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-card {
    background: var(--bb-white);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition:
        transform var(--duration-slow) var(--ease-out),
        box-shadow var(--duration-slow) var(--ease-out);
    border: 3px solid transparent;
}

.comparison-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.your-lawn {
    border-color: var(--bb-ash);
}

.neighbor-lawn {
    border-color: var(--bb-green);
    position: relative;
}

.neighbor-lawn::before {
    content: 'WINNING';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bb-green);
    color: var(--bb-white);
    padding: 0.2rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.lawn-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 3rem;
}

.lawn-icon.unknown {
    background: var(--bb-smoke);
    color: var(--bb-mid-gray);
}

.lawn-icon.good {
    background: var(--bb-green-mint);
    color: var(--bb-green);
}

.comparison-card h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-5);
    color: var(--bb-charcoal);
}

.score-meter {
    margin-bottom: var(--space-5);
}

.score-track {
    height: 28px;
    background: var(--bb-smoke);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.score-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--bb-green) 0%, var(--bb-green-bright) 100%);
    border-radius: var(--radius-full);
    transition: width 1s var(--ease-out);
}

.score-fill.unknown {
    background: repeating-linear-gradient(
        45deg,
        var(--bb-mid-gray),
        var(--bb-mid-gray) 10px,
        var(--bb-ash) 10px,
        var(--bb-ash) 20px
    );
    width: 100%;
    opacity: 0.3;
}

.score-fill.good {
    animation: bb-fillProgress 1.5s var(--ease-out);
}

.score-label {
    font-weight: 700;
    color: var(--bb-charcoal);
    font-size: var(--text-sm);
}

.lawn-issues,
.lawn-achievements {
    text-align: left;
    margin: var(--space-5) 0;
}

.lawn-issues li,
.lawn-achievements li {
    padding: 0.5rem 0;
    color: var(--bb-charcoal);
    font-size: var(--text-base);
}

.neighbor-secret {
    background: var(--bb-green-mint);
    padding: var(--space-4);
    border-radius: var(--radius-md);
    margin-top: var(--space-4);
    font-size: var(--text-sm);
}

.comparison-vs {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--bb-orange);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: bb-pulse 2s ease-in-out infinite;
}

.comparison-cta {
    text-align: center;
    margin-top: var(--space-8);
}

.comparison-message {
    font-size: var(--text-xl);
    margin-bottom: var(--space-6);
    color: var(--bb-charcoal);
}

.stat-highlight {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--bb-green);
    font-family: var(--font-display);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ZONE DETECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.zone-detection {
    background: linear-gradient(135deg, var(--bb-green-mint) 0%, var(--bb-off-white) 100%);
}

.zone-hero {
    text-align: center;
    padding: var(--space-8);
    background: var(--bb-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    border: 2px solid transparent;
    transition:
        border-color var(--duration-slow) var(--ease-out),
        transform var(--duration-slow) var(--ease-out),
        box-shadow var(--duration-slow) var(--ease-out);
}

.zone-hero.zone-detected {
    border-color: var(--bb-green);
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(30, 94, 52, 0.15);
}

.zone-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bb-green);
    color: var(--bb-white);
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-full);
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-5);
    transition: all var(--duration-slow) var(--ease-out);
}

.zone-badge.success {
    background: var(--bb-orange);
    animation: bb-successPulse 0.6s var(--ease-out);
}

.zone-cityline {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--bb-charcoal);
    margin-bottom: var(--space-4);
    min-height: 2rem;
    font-family: var(--font-display);
}

.zone-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: var(--text-base);
    color: var(--bb-mid-gray);
    margin-bottom: var(--space-6);
}

.zone-icon {
    color: var(--bb-green);
}

.zone-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* Circular utility buttons — no .btn base needed */
.zone-refresh {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    width: 36px;
    height: 36px;
    min-width: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--bb-ash);
    cursor: pointer;
    transition:
        background var(--duration-normal) var(--ease-out),
        color var(--duration-normal) var(--ease-out),
        transform var(--duration-slow) var(--ease-out);
    color: var(--bb-mid-gray);
}

.zone-refresh:hover {
    background: var(--bb-green);
    color: var(--bb-white);
    border-color: var(--bb-green);
    transform: rotate(180deg);
}

.zone-warning {
    margin-top: var(--space-6);
    padding: var(--space-5);
    background: var(--bb-smoke);
    border-radius: var(--radius-md);
    border: 1px solid var(--bb-ash);
}

.zip-input-group {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    margin: var(--space-4) 0;
}

#zip-input {
    padding: 0.75rem 1.25rem;
    font-size: var(--text-base);
    border: 2px solid var(--bb-ash);
    border-radius: var(--radius-md);
    text-align: center;
    width: 150px;
    transition:
        border-color var(--duration-normal) var(--ease-out),
        box-shadow var(--duration-normal) var(--ease-out);
}

#zip-input:focus {
    outline: none;
    border-color: var(--bb-green);
    box-shadow: 0 0 0 3px rgba(30, 94, 52, 0.1);
}

.zone-privacy {
    font-size: var(--text-sm);
    color: var(--bb-mid-gray);
    margin-top: var(--space-4);
}

.zone-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: var(--text-base);
    color: var(--bb-charcoal);
    font-weight: 500;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SOCIAL PROOF BAR
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.social-proof-bar {
    background: var(--bb-green);
    color: var(--bb-white);
    padding: var(--space-8) 0;
    position: relative;
    overflow: hidden;
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    text-align: center;
}

.proof-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform var(--duration-slow) var(--ease-out);
}

.proof-stat:hover {
    transform: scale(1.05);
}

.proof-number {
    font-size: var(--text-4xl);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--bb-green-bright);
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
    font-family: var(--font-display);
}

.proof-label {
    font-size: var(--text-sm);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TESTIMONIAL CAROUSEL
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.testimonial-carousel-section {
    background: var(--bb-white);
    overflow: hidden;
}

.testimonial-carousel {
    position: relative;
    max-width: var(--max-width-sm);
    margin: 0 auto;
}

.testimonial-slide {
    width: 100%;
    padding: var(--space-6);
    display: none;
    text-align: center;
    animation: bb-fadeIn 0.4s var(--ease-out);
}

.testimonial-slide.active {
    display: block;
}

.testimonial-text {
    font-size: var(--text-2xl);
    line-height: 1.6;
    color: var(--bb-charcoal);
    margin-bottom: var(--space-6);
    font-style: italic;
}

.testimonial-author {
    margin-bottom: var(--space-4);
}

.testimonial-author strong {
    display: block;
    font-size: var(--text-base);
    color: var(--bb-charcoal);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--bb-mid-gray);
    font-size: var(--text-sm);
}

.testimonial-rating {
    font-size: var(--text-xl);
    color: var(--bb-orange);
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
    margin-top: var(--space-6);
}

.testimonial-prev,
.testimonial-next {
    width: 40px;
    height: 40px;
    min-width: 40px;
    padding: 0;
    background: var(--bb-green);
    color: var(--bb-white);
    border: none;
    border-radius: 50%;
    font-size: 1.15rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background var(--duration-normal) var(--ease-out),
        transform var(--duration-normal) var(--ease-out);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--bb-green-light);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bb-ash);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
}

.dot.active {
    background: var(--bb-green);
    transform: scale(1.3);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CTA SECTION (FINAL)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.cta-section {
    background: linear-gradient(135deg, var(--bb-green) 0%, var(--bb-green-light) 100%);
    color: var(--bb-white);
    text-align: center;
    padding: var(--space-12) 0;
}

.cta-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-5);
    color: var(--bb-white);
}

.cta-subtitle {
    font-size: var(--text-xl);
    margin-bottom: var(--space-8);
    opacity: 0.9;
    color: var(--bb-white);
}

.urgency-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.urgency-text {
    display: inline-block;
    background: var(--bb-orange);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    animation: bb-pulse 2s infinite;
}

.countdown-timer {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    background: rgba(245, 120, 66, 0.18);
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-md);
    flex-wrap: nowrap;
    justify-content: center;
}

.countdown-timer > * {
    flex-shrink: 0;
}

.timer-unit {
    text-align: center;
}

.timer-value {
    display: block;
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--bb-orange);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    font-family: var(--font-display);
}

.timer-label {
    display: block;
    font-size: var(--text-xs);
    text-transform: uppercase;
    opacity: 0.7;
    margin-top: 0.25rem;
}

.timer-separator {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--bb-orange);
    opacity: 0.5;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STICKY CTA
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 15, 21, 0.95);
    padding: var(--space-4);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    will-change: transform;
}

.sticky-cta.show {
    transform: translateY(0);
}

.sticky-cta-text {
    color: var(--bb-white);
    font-weight: 700;
    font-size: var(--text-base);
}

.sticky-cta .btn {
    padding: 0.65rem 1.75rem;
    font-size: var(--text-sm);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LAWN SCORE WIDGET
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.lawn-score-widget {
    position: fixed;
    bottom: 100px;
    right: 42px;
}

.widget-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bb-green);
    color: var(--bb-white);
    padding: 0.85rem 1.35rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: var(--text-sm);
    box-shadow: 0 4px 20px rgba(30, 94, 52, 0.3);
    transition:
        transform var(--duration-normal) var(--ease-out),
        box-shadow var(--duration-normal) var(--ease-out);
    position: relative;
}

.widget-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(30, 94, 52, 0.4);
}

.widget-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--bb-orange);
    color: var(--bb-white);
    font-size: 0.6rem;
    padding: 0.15rem 0.4rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    animation: bb-pulse 2s ease-in-out infinite;
}

.widget-panel {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 320px;
    background: var(--bb-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transform: scale(0) translateY(10px);
    transform-origin: bottom right;
    transition: transform var(--duration-slow) var(--ease-out-back);
    display: none;
    overflow: hidden;
}

.widget-panel.show {
    transform: scale(1) translateY(0);
    display: block;
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-5);
    border-bottom: 1px solid var(--bb-ash);
}

.widget-header h3 {
    margin: 0;
    font-size: var(--text-lg);
}

.widget-close {
    width: 30px;
    height: 30px;
    min-width: 30px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: none;
    border: none;
    color: var(--bb-mid-gray);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
}

.widget-close:hover {
    background: var(--bb-smoke);
    color: var(--bb-charcoal);
}

.widget-body {
    padding: var(--space-5);
}

.question {
    margin-bottom: var(--space-4);
}

.question label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-size: var(--text-sm);
    color: var(--bb-charcoal);
}

.question select {
    width: 100%;
    padding: 0.65rem var(--space-4);
    border: 2px solid var(--bb-ash);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    background: var(--bb-white);
    transition:
        border-color var(--duration-normal) var(--ease-out),
        box-shadow var(--duration-normal) var(--ease-out);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239A9A9A'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 36px;
}

.question select:focus {
    outline: none;
    border-color: var(--bb-green);
    box-shadow: 0 0 0 3px rgba(30, 94, 52, 0.1);
}

.widget-calculate {
    width: 100%;
    justify-content: center;
    margin-top: var(--space-4);
}

.widget-result {
    text-align: center;
    animation: bb-fadeIn 0.5s var(--ease-out);
}

.score-display {
    margin: var(--space-5) 0;
}

.score-display .score-label {
    font-size: var(--text-sm);
    color: var(--bb-mid-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.score-value {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: var(--bb-green);
    line-height: 1;
    font-family: var(--font-display);
}

.score-message {
    margin: var(--space-4) 0;
    color: var(--bb-charcoal);
    line-height: 1.6;
    font-size: var(--text-sm);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TRUST INDICATORS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.trust-indicator {
    position: fixed;
    bottom: 90px;
    left: 20px;
    background: var(--bb-white);
    padding: var(--space-4);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateX(-400px);
    transition: transform 0.5s var(--ease-out);
}

.trust-indicator.show {
    transform: translateX(0);
}

.trust-indicator-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--bb-green-mint);
    color: var(--bb-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-indicator-text {
    font-size: var(--text-sm);
    line-height: 1.4;
}

.trust-indicator-text strong {
    color: var(--bb-green);
    display: block;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   EXIT POPUP
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.exit-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.exit-popup.show {
    display: flex;
    animation: bb-fadeIn 0.3s var(--ease-out);
}

.exit-popup-content {
    background: var(--bb-white);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: bb-scaleIn 0.3s var(--ease-out-back) forwards;
    transform: scale(0.9);
}

.exit-popup-close {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    width: 36px;
    height: 36px;
    min-width: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: none;
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: var(--bb-mid-gray);
    transition: all var(--duration-normal) var(--ease-out);
}

.exit-popup-close:hover {
    background: var(--bb-smoke);
    color: var(--bb-charcoal);
}

.exit-popup h3 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
    color: var(--bb-charcoal);
}

.exit-popup p {
    font-size: var(--text-base);
    color: var(--bb-mid-gray);
    margin-bottom: var(--space-6);
    line-height: 1.6;
}

.exit-offer {
    background: var(--bb-green-mint);
    padding: var(--space-5);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-6);
    border: 2px dashed var(--bb-green);
}

.exit-offer-code {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--bb-green);
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.exit-offer-text {
    color: var(--bb-charcoal);
}

.exit-popup .btn {
    width: 100%;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   KEYFRAME ANIMATIONS
   All prefixed bb- to avoid collisions
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@keyframes bb-slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes bb-slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes bb-slideInFromRight {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes bb-fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes bb-pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.04); }
}

@keyframes bb-glow {
    from { text-shadow: 0 0 20px rgba(16, 185, 129, 0.5); }
    to   { text-shadow: 0 0 30px rgba(16, 185, 129, 0.8), 0 0 40px rgba(16, 185, 129, 0.4); }
}

@keyframes bb-fillProgress {
    from { width: 0; }
}

@keyframes bb-successPulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes bb-scaleIn {
    to { transform: scale(1); }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   VIDEO MODAL (YouTube overlay)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-modal);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: bb-fadeIn 0.3s var(--ease-out);
}

.video-modal-inner {
    width: 90%;
    max-width: 960px;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.5);
}

.video-modal-inner iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.video-modal-close {
    position: absolute;
    top: var(--space-6);
    right: var(--space-6);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--bb-white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--duration-normal) var(--ease-out);
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MOBILE RESPONSIVE — 768px and below
   Zero !important. Clean cascade.
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (max-width: 768px) {

    /* Hide non-essential on mobile */
    .viewing-counter,
    .trust-indicator,
    .debug-mode {
        display: none;
    }

    /* ━━━ Hero ━━━ */
    .hero {
        min-height: calc(100dvh - 116px);
        padding-top: calc(var(--nav-height-mobile) + 80px);
        padding-bottom: var(--space-6);
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-6);
        padding: 0 var(--space-4);
    }

    .hero-text h1 {
        font-size: clamp(1.85rem, 6.5vw, 2.5rem);
        margin-bottom: var(--space-4);
        line-height: 1.15;
    }

    .hero-text h1 br {
        display: none;
    }

    .hero-brand {
        font-size: 0.8rem;
        letter-spacing: 0.2em;
    }

    .hero-subtext {
        font-size: var(--text-base);
        margin-bottom: var(--space-5);
    }

    .hero-cta-group {
        justify-content: center;
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: var(--space-5);
    }

    .hero-cta-group .btn {
        width: 100%;
        padding: 0.85rem var(--space-6);
        font-size: var(--text-base);
    }

    .trust-badges {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: var(--space-4);
        justify-content: center;
    }

    .trust-badges::-webkit-scrollbar {
        display: none;
    }

    .trust-badge {
        flex-shrink: 0;
        font-size: var(--text-xs);
    }

    .hero-transform {
        margin-top: var(--space-4);
    }

    .before-after-slider {
        height: 280px;
    }

    /* ━━━ Activity Ticker ━━━ */
    .activity-ticker {
        padding: 0.6rem 0;
        font-size: var(--text-xs);
    }

    /* ━━━ Gallery ━━━ */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: var(--space-5);
    }

    .transform-images {
        height: 200px;
    }

    /* ━━━ Process ━━━ */
    .process-grid {
        grid-template-columns: 1fr;
        gap: var(--space-5);
    }

    .process-step {
        padding: var(--space-5);
    }

    .step-number {
        width: 44px;
        height: 44px;
        font-size: var(--text-lg);
    }

    /* ━━━ Tools Preview ━━━ */
    .tools-showcase {
        display: block;
    }

    .tools-showcase > div {
        margin-bottom: var(--space-6);
    }

    .tool-mockup {
        transform: none;
        max-width: 350px;
        margin: 0 auto var(--space-6);
    }

    .tools-showcase > div:last-child h3 {
        text-align: center;
        font-size: var(--text-2xl);
    }

    .tool-features li {
        margin-bottom: var(--space-4);
        font-size: var(--text-sm);
        align-items: flex-start;
    }

    /* ━━━ Comparison ━━━ */
    .comparison-grid {
        display: block;
        max-width: 400px;
        margin: 0 auto;
    }

    .comparison-card {
        margin-bottom: var(--space-5);
    }

    .comparison-vs {
        text-align: center;
        margin: var(--space-5) 0;
        font-size: var(--text-3xl);
    }

    /* ━━━ Zone Detection ━━━ */
    .zone-hero {
        padding: var(--space-6) var(--space-5);
    }

    .zone-actions {
        flex-direction: column;
    }

    .zone-actions .btn {
        width: 100%;
    }

    /* ━━━ Social Proof ━━━ */
    .proof-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-5);
    }

    .proof-number {
        font-size: var(--text-3xl);
    }

    .proof-label {
        font-size: var(--text-xs);
    }

    /* ━━━ Testimonials ━━━ */
    .testimonial-text {
        font-size: var(--text-lg);
    }

    .testimonial-nav {
        gap: var(--space-4);
    }

    /* ━━━ CTA Section ━━━ */
    .urgency-text {
        font-size: var(--text-sm);
        padding: 0.375rem var(--space-4);
    }

    .countdown-timer {
        padding: 0.75rem var(--space-4);
        gap: 0.25rem;
    }

    .timer-value {
        font-size: var(--text-2xl);
    }

    .timer-separator {
        font-size: var(--text-2xl);
    }

    .cta-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .cta-subtitle {
        font-size: var(--text-base);
    }

    /* ━━━ Sticky CTA ━━━ */
    .sticky-cta {
        bottom: 66px; /* 56px tabbar + 10px gap */
        padding: 0.65rem var(--space-4);
        flex-direction: column;
        gap: 0.5rem;
        left: 10px;
        right: 10px;
        border-radius: var(--radius-md) var(--radius-md) 0 0;
    }

    .sticky-cta-text {
        font-size: var(--text-sm);
        text-align: center;
    }

    .sticky-cta .btn {
        padding: 0.5rem var(--space-5);
        font-size: var(--text-sm);
        width: 100%;
    }

    /* ━━━ Widget ━━━ */
    .lawn-score-widget {
        bottom: auto;
        top: calc(var(--nav-height-mobile) + 8px);
        right: 10px;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .lawn-score-widget.nav-hidden {
        transform: translateY(calc(-1 * var(--nav-height-mobile)));
    }

    .widget-trigger {
        padding: 0.4rem 0.75rem;
        font-size: var(--text-xs);
        gap: 0.25rem;
    }

    .widget-trigger svg {
        width: 16px;
        height: 16px;
    }

    .widget-trigger span {
        display: none; /* Icon only */
    }

    .widget-badge {
        top: -4px;
        right: -4px;
        font-size: 0.5rem;
        padding: 0.1rem 0.2rem;
    }

    .widget-panel {
        position: fixed;
        bottom: 66px;
        left: 10px;
        right: 10px;
        width: auto;
        max-width: 400px;
        margin: 0 auto;
        transform-origin: top right;
    }

    /* ━━━ Video ━━━ */
    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-icon {
        border-left-width: 18px;
        border-top-width: 11px;
        border-bottom-width: 11px;
    }

    /* ━━━ Exit Popup ━━━ */
    .exit-popup-content {
        padding: var(--space-6);
        margin: var(--space-4);
        max-width: calc(100vw - 2rem);
    }

    .exit-popup h3 {
        font-size: var(--text-2xl);
    }

    .exit-offer-code {
        font-size: var(--text-2xl);
    }

    /* ━━━ Z-Index Hierarchy ━━━ */
    .exit-popup           { z-index: 9996; }
    .lawn-score-widget    { z-index: 9994; }
    .sticky-cta           { z-index: 9993; }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SMALL MOBILE (375px)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (max-width: 375px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }

    .proof-stats {
        grid-template-columns: 1fr;
    }

    .timer-value {
        font-size: var(--text-xl);
    }

    .timer-separator {
        font-size: var(--text-xl);
    }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LANDSCAPE MOBILE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .hero-transform {
        display: none;
    }

    .sticky-cta {
        display: none;
    }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   iOS SAFE AREAS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@supports (padding-bottom: env(safe-area-inset-bottom)) {
    @media (max-width: 768px) {
        .sticky-cta {
            bottom: calc(66px + var(--safe-bottom));
        }

        .widget-panel {
            bottom: calc(66px + var(--safe-bottom));
        }
    }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   REDUCED MOTION
   Respects user preference — kills all animations
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (prefers-reduced-motion: reduce) {
    .hero-text h1,
    .hero-brand,
    .hero-subtext,
    .hero-cta-group,
    .hero-transform,
    .trust-badges,
    .ticker-item,
    .viewing-counter,
    .testimonial-slide,
    .widget-panel,
    .exit-popup-content {
        animation: none;
    }

    .bb-reveal {
        opacity: 1;
        transform: none;
    }

    .transform-wrapper:hover {
        transform: none;
    }

    .hero-highlight {
        animation: none;
        text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
    }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRINT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media print {
    .progress-bar,
    .viewing-counter,
    .sticky-cta,
    .lawn-score-widget,
    .trust-indicator,
    .exit-popup,
    .debug-mode,
    .activity-ticker {
        display: none;
    }

    .hero {
        min-height: auto;
        background: var(--bb-white);
        color: var(--bb-charcoal);
    }
}
