﻿/* BUILD: 20260204-4 - Auto-versioned cache-busting (updated in index.html inline script) */
/* FIX_OVERFLOW_X_2026_02_02 - Mobile horizontal scroll prevention */
/* ================================
   CSS Reset & Base Styles
   ================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* FIX_OVERFLOW_X_2026_02_02 - Prevent text overflow */
h1, h2, h3, h4, h5, h6,
p, span, a, li, label {
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

:root {
    --build: "20260204-4";
    --color-primary: #ff7a00;
    --color-primary-dark: #e66d00;
    --color-primary-light: #ff9433;
    --color-text: #1a1a1a;
    --color-text-light: #666;
    --color-text-dark: #1a1a1a;
    --orange: #ff7a00;
    --color-bg: #ffffff;
    --color-surface: #f8f9fa;
    --color-border: #e0e0e0;
    --color-shadow: rgba(0, 0, 0, 0.08);
    --color-shadow-md: rgba(0, 0, 0, 0.12);
    --color-shadow-lg: rgba(0, 0, 0, 0.16);
    /* REMOVE_OLD_HEADER_2026_02_11: --tv-header-h removed */
    
    /* Spacing scale */
    --spacing-xs: clamp(0.5rem, 1vw, 0.75rem);
    --spacing-sm: clamp(0.75rem, 2vw, 1rem);
    --spacing-md: clamp(1rem, 3vw, 1.5rem);
    --spacing-lg: clamp(1.5rem, 4vw, 2rem);
    --spacing-xl: clamp(2rem, 5vw, 3rem);
    --spacing-2xl: clamp(3rem, 8vw, 5rem);
    
    /* Typography scale */
    --font-base: clamp(1rem, 2vw, 1.125rem);
    --font-sm: clamp(0.875rem, 1.5vw, 1rem);
    --font-xs: clamp(0.75rem, 1.2vw, 0.875rem);
    --font-lg: clamp(1.125rem, 2.5vw, 1.25rem);
    --font-xl: clamp(1.25rem, 3vw, 1.5rem);
    --font-2xl: clamp(1.5rem, 4vw, 2rem);
    --font-3xl: clamp(2rem, 5vw, 3rem);
    --font-4xl: clamp(2.5rem, 6vw, 4rem);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Animation system */
    --reveal-duration: 280ms;
    --reveal-distance: 14px;
    --reveal-stagger: 80ms;
    --hover-lift: -2px;
    --tap-scale: 0.98;
    
    /* Logo responsive sizing - clearly visible and readable */
    --logo-height: clamp(1.16rem, 2.89vw, 1.86rem);
    --logo-max-width: clamp(4.63rem, 18.53vw, 6.94rem);
    --logo-wrapper-max-width: clamp(10rem, 40vw, 15rem);
}

/* FIX_OVERFLOW_X_2026_02_02 - Prevent horizontal scroll */
html {
    scroll-behavior: auto;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: var(--font-base);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* MOBILE_UX_FIX_2026_02_11: Prevent horizontal scroll - ALL containers max-width 100% */
body,
html,
main,
section,
article,
header,
footer,
nav,
.container {
    max-width: 100%;
    overflow-x: hidden;
}

/* Ensure all images and media fit viewport without overflow */
img,
video,
iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

/* PREMIUM_UX_2026_02_03: Conditional bottom padding on mobile (only when dock is visible) */
@media (max-width: 768px) {
    body.dock-visible {
        padding-bottom: calc(120px + env(safe-area-inset-bottom, 0px));
    }
    body.dock-hidden {
        padding-bottom: 0 !important;
    }
}

/* FIX_OVERFLOW_X_2026_02_02 - Comprehensive responsive media styles */
img,
svg,
video,
iframe,
embed,
object {
    max-width: 100%;
    height: auto;
    display: block;
    box-sizing: border-box;
}

img {
    image-rendering: -webkit-optimize-contrast;
}

img[src$=".jpg"],
img[src$=".jpeg"],
img[src$=".png"],
img[src$=".webp"] {
    max-width: 100%;
    height: auto;
}

/* MODAL_SCROLL_LOCK_UNIFIED_2026_02_11 */
body.tv-modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* MODAL_SCROLL_LOCK_UNIFIED_2026_02_11 */
.tv-modal-open {
    overscroll-behavior: none;
}

/* FIX_OVERFLOW_X_2026_02_02 */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    box-sizing: border-box;
}

/* Global section overflow prevention */
section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* ================================
   Buttons
   ================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.625rem, 2vw, 0.75rem) clamp(1.25rem, 3vw, 1.5rem);
    font-size: var(--font-sm);
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    min-height: 48px;
    min-width: 48px;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 122, 0, 0.2);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(255, 122, 0, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--color-text);
    border: 2px solid var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-lg {
    padding: clamp(0.875rem, 2.5vw, 1rem) clamp(1.75rem, 4vw, 2rem);
    font-size: var(--font-base);
}

.btn-block {
    width: 100%;
}

.btn:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Quick Actions UI removed - simplified design */

/* Popover UI removed */

/* REMOVE_OLD_HEADER_2026_02_11: Header CSS removed */

/* ================================
   Hero Section
   ================================ */

.hero {
    position: relative;
    min-height: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(18px, 3vw, 36px) 0;
    margin-top: 0;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--color-primary) 50%, transparent 100%);
    opacity: 0.3;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-text {
    background: #ffffff;
    padding: clamp(2rem, 5vw, 3rem);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06),
                0 1px 6px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-align: center;
}

.hero-title {
    font-size: clamp(1.875rem, 5.5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    font-weight: 500;
    margin-bottom: clamp(0.875rem, 2.5vw, 1.25rem);
    color: var(--color-primary);
    line-height: 1.4;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: var(--color-text-light);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: clamp(0.75rem, 2vw, 1rem);
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

/* ================================
   Service Highlights Section
   ================================ */

.service-highlights {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.service-highlights .section-header {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.service-highlights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 2.5vw, 1.75rem);
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border-radius: clamp(14px, 3vw, 18px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: clamp(1rem, 3vw, 1.5rem);
    isolation: isolate;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.highlight-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    opacity: 0.9;
}

.highlight-content {
    display: grid;
    gap: clamp(0.4rem, 1vw, 0.65rem);
}

.highlight-title {
    font-size: clamp(1.05rem, 3.5vw, 1.25rem);
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
    letter-spacing: 0.01em;
}

.highlight-text {
    font-size: clamp(0.95rem, 3vw, 1.05rem);
    line-height: 1.6;
    color: var(--color-text-light);
    margin: 0;
}

.highlight-card[data-highlight="1"] .highlight-accent {
    background: linear-gradient(90deg, var(--color-primary) 0%, #ff9650 100%);
}

.highlight-card[data-highlight="2"] .highlight-accent {
    background: linear-gradient(90deg, #ff9650 0%, var(--color-primary-dark) 100%);
}

.highlight-card[data-highlight="3"] .highlight-accent {
    background: linear-gradient(90deg, #1f1f1f 0%, var(--color-primary) 100%);
}

@media (min-width: 900px) {
    .service-highlights-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .highlight-card {
        padding: clamp(0.9rem, 4vw, 1.25rem);
        border-radius: clamp(12px, 4vw, 16px);
    }
}

/* ================================
   Carousel Section
   ================================ */

.carousel-section {
    padding: var(--spacing-2xl) 0;
    background: var(--color-surface);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-size: var(--font-3xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.section-subtitle {
    font-size: var(--font-lg);
    color: var(--color-text-light);
}

.carousel-container {
    max-width: 900px;
    margin: 0 auto;
}

/* FIX_OVERFLOW_X_2026_02_02 */
.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: white;
    box-shadow: 0 4px 20px var(--color-shadow-md);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* FIX_OVERFLOW_X_2026_02_02 */
.carousel-track {
    display: flex;
    transition: transform var(--transition-slow);
    width: 100%;
    box-sizing: border-box;
}

/* FIX_OVERFLOW_X_2026_02_02 */
.carousel-slide {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 10;
    opacity: 0;
    transition: opacity var(--transition-base);
    box-sizing: border-box;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .carousel-slide {
        aspect-ratio: 4 / 3;
        max-height: 60vh;
    }
    
    .carousel-slide img {
        object-fit: contain;
        background: #f8f9fa;
    }
    
    /* GHOST_CTA_FIX_2026_02_03: Hide hero CTAs on mobile, use bottom dock instead */
    .hero-cta {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
        opacity: 0 !important;
    }
}

@media (max-width: 480px) {
    .carousel-slide {
        aspect-ratio: 1 / 1;
        max-height: 50vh;
    }
}

/* FIX_OVERFLOW_X_2026_02_02 */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 2px 8px var(--color-shadow);
    z-index: 10;
}

@media (max-width: 430px) {
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
}

.carousel-btn:hover {
    background: white;
    box-shadow: 0 4px 12px var(--color-shadow-md);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* FIX_OVERFLOW_X_2026_02_02 */
.carousel-btn-prev {
    left: max(var(--spacing-md), 8px);
}

.carousel-btn-next {
    right: max(var(--spacing-md), 8px);
}

@media (max-width: 430px) {
    .carousel-btn-prev {
        left: 4px;
    }
    .carousel-btn-next {
        right: 4px;
    }
}

.carousel-btn svg {
    color: var(--color-text);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-border);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
    min-width: 44px;
    min-height: 44px;
    position: relative;
}

.carousel-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-border);
    transition: all var(--transition-base);
}

.carousel-dot.active::before {
    background: var(--color-primary);
    width: 32px;
    border-radius: 6px;
}

.carousel-dot:hover::before {
    background: var(--color-primary-light);
}

/* ================================
   Services Section
   ================================ */

.services {
    padding: var(--spacing-2xl) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: var(--spacing-lg);
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(0.75rem, 3vw, 1rem);
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: clamp(0.75rem, 3vw, 1rem);
    }
}

.service-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: 0 2px 12px var(--color-shadow);
    transition: all var(--transition-base);
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid var(--color-border);
    cursor: pointer;
    user-select: none;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--color-shadow-md);
    border-color: var(--color-primary);
}

.service-card:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 0 4px 16px var(--color-shadow-md);
    border-color: var(--color-primary);
}

@media (max-width: 768px) {
    .service-card {
        padding: clamp(0.75rem, 3vw, 1rem);
        border-radius: clamp(8px, 2vw, 10px);
    }
    
    .service-card:active {
        transform: scale(0.95);
        border-color: var(--color-primary);
        box-shadow: 0 0 0 2px rgba(255, 122, 0, 0.3);
    }
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

@media (max-width: 768px) {
    .service-icon {
        width: clamp(48px, 12vw, 56px);
        height: clamp(48px, 12vw, 56px);
        border-radius: clamp(8px, 2vw, 10px);
        margin-bottom: clamp(0.5rem, 2vw, 0.75rem);
    }
    
    .service-icon svg {
        width: clamp(24px, 6vw, 32px);
        height: clamp(24px, 6vw, 32px);
    }
}

.service-icon svg {
    color: white;
}

.service-title {
    font-size: var(--font-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
    line-height: 1.3;
}

.service-description {
    font-size: var(--font-sm);
    color: var(--color-text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .service-title {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
        margin-bottom: clamp(0.25rem, 1.5vw, 0.5rem);
    }
    
    .service-description {
        font-size: clamp(0.75rem, 2.5vw, 0.875rem);
        line-height: 1.4;
    }
}

/* ================================
   Service Modal
   ================================ */

.tvx-service-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
    padding: var(--spacing-md);
    box-sizing: border-box;
}

.tvx-service-modal[data-visible="true"] {
    opacity: 1;
    pointer-events: auto;
}

.tvx-service-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.tvx-service-modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    max-width: min(90vw, 600px);
    max-height: calc(90vh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform var(--transition-base);
    margin: auto;
    overflow: hidden;
    box-sizing: border-box;
}

.tvx-service-modal[data-visible="true"] .tvx-service-modal-content {
    transform: translateY(0);
}

.tvx-service-modal-header {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 1rem);
    padding: clamp(1rem, 4vw, 1.5rem);
    padding-bottom: clamp(0.75rem, 3vw, 1rem);
    border-bottom: 1px solid var(--color-border);
    min-height: 60px;
    flex-shrink: 0;
}

.tvx-service-modal-nav-left,
.tvx-service-modal-actions-right {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 0.75rem);
}

.tvx-service-modal-nav {
    background: white;
    border: 2px solid var(--color-border);
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    color: var(--color-text);
    flex-shrink: 0;
}

.tvx-service-modal-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: clamp(1rem, 4vw, 1.5rem);
    padding-bottom: calc(clamp(1rem, 4vw, 1.5rem) + env(safe-area-inset-bottom, 0px));
}

