/* ========================================
   RESET & BASE STYLES
   ======================================== */
.hidden {
    display: none !important;
}

nav, .navbar, header {
    position: relative;
    z-index: 10;
}

.is-hidden {
    display: none !important;
}

.is-open {
    display: block !important;
}

#mobileMenuBtn {
    pointer-events: auto !important;
    cursor: pointer !important;
    z-index: 10005 !important;
    position: relative !important;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    min-width: 44px;
    min-height: 44px;
    box-sizing: border-box;
}

/* Clicks should hit the <button>, not inner spans */
#mobileMenuBtn .mobile-menu-icon,
#mobileMenuBtn .mobile-menu-icon span {
    pointer-events: none;
}

/* Mobile drawer container — visibility controlled under 768px via .mobile-nav--open (see mobile drawer block) */
#mobileNavMenu,
.mobile-nav-menu,
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 45;
    background: transparent;
    padding: 0;
    border-top: none;
}

#mobileNavBackdrop,
.mobile-nav-backdrop {
    display: none;
}

#mobileNavBackdrop.is-hidden,
.mobile-nav-backdrop.is-hidden,
#mobileNavBackdrop[hidden]:not(.mobile-nav-backdrop--visible) {
    display: none !important;
    pointer-events: none !important;
}

/* Mobile menu link styling — detailed rules under @media (max-width: 767px) .mobile-nav-list */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand — tropical gold (replaces former bright blue accent system) */
    --brand-yellow: #F4B400;
    --brand-gold: #F4B400;
    --brand-gold-hover: #E0A106;
    --brand-accent-orange: #F57C00;
    --black: #0B1220;
    --white: #FFFFFF;
    /* Semantic aliases kept so existing selectors stay valid */
    --brand-blue: #F4B400;
    --hyper-blue: #F4B400;
    --yellow: #F4B400;
    --muted-gray: #5B6475;
    --border-gray: #E7EAF0;
    --charcoal: #0B1220;
    
    /* Header system - banner height */
    --banner-h: 64px;
    /* Fixed navbar row (must match .nav-container height) */
    --site-nav-bar-h: 75px;
    /* Navbar — near-black (premium, pairs with gold bar + logo) */
    --nav-bar-bg: #0a0a0a;
    
    /* Legacy aliases for compatibility */
    --dark-yellow: var(--brand-yellow);
    
    /* Spacing (Apple-style - generous) */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 5rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    
    /* Shadows (modern, layered) */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.25);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.3);
    --shadow-glow-blue: 0 0 24px rgba(244, 180, 0, 0.35);
    --brand-blue-dark: #E0A106;
    --brand-blue-rgba: 244, 180, 0;
    --brand-blue-rgba-light: rgba(244, 180, 0, 0.12);
    --brand-blue-rgba-medium: rgba(244, 180, 0, 0.28);
    --brand-blue-rgba-shadow: rgba(244, 180, 0, 0.35);
    
    /* Typography */
    --font-system: "Montserrat", sans-serif;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100%;
}

/* Smooth scroll offset for fixed promo + navbar */
section[id] {
    scroll-margin-top: calc(var(--promo-height, var(--banner-h)) + var(--site-nav-bar-h) + 0.5rem);
}

body {
    margin: 0;
    padding: 0;
    /* Reserve space for fixed promo bar + fixed #site-nav (nav is out of flow) */
    padding-top: calc(var(--promo-height, var(--banner-h)) + var(--site-nav-bar-h));
    font-family: "Montserrat", sans-serif;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--white);
    font-size: 16px;
    overflow-x: hidden;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
}


/* Ensure white cards have dark text for readability */
.offer-card,
.cta-card,
.faq-item {
    color: var(--charcoal);
}


a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:focus-visible {
    outline: 2px solid var(--hyper-blue);
    outline-offset: 2px;
    border-radius: 4px;
}

button:focus-visible {
    outline: 2px solid var(--hyper-blue);
    outline-offset: 2px;
    border-radius: 4px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .container {
        padding: 0 var(--spacing-md);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* Small phones: keep breathing room without squeezing content columns */
@media (max-width: 480px) {
    .container {
        padding-left: 1.125rem;
        padding-right: 1.125rem;
    }
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
    line-height: 1.2;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 0.5em;
}

h1 {
    font-weight: 900;
    font-size: clamp(56px, 7vw, 96px);
    line-height: 1.05;
    letter-spacing: -2px;
}

h2, h3 {
    font-weight: 800;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

h4, h5, h6 {
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-2xl);
    text-align: center;
    color: var(--charcoal);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.2;
}

.section-title .highlight-blue {
    color: var(--brand-blue);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 24px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: "Montserrat", sans-serif;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background-color: var(--yellow);
    color: var(--black);
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--brand-gold-hover);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
    /* Remove translateY to prevent subpixel blur */
}

.btn-primary:active {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-secondary-outline {
    background-color: transparent;
    color: var(--charcoal);
    border: 1.5px solid var(--brand-blue-dark);
    font-weight: 700;
    box-shadow: none;
}

.btn-secondary-outline:hover {
    background-color: var(--brand-gold-hover);
    color: var(--black);
    box-shadow: 0 2px 8px rgba(var(--brand-blue-rgba), 0.25);
    /* Remove translateY to prevent subpixel blur */
}

.btn-secondary-outline:active {
    box-shadow: 0 1px 4px rgba(var(--brand-blue-rgba), 0.2);
}

.btn-header {
    background-color: var(--brand-blue);
    color: var(--white);
    padding: 0 1.5rem;
    font-size: 1.0625rem;
    font-weight: 800;
    margin-left: 30px;
    border-radius: 999px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(var(--brand-blue-rgba), 0.2);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-decoration: none;
    border: none;
    cursor: pointer;
    margin-top: 0;
    margin-bottom: 0;
}

#site-nav .btn-header {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    margin-top: 0;
    margin-bottom: 0;
}

.btn-header:hover {
    background-color: var(--brand-blue-dark);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(var(--brand-blue-rgba), 0.3);
    transform: translateY(-1px);
}

.btn-header:active {
    color: var(--white);
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(var(--brand-blue-rgba), 0.2);
}

.btn-cta {
    font-size: 1.125rem;
    padding: 0 32px;
    height: 56px;
}

/* ========================================
   TOP PROMO BANNER
   ======================================== */
.top-promo-banner {
    position: sticky;
    top: 0;
    z-index: 2000;
    background: var(--brand-blue);
    color: var(--black);
    padding: 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#top-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    z-index: 100;
    margin: 0;
    background: var(--brand-blue);
    color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    height: var(--promo-height, var(--banner-h));
    box-sizing: border-box;
}

.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    z-index: 100;
    background: var(--brand-blue);
    color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    height: var(--promo-height, var(--banner-h));
    box-sizing: border-box;
}

.announcement-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    text-decoration: none;
    transition: opacity 0.2s ease;
    width: 100%;
    height: 100%;
    padding: 16px 16px;
    box-sizing: border-box;
}

.announcement-link:hover {
    opacity: 0.9;
}

.top-promo-banner-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--black) !important;
    text-decoration: none !important;
    transition: opacity 0.2s ease;
    width: 100%;
    height: 100%;
    padding: 0;
}

.top-promo-banner-link:hover {
    opacity: 0.9;
}

.announcement-inner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    text-align: center;
}

.announcement-text {
    display: inline;
    text-align: center;
    line-height: 1.35;
    font-weight: 500;
    font-size: 1.125rem;
    white-space: normal;
}

.announcement-text strong {
    font-weight: 800;
}

.badge {
    background: white;
    color: #000000;
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
}

/* Legacy class support */
.top-promo-banner-new-badge {
    background: var(--white) !important;
    color: #000000 !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    padding: 4px 10px !important;
    border-radius: 999px !important;
    margin-right: 10px !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.top-promo-banner-text {
    flex: 1;
    white-space: normal;
    line-height: 1.5;
}

.top-promo-banner-text strong {
    font-weight: 700;
}

.top-promo-banner-arrow {
    margin-left: 4px;
    font-size: 1rem;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Legacy class support */
.top-promo-banner a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px;
    color: var(--black) !important;
    text-decoration: none !important;
    font-size: 0.875rem;
    font-weight: 500;
    transition: opacity 0.2s ease;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    padding: 0 16px;
}

.top-promo-banner a:hover {
    opacity: 0.9;
}

.top-promo-banner-pill {
    background: var(--white) !important;
    color: #000000 !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    padding: 4px 10px !important;
    border-radius: 999px !important;
    margin-right: 10px !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 767px) {
    .top-promo-banner {
        height: auto !important;
        min-height: 40px !important;
        align-items: center !important;
    }
    
    #top-banner,
    .announcement-bar {
        height: var(--banner-h) !important;
        padding: 0 !important;
        margin: 0 !important;
        top: 0 !important;
    }
    
    .announcement-link {
        padding: 14px 16px !important;
    }
    
    .top-promo-banner-link,
    .top-promo-banner a {
        font-size: 0.8125rem !important;
        width: 100% !important;
        height: auto !important;
        min-height: 100% !important;
    }
    
    .announcement-inner {
        max-width: 100% !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }

    .announcement-text {
        display: inline !important;
        text-align: center !important;
        font-size: 1rem !important;
        line-height: 1.35 !important;
        overflow: visible !important;
        text-overflow: unset !important;
        white-space: normal !important;
    }
    
    .announcement-text strong {
        font-weight: 800 !important;
    }
    
    .badge {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-right: 10px !important;
        font-size: 13px !important;
        padding: 4px 10px !important;
        white-space: nowrap !important;
        vertical-align: middle !important;
    }
    
    /* Legacy class support */
    .top-promo-banner-new-badge,
    .top-promo-banner-pill {
        font-size: 11px !important;
        padding: 4px 10px !important;
        flex-shrink: 0 !important;
        margin-right: 10px !important;
    }
    
    .top-promo-banner-text {
        overflow: visible !important;
        text-overflow: unset !important;
        white-space: normal !important;
        line-height: 1.5 !important;
    }
    
    .top-promo-banner-text strong {
        font-weight: 700 !important;
    }
    
    .top-promo-banner span:not(.top-promo-banner-new-badge):not(.top-promo-banner-pill):not(.top-promo-banner-arrow) {
        overflow: visible !important;
        text-overflow: unset !important;
        white-space: normal !important;
        line-height: 1.5 !important;
    }
    
    .top-promo-banner-arrow {
        white-space: nowrap !important;
    }
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
    left: auto !important;
    right: auto !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    z-index: 40 !important;
    background: var(--nav-bar-bg) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    /* Match .nav-container height (75px) — fixed 64px caused overflow that looked like a second nav bar */
    min-height: 75px;
    height: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease-out, box-shadow 0.3s ease !important;
    transform: none !important;
}

#site-nav {
    position: fixed !important;
    top: var(--promo-height, var(--banner-h));
    left: 0;
    right: 0;
    margin-top: 0 !important;
    padding-top: 0 !important;
    /* Below fixed marketing banner (z-index 100) so nav stays under the promo when both exist */
    z-index: 40 !important;
    background: var(--nav-bar-bg);
    width: 100% !important;
    max-width: 100% !important;
    transform: none;
}

/* Ensure header container is positioned for absolute menu */
#site-nav .header-container,
#site-nav .nav-container {
    position: relative;
}

/* Navbar wrapper positioning context */
.navbar,
.site-header,
.main-header {
    position: relative;
    opacity: 1;
}

.main-header {
    position: fixed;
    margin-top: 0;
    padding-top: 0;
    top: var(--promo-height, var(--banner-h));
    left: 0;
    right: 0;
    z-index: 40;
    background: var(--nav-bar-bg);
    width: 100%;
    transform: none;
    opacity: 1;
}

@media (max-width: 767px) {
    :root {
        /* Compact trust bar — closer default before JS sets --promo-height */
        --banner-h: 56px;
    }
    
    body {
        padding-top: calc(var(--promo-height, var(--banner-h)) + var(--site-nav-bar-h));
        margin-top: 0;
    }
    
    #top-banner {
        margin: 0 !important;
        padding: 0 !important;
        top: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    #site-nav {
        position: fixed !important;
        top: var(--promo-height, var(--banner-h)) !important;
        left: 0;
        right: 0;
        margin-top: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        /* Above hero / page layers; below top promo (z-index 100) */
        z-index: 99 !important;
        overflow: visible !important;
    }
    
    /* Nav container - equal padding on both sides */
    #site-nav .nav-container,
    #site-nav .header-container {
        padding: 0 20px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 75px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        position: relative !important;
        box-sizing: border-box !important;
        overflow: visible !important;
        z-index: 3 !important;
    }
    
    /* Header content wrapper - position relative for absolute brand positioning */
    #site-nav .header-content {
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        position: relative !important;
    }
    
    /* Logo group - left aligned, no extra margins */
    #site-nav .header-brand,
    #site-nav .header-content > .header-brand {
        position: static !important;
        left: auto !important;
        transform: none !important;
        display: flex !important;
        align-items: center !important;
        margin: 0 !important;
        padding: 0 !important;
        flex: none !important;
        justify-content: flex-start !important;
    }
    
    #site-nav .header-brand a {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Hamburger icon - right aligned, not absolutely positioned */
    #site-nav .header-actions,
    #site-nav .header-content > .header-actions {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        position: static !important;
        right: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        height: auto !important;
        flex: none !important;
    }
    
    #site-nav .header-actions {
        display: flex !important;
        align-items: center !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .main-header,
    .site-header {
        position: fixed !important;
        top: var(--promo-height, var(--banner-h)) !important;
        left: 0;
        right: 0;
        margin-top: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .nav-container,
    .header-container {
        padding: 0 20px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        height: 75px !important;
    }
    
    .main-header,
    .site-header {
        margin-top: 0 !important;
        padding-top: 0 !important;
        top: var(--promo-height, var(--banner-h)) !important;
    }
    
    .brand,
    .header-brand-name {
        font-size: 21px !important;
        font-weight: 700 !important;
        line-height: 1 !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        color: var(--white) !important;
        white-space: nowrap !important;
    }
    
    .header-actions .btn-header {
        display: none !important;
    }
    
    .menu-toggle,
    .mobile-menu-toggle {
        font-size: 24px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        margin: 0 !important;
        line-height: 1 !important;
    }
}

.site-header.scrolled {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    background: var(--nav-bar-bg) !important;
}


.header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0;
    margin-bottom: 0;
    box-sizing: border-box;
    height: 75px;
}

#site-nav .header-container,
#site-nav .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    min-height: 75px;
    height: 75px;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.brand {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    color: var(--white);
    margin: 0;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    align-items: center;
}

.brand a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    /* Ensure no gap between banner and header on mobile */
    #site-nav {
        margin-top: 0 !important;
        padding-top: 0 !important;
        top: var(--promo-height, var(--banner-h)) !important;
    }
    
    /* Navbar positioning for pages without banner on mobile */
    body.no-banner #site-nav {
        top: 0 !important;
        margin-top: 0 !important;
    }
    
    /* Nav container - padding and height only */
    #site-nav .header-container,
    #site-nav .nav-container {
        padding-left: 20px !important;
        padding-right: 20px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 75px !important;
        position: relative !important;
        box-sizing: border-box !important;
    }
    
    /* Hide desktop nav links on mobile (drawer uses .header-nav without #headerNav) */
    #site-nav #headerNav {
        display: none !important;
    }
    
    /* Hide call button on mobile */
    #site-nav .btn-header {
        display: none !important;
    }
    
    /* Show hamburger menu on mobile - no absolute positioning */
    #site-nav .mobile-menu-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: none !important;
        border: none !important;
        color: var(--white) !important;
        font-size: 24px !important;
        cursor: pointer !important;
        padding: 0.5rem !important;
        margin: 0 !important;
        line-height: 1 !important;
        height: auto !important;
        position: static !important;
        right: auto !important;
    }
    
    /* Header content wrapper - 3-column grid for perfect equal spacing */
    #site-nav .header-content {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr !important;
        align-items: center !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        height: 100% !important;
    }
    
    /* Logo group - column 1, left aligned, no margins */
    #site-nav .header-brand,
    #site-nav .header-content > .header-brand {
        grid-column: 1 !important;
        justify-self: start !important;
        position: static !important;
        left: auto !important;
        transform: none !important;
        display: flex !important;
        align-items: center !important;
        margin: 0 !important;
        padding: 0 !important;
        justify-content: flex-start !important;
    }
    
    #site-nav .header-brand a {
        display: flex !important;
        align-items: center !important;
        margin: 0 !important;
        padding: 0 !important;
        gap: 10px !important;
    }
    
    /* Ensure brand name is vertically centered */
    #site-nav .header-brand-name {
        display: flex !important;
        align-items: center !important;
        line-height: 1.2 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Hidden nav - place in column 2 but keep hidden */
    #site-nav #headerNav {
        grid-column: 2 !important;
        display: none !important;
    }
    
    /* Hamburger icon - column 3, right aligned, no margins or absolute positioning */
    #site-nav .header-actions,
    #site-nav .header-content > .header-actions {
        grid-column: 3 !important;
        justify-self: end !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        margin: 0 !important;
        padding: 0 !important;
        gap: 0 !important;
        height: auto !important;
        position: relative !important;
        right: auto !important;
        left: auto !important;
        transform: none !important;
        z-index: auto !important;
    }
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    gap: 2rem;
    margin-top: 0;
    margin-bottom: 0;
    min-height: 72px;
    height: 100%;
    box-sizing: border-box;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header-content > .header-brand {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.header-content > #headerNav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-content > .header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: 0;
}