.tvx-service-modal-nav:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(255, 122, 0, 0.05);
}

.tvx-service-modal-nav:active {
    transform: scale(0.9);
    background: rgba(255, 122, 0, 0.1);
}

.tvx-service-modal-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: var(--color-border);
    color: var(--color-text-light);
}

.tvx-service-modal-nav:disabled:hover {
    background: white;
    border-color: var(--color-border);
    color: var(--color-text-light);
}

.tvx-service-modal-close {
    background: var(--color-surface);
    border: none;
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--color-text-light);
    flex-shrink: 0;
}

.tvx-service-modal-close:hover {
    background: var(--color-border);
    color: var(--color-text);
}

.tvx-service-modal-close:active {
    transform: scale(0.9);
}

.tvx-service-modal-title {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.2;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.tvx-service-modal-description {
    font-size: clamp(1rem, 3vw, 1.125rem);
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.tvx-service-modal-details {
    margin-bottom: var(--spacing-xl);
}

.tvx-service-modal-details h4 {
    font-size: clamp(0.9rem, 3vw, 1rem);
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.tvx-service-modal-details h4:first-child {
    margin-top: 0;
}

.tvx-service-modal-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tvx-service-modal-details li {
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-lg);
    position: relative;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    color: var(--color-text);
    line-height: 1.5;
}

.tvx-service-modal-details li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.2em;
}

.tvx-service-modal-actions {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.tvx-service-modal-actions .btn {
    flex: 1;
    min-width: 140px;
}

@media (max-width: 480px) {
    .tvx-service-modal-header {
        grid-template-columns: 40px 1fr auto;
        padding: clamp(0.75rem, 3vw, 1rem);
        gap: clamp(0.375rem, 1.5vw, 0.5rem);
        min-height: 56px;
    }
    
    .tvx-service-modal-actions {
        flex-direction: column;
    }
    
    .tvx-service-modal-actions .btn {
        width: 100%;
    }
    
    .tvx-service-modal-nav {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .tvx-service-modal-nav svg {
        width: 18px;
        height: 18px;
    }
    
    .tvx-service-modal-close {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .tvx-service-modal-close svg {
        width: 20px;
        height: 20px;
    }
    
    .tvx-service-modal-title {
        font-size: clamp(0.95rem, 3.5vw, 1.1rem);
    }
}

/* Reduced motion for modal */
@media (prefers-reduced-motion: reduce) {
    .tvx-service-modal-content {
        transform: none;
        transition: opacity var(--transition-fast);
    }
    
    .tvx-service-modal[data-visible="true"] .tvx-service-modal-content {
        transform: none;
    }
}

/* ================================
   Quote Form Section
   ================================ */

.quote-section {
    padding: var(--spacing-2xl) 0;
}

.quote-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: clamp(1rem, 4vw, var(--spacing-xl));
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--color-shadow);
    width: 100%;
    box-sizing: border-box;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    width: 100%;
    box-sizing: border-box;
}

/* Vehicle status row */
.vehicle-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm);
    margin-top: 10px;
    border-radius: 8px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
}

.status-badges {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: var(--font-xs);
    font-weight: 600;
    background: #f1f5f9;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.status-badge.valid {
    background: #d1fae5;
    color: #065f46;
    border-color: #a7f3d0;
}

.status-badge.expired {
    background: #fee2e2;
    color: #7f1d1d;
    border-color: #fecaca;
}

.link-reset {
    background: none;
    border: none;
    color: var(--color-primary);
    font-weight: 600;
    cursor: pointer;
    padding: 6px 8px;
}

.manual-vehicle {
    padding: var(--spacing-sm);
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--color-border);
}

.manual-vehicle .form-group input[list] {
    background: #fff;
}

.vehicle-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--font-sm);
    color: var(--color-text-light);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: var(--spacing-lg);
    width: 100%;
    box-sizing: border-box;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    width: 100%;
    box-sizing: border-box;
}

.form-group label {
    font-size: var(--font-sm);
    font-weight: 600;
    color: var(--color-text);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: clamp(0.75rem, 2vw, 0.875rem);
    font-size: 16px; /* iOS fix: prevent zoom on focus */
    font-family: inherit;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    background: white;
    color: var(--color-text);
    transition: all var(--transition-base);
    min-height: 48px;
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    padding: var(--spacing-md);
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ================================
   Footer
   ================================ */

.footer {
    background: var(--color-text);
    color: white;
    padding: clamp(var(--spacing-lg), 5vw, var(--spacing-xl)) 0 var(--spacing-lg);
    width: 100%;
    box-sizing: border-box;
    padding-left: max(0, env(safe-area-inset-left));
    padding-right: max(0, env(safe-area-inset-right));
    padding-bottom: max(var(--spacing-lg), env(safe-area-inset-bottom));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: clamp(var(--spacing-lg), 4vw, var(--spacing-xl));
    margin-bottom: var(--spacing-lg);
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

.footer-brand {
    font-size: var(--font-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
}

.footer-tagline {
    font-size: var(--font-sm);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-sm);
}

.footer-hours {
    font-size: var(--font-sm);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-top: var(--spacing-sm);
}

.footer h4 {
    font-size: var(--font-base);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
}

.footer-contact p {
    margin-bottom: var(--spacing-xs);
    font-size: var(--font-sm);
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer a:hover {
    color: var(--color-primary);
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
    font-size: var(--font-sm);
    color: rgba(255, 255, 255, 0.6);
}

/* ================================
   Animations & Utilities
   ================================ */

@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;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   Responsive Design
   ================================ */

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: calc(clamp(56px, 6vw, 64px));
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: var(--spacing-lg);
        box-shadow: 0 8px 16px var(--color-shadow);
        transform: translateY(-200%);
        opacity: 0;
        transition: all var(--transition-base);
        border-bottom: 1px solid var(--color-border);
    }
    

    
    .hero-cta {
        flex-direction: column;
        gap: var(--spacing-md);
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn-prev {
        left: var(--spacing-sm);
    }
    
    .carousel-btn-next {
        right: var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .hero-text {
        padding: var(--spacing-lg);
    }
    
    .quote-form-container {
        padding: var(--spacing-lg);
    }
    
    .quote-form {
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-group {
        width: 100%;
        box-sizing: border-box;
    }
    
    .service-card {
        padding: var(--spacing-md);
    }
    
    .team-info {
        padding: var(--spacing-md);
    }
    
    .tvx-service-modal-content {
        margin: var(--spacing-md);
        max-width: calc(100vw - 2 * var(--spacing-md));
    }
}

/* ================================
   How It Works Section
   ================================ */

/* ================================
   PREMIUM_HOW_2026_02_03: How It Works Swipe Carousel
   ================================ */
.how-it-works {
    padding: clamp(2rem, 5vw, 3.5rem) 0;
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
}

.tv-how {
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
    position: relative;
}

/* Mobile: Swipe Carousel */
.tv-how__track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: clamp(12px, 3vw, 16px);
    padding: 8px 4px 12px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.tv-how__track::-webkit-scrollbar {
    display: none;
}

.tv-how__step {
    min-width: 86%;
    scroll-snap-align: center;
    background: white;
    border-radius: clamp(14px, 3.5vw, 18px);
    padding: clamp(18px, 4.5vw, 24px) clamp(16px, 4vw, 20px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(25, 108, 198, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
}

.tv-how__step:active {
    transform: scale(0.98);
}

.tv-how__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(40px, 10vw, 48px);
    height: clamp(40px, 10vw, 48px);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: white;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: clamp(10px, 2.5vw, 14px);
    box-shadow: 0 4px 10px rgba(255, 122, 0, 0.25);
}

.tv-how__icon {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    margin-bottom: clamp(8px, 2vw, 12px);
    opacity: 0.9;
}

.tv-how__title {
    font-size: clamp(1.1rem, 3vw, 1.35rem);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: clamp(8px, 2vw, 10px);
    line-height: 1.3;
}

.tv-how__desc {
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    color: var(--color-text-light);
    line-height: 1.5;
    margin-bottom: clamp(10px, 2.5vw, 12px);
}

.tv-how__hint {
    font-size: clamp(0.8rem, 2vw, 0.875rem);
    color: var(--color-primary);
    font-weight: 600;
    opacity: 0.85;
    font-style: italic;
    margin-top: clamp(6px, 1.5vw, 8px);
}

/* Dots Navigation */
.tv-how__dots {
    display: flex;
    justify-content: center;
    gap: clamp(8px, 2vw, 10px);
    margin-top: clamp(14px, 3.5vw, 18px);
    padding: 0;
}

.tv-how__dot {
    width: clamp(8px, 2vw, 10px);
    height: clamp(8px, 2vw, 10px);
    border-radius: 50%;
    background: rgba(25, 108, 198, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.tv-how__dot.active {
    background: var(--color-primary);
    width: clamp(22px, 5vw, 28px);
    border-radius: clamp(4px, 1vw, 5px);
}

.tv-how__dot:hover:not(.active) {
    background: rgba(25, 108, 198, 0.4);
}

.how-cta {
    display: flex;
    gap: clamp(10px, 2.5vw, 14px);
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 clamp(12px, 3vw, 16px);
}

/* Desktop: 3-Column Grid */
@media (min-width: 769px) {
    .tv-how__track {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(1.5rem, 2.5vw, 2rem);
        overflow: visible;
        scroll-snap-type: none;
    }
    
    .tv-how__step {
        min-width: auto;
        scroll-snap-align: start;
    }
    
    .tv-how__step:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(25, 108, 198, 0.08);
        border-color: rgba(25, 108, 198, 0.2);
    }
    
    .tv-how__dots {
        display: none;
    }
    
    .how-cta {
        margin-top: clamp(1.5rem, 3vw, 2rem);
    }
}

/* Tablet adjustments */
@media (max-width: 768px) {
    .how-it-works {
        padding: clamp(1.5rem, 4vw, 2rem) 0;
    }
    
    .how-cta {
        flex-direction: column;
    }
    
    .how-cta .btn {
        width: 100%;
        max-width: 100%;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .tv-how__step,
    .tv-how__dot {
        transition: none;
    }
}

/* ================================
   Premium Why Transvortex (Swipe + Dots)
   ================================ */
.why-transvortex {
    padding: clamp(1.75rem, 4.5vw, 2.75rem) 0;
}

.tv-why {
    position: relative;
}

.tv-why__track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: clamp(12px, 3vw, 16px);
    padding: 8px 6px 12px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.tv-why__track::-webkit-scrollbar {
    display: none;
}

.tv-why__card {
    min-width: 88%;
    scroll-snap-align: center;
    background: #ffffff;
    border-radius: clamp(16px, 4vw, 20px);
    padding: clamp(16px, 4vw, 20px);
    border: 1px solid rgba(25, 108, 198, 0.1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.tv-why__card:active {
    transform: scale(0.98);
}

.tv-why__icon {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    margin-bottom: clamp(8px, 2vw, 10px);
}

.tv-why__title {
    font-size: clamp(1.05rem, 2.8vw, 1.2rem);
    font-weight: 700;
    margin-bottom: clamp(6px, 1.8vw, 8px);
    color: var(--color-text);
}

.tv-why__summary {
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    color: var(--color-text-light);
    line-height: 1.5;
    margin-bottom: clamp(10px, 2.5vw, 12px);
}

.tv-why__more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(6px, 1.6vw, 8px) clamp(14px, 3.2vw, 18px);
    border-radius: 999px;
    border: 1px solid rgba(25, 108, 198, 0.2);
    background: rgba(25, 108, 198, 0.06);
    color: var(--color-primary);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.tv-why__more:hover {
    background: rgba(25, 108, 198, 0.12);
    border-color: rgba(25, 108, 198, 0.35);
    transform: translateY(-1px);
}

.tv-why__more:focus-visible {
    outline: 2px solid rgba(25, 108, 198, 0.4);
    outline-offset: 2px;
}

.tv-why__dots {
    display: flex;
    justify-content: center;
    gap: clamp(8px, 2vw, 10px);
    margin-top: clamp(12px, 3vw, 16px);
}

.tv-why__dot {
    width: clamp(8px, 2vw, 10px);
    height: clamp(8px, 2vw, 10px);
    border-radius: 999px;
    background: rgba(25, 108, 198, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.tv-why__dot.active {
    width: clamp(20px, 4.5vw, 26px);
    background: var(--color-primary);
}

.tv-why__trust {
    text-align: center;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: var(--color-text-light);
    margin-top: clamp(10px, 2.5vw, 14px);
}

@media (min-width: 769px) {
    .tv-why__track {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: clamp(1rem, 2.5vw, 1.5rem);
        overflow: visible;
        scroll-snap-type: none;
    }

    .tv-why__card {
        min-width: auto;
    }

    .tv-why__card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(25, 108, 198, 0.1);
        border-color: rgba(25, 108, 198, 0.25);
    }

    .tv-why__dots {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tv-why__card,
    .tv-why__dot,
    .tv-why__more {
        transition: none;
    }
}

/* ================================
   Why Modal (Premium)
   ================================ */
.tv-why-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(16px, 4vw, 24px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tv-why-modal[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

.tv-why-modal__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.tv-why-modal__container {
    position: relative;
    width: 100%;
    max-width: min(92vw, 520px);
    max-height: 80vh;
    background: #ffffff;
    border-radius: clamp(16px, 4vw, 20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.96);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tv-why-modal[aria-hidden="false"] .tv-why-modal__container {
    transform: scale(1);
}

.tv-why-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(16px, 4vw, 20px) clamp(18px, 4.5vw, 24px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.tv-why-modal__title {
    font-size: clamp(1.1rem, 3vw, 1.35rem);
    font-weight: 700;
    margin: 0;
    color: var(--color-text);
}

.tv-why-modal__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(32px, 8vw, 40px);
    height: clamp(32px, 8vw, 40px);
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    color: var(--color-text-light);
    cursor: pointer;
    transition: all 0.2s ease;
}

.tv-why-modal__close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--color-text);
}

.tv-why-modal__content {
    padding: clamp(18px, 4.5vw, 24px);
    overflow-y: auto;
    flex: 1;
    -webkit-overflow-scrolling: touch;
}

.tv-why-modal__desc {
    font-size: clamp(0.95rem, 2.2vw, 1.05rem);
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: clamp(16px, 4vw, 20px);
}

.tv-why-modal__section {
    margin-bottom: clamp(16px, 4vw, 20px);
}

.tv-why-modal__section:last-child {
    margin-bottom: 0;
}

.tv-why-modal__section-title {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: clamp(8px, 2vw, 10px);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tv-why-modal__section-title::before {
    content: '';
    width: 4px;
    height: clamp(16px, 4vw, 20px);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: 2px;
}

.tv-why-modal__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tv-why-modal__list li {
    padding-left: clamp(20px, 5vw, 24px);
    margin-bottom: clamp(8px, 2vw, 10px);
    position: relative;
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    color: var(--color-text-light);
    line-height: 1.5;
}

.tv-why-modal__list li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

/* ================================
   Mobile Sticky Action Bar
   ================================ */

/* ================================
   Mobile Quick Actions Widget
   ================================ */

/* DESKTOP: Hidden by default (no PNG dock on desktop/tablet) */
#quickActionsRow {
    display: none !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* MOBILE ONLY: Show dock on screens ≤ 768px */
@media (max-width: 768px) {
    #quickActionsRow {
        display: flex !important;
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        bottom: calc(clamp(0.6rem, 1.5vw, 1rem) + env(safe-area-inset-bottom, 0.6rem)) !important;
        z-index: 9999 !important;
        margin: 0 auto !important;
        transform: translateX(0) !important;
        align-items: flex-end !important;
        justify-content: center !important;
        gap: clamp(0.5rem, 1.2vw, 0.8rem);
        padding: clamp(0.4rem, 1vw, 0.6rem) clamp(0.4rem, 1.5vw, 0.8rem) 0;
        max-width: min(92vw, 32rem);
        width: auto;
        /* PREMIUM_UX_2026_02_04: Visible by default on mobile, smooth transitions */
        opacity: 1;
        visibility: visible;
        pointer-events: none;
        /* Black hole animation setup */
        transform-origin: center center;
        will-change: transform, opacity, filter;
        transition: 
            transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
            opacity 0.45s ease,
            filter 0.45s ease;
    }
    
    /* Ensure child elements are clickable */
    #quickActionsRow * {
        pointer-events: auto;
    }
}

/* PREMIUM_UX_2026_02_03: Hide dock when in bottom 15% zone or footer is visible */
#quickActionsRow.is-hidden {
    opacity: 0;
    transform: translateX(0) translateY(18px);
    pointer-events: none;
}

/* PREMIUM_UX_2026_02_03: Black hole disappear animation (mobile only) */
@media (max-width: 768px) {
    #quickActionsRow.blackhole {
        opacity: 0 !important;
        transform: 
            translateX(0)
            scale(0.15)
            rotate(-8deg) !important;
        filter: blur(6px) !important;
        pointer-events: none !important;
    }
}

/* PREMIUM_UX_2026_02_03: Always hide when modals open */
/* REMOVE_OLD_HEADER_2026_02_11: tv-menu-open removed */
body.tv-modal-open #quickActionsRow {
    opacity: 0 !important;
    transform: translateX(0) translateY(18px) !important;
    pointer-events: none !important;
}

.quick-actions-widget {
    position: static;
    display: none;
    pointer-events: auto;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-actions-widget.visible {
    display: block;
}

.quick-actions-widget.scrolled {
    opacity: 0.92;
}

/* PREMIUM_UX_2026_02_03: Move center widget lower to center between PNG characters (mobile only) */
@media (max-width: 768px) {
    .quick-actions-widget {
        transform: translateY(12px);
    }
}

.quick-actions-container {
    display: flex;
    gap: 6px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 6px;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06),
                0 1px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(232, 98, 12, 0.08);
    pointer-events: auto;
    transform: translateY(0);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 100%;
    width: auto;
}

.quick-actions-row > * {
    pointer-events: auto;
}

.quick-action-image-btn {
    background: none;
    border: none;
    padding: clamp(0.15rem, 0.5vw, 0.3rem) clamp(0.2rem, 0.6vw, 0.4rem);
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: clamp(0.2rem, 0.4vw, 0.3rem);
    cursor: pointer;
    transition: transform 0.18s ease, filter 0.18s ease;
    min-width: clamp(2.6rem, 6vw, 3.4rem);
    max-width: clamp(2.8rem, 7vw, 3.6rem);
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    /* DEBUG_FIX_2026_02_03: Removed outline: 1px dashed that created bar under PNGs */
}

.quick-action-image-btn:focus-visible .quick-action-image {
    box-shadow: 0 0 0 2px var(--orange);
    border-radius: 50%;
}

/* FIX_BADGE_TEXT_2026_02_03 - Prevent text breaking */
.hud-badge {
    display: inline-flex;
    align-items: center;
    gap: clamp(4px, 1.5vw, 6px);
    padding: clamp(5px, 1.5vw, 7px) clamp(10px, 3vw, 14px);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 250, 245, 0.9) 100%);
    border: 1px solid rgba(232, 98, 12, 0.35);
    box-shadow: 0 2px 8px rgba(232, 98, 12, 0.12),
                0 0 20px rgba(232, 98, 12, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    font-size: clamp(9px, 2.2vw, 11px);
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #1a1a1a;
    text-transform: uppercase;
    position: relative;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    min-width: fit-content;
    max-width: max-content;
}

/* Icon before text using pseudo-element */
.hud-badge::before {
    content: '';
    width: 14px;
    height: 14px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.9;
}

/* Location pin icon */
.hud-badge--location::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e8620c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E");
}

/* Lightning/arrow icon for book */
.hud-badge--book::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e8620c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='13 2 3 14 12 14 11 22 21 10 12 10 13 2'%3E%3C/polyline%3E%3C/svg%3E");
}

/* HUD underline accent */
.hud-badge::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(232, 98, 12, 0.6) 50%, transparent 100%);
    border-radius: 2px;
    opacity: 0.7;
}

/* Hover/Focus state */
.quick-action-image-btn:hover .hud-badge,
.quick-action-image-btn:focus-visible .hud-badge {
    transform: translateY(-1px);
    border-color: rgba(232, 98, 12, 0.5);
    box-shadow: 0 4px 16px rgba(232, 98, 12, 0.2),
                0 0 28px rgba(232, 98, 12, 0.14),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.quick-action-image-btn:hover .hud-badge::after,
.quick-action-image-btn:focus-visible .hud-badge::after {
    opacity: 1;
    width: 60%;
}

/* Fallback for old class (keep for compatibility) */
.quick-action-image-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: #111;
    text-transform: uppercase;
}

.quick-action-image {
    width: clamp(2.5rem, 6vw, 3.6rem);
    height: clamp(2.5rem, 6vw, 3.6rem);
    object-fit: contain;
    display: block;
    visibility: visible;
    opacity: 1;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
    transition: transform 160ms ease, filter 160ms ease;
    /* CRITICAL FIX: Prevent any background duplication */
    background-repeat: no-repeat !important;
    background-size: contain !important;
    background-position: center !important;
}

@media (max-width: 768px) {
    /* MOBILE_FIX_2026_02_03: Remove extra bar under PNGs */
    .hud-badge::after {
        display: none !important;
    }
    
    /* MOBILE_FIX_2026_02_03: Adjust container spacing for larger elements */
    .quick-actions-row {
        gap: clamp(0.6rem, 1.8vw, 1rem);
        padding: clamp(0.5rem, 1.2vw, 0.8rem) clamp(0.5rem, 1.8vw, 1rem) 0;
        max-width: min(95vw, 32rem);
    }
    
/* VISUAL_HIERARCHY_FIX_2026_02_03: Increase PNG size to be visual focus */
    .quick-action-image {
        width: clamp(80px, 20vw, 130px) !important;
        height: clamp(80px, 20vw, 130px) !important;
        min-width: clamp(80px, 20vw, 130px) !important;
        min-height: clamp(80px, 20vw, 130px) !important;
        max-width: clamp(80px, 20vw, 130px) !important;
        max-height: clamp(80px, 20vw, 130px) !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        object-fit: contain !important;
        /* CRITICAL: Prevent PNG duplication */
        background-repeat: no-repeat !important;
        background-image: none !important;
    }

    .quick-action-image-btn {
        min-width: clamp(76px, 18vw, 120px) !important;
        max-width: clamp(80px, 19vw, 126px) !important;
        padding: 5px !important;
        display: flex !important;
        flex-direction: column !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    /* VISUAL_HIERARCHY_FIX_2026_02_03: Reduce text size so PNGs are visual focus */
    .hud-badge {
        padding: clamp(6px, 1.6vw, 9px) clamp(9px, 2.4vw, 12px) !important;
        font-size: clamp(9px, 2.4vw, 12px) !important;
        gap: clamp(4px, 1.2vw, 6px);
        white-space: nowrap;
        font-weight: 700 !important;
        letter-spacing: 0.08em !important;
        min-height: 26px;
        max-width: 70%;
    }
    
    .hud-badge::before {
        width: clamp(11px, 2.8vw, 14px);
        height: clamp(11px, 2.8vw, 14px);
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    /* MOBILE_FIX_2026_02_03: Remove extra bar under PNGs */
    .hud-badge::after {
        display: none !important;
    }
    
    /* VISUAL_HIERARCHY_FIX_2026_02_03: Increase PNG size for clear visibility */
    .quick-action-image {
        width: clamp(68px, 17vw, 110px) !important;
        height: clamp(68px, 17vw, 110px) !important;
        min-width: clamp(68px, 17vw, 110px) !important;
        min-height: clamp(68px, 17vw, 110px) !important;
        max-width: clamp(68px, 17vw, 110px) !important;
        max-height: clamp(68px, 17vw, 110px) !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        object-fit: contain !important;
        /* CRITICAL: Prevent PNG duplication */
        background-repeat: no-repeat !important;
        background-image: none !important;
    }
    
    .quick-action-image-btn {
        min-width: clamp(66px, 16vw, 106px) !important;
        max-width: clamp(70px, 17vw, 112px) !important;
        padding: 4px !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    /* VISUAL_HIERARCHY_FIX_2026_02_03: Reduce text for subtle appearance */
    .hud-badge {
        padding: 5px 9px !important;
        font-size: clamp(8px, 2.4vw, 11px) !important;
        gap: 4px !important;
        white-space: nowrap !important;
        letter-spacing: 0.08em !important;
        font-weight: 700 !important;
        min-height: 24px;
        max-width: 68%;
    }
    
    .hud-badge::before {
        width: clamp(10px, 2.5vw, 12px) !important;
        height: clamp(10px, 2.5vw, 12px) !important;
        flex-shrink: 0 !important;
    }
}

.quick-action-image-btn.is-tapping .quick-action-image {
    transform: scale(0.96);
    filter: drop-shadow(0 8px 18px rgba(232, 98, 12, 0.25));
}

.quick-action-image-btn:hover .quick-action-image,
.quick-action-image-btn:focus-visible .quick-action-image {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.18));
}

.quick-help-panel {
    position: absolute;
    left: 12px;
    bottom: 76px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    min-width: 180px;
}

.quick-help-panel[hidden] {
    display: none;
}

.help-panel-item {
    background: none;
    border: none;
    text-align: left;
    font-size: 14px;
    color: #111;
    padding: 8px 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.16s ease, color 0.16s ease;
}

.help-panel-item:hover,
.help-panel-item:focus-visible {
    background: rgba(232, 98, 12, 0.08);
    color: var(--orange);
    outline: none;
}

@media (max-width: 768px) {
    .quick-actions-row {
        display: flex !important;
        gap: 6px !important;
        padding: 0 6px 0 !important;
        max-width: min(90vw, 400px) !important;
        bottom: calc(clamp(0.6rem, 2vw, 1rem) + env(safe-area-inset-bottom, 0.6rem)) !important;
        pointer-events: auto !important;
        z-index: 9999 !important;
    }
    
    .quick-actions-row.visible {
        display: flex !important;
    }
    
    .quick-actions-widget {
        pointer-events: auto !important;
    }
    
    /* Ensure PNG buttons are visible */
    .quick-action-image-btn {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
}

@media (max-width: 480px) {
    .quick-actions-row {
        gap: 4px;
        padding: 0 6px calc(8px + env(safe-area-inset-bottom, 0px));
        max-width: min(88vw, 360px);
    }
    
    .quick-actions-container {
        padding: 3px;
        gap: 3px;
        border-radius: 16px;
        max-width: calc(100vw - 130px);
        width: auto;
    }
    
    .quick-action-btn {
        padding: 6px 7px;
        min-width: 46px;
        max-width: 54px;
    }
    
    .quick-action-icon {
        width: 17px;
        height: 17px;
    }
    
    .quick-action-label {
        font-size: 8px;
        letter-spacing: 0.2px;
    }
}

@media (min-width: 769px) {
    .quick-actions-row {
        display: none !important;
    }
}

.quick-actions-widget.hidden .quick-actions-container {
    transform: translateY(calc(100% + 20px));
    opacity: 0;
}

.quick-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    background: transparent;
    border: none;
    padding: 10px 14px;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    min-width: 0;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    overflow: visible;
    box-shadow: none;
}

/* Gentle background highlight on hover */
.quick-action-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(232, 98, 12, 0.04);
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 0;
}

.quick-action-btn:hover::before {
    opacity: 1;
}

.quick-action-btn:active {
    transform: scale(0.96);
}

.quick-action-btn:hover,
.quick-action-btn:focus {
    outline: none;
}

.quick-action-btn:focus-visible {
    box-shadow: 0 0 0 2px rgba(232, 98, 12, 0.3);
    outline: none;
}

.quick-action-icon {
    color: var(--orange);
    width: 24px;
    height: 24px;
    stroke-width: 2;
    transition: color 0.2s ease, transform 0.15s ease;
    filter: none;
    position: relative;
    z-index: 1;
}

.quick-action-btn:active .quick-action-icon {
    transform: scale(0.95);
}

.quick-action-btn:hover .quick-action-icon {
    transform: scale(1.08);
}

.quick-action-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--orange);
    white-space: nowrap;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    opacity: 0.85;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.quick-action-btn:hover .quick-action-label {
    opacity: 1;
}

/* Unified styling - no individual overrides needed */

/* Individual button colors */
#quickActionCall .quick-action-icon,
#quickActionCall .quick-action-label {
    color: #dc2626;
}

#quickActionReviews .quick-action-icon,
#quickActionReviews .quick-action-label {
    color: #16a34a;
}