.header-brand {
    display: flex;
    align-items: center;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 15px;
    padding-left: 0;
    position: static;
    top: auto;
    bottom: auto;
}

.header-brand a {
    text-decoration: none;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 0;
    padding-left: 0;
}

.header-brand a:hover {
    opacity: 0.85;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    justify-content: flex-end;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s ease;
    line-height: 1;
}

.mobile-menu-toggle:hover {
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 767px) {
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.5rem !important; /* 24px */
        padding: 0 !important;
        margin: 0 !important;
        width: auto !important;
        height: auto !important;
        line-height: 1 !important;
        vertical-align: middle !important;
    }
    
    /* Hide call button on mobile */
    .header-actions .btn-header {
        display: none !important;
    }
    
    /* Ensure top-bar nav links are hidden on mobile */
    #headerNav {
        display: none !important;
    }
    
    /* Mobile header content - brand left, hamburger right */
    .header-content {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        gap: 0 !important;
    }
    
    /* Logo left aligned, vertically centered */
    .header-brand {
        margin: 0 !important;
        padding: 0 !important;
        margin-left: 0 !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .header-brand a {
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }
    
    /* Hamburger right aligned, vertically centered */
    .header-actions {
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        position: relative !important;
        z-index: auto !important;
    }
}

.header-actions .btn-header {
    white-space: nowrap;
}

.header-logo {
    height: 32px;
    width: auto;
    max-height: 32px;
    object-fit: contain;
    margin-right: 0;
    display: inline-block;
    vertical-align: middle;
}

.header-brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.01em;
    white-space: nowrap;
    transition: color 0.2s ease;
    margin: 0;
    display: flex;
    align-items: center;
    position: static;
    top: auto;
    bottom: auto;
}

.header-brand a:hover .header-brand-name {
    color: rgba(255, 255, 255, 0.85);
}

#headerNav {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 0;
    margin-bottom: 0;
    position: static;
    top: auto;
    bottom: auto;
}

@media (min-width: 768px) {
    #headerNav {
        display: flex;
        align-items: center;
        gap: 30px;
    }
}

@media (min-width: 1024px) {
    #headerNav {
        gap: 2.5rem;
    }
    
    /* Desktop navbar container - max-width container centered, full-width background */
    #site-nav {
        background: var(--nav-bar-bg);
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
    }
    
    #site-nav .header-container,
    #site-nav .nav-container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        height: 75px !important;
        min-height: 75px !important;
        max-height: 75px !important;
        max-width: 1200px !important;
        margin: 0 auto !important;
        padding: 0 20px !important;
    }
    
    /* Desktop header content - flex layout with space-between */
    #site-nav .header-content {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        height: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Logo/brand group - left aligned with margin */
    #site-nav .header-brand,
    #site-nav .header-content > .header-brand {
        display: flex !important;
        align-items: center !important;
        margin-left: 15px !important;
        padding: 0 !important;
        position: static !important;
        top: auto !important;
        height: 100% !important;
    }
    
    #site-nav .header-brand a {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        margin: 0 !important;
        padding: 0 !important;
        height: 100% !important;
    }
    
    /* Nav links group - flex container with gap */
    #site-nav #headerNav,
    #site-nav .header-content > #headerNav {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 0 !important;
        height: 100% !important;
        gap: 30px !important;
    }
    
    #site-nav #headerNav a,
    #site-nav .services-dropdown-toggle {
        display: flex !important;
        align-items: center !important;
        margin: 0 !important;
        padding: 0.5rem 0.25rem !important;
        line-height: 1 !important;
        height: auto !important;
    }
    
    /* CTA button group - aligned with nav content */
    #site-nav .header-actions,
    #site-nav .header-content > .header-actions {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        margin: 0 !important;
        padding: 0 !important;
        height: 100% !important;
    }
    
    /* Call button spacing - consistent with nav links */
    #site-nav .btn-header {
        margin-left: 30px !important;
    }
    
    /* Brand name text - ensure vertical centering */
    #site-nav .header-brand-name {
        display: flex !important;
        align-items: center !important;
        line-height: 1 !important;
        margin: 0 !important;
        padding: 0 !important;
        height: auto !important;
    }
    
    /* Fix desktop CTA button - fixed height, prevent shrinking, ensure vertical centering */
    #site-nav .btn-header {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        line-height: 1 !important;
        margin: 0 !important;
        padding: 0 1.5rem !important;
        position: static !important;
        top: auto !important;
        vertical-align: middle !important;
        height: 46px !important;
        font-size: 1.0625rem !important;
        font-weight: 800 !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
        flex: 0 0 auto !important;
    }
    
    /* Ensure CTA button wrapper has no offsets causing low alignment */
    #site-nav .header-actions {
        display: flex !important;
        align-items: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

/* Desktop header: no phone CTA in the top bar (mobile drawer keeps call link) */
@media (min-width: 768px) {
    #site-nav #headerCallBtn {
        display: none !important;
    }
}


.header-nav a {
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    transition: all 0.2s ease;
    text-decoration: none;
    padding: 0.5rem 0.25rem;
    position: relative;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    margin-top: 0;
    margin-bottom: 0;
    top: auto;
    bottom: auto;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-yellow);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.header-nav a:hover {
    color: rgba(255, 255, 255, 0.85);
}

.header-nav a:hover::after {
    width: 100%;
}

.header-nav a.active {
    color: var(--white);
    font-weight: 600;
}

.header-nav a.active::after {
    width: 100%;
}

/* Services Dropdown */
.services-dropdown {
    position: relative;
}

/* Create hover bridge to cover gap between button and menu */
.services-dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: -50%;
    right: -50%;
    height: 0.75rem;
    background: transparent;
    z-index: 999;
    pointer-events: auto;
}

@media (hover: hover) {
    .services-dropdown:hover .services-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
        pointer-events: auto;
    }
    
    .services-dropdown:hover .services-dropdown-toggle {
        color: rgba(255, 255, 255, 0.85);
    }
    
    .services-dropdown:hover .services-dropdown-toggle::after {
        width: 100%;
    }
}

.services-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    cursor: pointer;
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    transition: all 0.2s ease;
    background: none;
    border: none;
    padding: 0.5rem 0.25rem;
    position: relative;
    white-space: nowrap;
}

.services-dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-yellow);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.services-dropdown-toggle .dropdown-arrow {
    font-size: 0.625rem;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 0.25rem;
    opacity: 0.7;
}

.services-dropdown-toggle:hover .dropdown-arrow {
    opacity: 1;
}

.services-dropdown-toggle.open .dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.services-dropdown-toggle:hover {
    color: rgba(255, 255, 255, 0.85);
}

.services-dropdown-toggle:hover::after {
    width: 100%;
}

.services-dropdown-toggle.active {
    color: var(--white);
    font-weight: 600;
}

.services-dropdown-toggle.active::after {
    width: 100%;
}


.services-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.25rem);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    min-width: 280px;
    padding: 0.75rem 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    margin-top: 0.5rem;
    pointer-events: none;
}

.services-dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Keep menu open when hovering over it */
.services-dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.services-dropdown-menu a {
    display: block;
    padding: 0.75rem 2rem;
    color: var(--charcoal);
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.15s ease;
    margin: 0;
    font-weight: 500;
    white-space: nowrap;
    border-radius: var(--radius-sm);
    position: relative;
}

.services-dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--brand-blue);
    border-radius: 0 2px 2px 0;
    transition: height 0.2s ease;
}

.services-dropdown-menu a:hover {
    background-color: rgba(var(--brand-blue-rgba), 0.1);
    color: var(--charcoal);
    padding-left: 1.5rem;
}

.services-dropdown-menu a:hover::before {
    height: 60%;
}

.services-dropdown-menu a.active {
    background-color: rgba(var(--brand-blue-rgba), 0.14);
    color: var(--charcoal);
    font-weight: 600;
    padding-left: 1.5rem;
}

.services-dropdown-menu a.active::before {
    height: 60%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s ease;
    line-height: 1;
    z-index: 100;
}

.mobile-menu-toggle:hover {
    color: rgba(255, 255, 255, 0.85);
}

/* Hamburger / close icon (no Unicode glyph in markup — three bars + CSS X when open) */
.mobile-menu-icon {
    display: block;
    position: relative;
    width: 1.35rem;
    height: 1rem;
    margin: 0 auto;
}

.mobile-menu-icon span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-icon span:nth-child(1) {
    top: 0;
}

.mobile-menu-icon span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-icon span:nth-child(3) {
    bottom: 0;
}

#mobileMenuBtn[aria-expanded="true"] .mobile-menu-icon span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

#mobileMenuBtn[aria-expanded="true"] .mobile-menu-icon span:nth-child(2) {
    opacity: 0;
}

#mobileMenuBtn[aria-expanded="true"] .mobile-menu-icon span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

@media (max-width: 767px) {
    .mobile-menu-toggle {
        display: block;
    }
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99999;
    background: var(--nav-bar-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--spacing-lg);
    animation: slideDown 0.3s ease-out;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    max-height: 80vh;
    overflow-y: auto;
    width: 100%;
}

@media (max-width: 767px) {
    .mobile-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 99999;
    }
    
    /* Mobile services dropdown — see consolidated #mobileNavMenu rules near body.menu-open */
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu.active {
    display: block !important;
}

#mobileNavMenu.hidden {
    display: none !important;
}

.mobile-menu .header-nav {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
}

.mobile-menu .header-nav > a,
.mobile-menu .services-dropdown {
    display: block;
    padding: var(--spacing-sm) 0;
    font-size: 1.125rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.mobile-menu .services-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
}

.mobile-menu .services-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--border-gray);
    margin-top: var(--spacing-xs);
    margin-left: var(--spacing-md);
    display: none;
}

.mobile-menu .services-dropdown-menu.open {
    display: block;
}


@media (min-width: 768px) {
    #headerNav {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .mobile-menu,
    .mobile-menu.active {
        display: none !important;
    }

    /* Drawer lives in #site-nav; must stay hidden on tablet/desktop (only top bar visible) */
    #mobileNavMenu,
    #mobileNavMenu.mobile-nav--open,
    #mobileNavMenu[style*="display: flex"],
    #mobileNavMenu[style*="display:flex"] {
        display: none !important;
    }

    #mobileNavBackdrop,
    .mobile-nav-backdrop,
    #mobileNavBackdrop.mobile-nav-backdrop--visible {
        display: none !important;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 65vh;
    max-height: 75vh;
    padding: calc(var(--spacing-3xl) + 60px) var(--spacing-lg) var(--spacing-3xl);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 0;
}

@media (max-width: 767px) {
    .hero {
        padding: calc(64px + 40px) var(--spacing-lg) 40px !important;
        min-height: auto !important;
        max-height: none !important;
        margin-bottom: 0 !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }
    
    .hero-container {
        max-width: 92% !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        text-align: center !important;
    }
}

@media (min-width: 768px) {
    .hero {
        min-height: 70vh;
        max-height: 80vh;
        padding: calc(var(--spacing-4xl) + 60px) var(--spacing-xl) var(--spacing-4xl);
    }
}

.hero-image {
    position: absolute;
    inset: 0;
    background-image: url('./assets/Tropical%20epoxy%20hero%20image.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    z-index: 1;
    /* Ensure sharp rendering */
    transform: translateZ(0);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    pointer-events: none;
}

@media (max-width: 767px) {
    .hero-overlay {
        background: rgba(0, 0, 0, 0.5) !important;
    }
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 var(--spacing-lg);
}

.hero-card {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    max-width: 600px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    /* Ensure crisp rendering */
    transform: translateZ(0);
    will-change: transform;
}

@media (max-width: 767px) {
    .hero-card {
        max-width: 92%;
        padding: 1.5rem 1.25rem;
        margin: 0 auto;
        gap: var(--spacing-sm);
    }
}

.hero-brand-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--hyper-blue);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
    text-align: center;
}

@media (min-width: 768px) {
    .hero-brand-label {
        text-align: left;
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--white);
    margin: 0;
    margin-bottom: 12px;
    text-align: center;
    max-width: 100%;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-title .highlight-blue {
    color: var(--white);
}

section.hero .hero-title .highlight-blue {
    color: var(--brand-yellow);
}

@media (max-width: 767px) {
    .hero-title {
        font-size: clamp(46px, 10vw, 64px) !important;
        line-height: 1.05 !important;
        font-weight: 700 !important;
        letter-spacing: -0.5px !important;
        margin-top: 0 !important;
        margin-bottom: 10px !important;
        max-width: 92% !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
        text-align: center;
        line-height: 1.15;
        margin-bottom: 16px;
        max-width: 900px;
        font-weight: 700;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.75rem;
        font-weight: 700;
        line-height: 1.15;
        max-width: 1000px;
        margin-bottom: 18px;
    }
}

.hero-subtitle {
    margin: 0;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--white);
    line-height: 1.6;
    font-weight: 400;
    max-width: 600px;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
}

@media (max-width: 767px) {
    .hero-subtitle {
        font-size: 24px !important;
        line-height: 1.55 !important;
        font-weight: 400 !important;
        opacity: 1 !important;
        max-width: 85% !important;
        margin-top: 0 !important;
        margin-bottom: 16px !important;
    }
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.75rem;
        margin-bottom: 24px;
        max-width: 700px;
    }
}

.hero-value-badge {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.value-strikethrough {
    font-size: 1.25rem;
    color: var(--muted-gray);
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    font-weight: 500;
}

.value-free {
    font-size: 1.75rem;
    color: var(--brand-blue);
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1;
}

.value-label {
    font-size: 0.9em;
    color: var(--muted-gray);
    font-weight: 600;
    letter-spacing: 0.01em;
}

.hero-competitor-contrast {
    font-size: 0.9375rem;
    color: var(--muted-gray);
    line-height: 1.6;
    margin-top: var(--spacing-md);
    margin-bottom: 0;
    font-style: italic;
}

.hero-trust-bullets {
    list-style: none;
    margin: 0;
    margin-bottom: var(--spacing-md);
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

@media (min-width: 768px) {
    .hero-trust-bullets {
        flex-direction: row;
        gap: 16px;
        flex-wrap: wrap;
    }
}

.hero-trust-bullets {
    margin-top: var(--spacing-md);
    margin-bottom: 0;
}

.hero-trust-bullets li {
    font-size: 0.875rem;
    color: var(--black);
    line-height: 1.5;
    position: relative;
    padding-left: 16px;
    list-style: none;
}

.hero-trust-bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--hyper-blue);
    font-weight: bold;
    font-size: 1.125rem;
}

.hero-supporting-statement {
    margin: 0;
    margin-bottom: var(--spacing-sm);
    font-size: 0.9375rem;
    color: var(--black);
    line-height: 1.6;
    opacity: 0.75;
    padding-left: 12px;
    border-left: 3px solid var(--dark-yellow);
}

@media (min-width: 768px) {
    .hero-supporting-statement {
        font-size: 1rem;
        margin-bottom: var(--spacing-md);
    }
}

.hero-cta {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 500px;
}

@media (max-width: 767px) {
    .hero-cta {
        width: 94vw !important;
        max-width: none !important;
        margin: 0 auto !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-cta .btn {
        width: 100% !important;
        max-width: 100% !important;
        height: 64px !important;
        min-height: 64px !important;
        border-radius: 999px !important;
        font-size: 17px !important;
        font-weight: 800 !important;
        padding: 0 24px !important;
        letter-spacing: 0.02em;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: unset !important;
        margin: 0 !important;
        position: relative !important;
        z-index: 1 !important;
    }
}

.hero-cta .btn {
    width: 100%;
    max-width: 100%;
    font-size: 1.125rem;
    letter-spacing: 0.02em;
    padding: 0 32px;
    font-weight: 800;
    color: var(--black);
    background-color: var(--brand-blue);
    border-radius: 50px;
    height: 56px;
    min-height: 56px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-cta .btn:hover {
    background-color: var(--brand-gold-hover);
    color: var(--black);
}

.hero-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.hero-cta .btn:hover::before {
    transform: scale(1);
}

.hero-cta .btn > * {
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .hero-cta {
        max-width: 400px;
    }
    
    .hero-cta .btn {
        width: 100%;
        min-width: auto;
        font-size: 1.25rem;
        letter-spacing: 0.02em;
        padding: 0 40px;
        font-weight: 800;
        color: var(--black);
        background-color: var(--brand-blue);
        border-radius: 50px;
        height: 64px;
        min-height: 64px;
    }
}

/* ========================================
   HOME HERO — SPLIT (MARKETING + ESTIMATE CARD)
   ======================================== */
.hero.hero--split {
    min-height: clamp(520px, 85vh, 880px);
    max-height: none;
    align-items: center;
    justify-content: center;
    padding: calc(var(--spacing-3xl) + 56px) var(--spacing-lg) calc(var(--spacing-3xl) + 5.5rem);
}

@media (min-width: 768px) {
    .hero.hero--split {
        padding: calc(var(--spacing-4xl) + 56px) var(--spacing-xl) calc(var(--spacing-4xl) + 4rem);
        min-height: clamp(560px, 88vh, 920px);
    }
}

/* Homepage: no top promo bar — no top padding so hero media sits flush under the nav */
body.no-banner .hero.hero--split {
    padding: 0 var(--spacing-lg) calc(var(--spacing-3xl) + 5.5rem);
}

@media (min-width: 768px) {
    body.no-banner .hero.hero--split {
        padding: clamp(1rem, 2vw, 1.5rem) var(--spacing-xl) calc(var(--spacing-4xl) + 4rem);
    }
}

.hero-container.hero-container--split {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
    text-align: left;
    padding: 0 clamp(var(--spacing-md), 4vw, var(--spacing-xl));
}

/* Homepage hero: wrapper is layout-neutral on desktop */
@media (min-width: 768px) {
    .hero-split__mobile-column {
        display: contents;
    }
}

.hero-split__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0;
}

.hero-eyebrow {
    margin: 0 auto 0.75rem;
    max-width: 100%;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand-yellow);
    line-height: 1.3;
    text-align: center;
}

.hero-title.hero-title--split {
    margin: 0 auto 1rem;
    text-align: center;
    font-size: clamp(2.35rem, 3.6vw, 3.5rem);
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: 0.035em;
    color: var(--white);
    max-width: min(100%, 26ch);
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

/* Mobile: enforce clean 2-line break, keep "CONCRETE FINISHES" together */
@media (max-width: 480px) {
    .hero-title.hero-title--split {
        max-width: min(100%, 30ch);
        font-size: clamp(2.05rem, 8.2vw, 2.55rem);
        line-height: 1.1;
        letter-spacing: 0.03em;
    }

    .hero-title.hero-title--split .hero-title__row {
        display: block;
    }

    .hero-title.hero-title--split .hero-title__row:last-child {
        white-space: nowrap;
    }
}

/* Desktop/tablet: two fixed lines — "PREMIUM EPOXY &" / "CONCRETE FINISHES" (no mid-phrase breaks) */
@media (min-width: 768px) {
    .hero-title.hero-title--split {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-title.hero-title--split .hero-title__row {
        display: block;
        width: max-content;
        max-width: 100%;
        white-space: nowrap;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }

    .hero-title.hero-title--split .hero-title__row + .hero-title__row {
        margin-top: 0.06em;
    }

    .hero-title.hero-title--split .hero-title__row:first-child::after {
        content: none;
    }
}

.hero-subtitle.hero-subtitle--split {
    margin: 0 auto 1.5rem;
    text-align: center;
    font-size: clamp(1rem, 1.35vw, 1.1875rem);
    line-height: 1.65;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.94);
    max-width: 36rem;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}

.hero-split__form-wrap {
    position: relative;
    z-index: 4;
    width: 100%;
    text-align: left;
}

.hero-estimate-card {
    background: var(--white);
    border-radius: 20px;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    box-shadow:
        0 4px 0 rgba(244, 180, 0, 0.35),
        0 28px 64px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(11, 18, 32, 0.06);
}

.hero-estimate-card__title {
    margin: 0 0 1.25rem;
    font-size: clamp(1.35rem, 2.75vw, 1.6875rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--black);
}

.hero-estimate-card__subline {
    margin: -0.35rem auto 1.125rem;
    max-width: 24rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    font-weight: 500;
    color: rgba(47, 54, 64, 0.88);
    text-align: center;
}

.hero-estimate-expand-btn {
    display: none;
}

/* Split homepage: desktop shows .hero-home-quote-inline only; mobile shows .hero-home-quote-mobile-cta */
.hero-home-quote-mobile-cta {
    display: none;
}

.hero-estimate-modal-cta {
    text-decoration: none;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .hero.hero--split .hero-home-quote-mobile-cta {
        display: none !important;
    }

    .booking-section .hero-estimate-modal-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.75rem;
    }
}

.hero-estimate-card__collapsible-inner {
    min-height: 0;
}

@media (min-width: 768px) {
    .hero-estimate-card__collapsible {
        display: block;
    }

    .hero-estimate-card__collapsible-inner {
        overflow: visible;
    }
}

.hero-estimate-form.booking-form {
    max-width: none;
    margin: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-estimate-form .form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--charcoal);
}

/* Paired fields: equal columns, no overflow past card edge */
.hero-estimate-form .form-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.625rem;
    margin-bottom: 0.75rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-estimate-form .form-row .form-group {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-estimate-form .hero-form-group--full {
    margin-bottom: 0.75rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-estimate-form .form-group input,
.hero-estimate-form .form-group select,
.hero-estimate-form .form-group textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 11px 14px;
    font-size: 0.9375rem;
    border-radius: 10px;
    border-color: rgba(11, 18, 32, 0.12);
    background-color: #fafbfc;
}

.hero-estimate-form .form-group input:focus,
.hero-estimate-form .form-group select:focus,
.hero-estimate-form .form-group textarea:focus {
    background-color: var(--white);
    border-color: var(--brand-yellow);
    box-shadow: 0 0 0 3px rgba(244, 180, 0, 0.2);
}

.hero-estimate-form .form-group textarea {
    min-height: 88px;
    resize: vertical;
}

.te-edge-glow-wrap--hero-submit {
    margin-top: 0.5rem;
}

.hero-estimate-submit {
    width: 100%;
    margin-top: 0;
    padding: 0.95rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 800;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(244, 180, 0, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hero-estimate-submit:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(244, 180, 0, 0.45);
}

.hero-estimate-submit:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

.hero-form-message.form-message {
    margin-top: 1rem;
    margin-bottom: 0;
}

.hero-form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 767px) {
    /* Homepage split hero only: stacked image → copy (light panel) → white estimate card */
    .hero.hero--split {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        overflow: visible !important;
        min-height: 0 !important;
        max-height: none !important;
        /* Breathing room: below nav/banner, then image, then content */
        /* Bottom padding 0: avoids gray (#eef0f3) band between white panel and serving line */
        padding: clamp(2rem, 7vw, 3.25rem) 0 0 !important;
        /* No flex gap between image and white panel — gap showed #eef0f3 as a divider; inner padding handles rhythm */
        gap: 0 !important;
        z-index: 0;
        background: #eef0f3;
    }

    /* No top promo: remove gray band above hero image (was padding-top + section bg #eef0f3) */
    body.no-banner .hero.hero--split {
        padding: 0 !important;
    }

    /* Fixed-height image strip (not full-bleed section background) */
    .hero.hero--split .hero-image {
        position: relative !important;
        inset: auto !important;
        width: 100% !important;
        height: clamp(300px, 82vw, 360px) !important;
        min-height: 300px !important;
        max-height: 360px !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
        background-size: cover, cover !important;
        /* Anchor crop to upper area so heads, shoulders, and shirts/logo stay in frame */
        background-position: 50% 18%, 50% 18% !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
        /* Subtle tint over photo (replaces heavy full-section overlay) */
        background-image: linear-gradient(180deg, rgba(11, 18, 32, 0.12), rgba(11, 18, 32, 0.2)), url('./assets/Tropical%20epoxy%20hero%20image.png') !important;
        z-index: 1 !important;
        order: 0 !important;
        border-radius: 0 !important;
    }

    .hero.hero--split .hero-overlay {
        display: none !important;
    }

    .hero.hero--split .hero-container.hero-container--split {
        display: grid !important;
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100% !important;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        /* Space between headline block, CTA, and trust line */
        gap: clamp(24px, 6vw, 32px) !important;
        padding: clamp(1.25rem, 4vw, 1.75rem) 1rem clamp(0.5rem, 2vw, 0.85rem) !important;
        box-sizing: border-box;
        align-items: stretch;
        justify-content: start;
        justify-items: stretch;
        position: relative;
        z-index: 3;
        background: #ffffff !important;
        order: 1;
    }

    /* Mobile centering polish: ensure all hero content shares one centered column */
    .hero.hero--split .hero-container.hero-container--split {
        justify-items: center !important;
    }

    /* Tight centered inner column for the entire first hero content section */
    .hero.hero--split .hero-split__mobile-column {
        width: 100%;
        max-width: 24rem; /* tuned for 390px wide phones */
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(24px, 6vw, 32px);
    }

    .hero.hero--split .hero-split__content {
        order: 0;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .hero.hero--split .hero-eyebrow {
        text-align: center;
        width: 100%;
        margin: 0 auto 0.45rem;
        font-size: 0.6875rem;
        color: var(--brand-yellow);
    }

    .hero.hero--split .hero-title.hero-title--split {
        text-align: center !important;
        width: 100%;
        max-width: 100% !important;
        margin: 0 auto 0.5rem !important;
        font-size: clamp(2.1rem, 6.55vw, 3.02rem) !important;
        line-height: 1.082 !important;
        font-weight: 800 !important;
        letter-spacing: 0.017em !important;
        color: var(--black) !important;
        text-shadow: none !important;
    }

    .hero.hero--split .hero-title.hero-title--split .hero-title__row {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    .hero.hero--split .hero-title.hero-title--split .hero-title__row + .hero-title__row {
        margin-top: 0.06em;
    }

    .hero.hero--split .hero-subtitle.hero-subtitle--split {
        text-align: center !important;
        width: 100%;
        max-width: 36rem !important;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-bottom: 0 !important;
        font-size: clamp(0.9375rem, 3.1vw, 1.0625rem) !important;
        line-height: 1.45 !important;
        font-weight: 500 !important;
        color: rgba(11, 18, 32, 0.78) !important;
        text-shadow: none !important;
        opacity: 1 !important;
    }

    .hero.hero--split .hero-split__form-wrap {
        order: 1;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    /* Collapsed: no inner “card” — CTA reads as part of the white panel (expanded keeps premium card) */
    .hero.hero--split .hero-estimate-card {
        position: relative;
        box-sizing: border-box;
        text-align: center;
    }

    .hero.hero--split .hero-estimate-card:not(.is-expanded) {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    .hero.hero--split .hero-estimate-card.is-expanded {
        width: calc(100% - 32px) !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-top: 0 !important;
        padding: clamp(20px, 5vw, 24px) !important;
        border-radius: 22px !important;
        background: var(--white) !important;
        border: 1px solid rgba(11, 18, 32, 0.08);
        box-shadow:
            0 4px 0 rgba(244, 180, 0, 0.28),
            0 18px 40px rgba(11, 18, 32, 0.1);
        text-align: left;
    }

    .hero.hero--split .hero-estimate-card.is-expanded .hero-estimate-card__title {
        text-align: left;
        margin-bottom: 1rem !important;
    }

    .hero.hero--split .hero-estimate-form .form-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 0.875rem !important;
        margin-bottom: 0.875rem !important;
    }

    .hero.hero--split .hero-estimate-form .hero-form-group--full {
        margin-bottom: 0.875rem !important;
    }

    .hero.hero--split .hero-estimate-form .form-group input,
    .hero.hero--split .hero-estimate-form .form-group select,
    .hero.hero--split .hero-estimate-form .form-group textarea {
        padding: 12px 14px !important;
    }

    .hero.hero--split .hero-estimate-form .form-group textarea {
        min-height: 80px !important;
    }

    .hero.hero--split .te-edge-glow-wrap--hero-submit {
        margin-top: 0.65rem !important;
    }

    /* Mobile: trust line below primary CTA (grid row after form) */
    .hero.hero--split .hero-split__trust-line {
        display: block;
        order: 2;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
        font-size: 0.6875rem;
        font-weight: 600;
        letter-spacing: 0.07em;
        text-transform: uppercase;
        color: rgba(11, 18, 32, 0.52);
        line-height: 1.55;
        text-align: center;
    }

    /* Collapsed estimate card: single CTA, form expands in place */
    .hero-estimate-expand-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0;
        min-height: 52px;
        padding: 1rem 1.35rem;
        font-size: 1.0625rem;
        font-weight: 800;
        border-radius: 14px;
        border: none;
        cursor: pointer;
        box-shadow:
            0 2px 0 rgba(224, 161, 6, 0.45),
            0 8px 24px rgba(244, 180, 0, 0.32),
            0 14px 36px rgba(11, 18, 32, 0.1);
        transition: transform 0.15s ease, box-shadow 0.15s ease;
    }

    .hero-estimate-expand-btn:hover {
        transform: translateY(-1px);
        box-shadow:
            0 3px 0 rgba(224, 161, 6, 0.5),
            0 10px 28px rgba(244, 180, 0, 0.38),
            0 18px 40px rgba(11, 18, 32, 0.12);
    }

    /* Split homepage mobile: single CTA opens shared modal; inline quote card hidden */
    .hero.hero--split .hero-home-quote-mobile-cta {
        display: block;
        width: 100%;
        text-align: center;
        margin: 0 0 0.35rem;
        box-sizing: border-box;
    }

    .hero.hero--split .hero-home-quote-inline {
        display: none !important;
    }

    .hero.hero--split .hero-home-quote-mobile-cta__btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0;
        min-height: 52px;
        padding: 1rem 1.35rem;
        font-size: 1.0625rem;
        font-weight: 800;
        border-radius: 14px;
        text-decoration: none;
        box-sizing: border-box;
        box-shadow:
            0 2px 0 rgba(224, 161, 6, 0.45),
            0 8px 24px rgba(244, 180, 0, 0.32),
            0 14px 36px rgba(11, 18, 32, 0.1);
        transition: transform 0.15s ease, box-shadow 0.15s ease;
    }

    .hero.hero--split .hero-home-quote-mobile-cta__btn:hover {
        transform: translateY(-1px);
        box-shadow:
            0 3px 0 rgba(224, 161, 6, 0.5),
            0 10px 28px rgba(244, 180, 0, 0.38),
            0 18px 40px rgba(11, 18, 32, 0.12);
    }

    .hero-estimate-modal-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0;
        min-height: 52px;
        padding: 1rem 1.35rem;
        font-size: 1.0625rem;
        font-weight: 800;
        border-radius: 14px;
        text-decoration: none;
        box-sizing: border-box;
        box-shadow:
            0 2px 0 rgba(224, 161, 6, 0.45),
            0 8px 24px rgba(244, 180, 0, 0.32),
            0 14px 36px rgba(11, 18, 32, 0.1);
        transition: transform 0.15s ease, box-shadow 0.15s ease;
    }

    .hero-estimate-modal-cta:hover {
        transform: translateY(-1px);
        box-shadow:
            0 3px 0 rgba(224, 161, 6, 0.5),
            0 10px 28px rgba(244, 180, 0, 0.38),
            0 18px 40px rgba(11, 18, 32, 0.12);
    }

    .hero-estimate-card.is-expanded .hero-estimate-modal-cta {
        display: inline-flex !important;
        margin-bottom: 0.75rem;
    }

    /* Homepage hero only: collapsed card hides heading for compact CTA */
    .hero.hero--split .hero-estimate-card:not(.is-expanded) .hero-estimate-card__title {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .hero.hero--split .hero-estimate-card.is-expanded .hero-estimate-card__title {
        position: static;
        width: auto;
        height: auto;
        margin: 0 0 1rem !important;
        clip: auto;
        overflow: visible;
        white-space: normal;
    }

    .hero-estimate-card.is-expanded .hero-estimate-expand-btn {
        display: none !important;
    }

    .hero-estimate-card.is-expanded .te-edge-glow-wrap--hero-expand {
        display: none !important;
    }

    .hero-estimate-card__collapsible {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hero-estimate-card.is-expanded .hero-estimate-card__collapsible {
        grid-template-rows: 1fr;
    }

    .hero-estimate-card__collapsible-inner {
        overflow: hidden;
    }

    .hero-estimate-card.is-expanded .hero-estimate-card__collapsible-inner {
        overflow: visible;
    }

    /* Trust line lives in .hero-split__trust-line on homepage; hide duplicate in form */
    .hero.hero--split .hero-form-reassurance {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-estimate-card__collapsible {
        transition-duration: 0.01ms !important;
    }
}

/* Tight phones (e.g., 390px): prevent right-edge clip from all-caps + nowrap row */
@media (max-width: 420px) {
    .hero.hero--split .hero-title.hero-title--split {
        font-size: clamp(1.95rem, 7.35vw, 2.5rem) !important;
        letter-spacing: 0.012em !important;
    }
}

.hero-split__trust-line {
    display: none;
}

.hero-form-reassurance {
    margin: 0.75rem 0 0;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(11, 18, 32, 0.55);
    text-align: center;
    line-height: 1.5;
}

.hero-form-reassurance__sep {
    margin: 0 0.35em;
    color: rgba(11, 18, 32, 0.35);
}

@media (min-width: 768px) {
    .hero-form-reassurance {
        font-size: 0.75rem;
    }
}

/* ========================================
   HOMEPAGE — WHY TROPICAL EPOXIES (split: image + trust narrative)
   ======================================== */
.why-tropical-section {
    padding: 3.25rem var(--spacing-lg) 3.75rem;
    background: #ffffff;
    border-top: 1px solid rgba(11, 18, 32, 0.06);
    border-bottom: 1px solid rgba(11, 18, 32, 0.05);
}

.why-tropical-section__inner {
    max-width: 920px;
}

.why-tropical-section__inner--slab {
    max-width: 1080px;
}

.why-tropical-slab {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.35rem, 3.5vw, 2rem);
    align-items: center;
}

.why-tropical-slab__media {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(11, 18, 32, 0.08);
    box-shadow: 0 10px 36px rgba(11, 18, 32, 0.08);
    background: #e8eaee;
}

.why-tropical-slab__img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: 50% 22%;
}

.why-tropical-slab__body {
    text-align: left;
    padding: 0 0.15rem;
}

/* Centered header stack (matches #options intro rhythm; body/detail stay left-aligned) */
.why-tropical-slab__intro {
    text-align: center;
}

.why-tropical-slab__title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.58rem, 4.55vw, 2.9rem);
    font-weight: 800;
    color: var(--charcoal);
    margin: 0 0 0.65rem;
    line-height: 1.05;
    letter-spacing: 0.038em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.why-tropical-slab__title-line {
    display: block;
    max-width: 100%;
}

.why-tropical-slab__title-line + .why-tropical-slab__title-line {
    margin-top: 0.08em;
}

.why-tropical-slab__rule {
    width: 44px;
    height: 3px;
    margin: 0 auto 1rem;
    background: var(--brand-yellow);
    border-radius: 2px;
}

.why-tropical-slab__lead {
    margin: 0 auto 1.2rem;
    font-size: clamp(0.9375rem, 2.4vw, 1.0625rem);
    line-height: 1.62;
    font-weight: 500;
    color: rgba(11, 18, 32, 0.82);
    max-width: 40rem;
    text-align: center;
}

.why-tropical-slab__highlights {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}

.why-tropical-slab__highlights li {
    position: relative;
    margin: 0;
    padding-left: 1.1rem;
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--muted-gray);
}