#quickActionMOT .quick-action-icon,
#quickActionMOT .quick-action-label {
    color: var(--orange);
}

/* Show only on mobile */
@media (min-width: 769px) {
    .quick-actions-widget {
        display: none !important;
    }
}

/* Compact design for smaller phones */
@media (max-width: 380px) {
    .quick-actions-container {
        gap: 4px;
        padding: 5px;
    }
    
    .quick-action-btn {
        padding: 8px 10px;
        gap: 2px;
    }
    
    .quick-action-icon {
        width: 20px;
        height: 20px;
    }
    
    .quick-action-label {
        font-size: 9px;
        letter-spacing: 0.2px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .quick-actions-widget,
    .quick-actions-container,
    .quick-action-btn,
    .quick-action-icon,
    .quick-action-label {
        transition: none !important;
    }
}

/* ================================
   Print Styles
   ================================ */

@media print {
    .carousel-btn,
    .carousel-dots,
    .tvx-mobilebar {
        display: none;
    }
    
    .hero {
        margin-top: 0;
    }
    
    * {
        box-shadow: none !important;
    }
}

/* ================================
   Animation System
   ================================ */

/* Scroll reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(var(--reveal-distance));
    transition: opacity var(--reveal-duration) ease-out,
                transform var(--reveal-duration) ease-out;
}

.reveal--in {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger items in grids */
.stagger-item {
    opacity: 0;
    transform: translateY(var(--reveal-distance));
    transition: opacity var(--reveal-duration) ease-out,
                transform var(--reveal-duration) ease-out;
}

.stagger-item--in {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced button micro-interactions */
.btn {
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

@media (hover: hover) {
    .btn:hover {
        transform: translateY(var(--hover-lift));
        box-shadow: 0 8px 16px var(--color-shadow-md);
    }
}

.btn:active {
    transform: scale(var(--tap-scale));
}

/* Enhanced service card interactions */
.service-card {
    transition: all var(--transition-base);
}

@media (hover: hover) {
    .service-card:hover {
        transform: translateY(var(--hover-lift));
        box-shadow: 0 12px 24px var(--color-shadow-md);
    }
}

.service-card:active {
    transform: scale(var(--tap-scale));
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(255, 122, 0, 0.2);
}

/* Team card interactions */
.team-card {
    transition: all var(--transition-base);
}

@media (hover: hover) {
    .team-card:hover {
        transform: translateY(var(--hover-lift));
        box-shadow: 0 12px 24px var(--color-shadow-md);
    }
}

/* Form feedback states */
.form-message {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    border-radius: 8px;
    font-size: var(--font-sm);
    font-weight: 500;
    display: none;
    animation: slideDown 0.3s ease-out;
}

.form-message.show {
    display: block;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    animation: shake 0.4s ease-in-out;
}

.form-message.loading {
    background: var(--color-surface);
    color: var(--color-text);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

/* Loading spinner */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success checkmark animation */
.checkmark {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #28a745;
    position: relative;
    animation: checkmarkPop 0.3s ease-out;
}

.checkmark::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Button loading state */
.btn.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

/* Real Reviews Section */
.tvx-reviews {
    padding: var(--spacing-2xl) 0;
    background: var(--color-surface);
}

.tvx-reviews .section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

/* Google Reviews Container */
.google-reviews {
    background: white;
    border-radius: 12px;
    padding: clamp(1rem, 2.5vw, 2rem);
    box-shadow: 0 4px 16px var(--color-shadow);
    max-width: clamp(18rem, 92vw, 62rem);
    width: 100%;
    margin: 0 auto;
}

/* Loading State */
.google-reviews-loading {
    text-align: center;
    padding: var(--spacing-xl);
    color: var(--color-text-light);
    font-size: var(--font-base);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Reviews Summary Section */
.google-reviews-summary {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.google-reviews-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg) 0;
    border-bottom: 1px solid var(--color-border);
}

.rating-display {
    text-align: center;
}

.rating-number {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.rating-stars {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: #ffc107;
    letter-spacing: 2px;
    margin: var(--spacing-sm) 0;
}

.rating-stars .star {
    display: inline-block;
    width: auto;
}

.rating-stars .star.filled {
    color: #ffc107;
}

.rating-stars .star.half {
    color: #ffc107;
    opacity: 0.6;
}

.rating-stars .star:not(.filled):not(.half) {
    color: #ddd;
}

.rating-count {
    font-size: var(--font-base);
    color: var(--color-text-light);
    margin-top: var(--spacing-xs);
}

/* Reviews List */
.google-reviews-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.google-review-card {
    padding: var(--spacing-md);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: white;
    transition: all var(--transition-base);
}

.google-review-card:hover {
    box-shadow: 0 4px 12px var(--color-shadow-md);
    border-color: var(--color-primary-light);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-sm);
    gap: var(--spacing-md);
}

.review-author {
    font-weight: 600;
    color: var(--color-text);
    font-size: var(--font-base);
    flex: 1;
}

.review-rating {
    font-size: 0.875rem;
    color: #ffc107;
    white-space: nowrap;
}

.review-rating .star {
    display: inline-block;
    margin-right: 2px;
}

.review-time {
    font-size: var(--font-xs);
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
}

.review-text {
    color: var(--color-text);
    line-height: 1.5;
    font-size: var(--font-sm);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Fallback */
.google-reviews-fallback {
    text-align: center;
    padding: var(--spacing-xl);
    color: var(--color-text-light);
}

.google-reviews-fallback p {
    margin-bottom: var(--spacing-md);
    font-size: var(--font-base);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tvx-reviews {
        padding: clamp(1.25rem, 4vw, 2rem) 0;
    }
    
    .google-reviews {
        padding: clamp(0.875rem, 2vw, 1.25rem);
        border-radius: 8px;
    }
    
    .google-reviews-rating {
        padding: var(--spacing-md) 0;
    }
    
    .rating-number {
        font-size: 2rem;
    }
    
    .rating-stars {
        font-size: 1.25rem;
    }
    
    .google-reviews-list {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .google-review-card {
        padding: var(--spacing-sm);
    }
    
    .review-header {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
}

@media (max-width: 768px) {
    .tvx-reviews {
        padding: clamp(1.25rem, 4vw, 2rem) 0;
    }
    
    .tvx-reviews-container {
        padding: clamp(0.875rem, 2vw, 1.25rem);
        border-radius: 8px;
        max-width: 95vw;
    }
    
    .trustindex-widget {
        min-height: unset;
    }
}

/* Mobile spacing optimizations - COMPACT */
@media (max-width: 768px) {
    /* Tighter section spacing */
    .hero {
        padding: clamp(16px, 3.5vw, 28px) 0;
    }
    
    .trusted-section,
    .carousel-section,
    .work-section,
    .services,
    .quote-section,
    .how-it-works {
        padding: clamp(1.1rem, 3.5vw, 1.8rem) 0;
    }
    
    .section-header {
        margin-bottom: clamp(0.875rem, 2.5vw, 1.25rem);
    }
    
    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: clamp(0.375rem, 1.5vw, 0.5rem);
    }
    
    .section-subtitle {
        font-size: clamp(0.875rem, 2.5vw, 1rem);
    }
    
    /* Compact service cards */
    .service-card {
        padding: clamp(0.875rem, 2.5vw, 1.25rem);
    }
    
    .service-title {
        font-size: clamp(1rem, 3vw, 1.125rem);
        margin: var(--spacing-xs) 0;
    }
    
    .service-description {
        font-size: clamp(0.8125rem, 2.3vw, 0.9375rem);
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    /* Ensure services grid stays 2 columns */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(0.75rem, 2vw, 1rem);
    }
    
    /* Compact form spacing */
    .quote-form-container {
        padding: clamp(1rem, 3vw, 1.5rem);
    }
    
    .form-row {
        gap: clamp(0.75rem, 2vw, 1rem);
    }
    
    .form-group {
        margin-bottom: clamp(0.75rem, 2vw, 1rem);
    }
    
    /* Reduce carousel spacing */
    .carousel-container {
        margin-top: clamp(0.75rem, 2vw, 1rem);
    }
    
    /* Compact pills */
    .pills-container {
        gap: clamp(0.75rem, 2vw, 1rem);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .reveal,
    .stagger-item {
        opacity: 1;
        transform: none;
    }
}

/* ================================
   Vehicle Check Modal
   ================================ */

/* ================================
   MOT Check Modal - Modern Glass Design
   ================================ */

/* MOT_MODAL_MOBILE_FRAME_FIX_2026_02_11: Fixed full-screen overlay with safe-area support */
.mot-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    /* Use grid to center modal and respect safe areas */
    display: grid;
    place-items: center;
    /* Safe-area padding for notched devices (iPhone X+, etc.) */
    padding: env(safe-area-inset-top, 20px) env(safe-area-inset-right, 20px) env(safe-area-inset-bottom, 20px) env(safe-area-inset-left, 20px);
    animation: motModalFadeIn 0.3s ease-out;
}

.mot-modal[hidden] {
    display: none;
}

/* MOT_OVERLAY_BLOCK_FIX_2026_02_11: Ensure overlay is fully inert when modal is closed */
/* MOT_MODAL_MOBILE_FRAME_FIX_2026_02_11: Fixed positioning for full coverage */
.mot-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: motOverlayFadeIn 0.3s ease-out;
    /* Default state when modal is open */
    display: block;
    pointer-events: auto;
}

/* MOT_OVERLAY_BLOCK_FIX_2026_02_11: Force overlay to be invisible and non-interactive when parent is hidden */
.mot-modal[hidden] .mot-modal-overlay {
    display: none !important;
    pointer-events: none !important;
    opacity: 0;
}

/* MOT_MODAL_MOBILE_FRAME_FIX_2026_02_11: Grid layout container with safe-area max-height */
.mot-modal-container {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.2);
    max-width: 700px;
    width: 100%;
    /* Calculate max-height: 100vh minus safe-area top and bottom, minus padding */
    max-height: calc(100vh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 40px);
    /* Grid layout: header (auto) + body (1fr) */
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    animation: motModalScaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* MOT_MODAL_MOBILE_FRAME_FIX_2026_02_11: Sticky header that stays visible */
.mot-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(245, 245, 255, 0.9) 100%);
    /* Grid placement */
    grid-row: 1;
    /* Prevent shrinking */
    flex-shrink: 0;
}

.mot-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.02em;
}

.mot-modal-close {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #666;
}

.mot-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000;
    transform: rotate(90deg);
}

.mot-modal-close:active {
    transform: rotate(90deg) scale(0.95);
}

/* MOT_MODAL_MOBILE_FRAME_FIX_2026_02_11: Scrollable body with proper overflow */
.mot-modal-body {
    padding: 28px;
    /* Grid placement */
    grid-row: 2;
    /* Enable scrolling inside the modal */
    overflow-y: auto;
    overflow-x: hidden;
    /* iOS smooth scrolling */
    -webkit-overflow-scrolling: touch;
    /* Critical for grid child to allow scrolling */
    min-height: 0;
    /* Prevent content from expanding beyond grid */
    max-height: 100%;
}

/* Loading State */
.mot-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.mot-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 102, 0, 0.1);
    border-top-color: #ff6600;
    border-radius: 50%;
    animation: motSpin 0.8s linear infinite;
    margin-bottom: 20px;
}

.mot-loading-text {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Error State */
.mot-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    text-align: center;
}

.mot-error-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.mot-error-message {
    font-size: 1.1rem;
    color: #dc2626;
    font-weight: 600;
    margin: 0;
}

/* Success State - Vehicle Data */
.mot-vehicle-reg {
    display: inline-block;
    background: linear-gradient(135deg, #ffcc00 0%, #ff9900 100%);
    color: #000;
    font-size: 1.8rem;
    font-weight: 800;
    padding: 12px 24px;
    border-radius: 8px;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.3);
    border: 3px solid #000;
    font-family: 'Courier New', monospace;
}

/* Data Sections */
.mot-section {
    margin-bottom: 28px;
}

.mot-section:last-child {
    margin-bottom: 0;
}

.mot-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mot-section-icon {
    font-size: 1.3rem;
}

.mot-data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
}

.mot-data-item {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.mot-data-item:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.mot-data-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.mot-data-value {
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 700;
    text-align: right;
}

/* Status Badges */
.mot-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.mot-badge-valid {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
}

.mot-badge-expired {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

.mot-badge-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.mot-badge-info {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
}

/* Loading Skeleton */
.mot-skeleton {
    animation: motSkeletonPulse 1.5s ease-in-out infinite;
}

.mot-skeleton-line {
    height: 56px;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.04) 25%,
        rgba(0, 0, 0, 0.08) 50%,
        rgba(0, 0, 0, 0.04) 75%
    );
    background-size: 200% 100%;
    border-radius: 12px;
    margin-bottom: 12px;
}