.why-tropical-slab__highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--brand-yellow);
    box-shadow: 0 0 0 2px rgba(244, 180, 0, 0.18);
}

.why-tropical-slab__highlights strong {
    color: var(--charcoal);
    font-weight: 800;
}

.why-tropical-slab__region {
    margin: 1.35rem 0 0;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(11, 18, 32, 0.08);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    color: rgba(11, 18, 32, 0.5);
    line-height: 1.5;
    max-width: 38rem;
}

@media (min-width: 768px) {
    .why-tropical-section {
        padding: 4rem var(--spacing-lg) 4.25rem;
    }

    .why-tropical-slab {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
        gap: clamp(2rem, 3.5vw, 2.75rem);
    }

    .why-tropical-slab__media {
        border-radius: 16px;
    }

    .why-tropical-slab__img {
        aspect-ratio: 1 / 1;
        min-height: 320px;
        object-position: 50% 20%;
    }

    .why-tropical-slab__body {
        padding: 0;
    }

    .why-tropical-slab__highlights li {
        font-size: 0.90625rem;
        line-height: 1.58;
    }

    .why-tropical-slab__title {
        font-size: clamp(1.85rem, 3.65vw, 3.05rem);
        line-height: 1.04;
        letter-spacing: 0.036em;
    }
}

@media (max-width: 767px) {
    .why-tropical-section {
        padding: 2.5rem var(--spacing-md) 2.75rem;
    }

    .why-tropical-slab__body {
        padding: 0;
    }

    .why-tropical-slab__title {
        font-size: clamp(1.48rem, 4.7vw, 2.08rem);
        line-height: 1.06;
        letter-spacing: 0.034em;
    }

    .why-tropical-slab__title-line + .why-tropical-slab__title-line {
        margin-top: 0.06em;
    }

    .why-tropical-slab__lead {
        padding: 0 var(--spacing-md);
        box-sizing: border-box;
    }

    .why-tropical-slab__img {
        aspect-ratio: 16 / 10;
        object-position: 50% 18%;
    }
}

/* ========================================
   FAQ — homepage (white; follows Why Tropical section)
   ======================================== */
.faq-section--homepage {
    padding-top: 3.25rem;
    padding-bottom: 3.5rem;
    background: #ffffff;
    border-top: 1px solid rgba(11, 18, 32, 0.06);
}

@media (min-width: 768px) {
    .faq-section--homepage {
        padding-top: 4rem;
        padding-bottom: 4.25rem;
    }
}

@media (max-width: 767px) {
    .faq-section--homepage {
        padding-top: 2.5rem;
        padding-bottom: 2.75rem;
    }
}

/* ========================================
   FOOTER — minimal homepage layout
   ======================================== */
.footer__inner {
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
}

.footer__lead {
    color: rgba(255, 255, 255, 0.94) !important;
    font-size: 1.0625rem !important;
    font-weight: 600;
    line-height: 1.55 !important;
    margin: 0 0 1.5rem !important;
    letter-spacing: -0.015em;
}

.footer__line {
    margin: 0 0 1rem !important;
    font-size: 0.9375rem !important;
    line-height: 1.5 !important;
    color: rgba(255, 255, 255, 0.88) !important;
}

.footer__line a {
    color: var(--white) !important;
    font-weight: 600;
    text-decoration: none;
}

.footer__line a:hover {
    color: var(--brand-yellow) !important;
    opacity: 1;
    text-decoration: none;
}

.footer__copy {
    margin: 1.75rem 0 0 !important;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8125rem !important;
    line-height: 1.5 !important;
    color: var(--muted-gray) !important;
}

.footer__legal {
    margin: 1.25rem 0 0 !important;
    font-size: 0.8125rem !important;
    line-height: 1.5 !important;
    color: rgba(255, 255, 255, 0.72) !important;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}

.footer__legal a {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 650;
    text-decoration: none;
}

.footer__legal a:hover {
    color: var(--brand-yellow) !important;
}

@media (max-width: 767px) {
    .footer__lead {
        font-size: 1rem !important;
        margin-bottom: 1.25rem !important;
    }

    .footer__line {
        margin-bottom: 1rem !important;
    }

    .footer__copy {
        margin-top: 1.5rem !important;
        padding-top: 1.15rem;
    }

    .footer__legal {
        margin-top: 1.15rem !important;
        gap: 0.75rem;
    }
}

/* ========================================
   WHAT WE CHECK SECTION
   ======================================== */
.what-we-check-section {
    padding: var(--spacing-4xl) var(--spacing-lg);
    background-color: var(--black);
}

@media (max-width: 767px) {
    .what-we-check-section {
        padding: var(--spacing-3xl) var(--spacing-md);
    }
}

.what-we-check-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.what-we-check-list li {
    font-size: 1.125rem;
    color: var(--white);
    line-height: 1.6;
    padding-left: 32px;
    position: relative;
}

.what-we-check-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--hyper-blue);
    font-weight: bold;
    font-size: 1.5rem;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
    padding: var(--spacing-2xl) var(--spacing-lg) var(--spacing-xl);
    background-color: var(--black);
}

@media (max-width: 767px) {
    .services-section {
        padding: var(--spacing-xl) var(--spacing-md);
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    align-items: stretch;
}

.services-grid.two-columns {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 767px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid.two-columns {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: linear-gradient(135deg, rgba(32, 36, 44, 0.95) 0%, rgba(20, 24, 32, 0.98) 100%);
    padding: var(--spacing-lg);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    /* Ensure crisp rendering */
    transform: translateZ(0);
    will-change: box-shadow, border-color;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--hyper-blue), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 16px var(--brand-blue-rgba-shadow);
    border-color: var(--hyper-blue);
    /* Remove translateY to prevent subpixel blur */
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    color: var(--hyper-blue);
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 2px;
}

.service-name {
    font-size: 1rem;
    color: var(--white);
    line-height: 1.5;
    font-weight: 500;
    flex: 1;
}

.service-name strong {
    font-weight: 600;
    font-size: 1.0625rem;
    display: block;
    margin-bottom: 6px;
    line-height: 1.3;
}

.service-name p {
    color: var(--muted-gray);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0;
}

/* Improve readability */
p {
    font-family: "Montserrat", sans-serif;
    line-height: 1.7;
    color: var(--muted-gray);
}

strong {
    color: var(--white);
    font-weight: 600;
}

.service-name strong {
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.service-card-highlighted {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    padding: var(--spacing-2xl);
    background-color: var(--white);
    border: 2px solid var(--hyper-blue);
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--spacing-lg);
    width: 100%;
}

.service-card-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
    width: 100%;
}

@media (max-width: 767px) {
    .service-card-list {
        grid-template-columns: 1fr;
    }
}

.service-card-item {
    font-size: 1rem;
    color: var(--black);
    line-height: 1.6;
    padding-left: var(--spacing-sm);
}

.services-footer-note {
    text-align: center;
    font-size: 0.9375rem;
    color: var(--black);
    line-height: 1.6;
    margin-top: var(--spacing-xl);
    opacity: 0.8;
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process-section {
    padding: var(--spacing-4xl) var(--spacing-lg);
    background-color: var(--black);
}

@media (max-width: 767px) {
    .process-section {
        padding: var(--spacing-3xl) var(--spacing-md);
    }
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

@media (max-width: 767px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

.process-card {
    background-color: rgba(32, 36, 44, 0.6);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border-gray);
    box-shadow: var(--shadow-sm);
}

.process-number {
    width: 64px;
    height: 64px;
    background-color: var(--brand-blue);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto var(--spacing-lg);
}

.process-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.process-card p {
    color: var(--muted-gray);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* ========================================
   TRUST STRIP
   ======================================== */
.trust-strip {
    background-color: var(--black);
    border-top: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
}

.trust-strip-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-lg);
    width: 100%;
}

@media (max-width: 767px) {
    .trust-strip-container {
        padding: var(--spacing-lg) var(--spacing-md);
    }
}

.trust-chips {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background-color: rgba(32, 36, 44, 0.6);
    border: 1px solid var(--border-gray);
    border-radius: 999px;
    font-size: 0.875rem;
    color: var(--white);
}

.trust-chip-icon {
    color: var(--yellow);
    font-weight: bold;
    font-size: 0.875rem;
}

.trust-chip-label {
    font-weight: 500;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: #000000;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section .section-title {
    color: var(--white);
}

.cta-section .cta-headline {
    color: var(--white);
}

.cta-section .container {
    max-width: 600px;
}

.cta-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
    .cta-section {
        padding: var(--spacing-3xl) var(--spacing-md);
    }
    
    .cta-card {
        padding: var(--spacing-xl);
    }
}

.cta-headline {
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .cta-headline {
        font-size: 2.5rem;
    }
}

.cta-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-button-wrapper .btn {
    min-width: auto;
}

@media (max-width: 767px) {
    .cta-button-wrapper .btn {
        width: 100%;
    }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background-color: #000000;
    color: var(--white);
    padding: 2.25rem var(--spacing-lg) 2.5rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 767px) {
    .footer {
        padding: 1.85rem var(--spacing-md) 2rem;
    }
}

.footer p {
    margin-bottom: var(--spacing-xs);
    color: var(--muted-gray);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* ========================================
   ACCESSIBILITY & PERFORMANCE
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Skip to main content link for screen readers */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--brand-blue);
    color: var(--black);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
}

.skip-to-main:focus {
    top: 0;
}

/* Improve contrast for better readability */
.service-name p,
.what-we-check-list li,
.process-card p {
    color: var(--muted-gray);
}

/* ========================================
   OFFER OPTIONS SECTION
   ======================================== */
.offer-options-section {
    padding: 120px var(--spacing-lg) 120px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.offer-options-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* Homepage #options: cool light neutral (contrast with hero + white Why) */
.offer-options-section#options {
    background: linear-gradient(180deg, #eef1f5 0%, #e8ecf1 100%);
}

/* Regional serving line — part of Epoxy & Concrete Services intro (dark text, not gold) */
.options-section-serving {
    text-align: center;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(11, 18, 32, 0.82);
    margin: 0 auto 0.75rem;
    line-height: 1.5;
    max-width: 40rem;
}

@media (min-width: 768px) {
    .options-section-serving {
        font-size: 0.75rem;
        margin-bottom: 0.875rem;
    }
}

@media (max-width: 767px) {
    .options-section-serving {
        padding: 0 var(--spacing-sm);
        margin-bottom: 0.65rem;
    }
}

.offer-options-section#options::before {
    background: linear-gradient(165deg, rgba(11, 18, 32, 0.04) 0%, transparent 55%);
}

.offer-options-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.offer-section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--charcoal);
    text-align: center;
    margin-bottom: 64px;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.offer-section-title .highlight-blue,
.offer-section-title.highlight-blue {
    color: var(--charcoal);
}

.offer-section-title .free-text {
    color: var(--hyper-blue);
}

.offer-section-subtitle {
    font-size: 1.125rem;
    color: var(--charcoal);
    text-align: center;
    margin-bottom: 48px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

@media (max-width: 1023px) {
    .offer-section-title {
        font-size: 2.75rem;
        margin-bottom: 32px;
    }
    
    .offer-section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .offer-section-title {
        font-size: 2rem;
        margin-bottom: 24px;
        letter-spacing: -0.02em;
    }
    
    .offer-section-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 32px;
        padding: 0 var(--spacing-md);
    }
}

.offer-options-section.in-view .offer-section-title {
    animation: fadeInUp 0.6s ease-out;
}

.offer-options-section.in-view .offer-card {
    animation: fadeInUp 0.6s ease-out;
}

.offer-options-section.in-view .offer-card:nth-child(1) {
    animation-delay: 0.1s;
}

.offer-options-section.in-view .offer-card:nth-child(2) {
    animation-delay: 0.2s;
}

.offer-options-section.in-view .offer-card:nth-child(3) {
    animation-delay: 0.3s;
}

.offer-options-section.in-view .offer-card:nth-child(4) {
    animation-delay: 0.4s;
}

.offer-options-section.in-view .offer-card:nth-child(5) {
    animation-delay: 0.5s;
}

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

/* Progressive enhancement: only hide if JS has initialized */
html.reveal-init .offer-options-section:not(.in-view) .offer-section-title,
html.reveal-init .offer-options-section:not(.in-view) .offer-card {
    opacity: 0;
}

/* Basic estimate card now uses .offer-card styling */