/* Animations */
@keyframes motModalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes motOverlayFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes motModalScaleIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes motSpin {
    to { transform: rotate(360deg); }
}

@keyframes motSkeletonPulse {
    0%, 100% {
        background-position: 200% 0;
    }
    50% {
        background-position: -200% 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mot-modal {
        padding: 12px;
    }

    .mot-modal-container {
        max-height: calc(92vh - env(safe-area-inset-bottom, 0px));
        border-radius: 16px;
    }

    .mot-modal-header {
        padding: 20px;
    }

    .mot-modal-title {
        font-size: 1.25rem;
    }

    .mot-modal-body {
        padding: 20px;
        max-height: calc(92vh - 80px - env(safe-area-inset-bottom, 0px));
    }

    .mot-vehicle-reg {
        font-size: 1.5rem;
        padding: 10px 20px;
    }

    .mot-data-grid {
        grid-template-columns: 1fr;
    }

    .mot-section-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .mot-modal-close {
        width: 32px;
        height: 32px;
    }

    .mot-vehicle-reg {
        font-size: 1.3rem;
        padding: 8px 16px;
    }

    .mot-data-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .mot-data-value {
        text-align: left;
    }
}

/* HOME_MOT_TAX_INLINE_2026_02_11 */
.mot-inline {
    padding: clamp(14px, 2.5vw + 6px, 32px) 0;
    background: var(--color-bg);
}

.mot-inline-note {
    font-size: clamp(0.95rem, 0.6vw + 0.8rem, 1.05rem);
    color: var(--color-text-light);
    margin-top: clamp(6px, 1vw + 4px, 10px);
}

.mot-inline-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(10px, 1.6vw + 4px, 18px);
    align-items: start;
}

@media (min-width: 768px) {
    .mot-inline-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.mot-inline-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: clamp(10px, 2vw, 16px);
    padding: clamp(12px, 2vw + 4px, 22px);
    box-shadow: 0 8px 24px var(--color-shadow);
    min-width: 0;
}

.mot-inline-form-header h3,
.mot-inline-results-header h3 {
    font-size: clamp(1.1rem, 2.2vw + 0.6rem, 1.5rem);
    margin-bottom: clamp(6px, 1vw + 4px, 10px);
    color: var(--color-text);
}

.mot-inline-form-header p,
.mot-inline-results-subtitle {
    font-size: clamp(0.95rem, 0.6vw + 0.8rem, 1.05rem);
    color: var(--color-text-light);
}

.mot-inline-form-body {
    margin-top: clamp(10px, 1.6vw + 4px, 18px);
}

.mot-inline-input-group {
    display: flex;
    flex-direction: column;
    gap: clamp(6px, 1vw + 4px, 10px);
}

.mot-inline-input-group label {
    font-size: clamp(0.95rem, 0.6vw + 0.8rem, 1.05rem);
    font-weight: 600;
    color: var(--color-text);
}

.mot-inline-input {
    width: 100%;
    min-height: 44px;
    padding: clamp(10px, 1.8vw + 6px, 14px);
    border: 2px solid var(--color-border);
    border-radius: clamp(8px, 1.5vw, 12px);
    font-size: clamp(1rem, 1vw + 0.7rem, 1.1rem);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.06em;
    background: var(--color-bg);
    color: var(--color-text);
}

.mot-inline-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.15);
}

.mot-inline-submit {
    margin-top: clamp(10px, 1.6vw + 4px, 18px);
    width: 100%;
    min-height: 44px;
    font-size: clamp(0.95rem, 0.6vw + 0.8rem, 1.05rem);
}

.mot-inline-modal {
    position: static;
}

.mot-inline-results .mot-modal-body {
    padding: clamp(10px, 1.6vw + 4px, 18px) 0 0 0;
    max-height: min(68vh, 720px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.mot-reg-wrap {
    text-align: center;
    margin-bottom: clamp(12px, 2vw + 8px, 24px);
}

.mot-retry-btn {
    margin-top: clamp(12px, 2vw + 8px, 20px);
}

.mot-summary {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(8px, 1.2vw + 4px, 14px);
    margin: clamp(8px, 1.2vw + 4px, 14px) 0 clamp(10px, 1.6vw + 4px, 18px);
}

.mot-summary-pill {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    padding: clamp(6px, 1vw + 4px, 10px) clamp(10px, 1.8vw + 6px, 16px);
    font-size: clamp(0.85rem, 0.6vw + 0.75rem, 0.95rem);
    color: var(--color-text);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: clamp(4px, 0.8vw + 2px, 8px);
}

.mot-details {
    border: 1px solid var(--color-border);
    border-radius: clamp(10px, 2vw, 14px);
    padding: clamp(8px, 1.4vw + 4px, 14px);
    background: var(--color-surface);
    margin-bottom: clamp(10px, 1.6vw + 4px, 18px);
}

.mot-details:last-child {
    margin-bottom: 0;
}

.mot-details-summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--color-text);
    font-size: clamp(0.95rem, 0.6vw + 0.8rem, 1.05rem);
    list-style: none;
}

.mot-details-summary::-webkit-details-marker {
    display: none;
}

.mot-details-summary::after {
    content: "+";
    float: right;
    color: var(--color-primary);
    font-weight: 700;
}

.mot-details[open] .mot-details-summary::after {
    content: "–";
}

.mot-inline .mot-section {
    margin-bottom: clamp(10px, 1.6vw + 4px, 18px);
}

.mot-inline .mot-section-title {
    font-size: clamp(1rem, 1vw + 0.8rem, 1.2rem);
}

/* ================================
   REAL MOBILE DEVICE FIXES
   Critical fixes for iOS Safari, Brave, Android Chrome
   ================================ */

@media (max-width: 480px) {
    /* Force proper scaling on real phones */
    html {
        font-size: 14px;
    }
    
    /* Hero section mobile optimization */
    .hero {
        min-height: 0 !important;
        padding: clamp(16px, 3.5vw, 28px) 0 !important;
    }
    
    .hero-text {
        padding: clamp(1.5rem, 4vw, 2rem) !important;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 7vw, 2rem) !important;
    }
    
    /* Pill cards - prevent overflow */
    .pill-image img {
        object-fit: cover !important;
        max-height: 240px;
    }
    
    /* Carousel - strict mobile constraints */
    .carousel-slide {
        max-height: 280px !important;
    }
    
    .carousel-slide img {
        object-fit: contain !important;
        max-height: 280px !important;
    }
    
    /* All section images - defensive */
    section img:not(.logo):not(.quick-action-image) {
        max-width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }
    
    /* Bottom dock - real device optimization */
    .quick-actions-row {
        bottom: 0 !important;
        padding: 0 6px calc(8px + env(safe-area-inset-bottom, 8px)) !important;
        max-width: min(94vw, 420px) !important;
        gap: clamp(0.6rem, 2vw, 1rem) !important;
    }
    
    /* VISUAL_HIERARCHY_FIX_2026_02_03: Larger PNGs for premium visual focus */
    .quick-action-image {
        width: clamp(84px, 21vw, 136px) !important;
        height: clamp(84px, 21vw, 136px) !important;
        max-width: clamp(84px, 21vw, 136px) !important;
        max-height: clamp(84px, 21vw, 136px) !important;
        object-fit: contain !important;
    }
    
    .quick-action-image-btn {
        min-width: clamp(82px, 20vw, 130px) !important;
        max-width: clamp(86px, 21vw, 138px) !important;
        padding: 5px !important;
        outline: none !important;
        border: none !important;
    }
    
    /* VISUAL_HIERARCHY_FIX_2026_02_03: Smaller text for premium subtle look */
    .hud-badge {
        font-size: clamp(9px, 2.6vw, 12px) !important;
        padding: clamp(6px, 1.8vw, 9px) clamp(9px, 2.6vw, 12px) !important;
        gap: clamp(4px, 1.2vw, 6px) !important;
        white-space: nowrap !important;
        letter-spacing: 0.1em !important;
        font-weight: 700 !important;
        min-height: 26px !important;
        max-width: 70% !important;
    }
    
    .hud-badge::before {
        width: clamp(11px, 2.8vw, 14px) !important;
        height: clamp(11px, 2.8vw, 14px) !important;
        flex-shrink: 0 !important;
    }
    
    /* DEEP_FIX_2026_02_03: Ensure no bar/outline artifacts */
    .hud-badge::after {
        display: none !important;
    }
}

/* iPhone specific (375px - 430px) */
@media (max-width: 430px) and (min-width: 375px) {
    .hero {
        min-height: 0 !important;
    }
    
    .carousel-slide,
    .carousel-slide img {
        max-height: 250px !important;
    }
    
    /* Fine-tune dock for standard iPhone widths */
    .quick-actions-container {
        max-width: calc(100vw - 120px) !important;
    }
}

/* REMOVE_OLD_HEADER_2026_02_11: Mobile menu layout removed */

/* Ensure CTAs are visible and z-indexed */
/* REMOVE_OLD_HEADER_2026_02_11: Mobile menu dropdown layout removed */

/* ================================
   Phase 2: Mobile-First UX Optimization
   ================================ */

/* Hero trust badge */
.hero-trust-badge {
    display: block;
    font-size: clamp(0.75rem, 2vw, 0.95rem);
    font-weight: 600;
    color: var(--color-primary);
    margin: clamp(8px, 1.5vw, 12px) 0 clamp(12px, 2.5vw, 16px) 0;
    letter-spacing: 0.3px;
}

/* Optimized mobile section spacing */
section {
    padding-block: clamp(24px, 6vw, 48px);
}

.section-header {
    margin-bottom: clamp(20px, 4vw, 40px);
}

/* Compact service grid for mobile */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(140px, 45vw, 280px), 1fr));
    gap: clamp(12px, 3vw, 24px);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Show only first 4 services by default on mobile */
    .service-card:nth-child(n+5) {
        display: none;
    }
    
    /* When expanded, show all services */
    .services-grid.expanded .service-card {
        display: block;
    }
}

/* ========================================
   SOCIAL PROOF / REVIEWS SECTION
   ======================================== */

.social-proof {
    background: linear-gradient(135deg, rgba(25, 108, 198, 0.03) 0%, rgba(25, 108, 198, 0.01) 100%);
    border-top: 1px solid rgba(25, 108, 198, 0.1);
    border-bottom: 1px solid rgba(25, 108, 198, 0.1);
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(200px, 90vw, 320px), 1fr));
    gap: clamp(16px, 3vw, 24px);
    margin-bottom: clamp(24px, 4vw, 32px);
}

.review-card {
    background: var(--color-white);
    border: 1px solid rgba(25, 108, 198, 0.15);
    border-radius: clamp(8px, 2vw, 12px);
    padding: clamp(16px, 3vw, 24px);
    box-shadow: 0 2px 8px rgba(25, 108, 198, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(25, 108, 198, 0.15);
}

.review-rating {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    margin-bottom: clamp(12px, 2vw, 16px);
    letter-spacing: 0.1px;
}

.review-text {
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    color: var(--color-text-secondary);
    margin-bottom: clamp(12px, 2vw, 16px);
    line-height: 1.5;
}

.review-author {
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    color: var(--color-primary);
    font-weight: 600;
}

.reviews-expand-mobile {
    display: none;
}

@media (max-width: 768px) {
    .reviews-container {
        grid-template-columns: 1fr;
    }
    
    .review-card:nth-child(n+3) {
        display: none;
    }
    
    .reviews-container.expanded .review-card {
        display: block;
    }
    
    .reviews-expand-mobile {
        display: block;
    }
}

/* ========================================
   FAQ ACCORDION SECTION
   ======================================== */

.faq-section {
    background: linear-gradient(135deg, rgba(245, 112, 33, 0.03) 0%, rgba(245, 112, 33, 0.01) 100%);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: clamp(12px, 2vw, 16px);
    border-radius: clamp(8px, 2vw, 12px);
    border: 1px solid rgba(245, 112, 33, 0.15);
    overflow: hidden;
    background: var(--color-white);
}

.faq-question {
    width: 100%;
    padding: clamp(14px, 3vw, 20px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 600;
    color: var(--color-text-primary);
    text-align: left;
    transition: background 0.3s ease, color 0.3s ease;
}

.faq-question:hover {
    background: rgba(245, 112, 33, 0.05);
}

.faq-question-text {
    flex: 1;
}

.faq-toggle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    transition: transform 0.3s ease;
    color: var(--color-primary);
    margin-left: clamp(12px, 2vw, 16px);
}

.faq-question[aria-expanded="true"] .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 clamp(14px, 3vw, 20px) clamp(14px, 3vw, 20px);
    background: rgba(245, 112, 33, 0.02);
    max-height: 500px;
    overflow: hidden;
    animation: slideDown 0.3s ease forwards;
}

.faq-answer[hidden] {
    display: none;
}