@media (max-width: 767px) {
    .offer-options-section {
        padding-top: 56px !important;
        padding-bottom: 64px !important;
        padding-left: var(--spacing-md) !important;
        padding-right: var(--spacing-md) !important;
        margin-top: 0 !important;
    }
    
    .hero {
        margin-bottom: 0 !important;
    }
    
    /* Remove any extra spacer elements in hero on mobile */
    .hero-container > * {
        margin-top: 0 !important;
    }
    
    .hero-container > *:first-child {
        margin-top: 0 !important;
    }
    
    .hero-container br {
        display: none !important;
    }
}

.offer-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 1023px) {
    .offer-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .offer-card-inspection {
        transform: scale(1.03);
    }
    
    .offer-card-inspection:hover {
        transform: scale(1.03) translateY(-4px);
    }
}

@media (max-width: 767px) {
    .offer-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
        box-sizing: border-box;
    }
}

/* Epoxy & Concrete Services (home): 5-card row on desktop, premium spacing */
.offer-options-container--services {
    max-width: min(98vw, 1540px);
}

#options .offer-section-title {
    margin-bottom: 1rem;
}

#options .offer-section-subtitle--services {
    margin-top: 0;
    margin-bottom: clamp(2.5rem, 4vw, 3.25rem);
    line-height: 1.65;
    max-width: 34rem;
}

@media (max-width: 1023px) {
    #options .offer-section-title {
        margin-bottom: 0.75rem;
    }

    #options .offer-section-subtitle--services {
        margin-bottom: 2.25rem;
    }
}

@media (max-width: 767px) {
    #options .offer-section-subtitle--services {
        margin-bottom: 1.35rem;
    }

    .offer-options-section#options {
        padding-top: 2.65rem !important;
        padding-bottom: 2.65rem !important;
    }

    #options .offer-section-title {
        margin-bottom: 0.5rem;
    }

    #options .offer-cards-grid--services {
        gap: 11px !important;
    }

    #options .offer-cards-grid--services > .offer-card {
        padding: 1.15rem 0.95rem 1rem !important;
        border-radius: 9px !important;
        border-width: 1.5px !important;
    }

    #options .offer-cards-grid--services .offer-card-title {
        font-size: 1rem !important;
        margin-bottom: 0.45rem !important;
    }

    #options .offer-cards-grid--services .offer-card-description {
        margin-bottom: 0.65rem !important;
    }

    #options .offer-cards-grid--services .offer-card-list {
        margin: 0 !important;
    }

    #options .offer-cards-grid--services .offer-card-list li {
        font-size: 0.71875rem !important;
        line-height: 1.42 !important;
        margin-bottom: 0.28rem !important;
        padding-left: 0.85rem !important;
    }
}

.offer-cards-grid.offer-cards-grid--services {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: stretch;
}

@media (min-width: 768px) {
    .offer-cards-grid.offer-cards-grid--services {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (min-width: 1024px) {
    .offer-cards-grid.offer-cards-grid--services {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (min-width: 1280px) {
    .offer-cards-grid.offer-cards-grid--services {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: clamp(14px, 1.35vw, 20px);
    }
}

#options .offer-cards-grid--services > .offer-card {
    min-height: 0;
    padding: 1.5rem 1.125rem 1.25rem;
    border-radius: 10px;
    border-color: var(--brand-blue);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

#options .offer-cards-grid--services .offer-card-title {
    font-size: 1.0625rem;
    margin-bottom: 0.625rem;
    line-height: 1.28;
    font-weight: 800;
}

#options .offer-cards-grid--services .offer-card-description {
    font-size: 0.78125rem;
    line-height: 1.55;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#options .offer-cards-grid--services .offer-card-list {
    margin: 0;
    flex: 1 1 auto;
}

#options .offer-cards-grid--services .offer-card-list li {
    font-size: 0.78125rem;
    line-height: 1.5;
    margin-bottom: 0.375rem;
    padding-left: 1rem;
}

#options .offer-cards-grid--services .offer-card-list li:last-child {
    margin-bottom: 0;
}

#options .offer-cards-grid--services .offer-card-list li::before {
    font-size: 0.9375rem;
}

@media (max-width: 767px) {
    #options .offer-cards-grid--services > .offer-card {
        padding: 1.5rem 1.25rem 1.25rem;
    }
}

/* =====================================================================
   Homepage scroll reveal: .home-reveal + .has-revealed (script.js sets html.home-reveal-ready).
   Hidden preset until first in-view; exiting below viewport resets; exiting upward keeps .has-revealed (no replay).
   ===================================================================== */
html.home-reveal-ready .home-reveal {
    --home-reveal-delay: 0s;
    transition:
        transform 0.62s cubic-bezier(0.22, 1, 0.36, 1) var(--home-reveal-delay, 0s),
        opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1) var(--home-reveal-delay, 0s),
        box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0s,
        border-color 0.25s ease;
}

html.home-reveal-ready .home-reveal:not(.has-revealed) {
    --home-reveal-delay: 0s;
    transform: translateY(20px) scale(0.97);
    opacity: 0;
    pointer-events: none;
}

html.home-reveal-ready .home-reveal.has-revealed {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

/* Services cards: stagger + hover (compose transform with reveal) */
html.home-reveal-ready #options .offer-cards-grid--services > .offer-card.home-reveal.has-revealed:nth-child(1) {
    --home-reveal-delay: 0.04s;
}

html.home-reveal-ready #options .offer-cards-grid--services > .offer-card.home-reveal.has-revealed:nth-child(2) {
    --home-reveal-delay: 0.09s;
}

html.home-reveal-ready #options .offer-cards-grid--services > .offer-card.home-reveal.has-revealed:nth-child(3) {
    --home-reveal-delay: 0.14s;
}

html.home-reveal-ready #options .offer-cards-grid--services > .offer-card.home-reveal.has-revealed:nth-child(4) {
    --home-reveal-delay: 0.19s;
}

html.home-reveal-ready #options .offer-cards-grid--services > .offer-card.home-reveal.has-revealed:nth-child(5) {
    --home-reveal-delay: 0.24s;
}

html.home-reveal-ready #options .offer-cards-grid--services > .offer-card.home-reveal.has-revealed:hover {
    transform: translateY(-4px) scale(1);
}

/* #why-tropical: each block is its own .home-reveal (observer + same motion as site-wide) */
html.home-reveal-ready #why-tropical .why-tropical-slab__media.home-reveal.has-revealed {
    --home-reveal-delay: 0s;
}

html.home-reveal-ready #why-tropical .why-tropical-slab__intro.home-reveal.has-revealed {
    --home-reveal-delay: 0.06s;
}

html.home-reveal-ready #why-tropical .why-tropical-slab__detail.home-reveal.has-revealed {
    --home-reveal-delay: 0.12s;
}

@media (prefers-reduced-motion: reduce) {
    html.home-reveal-ready .home-reveal,
    html.home-reveal-ready .home-reveal:not(.has-revealed),
    html.home-reveal-ready .home-reveal.has-revealed {
        transform: none !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transition:
            box-shadow 0.3s ease,
            border-color 0.25s ease !important;
    }

    html.home-reveal-ready #options .offer-cards-grid--services > .offer-card.home-reveal:hover {
        transform: translateY(-4px) !important;
    }
}

.offer-card {
    background: var(--white);
    border: 2px solid var(--brand-blue);
    border-radius: 12px;
    padding: 34px 26px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
    will-change: transform;
    min-height: 100%;
    height: 100%;
    cursor: pointer;
}

/* Homepage #options: uniform card frames — brand gold border (matches primary CTAs) */
.offer-options-section#options .offer-card {
    border-color: var(--brand-blue);
}

.offer-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    text-decoration: none;
    color: inherit;
}

.offer-card-popular {
    border-color: #000000;
    border-width: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 34px 26px;
}

.offer-card-popular:hover {
    box-shadow: 0 8px 24px var(--brand-blue-rgba-shadow);
    transform: translateY(-4px);
}

.offer-card-inspection {
    border-color: var(--brand-blue);
    border-width: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 0 20px rgba(var(--brand-blue-rgba), 0.15);
    padding: 34px 26px;
}

.offer-card-inspection:hover {
    box-shadow: 0 8px 24px var(--brand-blue-rgba-shadow);
    transform: translateY(-4px);
}

@media (max-width: 767px) {
    .offer-card {
        padding: 24px 20px;
    }
}

.offer-card-badge {
    position: absolute;
    top: -12px;
    left: var(--spacing-lg);
    background: var(--brand-blue);
    color: var(--black);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
}


.popular-badge {
    background: var(--brand-blue);
    color: var(--black);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%) translateZ(0);
    background: var(--brand-blue);
    color: var(--black);
    padding: 4px 16px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    will-change: transform;
}

.offer-card-inspection .popular-badge {
    background: var(--yellow);
    color: var(--black);
    font-weight: 700;
    white-space: nowrap;
}

.offer-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
    line-height: 1.3;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.offer-card-title .highlight-blue {
    color: var(--brand-blue);
}

.offer-card-description {
    color: var(--muted-gray);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.5;
}

.offer-card-footer {
    font-size: 0.75rem;
    color: var(--muted-gray);
    margin-top: var(--spacing-xs);
    text-align: center;
    line-height: 1.4;
}

@media (max-width: 767px) {
    .offer-card-title {
        font-size: 1.125rem;
        margin-bottom: 10px;
    }
    
    .offer-card-description {
        font-size: 0.8125rem;
    }
}

.offer-card-value {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: var(--spacing-md);
    padding: 6px 12px;
    background-color: var(--brand-blue-rgba-light);
    border-radius: var(--radius-sm);
    border: 1px solid var(--brand-blue-rgba-medium);
    width: fit-content;
}

.offer-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex: 1;
}

.offer-card-list li {
    font-size: 0.875rem;
    color: var(--charcoal);
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
}

@media (max-width: 767px) {
    .offer-card-list li {
        font-size: 0.8125rem;
        margin-bottom: 4px;
        line-height: 1.4;
    }
}

.offer-card-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--hyper-blue);
    font-weight: bold;
    font-size: 1.125rem;
}

.pricing-ranges {
    margin: var(--spacing-sm) 0 24px 0;
    padding: var(--spacing-sm);
    background-color: var(--brand-blue-rgba-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--brand-blue-rgba-medium);
}

.pricing-ranges p {
    color: var(--charcoal);
    font-size: 0.8125rem;
    margin-bottom: 4px;
    line-height: 1.4;
}

.pricing-ranges p strong {
    color: var(--brand-blue);
}

.pricing-ranges p:last-child {
    margin-bottom: 0;
}

.how-it-works-mini {
    margin-top: var(--spacing-sm);
    margin-bottom: 24px;
    padding: var(--spacing-sm);
    background-color: rgba(var(--brand-blue-rgba), 0.08);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--brand-blue);
}

.how-it-works-title {
    font-weight: 600;
    color: var(--brand-blue);
    margin-bottom: 4px;
    font-size: 0.875rem;
}

.how-it-works-text {
    font-size: 0.8125rem;
    color: var(--muted-gray);
    margin: 0;
    line-height: 1.4;
}

/* Offer card buttons - consistent styling */
.offer-card-btn {
    width: 100%;
    margin-top: auto;
    font-size: 0.9375rem;
    font-weight: 700;
    padding: 14px 20px;
    text-align: center;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.offer-card .btn-primary {
    background-color: var(--brand-blue);
    color: var(--black);
    border: none;
    box-shadow: 0 2px 8px rgba(var(--brand-blue-rgba), 0.25);
}

.offer-card .btn-primary:hover {
    background-color: var(--brand-blue-dark);
    color: var(--black);
    box-shadow: 0 4px 12px rgba(var(--brand-blue-rgba), 0.35);
}

.offer-card-inspection .btn-primary {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
    color: var(--black);
    border: none;
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(var(--brand-blue-rgba), 0.35), 0 0 20px rgba(var(--brand-blue-rgba), 0.2);
}

.offer-card-inspection .btn-primary:hover {
    background: linear-gradient(135deg, var(--brand-blue-dark) 0%, var(--brand-accent-orange) 100%);
    color: var(--black);
    box-shadow: 0 6px 24px rgba(var(--brand-blue-rgba), 0.4), 0 0 28px rgba(245, 124, 0, 0.22);
    transform: translateY(-1px);
}

.offer-card-inspection .offer-card-btn {
    font-size: 1rem;
    padding: 16px 24px;
    font-weight: 800;
}

.offer-card .btn-secondary-outline {
    background-color: transparent;
    color: var(--charcoal);
    border: 2px solid var(--brand-blue-dark);
    box-shadow: none;
}

.offer-card .btn-secondary-outline:hover {
    background-color: var(--brand-blue-dark);
    color: var(--black);
    box-shadow: 0 2px 8px rgba(var(--brand-blue-rgba), 0.25);
}

@media (max-width: 767px) {
    .offer-card-btn {
        font-size: 0.875rem;
        padding: 12px 18px;
    }
    
    .offer-card-inspection .offer-card-btn {
        font-size: 0.9375rem;
        padding: 14px 20px;
    }
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-it-works-section {
    padding: var(--spacing-2xl) var(--spacing-lg);
    background-color: var(--white);
}

@media (max-width: 767px) {
    .how-it-works-section {
        padding: var(--spacing-xl) var(--spacing-md);
    }
}

.how-it-works-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .how-it-works-steps {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

.how-it-works-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.step-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.4;
}

/* ========================================
   PROOF SECTION
   ======================================== */
.proof-section {
    padding: var(--spacing-2xl) var(--spacing-lg);
    background-color: var(--white);
    position: relative;
}

.proof-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.proof-carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    height: 400px;
}

@media (max-width: 767px) {
    .proof-carousel-container {
        height: 300px;
    }
}

.proof-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.proof-item {
    min-width: 100%;
    flex-shrink: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.proof-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.proof-carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.proof-carousel-dots {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.proof-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-gray);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.proof-carousel-dot.active {
    background-color: var(--brand-blue);
    width: 12px;
    height: 12px;
}

.proof-carousel-arrow {
    background: var(--white);
    border: 1px solid var(--border-gray);
    color: var(--charcoal);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.proof-carousel-arrow:hover {
    background: var(--brand-blue);
    border-color: var(--brand-blue-dark);
    color: var(--black);
}

.proof-carousel-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

@media (max-width: 767px) {
    .proof-section {
        padding: var(--spacing-xl) var(--spacing-md);
    }
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .proof-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

.proof-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.proof-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    padding: var(--spacing-2xl) var(--spacing-lg);
    background-color: var(--white);
}

@media (max-width: 767px) {
    .faq-section {
        padding: var(--spacing-xl) var(--spacing-md);
    }
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    background: var(--white);
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border-bottom: 1px dotted var(--border-gray);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    padding: var(--spacing-md) 0;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
}

.faq-question-button:hover {
    opacity: 0.8;
}

.faq-question-button:focus-visible {
    outline: 2px solid var(--hyper-blue);
    outline-offset: 2px;
    border-radius: 4px;
}

.faq-question-text {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0;
    padding: 0;
    flex: 1;
}

.faq-chevron {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-left: var(--spacing-md);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    line-height: 1;
}

.faq-question-button[aria-expanded="true"] .faq-chevron {
    transform: rotate(90deg);
}

.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
    display: block;
}

.faq-item.active .faq-answer-wrapper {
    max-height: 500px;
    padding-top: var(--spacing-xs);
    padding-bottom: var(--spacing-md);
}

.faq-answer {
    font-size: 0.9375rem;
    color: var(--muted-gray);
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

@media (max-width: 767px) {
    .faq-question-button {
        padding: var(--spacing-sm) 0;
    }
    
    .faq-question-text {
        font-size: 1rem;
    }
    
    .faq-chevron {
        font-size: 1.25rem;
    }
    
    .faq-item.active .faq-answer-wrapper {
        padding-top: var(--spacing-xs);
        padding-bottom: var(--spacing-sm);
    }
}

/* ========================================
   SERVICE QUOTE MODAL (non-home service pages)
   ======================================== */
.te-quote-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: calc(var(--promo-height, 0px) + var(--site-nav-bar-h) + 4.5rem) var(--spacing-md) var(--spacing-xl);
    box-sizing: border-box;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.te-quote-modal[hidden] {
    display: none !important;
}

/* .is-open globally sets display:block !important; restore full flex modal layout */
.te-quote-modal.is-open {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100vw;
}

.te-quote-modal__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(11, 18, 32, 0.55);
    backdrop-filter: blur(4px);
}

.te-quote-modal__panel {
    position: relative;
    z-index: 1;
    width: min(560px, 100%);
    max-height: min(92vh, 900px);
    overflow-y: auto;
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 24px 64px rgba(11, 18, 32, 0.28);
    box-sizing: border-box;
}

.te-quote-modal__close {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    border-radius: 10px;
    background: rgba(11, 18, 32, 0.06);
    color: var(--charcoal);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.te-quote-modal__close:hover {
    background: rgba(11, 18, 32, 0.1);
}

.te-quote-modal__card {
    margin: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: none;
}

body.te-quote-modal-open {
    overflow: hidden;
}

@media (min-width: 768px) {
    .te-quote-modal {
        justify-content: center;
    }

    .te-quote-modal__panel {
        margin-inline: auto;
    }
}

@media (max-width: 767px) {
    .te-quote-modal {
        padding: calc(var(--promo-height, 0px) + var(--site-nav-bar-h) + 3.25rem) var(--spacing-sm) var(--spacing-lg);
        align-items: stretch;
        justify-content: flex-start;
    }

    .te-quote-modal__panel {
        max-height: none;
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .te-quote-modal__close {
        top: 0.4rem;
        right: 0.4rem;
    }
}

/* ========================================
   BOOKING SECTION
   ======================================== */
.booking-section {
    padding: var(--spacing-2xl) var(--spacing-lg);
    background-color: var(--white);
}

@media (max-width: 767px) {
    .booking-section {
        padding: var(--spacing-xl) var(--spacing-md);
    }
}

/* Inner pages: quote card uses same collapse/expand pattern as homepage hero form */
.booking-section .te-inner-quote-card {
    max-width: min(560px, 100%);
    margin-left: auto;
    margin-right: auto;
}

.booking-section .te-inner-quote-card .booking-form,
.te-quote-modal__panel .booking-form {
    max-width: none;
}

/* Service pages: same field rhythm + chrome as homepage hero-estimate-form */
.booking-section .te-inner-quote-card .hero-estimate-form.booking-form,
.te-quote-modal__panel .hero-estimate-form.booking-form {
    max-width: none;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

.booking-section .te-inner-quote-card .hero-estimate-form .form-row,
.te-quote-modal__panel .hero-estimate-form .form-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.625rem;
    margin-bottom: 0.75rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.booking-section .te-inner-quote-card .hero-estimate-form .form-row .form-group,
.te-quote-modal__panel .hero-estimate-form .form-row .form-group {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.booking-section .te-inner-quote-card .hero-estimate-form .hero-form-group--full,
.te-quote-modal__panel .hero-estimate-form .hero-form-group--full {
    margin-bottom: 0.75rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.booking-section .te-inner-quote-card .hero-estimate-form .form-group label,
.te-quote-modal__panel .hero-estimate-form .form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 5px;
}

.booking-section .te-inner-quote-card .hero-estimate-form .form-group input,
.booking-section .te-inner-quote-card .hero-estimate-form .form-group select,
.booking-section .te-inner-quote-card .hero-estimate-form .form-group textarea,
.te-quote-modal__panel .hero-estimate-form .form-group input,
.te-quote-modal__panel .hero-estimate-form .form-group select,
.te-quote-modal__panel .hero-estimate-form .form-group textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 11px 14px;
    font-size: 0.9375rem;
    border-radius: 10px;
    border: 1px solid rgba(11, 18, 32, 0.12);
    background-color: #fafbfc;
    font-family: var(--font-system);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.booking-section .te-inner-quote-card .hero-estimate-form .form-group textarea,
.te-quote-modal__panel .hero-estimate-form .form-group textarea {
    min-height: 88px;
    resize: vertical;
}

body.te-inner-page .booking-section .te-inner-quote-card .hero-estimate-card__title,
body.te-service-page .te-quote-modal__panel .hero-estimate-card__title {
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.024em;
    font-size: clamp(1.35rem, 2.75vw, 1.6875rem) !important;
    font-weight: 900;
    margin: 0 0 0.5rem !important;
}

body.te-inner-page .booking-section .te-inner-quote-card .hero-estimate-card__subline {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
}

@media (max-width: 767px) {
    body.te-inner-page .booking-section .te-inner-quote-card:not(.is-expanded) {
        text-align: center;
    }

    body.te-inner-page .booking-section .te-inner-quote-card:not(.is-expanded) .hero-estimate-card__title,
    body.te-inner-page .booking-section .te-inner-quote-card:not(.is-expanded) .hero-estimate-card__subline {
        text-align: center;
    }

    body.te-inner-page .booking-section .te-inner-quote-card:not(.is-expanded) .hero-estimate-card__subline {
        margin-left: auto;
        margin-right: auto;
        max-width: 22rem;
    }

    body.te-inner-page .booking-section .te-inner-quote-card.is-expanded .hero-estimate-card__title,
    body.te-inner-page .booking-section .te-inner-quote-card.is-expanded .hero-estimate-card__subline {
        text-align: left;
    }

    body.te-inner-page .booking-section .te-inner-quote-card.is-expanded .hero-estimate-card__subline {
        max-width: none;
    }
}

body.te-inner-page .booking-section .form-group input:focus,
body.te-inner-page .booking-section .form-group select:focus,
body.te-inner-page .booking-section .form-group textarea:focus,
body.te-service-page .te-quote-modal__panel .form-group input:focus,
body.te-service-page .te-quote-modal__panel .form-group select:focus,
body.te-service-page .te-quote-modal__panel .form-group textarea:focus {
    outline: none;
    border-color: var(--brand-yellow);
    box-shadow: 0 0 0 3px rgba(244, 180, 0, 0.22);
}

body.te-inner-page .booking-section .te-inner-quote-card .hero-estimate-form .form-group input:focus,
body.te-inner-page .booking-section .te-inner-quote-card .hero-estimate-form .form-group select:focus,
body.te-inner-page .booking-section .te-inner-quote-card .hero-estimate-form .form-group textarea:focus,
body.te-service-page .te-quote-modal__panel .hero-estimate-form .form-group input:focus,
body.te-service-page .te-quote-modal__panel .hero-estimate-form .form-group select:focus,
body.te-service-page .te-quote-modal__panel .hero-estimate-form .form-group textarea:focus {
    background-color: var(--white);
}

@media (max-width: 767px) {
    .booking-section .te-inner-quote-card .hero-estimate-form .form-row,
    .te-quote-modal__panel .hero-estimate-form .form-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .booking-section .te-inner-quote-card .hero-estimate-form .form-group input,
    .booking-section .te-inner-quote-card .hero-estimate-form .form-group select,
    .booking-section .te-inner-quote-card .hero-estimate-form .form-group textarea,
    .te-quote-modal__panel .hero-estimate-form .form-group input,
    .te-quote-modal__panel .hero-estimate-form .form-group select,
    .te-quote-modal__panel .hero-estimate-form .form-group textarea {
        padding: 12px 14px;
    }

    .booking-section .te-inner-quote-card .hero-estimate-form .form-group textarea,
    .te-quote-modal__panel .hero-estimate-form .form-group textarea {
        min-height: 80px;
    }

    .booking-section .te-inner-quote-card .te-edge-glow-wrap--hero-submit,
    .te-quote-modal__panel .te-edge-glow-wrap--hero-submit {
        margin-top: 0.65rem;
    }
}

.booking-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

@media (max-width: 767px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    font-size: 1rem;
    color: var(--charcoal);
    font-family: var(--font-system);
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--hyper-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-message {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 0.9375rem;
}

.form-message.success {
    background-color: rgba(0, 200, 0, 0.1);
    border: 1px solid rgba(0, 200, 0, 0.3);
    color: #4ade80;
}

.form-message.error {
    background-color: rgba(200, 0, 0, 0.1);
    border: 1px solid rgba(200, 0, 0, 0.3);
    color: #f87171;
}

/* ========================================
   PREVENT PROBLEMS SECTION
   ======================================== */
.prevent-problems-section {
    padding: var(--spacing-2xl) var(--spacing-lg) var(--spacing-xl);
    background-color: var(--black);
}

@media (max-width: 767px) {
    .prevent-problems-section {
        padding: var(--spacing-xl) var(--spacing-md);
    }
}

.prevent-problems-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .prevent-problems-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
}

.pain-points-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.pain-point-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.pain-point-number {
    width: 32px;
    height: 32px;
    background-color: var(--brand-blue);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.pain-point-content {
    flex: 1;
}

.pain-point-content strong {
    display: block;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.4;
}

.pain-point-content p {
    color: var(--muted-gray);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

.inspection-callout {
    background: linear-gradient(135deg, rgba(32, 36, 44, 0.9) 0%, rgba(20, 24, 32, 0.95) 100%);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
}

.inspection-callout-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.inspection-callout-list li {
    font-size: 0.9375rem;
    color: var(--muted-gray);
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

.inspection-callout-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--hyper-blue);
    font-weight: bold;
    font-size: 1.25rem;
}

/* ========================================
   MOBILE OPTIMIZATIONS
   ======================================== */
@media (max-width: 767px) {
    /* Mobile hero styles are now handled in the main hero section above */
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* Navbar positioning for pages without top promo banner */
body.no-banner {
    --promo-height: 0px;
}

body.no-banner #site-nav {
    top: 0 !important;
    margin-top: 0 !important;
}

body.no-banner .site-header,
body.no-banner .main-header {
    top: 0 !important;
}

/* Homepage: seam between nav and hero — no hairline or shadow band */
body.no-banner .site-header {
    border-bottom: none;
    box-shadow: none;
}

body.no-banner .site-header.scrolled {
    box-shadow: none;
}

body.menu-open {
    overflow: hidden !important;
}

/* Mobile menu drawer — all nav links + nested Services + call CTA */
@media (max-width: 767px) {
    /*
     * Promo bar stays above fixed #site-nav while scrolling.
     * #site-nav z-index comes from the mobile header block above (99 — below banner 100).
     */
    #top-banner,
    .announcement-bar {
        z-index: 110 !important;
    }

    /* Hamburger only: sit above siblings inside .header-actions and stray overlaps; nav wrapper stays below banner */
    #site-nav #mobileMenuBtn {
        position: relative !important;
        z-index: 10005 !important;
        pointer-events: auto !important;
    }

    /* Closed backdrop must never intercept (belt-and-suspenders if display rules fail in a transient state) */
    #mobileNavBackdrop:not(.mobile-nav-backdrop--visible) {
        pointer-events: none !important;
    }

    /* Belt-and-suspenders: hidden desktop row must never intercept taps meant for the hamburger */
    #site-nav #headerNav {
        pointer-events: none !important;
    }

    #site-nav #headerNav .services-dropdown::before {
        content: none !important;
        display: none !important;
        pointer-events: none !important;
    }

    /* Desktop hover-bridge pseudo can steal taps; not needed inside the drawer */
    #mobileNavMenu .services-dropdown::before {
        content: none !important;
        display: none !important;
        pointer-events: none !important;
    }

    /* Under 768px: drawer closed unless .mobile-nav--open (single source of truth) */
    #mobileNavMenu:not(.mobile-nav--open) {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    /* Dimmed overlay — toggled by JS class .mobile-nav-backdrop--visible */
    #mobileNavBackdrop.mobile-nav-backdrop--visible {
        display: block !important;
        position: fixed;
        top: calc(var(--promo-height, 0px) + var(--site-nav-bar-h));
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 90;
        background: rgba(10, 10, 10, 0.52);
        -webkit-tap-highlight-color: transparent;
        pointer-events: auto !important;
    }

    /* Slide-down panel directly under the navbar (absolute to #site-nav), above hero */
    #mobileNavMenu.mobile-nav--open {
        display: block !important;
        visibility: visible !important;
        pointer-events: auto !important;
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        top: 100% !important;
        bottom: auto !important;
        z-index: 95 !important;
        margin: 0 !important;
        padding: 0 !important;
        max-height: min(75vh, calc(100dvh - var(--promo-height, 0px) - var(--site-nav-bar-h) - 5px)) !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        background: linear-gradient(180deg, #141414 0%, #0a0a0a 100%);
        border-top: 1px solid rgba(244, 180, 0, 0.35);
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
        animation: slideDown 0.22s ease-out;
    }

    #mobileNavMenu .mobile-nav-panel-inner {
        max-height: none;
        overflow: visible;
        padding: 0.65rem 1rem 1.25rem;
        box-sizing: border-box;
    }

    #mobileNavMenu.mobile-nav--open .mobile-nav-panel-inner {
        max-height: none;
        height: auto;
        min-height: 0;
    }

    #mobileNavMenu .mobile-nav-list {
        display: flex !important;
        flex-direction: column;
        align-items: stretch !important;
        gap: 0;
        width: 100%;
    }

    #mobileNavMenu .mobile-nav-list > a {
        display: flex !important;
        align-items: center;
        min-height: 3.25rem;
        padding: 0.65rem 0.75rem !important;
        margin: 0;
        font-size: 1rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.95) !important;
        text-decoration: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-radius: 0 !important;
        letter-spacing: 0.01em;
        transition: background-color 0.15s ease;
    }

    #mobileNavMenu .mobile-nav-list > a:hover,
    #mobileNavMenu .mobile-nav-list > a:active {
        background-color: rgba(255, 255, 255, 0.06) !important;
    }

    #mobileNavMenu .mobile-nav-list > a.active {
        color: var(--brand-yellow) !important;
        background: rgba(244, 180, 0, 0.08) !important;
    }

    #mobileNavMenu .mobile-nav-list .services-dropdown {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 0;
        margin: 0;
    }

    #mobileNavMenu .mobile-nav-list .services-dropdown-toggle {
        width: 100%;
        min-height: 3.25rem;
        padding: 0.65rem 0.75rem !important;
        margin: 0 !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        color: rgba(255, 255, 255, 0.95) !important;
        text-align: left;
        border-radius: 0 !important;
        background: none !important;
        border: none !important;
        cursor: pointer !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        transition: background-color 0.15s ease;
    }

    #mobileNavMenu .mobile-nav-list .services-dropdown-toggle:hover,
    #mobileNavMenu .mobile-nav-list .services-dropdown-toggle:active {
        background-color: rgba(255, 255, 255, 0.06) !important;
    }

    #mobileNavMenu .mobile-nav-list .services-dropdown-toggle .dropdown-arrow {
        font-size: 0.65rem;
        opacity: 0.75;
        transition: transform 0.2s ease;
    }

    #mobileNavMenu .mobile-nav-list .services-dropdown-toggle.open .dropdown-arrow,
    #mobileNavMenu .mobile-nav-list .services-dropdown-toggle[aria-expanded="true"] .dropdown-arrow {
        transform: rotate(-180deg);
    }

    #mobileNavMenu .services-dropdown-menu {
        position: static !important;
        transform: none !important;
        left: auto !important;
        min-width: auto !important;
        width: 100% !important;
        display: none !important;
        margin: 0 0 0.4rem 0 !important;
        padding: 0.2rem 0 0.45rem 0 !important;
        background: rgba(0, 0, 0, 0.25) !important;
        border-radius: 10px !important;
        border-left: 3px solid var(--brand-yellow) !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    #mobileNavMenu .services-dropdown-menu.open {
        display: block !important;
    }

    #mobileNavMenu .services-dropdown-menu a {
        display: flex !important;
        align-items: center;
        min-height: 2.75rem;
        padding: 0.5rem 0.85rem 0.5rem 1rem !important;
        font-size: 0.9375rem !important;
        font-weight: 500 !important;
        color: rgba(255, 255, 255, 0.88) !important;
        text-decoration: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
        border-radius: 0 !important;
        transition: background-color 0.15s ease;
    }

    #mobileNavMenu .services-dropdown-menu a:last-child {
        border-bottom: none !important;
    }

    #mobileNavMenu .services-dropdown-menu a:hover,
    #mobileNavMenu .services-dropdown-menu a:active {
        background: rgba(255, 255, 255, 0.06) !important;
    }

    #mobileNavMenu .services-dropdown-menu a.active {
        color: var(--brand-yellow) !important;
        font-weight: 700 !important;
    }

    #mobileNavMenu .services-dropdown-menu a::before {
        display: none !important;
    }

    .mobile-nav-call-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: 1rem;
        padding: 0.9rem 1.25rem;
        font-family: 'Montserrat', sans-serif;
        font-size: 1.0625rem;
        font-weight: 800;
        letter-spacing: 0.02em;
        text-align: center;
        text-decoration: none !important;
        color: var(--black) !important;
        background: linear-gradient(180deg, var(--brand-yellow) 0%, #e0a800 100%);
        border: none;
        border-radius: 12px;
        box-shadow: 0 4px 14px rgba(244, 180, 0, 0.35);
        transition: transform 0.15s ease, box-shadow 0.15s ease;
    }

    .mobile-nav-call-cta:hover,
    .mobile-nav-call-cta:active {
        transform: translateY(-1px);
        box-shadow: 0 6px 18px rgba(244, 180, 0, 0.45);
    }
}