.faq-answer p {
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

/* ========================================
   COMPANY STORY SECTION
   ======================================== */

.company-story {
    background: linear-gradient(135deg, rgba(25, 108, 198, 0.05) 0%, rgba(245, 112, 33, 0.05) 100%);
    padding: clamp(20px, 4vw, 32px) 0;
    border-top: 1px solid rgba(25, 108, 198, 0.1);
    text-align: center;
}

.company-story-text {
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    color: var(--color-text-secondary);
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

.company-story-text strong {
    color: var(--color-primary);
    font-weight: 700;
}

/* ========================================
   STICKY CTA BAR (MOBILE)
   ======================================== */

.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 0;
    padding: 0 clamp(8px, 2vw, 12px);
    padding-bottom: max(clamp(8px, 2vw, 12px), env(safe-area-inset-bottom));
    background: var(--color-white);
    border-top: 2px solid rgba(25, 108, 198, 0.15);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
    z-index: 50;
    animation: slideUp 0.4s ease forwards;
    height: auto;
}

.sticky-cta-bar[hidden] {
    display: none;
}

/* Hide sticky CTA when modal is open */
/* REMOVE_OLD_HEADER_2026_02_11: tv-menu-open removed */
body.tv-modal-open .sticky-cta-bar {
    transform: translateY(120%);
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s ease;
}

/* Black hole animation for sticky CTA bar (same as dock) - mobile only */
@media (max-width: 768px) {
    .sticky-cta-bar.blackhole {
        opacity: 0 !important;
        transform: translateY(0) scale(0.15) rotate(-8deg) !important;
        filter: blur(6px) !important;
        pointer-events: none !important;
        transition: 
            transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
            opacity 0.45s ease,
            filter 0.45s ease;
    }
    
    .sticky-cta-bar.is-hidden {
        opacity: 0;
        transform: translateY(18px);
        pointer-events: none;
    }
}

.cta-action {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: clamp(10px, 2vw, 14px);
    text-decoration: none;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    font-weight: 600;
    color: var(--color-text-primary);
}

.cta-action:active {
    transform: scale(0.95);
}

.cta-call {
    color: var(--color-primary);
    border-right: 1px solid rgba(25, 108, 198, 0.1);
}

.cta-call:hover {
    background: rgba(25, 108, 198, 0.05);
}

.cta-book {
    color: var(--color-accent);
}

.cta-book:hover {
    background: rgba(245, 112, 33, 0.05);
}

.cta-icon {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    display: block;
    margin-bottom: 2px;
}

.cta-label {
    display: block;
    white-space: nowrap;
}

@keyframes slideUp {
    from {
        transform: translateY(120%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* GHOST_CTA_FIX_2026_02_03: Hide sticky CTA bar completely - using bottom dock PNG buttons instead */
.sticky-cta-bar {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
    opacity: 0 !important;
    z-index: -1 !important;
}

/* ========================================
   LOCAL TRUST LINE (ALREADY ADDED - REFINE)
   ======================================== */

.local-trust-line {
    background: linear-gradient(135deg, rgba(25, 108, 198, 0.08) 0%, rgba(25, 108, 198, 0.04) 100%);
    padding: clamp(12px, 2.5vw, 18px) 0;
    text-align: center;
    border-bottom: 1px solid rgba(25, 108, 198, 0.1);
}

.local-trust-text {
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    color: var(--color-primary);
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.3px;
}

.trust-phone {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s ease;
}

.trust-phone:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

/* ========================================
   JUMP NAVIGATION (INTERNAL LINKS)
   ======================================== */

.jump-nav {
    background: white;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 90;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.jump-nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(12px, 4vw, 32px);
    padding: clamp(10px, 2vw, 14px) 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.jump-nav-links::-webkit-scrollbar {
    display: none;
}

.jump-nav-link {
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    font-weight: 600;
    color: var(--color-text);
    text-decoration: none;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.jump-nav-link:hover {
    background: rgba(255, 122, 0, 0.1);
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .jump-nav-links {
        justify-content: flex-start;
        padding-left: var(--spacing-md);
        padding-right: var(--spacing-md);
    }
}

/* ========================================
   WHY TRANSVORTEX ACCORDION (MOBILE)
   ======================================== */

.why-transvortex {
    background: linear-gradient(135deg, rgba(245, 112, 33, 0.03) 0%, rgba(245, 112, 33, 0.01) 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(160px, 90vw, 280px), 1fr));
    gap: clamp(14px, 3vw, 20px);
}

.why-card {
    background: var(--color-white);
    border: 1px solid rgba(245, 112, 33, 0.15);
    border-radius: clamp(10px, 2vw, 14px);
    padding: clamp(16px, 3vw, 24px);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(245, 112, 33, 0.12);
}

.why-icon {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: clamp(12px, 2vw, 16px);
    display: block;
}

.why-title {
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 clamp(8px, 1.5vw, 12px) 0;
    line-height: 1.3;
}

.why-description {
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Mobile: Why Transvortex - Accordion (show 1 at a time by default) */
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .why-card {
        border-left: 4px solid var(--color-accent);
    }
    
    .why-card:nth-child(n+2) {
        display: none;
    }
    
    .why-grid.expanded .why-card {
        display: block;
    }
}

/* Desktop: Why Transvortex - 4-card grid */
@media (min-width: 769px) {
    .why-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* View All Services button */
.services-expand-mobile {
    margin-top: clamp(16px, 3vw, 28px);
    text-align: center;
}

@media (min-width: 769px) {
    .services-expand-mobile {
        display: none;
    }
}

/* ========================================
   PREMIUM MINIMAL UX - PHASE 2 (2026-02-03)
   Gallery, Videos, Spotlight, Lightbox
   ======================================== */

/* Work Gallery Carousel */
.work-gallery {
    background: linear-gradient(135deg, rgba(25, 108, 198, 0.02) 0%, rgba(245, 112, 33, 0.02) 100%);
    border-top: 1px solid rgba(25, 108, 198, 0.1);
}

.gallery-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.gallery-carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.gallery-carousel::-webkit-scrollbar {
    display: none;
}

.gallery-track {
    display: flex;
    gap: clamp(12px, 2.5vw, 20px);
    padding-bottom: clamp(12px, 2vw, 16px);
}

.gallery-slide {
    flex: 0 0 auto;
    width: clamp(220px, 72vw, 320px);
    scroll-snap-align: start;
    border-radius: clamp(12px, 2.5vw, 18px);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--color-white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

@media (min-width: 769px) {
    .gallery-slide {
        width: clamp(280px, 28vw, 360px);
    }
}

.gallery-slide:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

@media (hover: none) {
    .gallery-slide:active {
        transform: scale(0.98);
    }
}

.gallery-slide img {
    width: 100%;
    height: clamp(180px, 40vw, 280px);
    object-fit: cover;
    display: block;
}

@media (min-width: 769px) {
    .gallery-slide img {
        height: clamp(220px, 28vw, 320px);
    }
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: clamp(12px, 2vw, 20px);
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(25, 108, 198, 0.3);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active,
.gallery-dot:hover {
    background: var(--color-primary);
    width: 24px;
    border-radius: 4px;
}

/* Gallery Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(20px, 4vw, 40px);
    animation: fadeIn 0.3s ease;
}

.lightbox[hidden] {
    display: none;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: clamp(8px, 2vw, 16px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
    position: fixed;
    top: clamp(12px, 3vw, 24px);
    right: clamp(12px, 3vw, 24px);
    width: clamp(40px, 8vw, 56px);
    height: clamp(40px, 8vw, 56px);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    cursor: pointer;
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.3s ease;
    font-weight: 300;
}

.lightbox-close:hover {
    background: var(--color-white);
    transform: scale(1.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Video Section */
.video-section {
    background: linear-gradient(135deg, rgba(245, 112, 33, 0.02) 0%, rgba(25, 108, 198, 0.02) 100%);
    overflow-x: hidden;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(16px, 3vw, 24px);
    width: 100%;
    max-width: min(100%, 100vw);
}

@media (min-width: 769px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.video-card {
    position: relative;
    border-radius: clamp(12px, 2.5vw, 18px);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    background: var(--color-white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: min(100%, 100vw);
    min-width: 0;
    box-sizing: border-box;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.video-card video {
    width: 100%;
    max-width: min(100%, 100vw);
    max-inline-size: 100vw;
    height: clamp(200px, 45vw, 380px);
    object-fit: cover;
    display: block;
    box-sizing: border-box;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    pointer-events: auto;
}

.video-play-btn {
    width: clamp(56px, 12vw, 80px);
    height: clamp(56px, 12vw, 80px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--color-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
}

.video-play-btn:hover {
    background: var(--color-white);
    transform: scale(1.15);
}

.video-play-btn:active {
    transform: scale(0.95);
}

/* Service Spotlight */
.service-spotlight {
    background: linear-gradient(135deg, rgba(25, 108, 198, 0.04) 0%, rgba(245, 112, 33, 0.04) 100%);
    border-bottom: 1px solid rgba(25, 108, 198, 0.1);
}

.spotlight-tabs {
    display: flex;
    justify-content: center;
    gap: clamp(8px, 2vw, 12px);
    margin-bottom: clamp(20px, 4vw, 32px);
    flex-wrap: wrap;
}

.spotlight-tab {
    padding: clamp(10px, 2vw, 14px) clamp(16px, 3vw, 24px);
    border: 2px solid rgba(25, 108, 198, 0.2);
    border-radius: clamp(20px, 4vw, 28px);
    background: var(--color-white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: clamp(6px, 1.5vw, 10px);
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    font-weight: 600;
    color: var(--color-text-secondary);
}

.spotlight-tab:hover {
    border-color: var(--color-primary);
    background: rgba(25, 108, 198, 0.05);
}

.spotlight-tab.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.tab-icon {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
}

.spotlight-contents {
    position: relative;
    min-height: clamp(280px, 50vw, 360px);
}

.spotlight-content {
    display: none;
    opacity: 0;
    animation: fadeInContent 0.4s ease forwards;
}

.spotlight-content.active {
    display: block;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.spotlight-icon {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: clamp(12px, 2vw, 16px);
    display: block;
}

.spotlight-title {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: clamp(12px, 2vw, 16px);
}

.spotlight-description {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: clamp(16px, 3vw, 24px);
}

.spotlight-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(140px, 45vw, 200px), 1fr));
    gap: clamp(8px, 2vw, 12px);
}

.spotlight-features li {
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    color: var(--color-text-secondary);
    padding: clamp(8px, 1.5vw, 12px);
    background: rgba(25, 108, 198, 0.05);
    border-radius: clamp(6px, 1.5vw, 10px);
    border-left: 3px solid var(--color-primary);
}

/* Premium 2x2 Service Grid (Mobile) */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: clamp(10px, 2.5vw, 14px) !important;
    }

    .service-card {
        padding: clamp(12px, 2.5vw, 16px) !important;
    }

    .service-icon svg {
        width: clamp(28px, 6vw, 36px);
        height: clamp(28px, 6vw, 36px);
    }

    .service-title {
        font-size: clamp(0.8rem, 1.8vw, 0.9rem) !important;
        margin-top: clamp(8px, 1.5vw, 10px);
    }

    .service-description {
        font-size: clamp(0.7rem, 1.5vw, 0.8rem) !important;
        margin-top: clamp(4px, 1vw, 6px);
        line-height: 1.4;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}/* ================================
   How It Works Modal Additions
   ================================ */

/* More Details Button */
.tv-how__more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: clamp(10px, 2.5vw, 14px);
    padding: clamp(6px, 1.5vw, 8px) clamp(12px, 3vw, 16px);
    background: rgba(25, 108, 198, 0.06);
    border: 1px solid rgba(25, 108, 198, 0.15);
    border-radius: clamp(6px, 1.5vw, 8px);
    color: var(--color-primary);
    font-size: clamp(0.8rem, 2vw, 0.875rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.tv-how__more svg {
    flex-shrink: 0;
    opacity: 0.8;
}

.tv-how__more:hover {
    background: rgba(25, 108, 198, 0.1);
    border-color: rgba(25, 108, 198, 0.3);
    transform: translateY(-1px);
}

.tv-how__more:focus-visible {
    outline: 2px solid rgba(25, 108, 198, 0.45);
    outline-offset: 2px;
}

.tv-how__more:active {
    transform: translateY(0);
}

/* ================================
   How It Works Modal (Premium)
   ================================ */
.tv-how-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(16px, 4vw, 24px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tv-how-modal[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

.tv-how-modal__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.tv-how-modal__container {
    position: relative;
    width: 100%;
    max-width: min(92vw, 520px);
    max-height: 80vh;
    background: white;
    border-radius: clamp(16px, 4vw, 20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tv-how-modal[aria-hidden="false"] .tv-how-modal__container {
    transform: scale(1);
}

.tv-how-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(16px, 4vw, 20px) clamp(18px, 4.5vw, 24px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.tv-how-modal__title {
    font-size: clamp(1.15rem, 3vw, 1.4rem);
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}

.tv-how-modal__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(32px, 8vw, 40px);
    height: clamp(32px, 8vw, 40px);
    background: rgba(0, 0, 0, 0.04);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--color-text-light);
}

.tv-how-modal__close:hover {
    background: rgba(0, 0, 0, 0.08);
    color: var(--color-text);
}

.tv-how-modal__close:active {
    transform: scale(0.95);
}

.tv-how-modal__content {
    padding: clamp(18px, 4.5vw, 24px);
    overflow-y: auto;
    flex: 1;
    -webkit-overflow-scrolling: touch;
}

.tv-how-modal__content::-webkit-scrollbar {
    width: 6px;
}

.tv-how-modal__content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 3px;
}

.tv-how-modal__content::-webkit-scrollbar-thumb {
    background: rgba(25, 108, 198, 0.3);
    border-radius: 3px;
}

.tv-how-modal__content::-webkit-scrollbar-thumb:hover {
    background: rgba(25, 108, 198, 0.5);
}

/* Modal Content Structure */
.tv-how-modal__icon {
    font-size: clamp(2.5rem, 6vw, 3rem);
    text-align: center;
    margin-bottom: clamp(12px, 3vw, 16px);
}

.tv-how-modal__desc {
    font-size: clamp(0.95rem, 2.2vw, 1.05rem);
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: clamp(16px, 4vw, 20px);
}

.tv-how-modal__section {
    margin-bottom: clamp(16px, 4vw, 20px);
}

.tv-how-modal__section:last-child {
    margin-bottom: 0;
}

.tv-how-modal__section-title {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: clamp(8px, 2vw, 10px);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tv-how-modal__section-title::before {
    content: '';
    width: 4px;
    height: clamp(16px, 4vw, 20px);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: 2px;
}

.tv-how-modal__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tv-how-modal__list li {
    padding-left: clamp(20px, 5vw, 24px);
    margin-bottom: clamp(8px, 2vw, 10px);
    position: relative;
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    color: var(--color-text-light);
    line-height: 1.5;
}

.tv-how-modal__list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.tv-how-modal__highlight {
    background: rgba(25, 108, 198, 0.08);
    border-left: 3px solid var(--color-primary);
    padding: clamp(10px, 2.5vw, 14px) clamp(12px, 3vw, 16px);
    border-radius: 0 clamp(6px, 1.5vw, 8px) clamp(6px, 1.5vw, 8px) 0;
    margin: clamp(14px, 3.5vw, 18px) 0;
}

.tv-how-modal__highlight p {
    margin: 0;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    color: var(--color-text);
    line-height: 1.5;
    font-weight: 500;
}

.tv-how-modal__cta {
    display: flex;
    gap: clamp(10px, 2.5vw, 12px);
    margin-top: clamp(20px, 5vw, 24px);
    padding-top: clamp(16px, 4vw, 20px);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    flex-wrap: wrap;
}

.tv-how-modal__cta .btn {
    flex: 1;
    min-width: 140px;
}

/* Body Lock When Modal Open */
body.how-modal-open {
    overflow: hidden;
}

body.how-modal-open .quick-actions-row {
    opacity: 0 !important;
    pointer-events: none !important;
}

/* REMOVE_OLD_HEADER_2026_02_11: Header z-index rule removed */

/* ================================
   SAFETY FIX: Hidden Overlays (2026-02-04)
   Prevent hidden elements from blocking clicks
   ================================ */

/* Force pointer-events none on all hidden elements */
/* MOT_OVERLAY_BLOCK_FIX_2026_02_11: Explicit pointer-events control for MOT modal states */
/* REMOVE_OLD_HEADER_2026_02_11: Menu overlay references removed */
[hidden],
[aria-hidden="true"],
.tvx-service-modal:not([data-visible="true"]),
.mot-modal[hidden],
.mot-modal[hidden] .mot-modal-overlay,
.tv-how-modal[hidden],
.tv-why-modal[aria-hidden="true"],
.lightbox[hidden] {
    pointer-events: none !important;
}

/* Ensure visible overlays CAN be clicked */
.tvx-service-modal[data-visible="true"],
.mot-modal:not([hidden]),
.mot-modal:not([hidden]) .mot-modal-overlay,
.tv-how-modal:not([hidden]),
.tv-why-modal[aria-hidden="false"],
.lightbox:not([hidden]) {
    pointer-events: auto !important;
}

/* Ensure spotlight tabs are always clickable */
.spotlight-tab {
    pointer-events: auto !important;
    cursor: pointer;
}