/* ========================================
   FULL-SCREEN MOBILE MENU OVERLAY
   ======================================== */
#mobileMenuOverlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(11, 18, 32, 0.98);
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
    overflow-y: auto;
}

#mobileMenuOverlay.hidden {
    display: none !important;
}

#mobileMenuOverlay:not(.hidden) {
    display: block !important;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 12px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000000;
}

.mobile-menu-close:hover {
    opacity: 0.8;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 60px;
}

.mobile-menu-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 60px;
    background-color: var(--brand-blue);
    color: var(--black);
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    padding: 0 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Montserrat', sans-serif;
}

.mobile-menu-button:hover {
    background-color: var(--brand-gold-hover);
    opacity: 1;
}

.mobile-menu-services-toggle {
    justify-content: space-between;
}

.mobile-menu-chevron {
    transition: transform 0.3s ease;
    font-size: 0.875rem;
}

.mobile-menu-services-toggle[aria-expanded='true'] .mobile-menu-chevron {
    transform: rotate(180deg);
}

.mobile-menu-submenu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left: 12px;
    margin-top: 0;
    margin-bottom: 12px;
}

.mobile-menu-submenu.hidden {
    display: none !important;
}

.mobile-menu-submenu-item {
    height: 52px;
    font-size: 1rem;
}

.mobile-menu-call {
    margin-top: 8px;
}

/* Desktop: hide overlay menu */
@media (min-width: 769px) {
    #mobileMenuOverlay {
        display: none !important;
    }
}

/* ========================================
   INNER PAGES — Homepage-aligned (services, about, careers)
   ======================================== */
body.te-inner-page {
    background: #eef0f3;
}

/* About page: short premium story block (no boxes) */
body.te-inner-page .te-about-story {
    padding: clamp(1.75rem, 4vw, 2.5rem) var(--spacing-md);
    background: transparent;
}

body.te-inner-page .te-about-story__container {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 var(--spacing-xs);
    box-sizing: border-box;
}

body.te-inner-page .te-about-story__title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.2rem, 2.6vw, 1.6rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #0b1220;
    margin: 0 0 0.85rem;
    line-height: 1.22;
    text-align: left;
    text-transform: none;
}

body.te-inner-page .te-about-story__copy {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(11, 18, 32, 0.74);
    font-weight: 500;
    max-width: 60rem;
}

body.te-inner-page .te-about-trust {
    margin-top: 1.15rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
    padding: 0;
    list-style: none;
}

body.te-inner-page .te-about-trust li {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    color: rgba(11, 18, 32, 0.78);
    font-weight: 600;
}

body.te-inner-page .te-about-trust li::before {
    content: "•";
    color: rgba(0, 102, 179, 0.9);
    font-weight: 900;
    line-height: 1;
}

/* About page: minimal centered story block (no headings, no bullets) */
.te-about-simple {
    padding: clamp(2rem, 4.5vw, 3rem) var(--spacing-lg);
    background: #ffffff;
    border-top: 1px solid rgba(11, 18, 32, 0.06);
}

.te-about-simple__inner {
    max-width: 46rem;
    margin: 0 auto;
    text-align: center;
}

.te-about-simple__p {
    margin: 0;
    color: rgba(11, 18, 32, 0.78);
    font-size: 1.0625rem;
    line-height: 1.7;
    font-weight: 500;
}

.te-about-simple__p + .te-about-simple__p {
    margin-top: 0.95rem;
}

/* About page (centered, premium, not paragraph-heavy) */
.te-about-centered {
    padding: clamp(2.1rem, 4.5vw, 3.15rem) var(--spacing-lg);
    background: #ffffff;
    border-top: 1px solid rgba(11, 18, 32, 0.06);
}

.te-about-centered--alt {
    background: linear-gradient(180deg, #eef1f5 0%, #e8ecf1 100%);
}

.te-about-centered__lead {
    margin: 1.15rem auto 0;
    max-width: 44rem;
    text-align: center;
    color: rgba(11, 18, 32, 0.78);
    font-size: 1.0625rem;
    line-height: 1.62;
    font-weight: 500;
}

.te-about-standfor {
    margin-top: 1.35rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
}

.te-about-standfor__item {
    text-align: center;
    padding: 0.35rem 0.25rem;
}

.te-about-standfor__label {
    font-weight: 900;
    letter-spacing: -0.015em;
    color: #0b1220;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.te-about-standfor__desc {
    color: rgba(11, 18, 32, 0.7);
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .te-about-centered {
        padding: 2rem var(--spacing-md);
    }

    .te-about-standfor {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .te-about-standfor__item {
        padding: 0.1rem 0;
    }
}

/* Legal pages */
.legal-section {
    padding: clamp(2rem, 4.5vw, 3rem) var(--spacing-lg);
    background: #ffffff;
    border-top: 1px solid rgba(11, 18, 32, 0.06);
}

.legal-section__inner {
    max-width: 46rem;
    margin: 0 auto;
}

.legal-section__inner h2 {
    margin: 1.75rem 0 0.65rem;
    font-size: 1.125rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #0b1220;
}

.legal-section__inner p {
    margin: 0.65rem 0;
    color: rgba(11, 18, 32, 0.78);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 500;
}

.legal-section__inner ul {
    margin: 0.5rem 0 0.75rem;
    padding-left: 1.1rem;
    color: rgba(11, 18, 32, 0.76);
    line-height: 1.65;
    font-weight: 500;
}

.legal-meta {
    margin-top: 0 !important;
    color: rgba(11, 18, 32, 0.7) !important;
    font-size: 0.9375rem !important;
}

/* Careers page: short + clean */
.te-careers-simple {
    padding: clamp(2.1rem, 4.5vw, 3.15rem) var(--spacing-lg);
    background: #ffffff;
    border-top: 1px solid rgba(11, 18, 32, 0.06);
}

.te-careers-simple--alt {
    background: linear-gradient(180deg, #eef1f5 0%, #e8ecf1 100%);
}

.te-careers-simple__lead {
    margin: 1.15rem auto 0;
    max-width: 46rem;
    text-align: center;
    color: rgba(11, 18, 32, 0.78);
    font-size: 1.0625rem;
    line-height: 1.62;
    font-weight: 500;
}

.te-careers-simple__lead a {
    color: var(--hyper-blue);
    font-weight: 750;
    text-underline-offset: 2px;
}

.te-careers-simple__list {
    margin: 1.15rem auto 0;
    padding: 0;
    list-style: none;
    max-width: 34rem;
    display: grid;
    gap: 0.65rem;
    text-align: center;
}

.te-careers-simple__list li {
    color: rgba(11, 18, 32, 0.76);
    font-weight: 650;
    font-size: 0.95rem;
    line-height: 1.4;
}

body.te-inner-page .te-careers-simple > .container > .section-title {
    text-align: center;
    color: var(--charcoal);
    text-transform: uppercase;
    letter-spacing: 0.036em;
    font-size: clamp(1.45rem, 3.4vw, 2.05rem) !important;
    line-height: 1.12;
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    position: relative;
    padding-bottom: 1.1rem;
}

body.te-inner-page .te-careers-simple > .container > .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 44px;
    height: 3px;
    background: var(--brand-yellow);
    border-radius: 2px;
}

/* Quote modal typography on inner pages (about/service-areas/etc.) */
body.te-inner-page .te-quote-modal__panel .hero-estimate-card__title {
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.024em;
    font-size: clamp(1.35rem, 2.75vw, 1.6875rem) !important;
    font-weight: 900;
    margin: 0 0 0.5rem !important;
}

body.te-inner-page .te-quote-modal__panel .form-group input:focus,
body.te-inner-page .te-quote-modal__panel .form-group select:focus,
body.te-inner-page .te-quote-modal__panel .form-group textarea:focus {
    outline: none;
    border-color: var(--brand-yellow);
    box-shadow: 0 0 0 3px rgba(244, 180, 0, 0.22);
    background-color: var(--white);
}

/* Service pages: single combined “where it works best” block (replaces stacked Best For / Benefits / Process) */
body.te-service-page .te-service-fit {
    padding: clamp(1.75rem, 4vw, 2.5rem) 0;
    margin: 0;
    background: transparent;
}

body.te-service-page .te-service-fit__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    box-sizing: border-box;
    width: 100%;
}

body.te-service-page .te-service-fit__title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.2rem, 2.6vw, 1.6rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #0b1220;
    margin: 0 auto 1.25rem;
    line-height: 1.22;
    text-align: center;
    text-transform: none;
    max-width: 44rem;
}

body.te-service-page .te-service-fit__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6875rem 1rem;
}

/* Reveal timing: same motion as homepage, with subtle stagger per card */
html.home-reveal-ready body.te-service-page .te-service-fit__grid > .te-service-fit__item.home-reveal.has-revealed:nth-child(1) {
    --home-reveal-delay: 0.04s;
}
html.home-reveal-ready body.te-service-page .te-service-fit__grid > .te-service-fit__item.home-reveal.has-revealed:nth-child(2) {
    --home-reveal-delay: 0.09s;
}
html.home-reveal-ready body.te-service-page .te-service-fit__grid > .te-service-fit__item.home-reveal.has-revealed:nth-child(3) {
    --home-reveal-delay: 0.14s;
}
html.home-reveal-ready body.te-service-page .te-service-fit__grid > .te-service-fit__item.home-reveal.has-revealed:nth-child(4) {
    --home-reveal-delay: 0.19s;
}

body.te-service-page .te-service-fit__item {
    background: rgba(255, 255, 255, 0.72);
    border-radius: 12px;
    padding: 1.125rem 1.25rem 1.2rem;
    border: none;
    box-shadow: none;
}

body.te-quartz-page.te-service-page .te-service-fit__item {
    background: rgba(255, 255, 255, 0.58);
}

body.te-service-page .te-service-fit__icon {
    width: 1.625rem;
    height: 1.625rem;
    margin-bottom: 0.5625rem;
    color: rgba(0, 102, 179, 0.9);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

body.te-service-page .te-service-fit__icon svg {
    width: 1.3125rem;
    height: 1.3125rem;
    display: block;
}

body.te-service-page .te-service-fit__label {
    font-size: 0.9375rem;
    font-weight: 800;
    margin: 0 0 0.3125rem;
    line-height: 1.28;
    color: #0b1220;
    letter-spacing: -0.012em;
}

body.te-service-page .te-service-fit__desc {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.52;
    color: rgba(11, 18, 32, 0.7);
    font-weight: 500;
}

@media (max-width: 767px) {
    body.te-service-page .te-service-fit__container {
        padding: 0 var(--spacing-md);
    }
}

@media (max-width: 480px) {
    body.te-service-page .te-service-fit__container {
        padding-left: 1.125rem;
        padding-right: 1.125rem;
    }
}

@media (max-width: 640px) {
    body.te-service-page .te-service-fit {
        padding: 1.5rem 0 1.35rem;
    }

    body.te-service-page .te-service-fit__grid {
        grid-template-columns: 1fr;
        gap: 0.5625rem;
    }

    body.te-service-page .te-service-fit__title {
        margin-bottom: 1.0625rem;
    }

    body.te-service-page .te-service-fit__item {
        padding: 1rem 1.125rem 1.125rem;
    }
}

.page-hero-stack {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #eef0f3;
}

.page-hero-stack__media {
    width: 100%;
    min-height: clamp(240px, 42vw, 400px);
    flex-shrink: 0;
    background-image:
        linear-gradient(180deg, rgba(11, 18, 32, 0.14), rgba(11, 18, 32, 0.24)),
        url('./assets/Tropical%20epoxy%20hero%20image.png');
    background-size: cover;
    background-position: 50% 20%;
    background-repeat: no-repeat;
}

.page-hero-stack__panel {
    background: #ffffff;
    padding: clamp(1.35rem, 4vw, 2.25rem) 0;
    border-bottom: 1px solid rgba(11, 18, 32, 0.06);
}

.page-hero-stack__block {
    max-width: 40rem;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    text-align: center;
    box-sizing: border-box;
}

.te-page-eyebrow {
    margin: 0 auto 0.5rem;
    max-width: 100%;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand-yellow);
    line-height: 1.3;
}

.page-hero-stack__title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.65rem, 4.75vw, 2.6rem);
    font-weight: 800;
    color: var(--charcoal);
    line-height: 1.08;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 0.85rem;
    text-rendering: geometricPrecision;
}

.page-hero-stack__lead {
    margin: 0 0 1.35rem;
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    line-height: 1.6;
    font-weight: 500;
    color: rgba(11, 18, 32, 0.78);
}

/* Inner-page hero: improve wrap + readability on real phone widths (390–430) */
@media (max-width: 480px) {
    .page-hero-stack__block {
        max-width: 44rem;
        padding-left: 0;
        padding-right: 0;
    }

    .page-hero-stack__title {
        font-size: clamp(1.45rem, 6.2vw, 2.2rem);
        line-height: 1.06;
        letter-spacing: 0.028em;
    }

    .page-hero-stack__lead {
        line-height: 1.66;
        margin-bottom: 1.15rem;
    }
}

.page-hero-stack__cta {
    margin-top: 0.25rem;
}

.service-hero-call--on-light {
    color: var(--charcoal) !important;
    border-color: rgba(11, 18, 32, 0.22) !important;
}

.service-hero-call--on-light:hover {
    background: rgba(11, 18, 32, 0.04);
    border-color: var(--brand-blue) !important;
    color: var(--charcoal) !important;
}

body.te-inner-page .service-detail-section--muted {
    background: linear-gradient(180deg, #eef1f5 0%, #e8ecf1 100%);
}

body.te-inner-page .service-detail-section .service-mini-card,
body.te-inner-page .service-detail-section .service-benefit-item,
body.te-inner-page .service-detail-section .service-process-step {
    border: 2px solid rgba(244, 180, 43, 0.55);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

body.te-inner-page .service-detail-section .service-mini-card h3,
body.te-inner-page .service-detail-section .service-benefit-text strong {
    font-weight: 800;
}

body.te-inner-page .service-detail-section > .container > .section-title,
body.te-inner-page .booking-section > .container > .section-title,
body.te-inner-page .faq-section--inner > .container > .section-title {
    text-align: center;
    color: var(--charcoal);
    text-transform: uppercase;
    letter-spacing: 0.036em;
    font-size: clamp(1.45rem, 3.4vw, 2.1rem) !important;
    line-height: 1.12;
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    position: relative;
    padding-bottom: 1.1rem;
}

body.te-inner-page .service-detail-section > .container > .section-title::after,
body.te-inner-page .booking-section > .container > .section-title::after,
body.te-inner-page .faq-section--inner > .container > .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 44px;
    height: 3px;
    background: var(--brand-yellow);
    border-radius: 2px;
}

body.te-inner-page.te-service-page .faq-section--inner > .container > .section-title {
    text-transform: none;
    letter-spacing: -0.02em;
    font-size: clamp(1.2rem, 2.75vw, 1.55rem) !important;
}

body.te-inner-page .service-detail-section#overview .service-detail-inner {
    margin-top: 1.75rem;
}

body.te-inner-page .service-detail-section#overview .service-lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 44rem;
}

body.te-inner-page .booking-section .section-title {
    margin-bottom: 0.35rem !important;
}

.te-inner-booking-intro {
    text-align: center;
    color: var(--charcoal);
    font-size: 1.0625rem;
    line-height: 1.6;
    max-width: 36rem;
    margin: 1.75rem auto var(--spacing-lg);
}

.faq-section--inner {
    padding-top: 3rem;
    padding-bottom: 3.25rem;
    background: #ffffff;
    border-top: 1px solid rgba(11, 18, 32, 0.06);
}

.faq-section--inner .faq-list {
    max-width: 44rem;
    margin: 1.75rem auto 0;
}

.inner-about-card,
.inner-careers-card {
    background: var(--white);
    border: 2px solid rgba(244, 180, 43, 0.45);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: clamp(1.5rem, 4vw, 2rem);
    max-width: 52rem;
    margin: 0 auto;
}

.inner-about-card p,
.inner-careers-card p {
    color: var(--charcoal);
    font-size: 1.0625rem;
    line-height: 1.75;
    margin: 0 0 1.125rem;
}

.inner-about-card p:last-child,
.inner-careers-card p:last-child {
    margin-bottom: 0;
}

.te-about-section,
.te-careers-section {
    padding: clamp(2.75rem, 5.5vw, 4.25rem) var(--spacing-lg);
    background: var(--white);
    border-top: 1px solid rgba(11, 18, 32, 0.06);
}

.te-about-section--alt,
.te-careers-section--alt {
    background: linear-gradient(180deg, #eef1f5 0%, #e8ecf1 100%);
}

body.te-inner-page .te-about-section .section-title,
body.te-inner-page .te-careers-section .section-title {
    text-align: center;
    color: var(--charcoal);
    text-transform: uppercase;
    letter-spacing: 0.036em;
    font-size: clamp(1.45rem, 3.4vw, 2.05rem) !important;
    line-height: 1.12;
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    position: relative;
    padding-bottom: 1.1rem;
}

body.te-inner-page .te-about-section .section-title::after,
body.te-inner-page .te-careers-section .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 44px;
    height: 3px;
    background: var(--brand-yellow);
    border-radius: 2px;
}

body.te-inner-page .te-about-section .offer-cards-grid,
body.te-inner-page .te-careers-section .offer-cards-grid {
    margin-top: 2rem;
}

body.te-inner-page .te-about-section .inner-about-card,
body.te-inner-page .te-careers-section .inner-careers-card {
    margin-top: 1.75rem;
}

.service-page-cta h2 {
    text-transform: uppercase;
    letter-spacing: 0.032em;
    font-size: clamp(1.45rem, 3vw, 1.95rem) !important;
}

/* Static “card” panels (about/careers): not full <a> offer links */
body.te-inner-page div.offer-card {
    cursor: default;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

body.te-inner-page div.offer-card .offer-card-description a {
    color: var(--hyper-blue);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

body.te-inner-page div.offer-card .offer-card-description a:hover {
    color: var(--brand-blue-dark);
}

body.te-inner-page .booking-section {
    border-top: 1px solid rgba(11, 18, 32, 0.06);
}

/* Service Areas page: coverage intro, compact state cards, regional steps */
.te-service-areas-page .te-service-areas-section--coverage {
    padding-top: clamp(2rem, 4.5vw, 3.5rem);
    padding-bottom: clamp(1.75rem, 3.5vw, 3rem);
}

.te-service-areas-page .te-service-areas-coverage-inner .section-title {
    margin-bottom: 0;
}

.te-service-areas-lead {
    text-align: center;
    color: var(--charcoal);
    font-size: clamp(0.98rem, 2.4vw, 1.0625rem);
    line-height: 1.58;
    max-width: 38rem;
    margin: 0.65rem auto 0;
}

.te-service-areas-page .te-service-areas-map-figure {
    margin: clamp(1.35rem, 3.5vw, 2rem) auto clamp(1.15rem, 2.8vw, 1.65rem);
    max-width: min(44rem, 100%);
    width: 100%;
    padding: 0;
}

.te-service-areas-page .te-service-areas-map-figure img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 2px 14px rgba(11, 18, 32, 0.08);
}

.te-service-areas-page .te-service-areas-grid--states {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    margin-top: 0.95rem;
    width: 100%;
}

@media (min-width: 480px) {
    .te-service-areas-page .te-service-areas-grid--states {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
}

@media (min-width: 900px) {
    .te-service-areas-page .te-service-areas-grid--states {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
        margin-top: 1.1rem;
    }
}

.te-state-card {
    background: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 0.8rem 0.95rem;
    box-shadow: 0 1px 3px rgba(11, 18, 32, 0.07);
    text-align: left;
    min-height: 0;
}

.te-state-card__title {
    font-family: var(--font-system);
    font-size: 1rem;
    font-weight: 800;
    color: var(--charcoal);
    margin: 0 0 0.3rem;
    letter-spacing: 0.02em;
    line-height: 1.25;
}

.te-state-card__text {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.48;
    color: rgba(47, 54, 64, 0.9);
}

.te-service-areas-page .te-service-areas-section--schedule {
    padding-top: clamp(1.85rem, 4vw, 3.25rem);
    padding-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
}

.te-service-areas-page .te-service-areas-section--schedule .te-service-areas-foot {
    margin-bottom: 0.15rem;
}

.te-service-areas-page .te-service-areas-schedule-inner .section-title {
    margin-bottom: 0;
}

.te-regional-steps {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    max-width: 36rem;
    margin: 0.85rem auto 0;
    width: 100%;
}

@media (min-width: 768px) {
    .te-regional-steps {
        gap: 0.65rem;
        margin-top: 1rem;
    }
}

.te-regional-step {
    background: #ffffff;
    border-radius: 10px;
    padding: 0.75rem 0.95rem;
    border: 1px solid rgba(11, 18, 32, 0.07);
    box-shadow: 0 1px 2px rgba(11, 18, 32, 0.05);
    text-align: left;
}

.te-regional-step__title {
    font-family: var(--font-system);
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--charcoal);
    margin: 0 0 0.35rem;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.te-regional-step__body {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.52;
    color: rgba(47, 54, 64, 0.9);
}

.te-service-areas-foot {
    text-align: center;
    color: rgba(91, 100, 117, 0.96);
    font-size: clamp(0.94rem, 2.2vw, 1rem);
    line-height: 1.55;
    max-width: min(28rem, 92vw);
    margin: clamp(1.1rem, 3vw, 1.5rem) auto 0;
    padding: 0.35rem 0.75rem 0;
}

.te-service-areas-foot a {
    color: var(--hyper-blue);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}

.te-service-areas-foot a:hover {
    color: var(--brand-blue-dark);
}

/* ========================================
   SERVICE DETAIL PAGES (epoxy / concrete)
   ======================================== */
.service-page-hero .hero-subtitle {
    max-width: 36rem;
}

.hero-cta.service-hero-actions {
    flex-direction: row;
}

.service-hero-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.service-hero-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.35rem;
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-radius: var(--radius-md);
    transition: background-color 0.2s ease, border-color 0.2s ease;
    font-family: var(--font-system);
}

.service-hero-call:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.75);
    color: var(--white);
}

.service-detail-section {
    padding: clamp(3rem, 6vw, 4.5rem) var(--spacing-lg);
    background: var(--white);
}

.service-detail-section--muted {
    background: #f4f6f9;
}

.service-detail-inner {
    max-width: 44rem;
    margin: 0 auto;
}

.service-detail-inner--wide {
    max-width: 72rem;
    margin: 0 auto;
}

.service-detail-section .section-title,
.service-detail-section--muted .section-title {
    color: var(--charcoal);
    margin-bottom: var(--spacing-xl);
}

.service-lead {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--charcoal);
    margin: 0 0 1.125rem;
}

.service-lead:last-child {
    margin-bottom: 0;
}

.service-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.125rem;
}

@media (min-width: 600px) {
    .service-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .service-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-mini-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.125rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.service-mini-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0 0 0.35rem;
    line-height: 1.35;
}

.service-mini-card p {
    font-size: 0.9375rem;
    color: var(--muted-gray);
    margin: 0;
    line-height: 1.55;
}

.service-benefit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.875rem;
}

@media (min-width: 640px) {
    .service-benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.125rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.service-detail-section--muted .service-benefit-item {
    background: var(--white);
}

.service-benefit-icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: rgba(var(--brand-blue-rgba), 0.18);
    color: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8125rem;
}

.service-benefit-text strong {
    display: block;
    color: var(--charcoal);
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.service-benefit-text p {
    font-size: 0.875rem;
    color: var(--muted-gray);
    line-height: 1.55;
    margin: 0;
}

.service-process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .service-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1000px) {
    .service-process-grid--5 {
        grid-template-columns: repeat(5, 1fr);
    }
}

.service-process-step {
    text-align: center;
    padding: 1.35rem 1rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-gray);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    height: 100%;
}

.service-process-step-num {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.85rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
    color: var(--black);
    font-size: 1.125rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.service-process-step h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0 0 0.4rem;
    line-height: 1.35;
}

.service-process-step p {
    font-size: 0.8125rem;
    color: var(--muted-gray);
    margin: 0;
    line-height: 1.5;
}

.service-why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .service-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .service-why-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-why-item {
    padding: 1.25rem;
    border-left: 4px solid var(--brand-blue);
    background: #fafbfc;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.service-why-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0 0 0.4rem;
}

.service-why-item p {
    font-size: 0.875rem;
    color: var(--muted-gray);
    margin: 0;
    line-height: 1.55;
}

/* Quartz epoxy service page — slim layout (no mini-cards / benefit boxes) */
body.te-quartz-page .te-quartz-hero-trust {
    list-style: none;
    margin: 1.5rem auto 0;
    padding: 0;
    max-width: 22rem;
    text-align: left;
}

body.te-quartz-page .te-quartz-hero-trust li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.45rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(11, 18, 32, 0.78);
    line-height: 1.45;
}

body.te-quartz-page .te-quartz-hero-trust li:last-child {
    margin-bottom: 0;
}

body.te-quartz-page .te-quartz-hero-trust li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-yellow);
}

body.te-quartz-page .service-detail-section {
    padding: clamp(3rem, 6vw, 4.75rem) var(--spacing-lg);
}

body.te-quartz-page .service-detail-section--muted {
    background: #f4f6f9;
}

@media (max-width: 767px) {
    body.te-quartz-page .service-detail-section {
        padding: clamp(2.4rem, 5vw, 3.25rem) var(--spacing-md);
    }
}

.te-quartz-section-inner {
    max-width: 34rem;
    margin: 0 auto;
}

.te-quartz-section-inner--process {
    max-width: 52rem;
}

.te-quartz-section-inner .section-title {
    margin-bottom: 0;
}

.te-quartz-simple-list {
    list-style: none;
    margin: 1.35rem 0 0;
    padding: 0;
}

.te-quartz-simple-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(11, 18, 32, 0.08);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: 0.01em;
}

.te-quartz-simple-list li:first-child {
    padding-top: 0.35rem;
}

.te-quartz-simple-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.te-quartz-check-list {
    list-style: none;
    margin: 1.35rem 0 0;
    padding: 0;
}

.te-quartz-check-list li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(11, 18, 32, 0.06);
}

.te-quartz-check-list li:last-child {
    border-bottom: none;
}

.te-quartz-check-list__icon {
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: rgba(244, 180, 0, 0.22);
    color: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
}

.te-quartz-check-list__text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.35;
}

.te-quartz-process {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
}

.te-quartz-process__step {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(11, 18, 32, 0.08);
}

.te-quartz-process__step:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.te-quartz-process__num {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: var(--charcoal);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.te-quartz-process__label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.3;
}

@media (min-width: 900px) {
    .te-quartz-process {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }

    .te-quartz-process__step {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 0.5rem 1rem;
        border-bottom: none;
        border-right: 1px solid rgba(11, 18, 32, 0.08);
    }

    .te-quartz-process__step:last-child {
        border-right: none;
    }
}

.te-quartz-why-list {
    list-style: none;
    margin: 1.35rem 0 0;
    padding: 0;
}

.te-quartz-why-list li {
    padding: 0.95rem 0 0.95rem 1rem;
    margin-bottom: 0.65rem;
    border-left: 3px solid var(--brand-yellow);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.4;
}

.te-quartz-why-list li:last-child {
    margin-bottom: 0;
}

body.te-quartz-page .faq-section--inner .faq-answer a {
    color: var(--hyper-blue);
    font-weight: 700;
    text-underline-offset: 2px;
}

body.te-quartz-page .faq-section--inner {
    padding-top: clamp(3rem, 6vw, 4.25rem);
    padding-bottom: clamp(3.25rem, 6vw, 4.5rem);
}

body.te-quartz-page .faq-section--inner .faq-list {
    margin-top: 1.5rem;
}

body.te-service-page .faq-section--inner {
    padding-top: clamp(2rem, 4.5vw, 2.75rem);
    padding-bottom: clamp(2.35rem, 4.5vw, 3rem);
}

body.te-service-page .faq-section--inner .faq-list {
    margin-top: 1.75rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 44rem;
}

.service-page-cta {
    padding: clamp(3rem, 6vw, 4rem) var(--spacing-lg);
    background: #000000;
    text-align: center;
}

.service-page-cta h2 {
    font-size: clamp(1.65rem, 3.5vw, 2.125rem);
    font-weight: 800;
    color: var(--white);
    margin: 0 0 0.75rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.service-page-cta-lead {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.0625rem;
    line-height: 1.55;
    max-width: 32rem;
    margin: 0 auto 1.75rem;
}

.service-page-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    justify-content: center;
    align-items: center;
}

.service-page-cta-actions .btn-primary {
    min-width: 200px;
}

.service-page-cta-call {
    color: var(--white);
    font-weight: 800;
    font-size: 1.125rem;
    text-decoration: none;
    border-bottom: 2px solid var(--brand-blue);
    padding-bottom: 2px;
}

.service-page-cta-call:hover {
    color: var(--white);
    border-bottom-color: var(--white);
    opacity: 0.92;
}

body.te-service-page .service-page-cta {
    padding: clamp(2.5rem, 5vw, 3.25rem) var(--spacing-lg);
}

body.te-service-page .service-page-cta-lead {
    margin-bottom: 1.25rem;
}

/* ========================================
   PREMIUM EDGE GLOW — thin animated border on hero CTAs (no outer blob)
   ======================================== */
.te-edge-glow-wrap {
    position: relative;
    display: block;
    width: 100%;
    isolation: isolate;
}

/* Masked ring: only a ~2px band at the button’s border radius (conic sheen rotates inside) */
.te-edge-glow-wrap > .te-edge-glow-spin {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    border-radius: 14px;
    padding: 2px;
    box-sizing: border-box;
    overflow: hidden;
    opacity: 0.88;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.te-edge-glow-wrap--r12 > .te-edge-glow-spin {
    border-radius: 12px;
}

.te-edge-glow-wrap--r14 > .te-edge-glow-spin {
    border-radius: 14px;
}

.te-edge-glow-spin::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 260%;
    height: 260%;
    transform: translate(-50%, -50%);
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 245deg,
        rgba(255, 240, 200, 0.55) 268deg,
        rgba(244, 180, 0, 0.65) 283deg,
        rgba(255, 255, 255, 0.45) 298deg,
        transparent 318deg,
        transparent 360deg
    );
    animation: te-edge-glow-rotate 10s linear infinite;
}

.te-edge-glow-wrap > .btn,
.te-edge-glow-wrap > button {
    position: relative;
    z-index: 1;
}

.te-edge-glow-wrap--hero-expand {
    display: none;
}

@media (max-width: 767px) {
    .te-edge-glow-wrap--hero-expand {
        display: block;
        width: 100%;
    }
}

@keyframes te-edge-glow-rotate {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .te-edge-glow-wrap > .te-edge-glow-spin {
        opacity: 0.5;
    }

    .te-edge-glow-spin::before {
        animation: none;
    }
}

/* Tidio live chat: tight edge emphasis only (small blur / offset — no large halo) */
#tidio-chat-code,
#tidio-chat-button {
    z-index: 2147483000 !important;
    pointer-events: auto !important;
}

@keyframes te-tidio-edge-glow {
    0%,
    100% {
        filter:
            drop-shadow(1px 0 2px rgba(244, 180, 0, 0.45))
            drop-shadow(0 0 1px rgba(255, 248, 220, 0.35));
    }
    25% {
        filter:
            drop-shadow(0 1px 2px rgba(244, 180, 0, 0.45))
            drop-shadow(0 0 1px rgba(255, 255, 255, 0.28));
    }
    50% {
        filter:
            drop-shadow(-1px 0 2px rgba(244, 180, 0, 0.42))
            drop-shadow(0 0 1px rgba(255, 248, 220, 0.3));
    }
    75% {
        filter:
            drop-shadow(0 -1px 2px rgba(244, 180, 0, 0.43))
            drop-shadow(0 0 1px rgba(255, 255, 255, 0.28));
    }
}

iframe[src*="tidio.co"],
iframe[src*="tidiochat"] {
    z-index: 2147483000 !important;
    pointer-events: auto !important;
    animation: te-tidio-edge-glow 10s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
    iframe[src*="tidio.co"],
    iframe[src*="tidiochat"] {
        animation: none;
        filter:
            drop-shadow(0 0 2px rgba(244, 180, 0, 0.35))
            drop-shadow(0 0 1px rgba(255, 248, 220, 0.25));
    }
}
