/* Main CSS - Refactored */

/* Self-Hosted Fonts - Optimized woff2 */

/* open-sans-300 - latin */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/open-sans-v44-latin/open-sans-v44-latin-300.woff2') format('woff2');
}
/* open-sans-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/open-sans-v44-latin/open-sans-v44-latin-regular.woff2') format('woff2');
}
/* open-sans-500 - latin */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/open-sans-v44-latin/open-sans-v44-latin-500.woff2') format('woff2');
}
/* open-sans-600 - latin */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/open-sans-v44-latin/open-sans-v44-latin-600.woff2') format('woff2');
}
/* open-sans-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/open-sans-v44-latin/open-sans-v44-latin-700.woff2') format('woff2');
}
/* open-sans-800 - latin */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/open-sans-v44-latin/open-sans-v44-latin-800.woff2') format('woff2');
}

/* rubik-300 - latin */
@font-face {
  font-display: swap;
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/rubik-v31-latin/rubik-v31-latin-300.woff2') format('woff2');
}
/* rubik-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/rubik-v31-latin/rubik-v31-latin-regular.woff2') format('woff2');
}
/* rubik-500 - latin */
@font-face {
  font-display: swap;
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/rubik-v31-latin/rubik-v31-latin-500.woff2') format('woff2');
}
/* rubik-600 - latin */
@font-face {
  font-display: swap;
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/rubik-v31-latin/rubik-v31-latin-600.woff2') format('woff2');
}
/* rubik-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/rubik-v31-latin/rubik-v31-latin-700.woff2') format('woff2');
}
/* rubik-800 - latin */
@font-face {
  font-display: swap;
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/rubik-v31-latin/rubik-v31-latin-800.woff2') format('woff2');
}

/* Variables */
:root {
    /* Colors */
    --color-primary: #0f1a23;
    /* dark */
    --color-accent: #1087e5;
    /* accent-dark */
    --color-accent-light: #7bc4ff;
    /* accent-light */
    --color-bg-light: #f4faff;
    /* background */
    --color-bg-lighter: #f9fcff;
    /* background-two */
    --color-white: #ffffff;
    --color-black: #000000;

    /* Text Colors */
    --color-text-main: #0f1a23;
    --color-text-muted: rgba(15, 26, 35, 0.8);
    /* dark-fade-out roughly */

    /* Typography - Font Family */
    --font-main: 'Open Sans', sans-serif;
    --font-heading: 'Rubik', sans-serif;

    /* Typography Scale - Based on 1.25 ratio */
    --text-xs: 12px;
    /* Fine print, captions */
    --text-sm: 14px;
    /* Secondary info, metadata, labels */
    --text-base: 16px;
    /* Body text, buttons */
    --text-lg: 18px;
    /* Lead paragraphs, nav links */
    --text-xl: 20px;
    /* Card titles, h5 */
    --text-2xl: 24px;
    /* h4, section subtitles */
    --text-3xl: 32px;
    /* h3 */
    --text-4xl: 44px;
    /* h2 */
    --text-5xl: 56px;
    /* h1 mobile */
    --text-6xl: 72px;
    /* h1 desktop */

    /* Spacing */
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 60px;
    --space-4xl: 80px;

    /* Layout */
    --container-width: 1200px;
    --container-padding: 24px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 12px 36px rgba(15, 26, 35, 0.04);
}

/* Reset / Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--color-text-main);
    background-color: #f4faff;
    font-size: 16px;
    font-weight: 500;
    line-height: 130%;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.8;
}

/* Typography */
h1 {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-5xl), 8vw, var(--text-6xl));
    font-weight: 700;
    line-height: 115%;
    margin-top: 0;
    margin-bottom: 0;
}

h2 {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 700;
    line-height: 115%;
    margin-top: 20px;
    margin-bottom: 10px;
}

h3 {
    font-size: var(--text-3xl);
    font-weight: 700;
    line-height: 135%;
    margin-top: 20px;
    margin-bottom: 10px;
}

h4 {
    font-size: var(--text-2xl);
    font-weight: 700;
    line-height: 1.3;
}

h5 {
    font-size: var(--text-xl);
    font-weight: 700;
    line-height: 1.3;
}

h6 {
    font-size: var(--text-lg);
    font-weight: 700;
    line-height: 1.3;
}

/* Mobile Typography Scale - Proper hierarchy, smaller sizes */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 22px;
    }

    h4 {
        font-size: 20px;
    }

    h5 {
        font-size: 18px;
    }

    h6 {
        font-size: 16px;
    }
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =========================================
   Homepage Hero - Split Layout
   ========================================= */

.hero-split {
    background: linear-gradient(135deg, var(--color-bg-lighter) 0%, #e8f4fd 100%);
    padding: 80px 0 100px;
    overflow: hidden;
}

.hero-split-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-split-content {
    max-width: 520px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(15, 26, 35, 0.06);
}

.hero-eyebrow svg {
    color: var(--color-accent);
}

.hero-split h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    color: var(--color-text-main);
    margin: 0 0 20px;
    font-weight: 700;
}

.hero-split h1 span {
    color: var(--color-accent);
}

.hero-split-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    max-width: 460px;
}

.hero-split-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-trust-indicators {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(15, 26, 35, 0.08);
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text-muted);
}

.hero-trust-item strong {
    color: var(--color-text-main);
}

.hero-trust-item svg {
    color: var(--color-accent);
}

.hero-stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
}

.hero-split-image-wrap {
    position: relative;
}

.hero-split-image {
    width: 100%;
    max-width: 560px;
    border-radius: 24px;
    box-shadow:
        0 4px 6px rgba(15, 26, 35, 0.04),
        0 24px 48px rgba(15, 26, 35, 0.12);
    object-fit: cover;
    aspect-ratio: 4/3;
}

.hero-image-caption {
    position: absolute;
    bottom: -16px;
    left: 24px;
    background: white;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(15, 26, 35, 0.1);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-main);
}

/* Hero Slideshow */
.hero-slideshow {
    width: 100%;
    max-width: 560px;
}

.hero-slides {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 4px 6px rgba(15, 26, 35, 0.04),
        0 24px 48px rgba(15, 26, 35, 0.12);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-thumbnails {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    justify-content: center;
}

.hero-thumb {
    width: 56px;
    height: 42px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease, border-color 0.2s ease;
    background: none;
}

.hero-thumb:hover {
    opacity: 0.9;
}

.hero-thumb.active {
    opacity: 1;
    border-color: var(--color-accent, #2563eb);
}

.hero-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Split Responsive */
@media (max-width: 991px) {
    .hero-split-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-split-content {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-split-subtitle {
        max-width: 100%;
    }

    .hero-split-ctas {
        justify-content: center;
    }

    .hero-trust-indicators {
        justify-content: center;
    }

    .hero-split-image-wrap {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-image-caption {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 600px) {
    .hero-split {
        padding: 60px 0 80px;
    }

    .hero-trust-indicators {
        flex-direction: column;
        gap: 16px;
    }

    .hero-split-ctas {
        flex-direction: column;
    }

    .hero-split-ctas .cta-blue-arrow,
    .hero-split-ctas .cta-outline {
        width: 100%;
        justify-content: center;
    }
}

/* Tier Section - Packages page */
.tier-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* =========================================
   Packages Page - High Contrast Redesign
   ========================================= */

/* Light Hero variant */
.standard-hero.packages-light-hero {
    background-color: #f8fcff;
    /* Light blue tint */
    color: #0c1222;
    padding-top: 100px;
    padding-bottom: 80px;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.standard-hero.packages-light-hero::after {
    display: none;
    /* Remove dark mode glow */
}

.standard-hero.packages-light-hero h1 {
    color: #0c1222;
    letter-spacing: -0.02em;
    font-size: clamp(var(--text-5xl), 8vw, var(--text-6xl));
    /* Match global h1 scale */
    font-weight: 700;
    line-height: 115%;
    margin-bottom: 24px;
}

.standard-hero.packages-light-hero .subtitle {
    color: #475569;
    font-size: 20px;
    margin: 0 auto;
    max-width: 600px;
    line-height: 1.5;
}

.standard-hero.packages-light-hero h1 span {
    color: #1087e5;
    /* Accent Blue */
    display: block;
}

.standard-hero.packages-dark-hero .subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    margin-top: 24px;
    max-width: 600px;
}

/* Subtle graphic element for hero */
/* Removed graphic element for hero */

/* Simplification for Packages Grid & Cards */
/* Nike-inspired Product Grid Redesign */
.packages-page {
    background-color: #ffffff !important;
    padding-top: 40px;
    padding-bottom: 120px;
}

.packages-page .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: var(--container-padding) !important;
    padding-right: var(--container-padding) !important;
}

/* Page Header */
/* Hidden on packages page as we use the Hero instead */
.page-header {
    display: none;
}

/* Modern Minimalist Benefit Strip - Refined */
.benefit-strip-v2 {
    /* Container styles removed - now part of hero */
    display: none;
    /* Just in case */
}

/* Removed sibling selector rule */

.benefit-container-v2 {
    display: flex;
    justify-content: center;
    gap: 48px;
    /* Balanced gap */
    flex-wrap: wrap;
}

.benefit-item-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-text-v2 {
    color: #475569 !important;
    /* Slightly darker for better readability */
    font-size: 15px !important;
    font-weight: 500 !important;
    letter-spacing: 0;
}



/* Series Differentiation - Completely Minimalist */
.product-info {
    padding: 0 !important;
    margin-top: 12px !important;
}


/* Benefit strip integration */
/* Removed old specific rule to perform generic adjacent sibling entry above */

/* =========================================
   Footer
   ========================================= */
.site-footer {
    padding: var(--space-4xl) 0 var(--space-xl);
    background-color: var(--color-bg-light);
    border-top: 1px solid #bccdde;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--space-lg);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    grid-column: span 2;
}

.footer-nav a {
    font-size: 16px;
    color: var(--color-text-main);
    font-weight: 500;
}

/* Contact Card */
.footer-contact-card {
    grid-column: 7 / span 6;
    /* Grid position right side */
    background-color: var(--color-bg-lighter);
    padding: var(--space-xl);
    border-radius: 20px;
    border: 1px solid #d8e9fb;
}

.footer-heading {
    font-size: 24px;
    margin-bottom: var(--space-lg);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: var(--color-text-main);
    font-weight: 500;
}

.contact-item .icon {
    width: 24px;
    height: 24px;
}

.footer-socials {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(15, 26, 35, 0.1);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
}

.footer-brand img {
    height: 32px;
}

.footer-legal {
    font-size: 14px;
    color: var(--color-text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-top {
        display: flex;
        flex-direction: column;
        gap: var(--space-xl);
    }

    .footer-nav {
        width: 100%;
    }

    .footer-contact-card {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-lg);
    }
}

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 99px;
    font-weight: 700;
    transition: all 0.2s ease;
    line-height: 1;
}

.btn-primary {
    background-color: var(--color-accent);
    color: white;
}

.btn-primary:hover {
    background-color: #0d73c4;
    /* darker accent */
    transform: translateY(-2px);
}

.btn-icon img {
    width: 16px;
    height: 16px;
}

/* =========================================
   Header & Navbar
   ========================================= */
.site-header {
    padding: 24px 0;
    background-color: transparent;
    width: 100%;
    position: relative;
    z-index: 100;
}

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

.logo-link img {
    height: 48px;
    /* Adjustable based on logo */
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    color: var(--color-text-main);
    position: relative;
}

.nav-link:hover {
    color: var(--color-accent);
}

.mobile-toggle {
    display: none;
    /* Hidden on desktop */
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
}

/* Responsive Header */
@media (max-width: 991px) {
    .mobile-toggle {
        display: flex;
        z-index: 102;
        /* Above mobile menu */
    }

    /* Hamburger Animation State */
    .mobile-toggle.is-active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .mobile-toggle.is-active .hamburger-line:nth-child(2) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .main-nav {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        justify-content: center;
        padding: 40px 24px;
        gap: 40px;
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        opacity: 0;
        pointer-events: none;
        z-index: 101;
        /* Below toggle */
    }

    .site-header.nav-open .main-nav {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        font-size: 20px;
        font-weight: 700;
    }
}

/* =========================================
   Forms & Quote Page
   ========================================= */

/* Hero Section */
.section-hero {
    padding: var(--space-3xl) 0 var(--space-2xl);
    text-align: center;
}

.text-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subtitle {
    font-size: 20px;
    max-width: 600px;
    color: var(--color-text-muted);
    margin-top: var(--space-md);
    line-height: 1.6;
}

/* Form Container */
.section-form {
    padding-bottom: var(--space-4xl);
}

.container-narrow {
    max-width: 800px;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* Tighter section gaps */
}

/* Form Sections - Card style */
.form-section {
    position: relative;
    border: 1px solid #e8f0f7;
    border-radius: 12px;
    background-color: var(--color-white);
    padding: 24px 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin: 0;
    min-width: 0;
}

.section-title {
    font-size: var(--text-4xl);
    font-weight: 700;
    line-height: 115%;
    margin-bottom: 24px;
    display: block;
    width: 100%;
    padding: 0;
}

.section-desc {
    color: var(--color-text-muted);
    margin-bottom: 12px;
    display: block;
}

@media (max-width: 768px) {
    .section-title {
        font-size: var(--text-3xl);
    }
}

/* Checkbox Cards - 2-column grid with subtle backgrounds */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.checkbox-card {
    display: flex;
    align-items: flex-start;
    padding: 10px 14px;
    margin-bottom: 0;
    background-color: #fcfcfe;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.checkbox-card:hover {
    background-color: #f6faff;
    border-color: var(--color-accent);
}

.checkbox-card input {
    width: 18px;
    height: 18px;
    margin: 2px 10px 0 0;
    flex-shrink: 0;
    accent-color: var(--color-accent);
}

.checkbox-card span {
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--color-text-main);
}

/* Input Fields */
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.form-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: var(--space-md);
    min-width: 0;
    /* CRITICAL FIX: Prevents Grid blowout */
}

.form-group label {
    font-weight: 600;
    font-size: 14px;
    color: var(--color-text-main);
}

.form-group input,
.form-group select {
    width: 100%;
    box-sizing: border-box;
    /* Force correct box model */
    padding: 12px 16px;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(16, 135, 229, 0.1);
}

.spacer-top {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid #edf2f7;
}

.field-hint {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

.mb-2 {
    margin-bottom: var(--space-sm);
}

/* Submit Area */
.form-actions {
    display: flex;
    justify-content: center;
    padding-top: var(--space-lg);
}

.btn-large {
    padding: 16px 48px;
    font-size: 18px;
}

/* ========================================
   WEBFLOW FORM STYLES (Original Quote Form)
   ======================================== */

/* Form Container */
.tile-elevation.contact-form-tile {
    background-color: transparent;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    box-shadow: none;
}

.w-form {
    margin: 0;
}

/* Step Separator - Main section cards */
.input-wrap.step-separator {
    position: relative;
    margin-top: 0;
    border: 1px solid #e8f0f7;
    border-radius: 12px;
    background-color: var(--color-white);
    padding: clamp(24px, 3vw, 36px);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.04);
    margin-bottom: 20px;
}

.input-wrap.step-separator h3 {
    margin-bottom: 16px;
    letter-spacing: 0.01em;
    font-size: 1.35rem;
    color: var(--color-text-main);
    font-weight: 700;
    margin-top: 0;
}

/* Input Wrap - Base styles */
.input-wrap {
    flex: 1;
    margin-top: 16px;
    display: block;
}

.input-wrap.input-wrap-extra-mg {
    margin-top: 16px;
}

/* 2-Column Grid */
.input-wrap.input-wrap-2-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    margin-top: 0;
}

.input-wrap.input-wrap-2-column .input-wrap {
    margin-top: 0;
}

/* 3-Column Grid */
.input-wrap.input-wrap-3-column {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
}

.input-wrap.input-wrap-3-column .input-wrap {
    margin-top: 0;
}

/* Span helpers */
.input-wrap.input-wrap-span-2 {
    grid-column: span 2;
}

.input-wrap.input-wrap-span-3 {
    grid-column: span 3;
}

/* Checkbox Wrap - Default single column */
.input-wrap.checkbox-wrap {
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 12px;
    grid-row-gap: 8px;
    margin-top: 0;
    margin-bottom: 16px;
}

/* Checkbox Wrap - 2-column variant */
.input-wrap.checkbox-wrap.checkbox-wrap-2col {
    grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 767px) {
    .input-wrap.checkbox-wrap.checkbox-wrap-2col {
        grid-template-columns: 1fr;
    }

    .input-wrap.step-separator {
        margin-bottom: 40px;
    }
}

/* Full-width helper text above checkboxes */
.input-wrap.checkbox-wrap .p-mg {
    grid-column: 1 / -1;
}

/* Category headers within grid */
.input-wrap.checkbox-wrap h5 {
    grid-column: 1 / -1;
    margin-bottom: 8px;
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--color-brand-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.input-wrap.checkbox-wrap h5:first-of-type {
    margin-top: 0;
}

.input-wrap.checkbox-wrap.input-wrap-extra-mg {
    margin-top: 16px;
    padding-top: 0;
}

/* Webflow Checkbox - Styled items */
.w-checkbox {
    display: flex;
    align-items: flex-start;
    padding: 18px 14px;
    margin-bottom: 0;
    background-color: #fcfcfe;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.w-checkbox:hover {
    background-color: #f6faff;
    border-color: var(--color-accent);
}

.w-checkbox-input {
    width: 18px;
    height: 18px;
    margin: 2px 10px 0 0;
    flex-shrink: 0;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    accent-color: var(--color-accent);
}

.w-checkbox-input:checked {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

.w-form-label {
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--color-text-main);
}

/* Specific override for labels inside checkboxes */
.w-checkbox .w-form-label {
    margin-bottom: 0;
}

/* Field Labels - Exact Original */
.field-label {
    margin-bottom: 16px;
    font-weight: 400;
    display: block;
    font-size: 1rem;
    color: var(--color-text-main);
}

/* Input Fields - Exact Original Values */
.field-contact-2 {
    border: 1px solid #1087e5;
    color: #0f1a23;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    width: 100%;
    height: 52px;
    margin-bottom: 16px;
    padding-left: 24px;
    padding-right: 24px;
    font-size: 18px;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field-contact-2:focus {
    border-color: #1087e5;
    color: #0f1a23;
    outline: none;
    box-shadow: 0 0 0 3px rgba(16, 135, 229, 0.15);
}

.field-contact-2::placeholder {
    color: rgba(15, 26, 35, 0.4);
    font-weight: 300;
}

.field-contact-2:user-invalid {
    border-color: #e63946;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.field-contact-2.text-area {
    border-radius: 24px;
    padding-top: 24px;
    padding-bottom: 80px;
    min-height: auto;
    height: auto;
    resize: vertical;
    margin-bottom: 16px;
}

/* W-Input and W-Select base */
.w-input,
.w-select {
    display: block;
    width: 100%;
    box-sizing: border-box;
}

/* Text helpers */
.p-mg {
    margin: 0;
}

.p-mg.p-line-height-larger {
    margin-bottom: 16px;
}

.mg-top-24 {
    margin-top: 24px;
}

.p-line-height-larger {
    line-height: 1.6;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Form Callout - Styled helper text box */
.form-callout {
    background-color: #f8fbff;
    border-radius: 8px;
    padding: 16px 20px;
    margin: 0 auto 24px auto;
    max-width: 500px;
    text-align: center;
}

.form-callout p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-text-main);
}

/* Submit Button Wrapper */
.input-wrap.input-wrap-extra-mg.submit-section {
    margin-top: 60px;
}

.submit-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.submit-wrapper .cta-blue-arrow.big-blue {
    max-width: 400px;
    width: 100%;
    justify-content: center;
}


.text-block-mg-bot {
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--color-text-main);
}

/* Mobile Responsive */
@media (max-width: 767px) {

    .input-wrap.input-wrap-2-column,
    .input-wrap.input-wrap-3-column {
        grid-template-columns: 1fr;
    }

    .input-wrap.input-wrap-span-2,
    .input-wrap.input-wrap-span-3 {
        grid-column: span 1;
    }

    .input-wrap.checkbox-wrap {
        grid-template-columns: 1fr;
    }

    .input-wrap.step-separator {
        padding: 20px;
    }
}


/* Responsive Form */
@media (max-width: 600px) {
    .section-hero {
        padding: 75px 0 !important;
    }

    .form-section {
        padding: 20px;
        /* Reduced padding for mobile */
    }

    .form-grid-2,
    .form-grid-3 {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .checkbox-card {
        width: 100%;
        /* Full width cards on mobile */
    }
}

/* =========================================
   Packages Page & Cards
   ========================================= */

/* Hero Styles (Corrected from Legacy .abstract-hero-general) */
.section-hero {
    position: relative;
    padding: 120px 0 80px;
    text-align: center;
    /* Ensure container context */
    max-width: 100%;
}

.hero-abstract-bg {
    position: absolute;
    z-index: -1;
    width: 40%;
    max-width: 430px;
    /* Legacy: inset: 0% 0% auto auto; */
    top: 0;
    right: 0;
    left: auto;
    transform: none;
    height: auto;
    object-fit: contain;
    opacity: 1;
    /* Reset opacity if legacy didn't have it */
}

/* Service Icon Styles (Corrected from Legacy .circle-icon-service-tile) */
.service-icon-circle {
    background-color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
}

.service-icon-circle img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.package-section {
    padding: var(--space-xl) 0;
}

.section-header {
    text-align: left;
    /* Fix: Left aligned */
    margin-bottom: var(--space-2xl);
}

.section-header-left {
    text-align: left;
    margin-bottom: 40px;
}

/* Removed text-victron/ecoflow colors as requested */

/* Wider container for packages */
.main-container-wide {
    max-width: 1400px !important;
}


.package-card {
    background: white;
    border: 1px solid #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    animation: fadeIn 0.4s ease-out forwards;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.package-card:hover {
    box-shadow: 0 8px 24px rgba(15, 26, 35, 0.08);
    transform: translateY(-4px);
}

/* Package Image */
.package-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    /* 1:1 aspect ratio */
    background: #fbfbfb;
    overflow: hidden;
}

.package-image img {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    object-fit: contain;
}

/* Package Info */
.package-info {
    padding: 16px;
}

/* Brand name - 16px, default weight */
.package-brand {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-main);
    margin-bottom: 4px;
}

/* Package name - tier name, 18px, bold */
.package-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

/* Specs - 3 column grid layout */
.package-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 24px;
    margin-top: 24px;
    /* background-color and padding removed */
    justify-content: space-between;
    justify-items: start;
}

.spec-item {
    text-align: left;
}

.spec-label {
    font-size: 11px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.spec-value {
    font-size: 14px;
    color: var(--color-text-main);
    font-weight: 600;
}

/* Price - 24px, 700 weight */
.package-price {
    font-size: 24px;
    color: var(--color-text-main);
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.package-price-label {
    font-size: 14px;
    color: var(--color-text-muted);
    font-weight: 400;
    text-transform: none;
}

/* Installation info text */
.package-installation {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

/* See details link */
.package-see-details {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.package-see-details svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.package-card:hover .package-see-details svg {
    transform: translateX(3px);
}

.card-image {
    height: 220px;
    background-color: #fbfdff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.card-image img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.card-content {
    padding: 32px 24px;
    /* Fix: Adjusted spacing/padding */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 8px;
    /* Consistent spacing */
}

/* Badges */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
    align-self: flex-start;
}

.badge-victron {
    background-color: #f2f8fc;
    color: #0f62fe;
}

.badge-ecoflow {
    background-color: #f0f8f8;
    color: #00796b;
}

.badge-starter {
    background-color: #fafafa;
    color: #666;
}

.card-title {
    font-size: 20px;
    margin-bottom: 4px;
}

.card-specs {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
    min-height: 40px;
}

.card-price {
    font-size: 24px;
    font-weight: 700;
    margin-top: auto;
    padding-top: 16px;
    /* Separation from content */
}

.card-price .label {
    font-size: 14px;
    color: var(--color-text-muted);
    font-weight: 400;
}

.card-note {
    font-size: 13px;
    color: var(--color-text-main);
    /* Fix: Reverted color */
    font-weight: 500;
    margin-bottom: 20px;
    margin-top: 4px;
}

/* Fix: Removed ::before dot */

.card-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--color-accent);
    font-size: 15px;
    margin-top: 8px;
}

.card-link img {
    transition: transform 0.2s ease;
}

.package-card:hover .card-link img {
    transform: translateX(4px);
}

/* =========================================
   Index Page (Process, Values, FAQ)
   ========================================= */

/* Process / How We Work */
.process-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-2xl);
    align-items: start;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.process-card {
    background: white;
    padding: 32px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eef4f9;
    position: relative;
    display: flex;
    gap: 20px;
}

.process-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-accent-light);
    line-height: 1;
    opacity: 0.5;
}

.process-content p {
    color: var(--color-text-muted);
    margin-top: 8px;
    margin-bottom: 16px;
    font-size: 15px;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
}

.check-circle {
    width: 24px;
    height: 24px;
    background: #f0f8fc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-circle img {
    width: 12px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.value-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f0f4f8;
    text-align: left;
}

.value-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.value-title {
    font-size: 18px;
    margin-bottom: 8px;
}

.value-text {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Responsive Index */
@media (max-width: 900px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* Values Grid Responsive - Stack on tablet and below */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Shared Two-Column Layout (Story/Process/Values)
   Main content + Sticky sidebar pattern
   ========================================= */
.two-col-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: start;
}

/* Reversed layout: sidebar first, then main content */
.two-col-layout.reversed {
    grid-template-columns: 1.5fr 1fr;
}

/* Equal columns layout: 50/50 split */
.two-col-layout.equal-cols {
    grid-template-columns: 1fr 1fr;
}

.two-col-main {
    /* Main content column - inherits from container */
    min-width: 0;
    /* Prevent overflow on small screens */
}

.two-col-sidebar {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 400px;
}

/* Inner sticky content in two-col-sidebar needs gap for child elements */
.two-col-sidebar>div {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.two-col-sidebar-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.two-col-sidebar-card img {
    width: 100%;
    height: auto;
    display: block;
}

.two-col-sidebar-caption {
    padding: 12px;
    background: white;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #718096;
}

/* Two-Column Layout Responsive */
@media (max-width: 991px) {

    .two-col-layout,
    .two-col-layout.reversed {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    .two-col-main {
        text-align: left;
        max-width: 700px;
        margin: 0 auto;
    }

    .two-col-main.story-content {
        max-width: 700px;
        margin: 0 auto;
    }

    .two-col-sidebar {
        position: relative;
        top: 0;
        order: -1;
        /* Image first on mobile */
        max-width: 450px;
        margin: 0 auto;
        /* Center the image */
        text-align: center;
    }

    .two-col-sidebar-card {
        margin: 0 auto;
    }
}

/* Testimonials Section - Centered Cohesive Design */
.testimonials-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-header {
    margin-bottom: 32px;
}

.testimonials-header .top-text {
    margin-bottom: 8px;
}

.testimonials-header h2 {
    margin: 0;
}

/* Testimonial Cards Grid - Unified Compact Design */
.testimonial-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Testimonial Slideshow Mode - JS adds .testimonial-slideshow class */
.testimonial-cards-grid.testimonial-slideshow {
    display: block;
    position: relative;
    min-height: 280px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(15, 26, 35, 0.06);
    border: 1px solid rgba(15, 26, 35, 0.04);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.testimonial-card-image {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-card-content {
    flex: 1;
    min-width: 0;
}

.testimonial-card-name {
    font-size: var(--text-base);
    font-weight: 700;
    margin: 0 0 4px 0;
    color: var(--color-text-main);
}

.testimonial-card-rig {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.testimonial-card-quote {
    font-size: var(--text-base);
    line-height: 1.55;
    color: var(--color-text-muted);
    font-style: italic;
}

/* Testimonial Cards Responsive */

/* 1120px breakpoint: flex column, image on top */
@media (max-width: 1120px) {
    .testimonial-card {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card-image {
        width: 400px;
        height: 300px;
    }

    .testimonial-card-content {
        text-align: center;
    }
}

/* 991px breakpoint: grid to 1 col, back to flex row */
@media (max-width: 991px) {
    .testimonial-cards-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .testimonial-card {
        flex-direction: row;
        align-items: flex-start;
    }

    .testimonial-card-image {
        width: 300px;
        height: 200px;
    }

    .testimonial-card-content {
        text-align: left;
    }
}

/* 767px breakpoint: flex column again, center text */
@media (max-width: 767px) {
    .testimonial-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .testimonial-card-content {
        text-align: center;
    }
}

/* 479px breakpoint: smaller image */
@media (max-width: 479px) {
    .testimonial-card-image {
        width: 270px;
        height: 170px;
    }
}

/* =========================================
   Text-Only Testimonials - Editorial Design
   ========================================= */

.testimonials-text-wrapper {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-text-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 8px;
}

.testimonial-text-card {
    background: white;
    border-radius: 20px;
    padding: 40px 32px 32px;
    box-shadow: 0 4px 24px rgba(15, 26, 35, 0.05);
    border: 1px solid rgba(15, 26, 35, 0.04);
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.testimonial-quote-icon {
    width: 48px;
    height: auto;
    margin-bottom: 16px;
    opacity: 0.7;
}

.testimonial-text-quote {
    font-size: 17px;
    line-height: 1.65;
    color: var(--color-text-muted);
    margin: 0 0 24px 0;
    padding: 0;
    border: none;
    font-style: normal;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.testimonial-text-attribution {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 20px;
    border-top: 1px solid rgba(15, 26, 35, 0.08);
}

.testimonial-text-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-main);
}

.testimonial-text-rig {
    font-size: 14px;
    color: var(--color-text-muted);
    opacity: 0.8;
}

/* Text-Only Testimonials Responsive */
@media (max-width: 767px) {
    .testimonials-text-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .testimonial-text-card {
        padding: 32px 28px 28px;
    }

    .testimonial-quote-icon {
        width: 40px;
        margin-bottom: 14px;
    }

    .testimonial-text-quote {
        font-size: 16px;
    }
}

@media (max-width: 479px) {
    .testimonial-text-card {
        padding: 28px 24px 24px;
    }

    .testimonial-quote-icon {
        width: 36px;
        margin-bottom: 12px;
    }

    .testimonial-text-quote {
        font-size: 15px;
        line-height: 1.6;
    }

    .testimonial-text-name {
        font-size: 15px;
    }

    .testimonial-text-rig {
        font-size: 13px;
    }
}

/* Story Content Styles */
.story-text {
    margin-bottom: 16px;
    font-size: var(--text-base);
    line-height: 1.6;
}

.story-quote {
    border-left: 4px solid var(--color-accent);
    padding-left: 24px;
    font-style: italic;
    margin: 24px 0;
    color: #4a5568;
    font-size: var(--text-xl);
    line-height: 1.5;
}

.section-divider {
    width: 100%;
    height: 1px;
    background-color: #f0f4f8;
    margin: 48px 0;
}


.card-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--color-accent);
    font-size: 15px;
    margin-top: 8px;
}

.card-link img {
    width: 16px;
    transition: transform 0.2s ease;
}

.package-card:hover .card-link img {
    transform: translateX(4px);
}

/* =========================================
   FAQ Accordion
   ========================================= */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-2xl);
    align-items: start;
}

/* Sticky intro/sidebar for faq-grid pattern (like sticky-left-process) */
.faq-intro {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 400px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

details.faq-item {
    background: white;
    border: 1px solid #eef4f9;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}

details.faq-item:hover {
    border-color: var(--color-accent-light);
}

details.faq-item[open] {
    box-shadow: var(--shadow-sm);
    border-color: var(--color-accent-light);
    /* Highlight open state */
}

summary.faq-question {
    padding: 24px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-main);
}

summary.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--color-accent);
    border-radius: 2px;
    /* Soft edges */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Horizontal line (always visible) */
.faq-icon::before {
    width: 14px;
    height: 2px;
}

/* Vertical line (rotates to vanish) */
.faq-icon::after {
    width: 2px;
    height: 14px;
}

details[open] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    /* Or just scaleY(0) */
    opacity: 0;
}

.faq-answer {
    padding: 0 24px 24px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

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

    .faq-intro {
        position: relative;
        top: 0;
        max-width: none;
        margin-bottom: 24px;
    }
}



/* Utility Pages (404, 401) */
.hero-full-height {
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.display-large {
    font-size: 8rem;
    line-height: 1;
    color: var(--color-accent);
    margin-bottom: 24px;
}

.mt-32 {
    margin-top: 32px;
}

.hero-abstract-bg-faded {
    opacity: 0.5;
}

/* Quote Form Utilities */
.quote-form-intro {
    max-width: 600px;
    margin: 16px auto 32px;
    margin-left: auto;
    margin-right: auto;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.checkbox-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: white;
    border: 1px solid var(--color-bg-light);
    /* Or darker border */
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.checkbox-card:hover {
    border-color: var(--color-accent);
    background: var(--color-bg-lighter);
}

.z-relative {
    position: relative;
    z-index: 2;
}

.hero-content-center {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.hero-subtitle {
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 16px;
    margin-bottom: 32px;
}

/* Service Card Utilities */
.service-card-image {
    height: 160px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-card-specs {
    min-height: auto;
}

.mt-auto {
    margin-top: auto;
}

.bg-light-alt {
    background-color: var(--color-bg-light);
}




/* Auth Pages (401) */
.hero-min-height {
    min-height: 40vh;
}

.container-auth {
    max-width: 480px;
    margin: 0 auto;
}

.section-white-padded {
    background-color: var(--color-white);
    padding-top: 64px;
    padding-bottom: 64px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.auth-icon-wrapper {
    text-align: center;
    margin-bottom: 16px;
}

.auth-icon {
    width: 48px;
    height: 48px;
    opacity: 0.5;
}

.auth-label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.auth-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e7e5e4;
    border-radius: 6px;
}

.auth-submit {
    width: 100%;
}

.auth-error {
    display: none;
    color: #dc2626;
    background: #fef0f0;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
}

/* =========================================
   INSTALLATION CALLOUT BANNER
   ========================================= */
.installation-callout {
    background-color: #f4faff;
    padding: 32px 0;
}

.callout-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.callout-icon {
    color: #1087e5;
    flex-shrink: 0;
}

.callout-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.callout-text strong {
    color: #0f1a23;
    font-size: 18px;
    font-weight: 600;
}

.callout-text span {
    color: rgba(15, 26, 35, 0.7);
    font-size: 15px;
}

@media (max-width: 600px) {
    .callout-content {
        flex-direction: column;
        gap: 12px;
    }

    .callout-text strong {
        font-size: 16px;
    }

    .callout-text span {
        font-size: 14px;
    }
}

/* Trust Bar - Subtle benefits section */
.trust-bar {
    background-color: #fcfcfc;
    border-top: 1px solid #e9ecef;
    padding: 32px 0;
}

.trust-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.8;
}

.trust-item span {
    color: #6c757d;
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .trust-items {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .trust-item span {
        font-size: 13px;
    }
}

/* =========================================
   LEGACY WEBFLOW CSS - Design Matching
   Ported from gabriels-fantastic-site-4df27a.webflow.css
   ========================================= */

/* --- Webflow Layout Helpers --- */
.w-layout-blockcontainer {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.w-layout-grid {
    grid-row-gap: 16px;
    grid-column-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.main-container {
    width: 100%;
    max-width: 1200px;
    padding-left: 24px;
    padding-right: 24px;
    margin: 0 auto;
}

/* --- Navbar --- */
.wrap-navbar {
    z-index: 102;
    background-color: #f4faff;
    padding-top: 16px;
    position: relative;
}

.navbar {
    background-color: #f4faff;
    border-bottom: 1px solid #bccdde;
    height: 80px;
}

.container-nav {
    max-width: none;
    height: 100%;
    padding-left: 24px;
    padding-right: 24px;
}

.master-navbar {
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    height: 100%;
    display: flex;
}

.brand-link-navbar {
    height: 48px;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-navbar {
    max-width: none;
    height: 48px;
}

.right-nav {
    grid-column-gap: 16px;
    justify-content: flex-end;
    align-items: center;
    display: flex;
}

.nav-menu {
    align-items: center;
    display: flex;
}

/* Hide mobile-only links on desktop */
.nav-menu .mobile-only-link {
    display: none;
}

.link-nav {
    color: #0f1a23;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.link-nav:hover {
    color: #1087e5;
}

@media screen and (min-width: 992px) {
    .nav-menu > :first-child .link-nav,
    .nav-menu > :first-child.link-nav {
        padding-left: 12px;
    }
}

.wrap-buttons-nav {
    grid-column-gap: 16px;
    align-items: center;
    display: flex;
}

.cta-blue-arrow.small-nav {
    background-color: var(--color-accent-light);
    height: 60px;
    padding-left: 18px;
    padding-right: 14px;
    font-size: 18px;
    white-space: nowrap;
}

.button-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 102;
}

.inside-menu-button {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.line-hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #0f1a23;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hidden checkbox for CSS-only mobile nav */
.nav-toggle-checkbox {
    display: none;
}

/* Lock body scroll when mobile nav is open */
body:has(.nav-toggle-checkbox:checked) {
    overflow: hidden;
}

/* Nav spacing adjustment for medium screens */
@media screen and (max-width: 1280px) and (min-width: 1121px) {
    .link-nav {
        padding: 12px 16px;
        font-size: 17px;
    }
}

/* Tablet nav - smaller links to prevent cramping */
@media screen and (max-width: 1120px) and (min-width: 992px) {
    .link-nav {
        padding: 10px 14px;
        font-size: 15px;
    }

    .cta-blue-arrow.small-nav {
        padding-left: 14px;
        padding-right: 12px;
        font-size: 15px;
        height: 60px;
    }

    .brand-navbar {
        height: 48px;
    }
}

@media screen and (max-width: 991px) {

    /* Full-screen mobile nav overlay - starts below header */
    .nav-menu {
        display: none;
        position: fixed;
        top: 96px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(244, 250, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 24px;
        padding-left: 0;
        padding-right: 0;
        gap: 8px;
        z-index: 101;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    /* When checkbox is checked, show the nav */
    .nav-toggle-checkbox:checked~.nav-menu {
        display: flex;
        opacity: 1;
        visibility: visible;
    }

    /* 3-line hamburger to X animation - centered */
    .nav-toggle-checkbox:checked~.wrap-buttons-nav .first-line {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle-checkbox:checked~.wrap-buttons-nav .second-line {
        opacity: 0;
        transform: scaleX(0);
    }

    .nav-toggle-checkbox:checked~.wrap-buttons-nav .third-line {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Mobile nav links - Netlify-style with subtle borders */
    .nav-menu .link-nav {
        padding: 16px 0;
        padding-left: 0;
        padding-right: 0;
        font-size: 18px;
        font-weight: 500;
        text-align: left;
        width: 100%;
        border-bottom: 1px solid rgba(15, 26, 35, 0.1);
        border-radius: 0;
        transition: color 0.2s ease;
    }

    .nav-menu .link-nav:hover {
        color: var(--color-accent);
        background-color: transparent;
    }

    .nav-menu .link-nav.active {
        color: var(--color-accent);
        font-weight: 700;
    }

    .nav-menu .mobile-nav-cta {
        margin-top: 0;
        justify-content: flex-start;
        font-size: 18px;
        font-weight: 500;
        padding: 16px 0;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        background-color: transparent;
        border-radius: 0;
        border-bottom: 1px solid rgba(15, 26, 35, 0.1);
        height: auto;
        color: #0f1a23;
    }

    .nav-menu .mobile-nav-cta:hover {
        color: var(--color-accent);
    }

    .nav-menu .mobile-nav-cta .icon-arrow-button {
        display: none;
    }

    /* Hide the old CTA button entirely, use the simpler .link-nav version */
    .nav-menu .mobile-nav-cta {
        display: none;
    }

    /* Show the mobile-only Get a Quote link (hidden on desktop) */
    .nav-menu .mobile-only-link {
        display: block;
    }

    .desktop-nav-cta {
        display: none;
    }

    .button-menu {
        display: flex;
        cursor: pointer;
    }
}

@media screen and (max-width: 767px) {
    .brand-navbar {
        height: 48px;
    }
}

@media screen and (min-width: 768px) {
    .brand-navbar {
        height: 48px;
    }
}

/* Desktop: hide mobile CTA (needs specificity to override .cta-blue-arrow) */
.cta-blue-arrow.mobile-nav-cta {
    display: none;
}

/* Mobile: show mobile CTA, hide desktop CTA */
@media screen and (max-width: 991px) {
    .cta-blue-arrow.mobile-nav-cta {
        display: flex;
    }

    .cta-blue-arrow.desktop-nav-cta {
        display: none;
    }
}

/* ============================================
   NAVIGATION DROPDOWN STYLES
   ============================================ */

/* Dropdown container */
.nav-dropdown {
    position: relative;
}

/* Desktop dropdown trigger styling */
.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.dropdown-chevron {
    transition: transform 0.2s ease;
}

/* Dropdown menu - Desktop */
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
    z-index: 1000;
}

/* Show dropdown on hover (desktop) */
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .dropdown-chevron {
    transform: rotate(180deg);
}

/* Dropdown items */
.nav-dropdown-item {
    display: block;
    padding: 10px 16px;
    color: var(--color-dark);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.nav-dropdown-item:hover {
    background-color: rgba(136, 195, 242, 0.08);
    color: var(--color-accent);
}

/* ============================================
   MOBILE DROPDOWN STYLES
   ============================================ */
@media screen and (max-width: 991px) {
    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-trigger {
        width: 100%;
        justify-content: space-between;
        border-bottom: 1px solid rgba(15, 26, 35, 0.1);
    }

    .dropdown-chevron {
        width: 16px;
        height: 16px;
    }

    /* Mobile: dropdown menu is inline, not absolute */
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    /* Expand on hover/focus for mobile - we'll use focus-within for touch */
    .nav-dropdown:focus-within .nav-dropdown-menu,
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown.is-open .nav-dropdown-menu {
        max-height: 200px;
    }

    .nav-dropdown:focus-within .dropdown-chevron,
    .nav-dropdown:hover .dropdown-chevron,
    .nav-dropdown.is-open .dropdown-chevron {
        transform: rotate(180deg);
    }

    .nav-dropdown-item {
        padding: 12px 0 12px 20px;
        font-size: 16px;
        border-bottom: 1px solid rgba(15, 26, 35, 0.05);
        color: var(--color-dark);
    }

    .nav-dropdown-item:last-child {
        border-bottom: 1px solid rgba(15, 26, 35, 0.1);
    }

    .nav-dropdown-item:hover {
        background: transparent;
        color: var(--color-accent);
    }
}

/* --- Section Base --- */
.section {
    padding-top: 120px;
    padding-bottom: 120px;
}

@media (max-width: 768px) {
    .section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.section.background-two {
    background-color: var(--color-bg-lighter);
    /* #f2f9ff - lighter blue */
}

.section.background-one {
    background-color: var(--color-bg-light);
    /* #e9f4ff - slightly darker blue */
}



.section.testimonial-slider-section {
    position: relative;
}

.section.projects-section {
    position: relative;
    overflow: hidden;
}

.section.big-video-section {
    color: white;
    padding-top: 120px;
    padding-bottom: 120px;
}

.section.big-video-section.section-background-graphic {
    background-color: #878c91;
    color: black;
    background-image: url('../images/page-sections/backgrounds/roof-panels-wires.webp');
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    position: relative;
}

/* --- Hero Section --- */
.title-wrap-about {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.title-wrap-about.title-wrap-1100 {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.limit-subtitle-home {
    max-width: 520px;
}

.subtitle {
    font-size: 24px;
    color: rgba(15, 26, 35, 0.8);
    line-height: 130%;
}

.flex-cta-hero-home {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    display: flex;
}

.wrap-based-in {
    grid-column-gap: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    justify-content: flex-start;
    align-items: center;
    padding: 8px 16px;
    display: flex;
}

.wrap-based-in.white-text-wrap {
    color: white;
}

.icon-based-in {
    width: 32px;
    height: 32px;
}

/* Reduce size on very small screens to maintain horizontal layout */
@media (max-width: 370px) {
    .wrap-based-in {
        padding: 6px 12px;
        gap: 6px;
        font-size: 14px;
    }

    .icon-based-in {
        width: 24px;
        height: 24px;
    }
}

/* Hero Marquee */
.master-hero-about {
    width: 200%;
    margin-top: 80px;
    margin-left: -50%;
    display: flex;
    position: relative;
    overflow: hidden;
}

.move-hero-about {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex: none;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    animation: marquee 40s linear infinite;
}

.single-hero-about {
    grid-column-gap: 24px;
    flex: none;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.image-hero-about {
    border-radius: 24px;
    flex: none;
    width: 100%;
    max-width: 440px;
    height: auto;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.abstract-hero-general {
    z-index: -1;
    width: 40%;
    max-width: 430px;
    position: absolute;
    top: 0;
    right: 0;
}

/* --- CTA Buttons --- */
.cta-blue-arrow {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    background-color: var(--color-accent-light);
    color: #0f1a23;
    border-radius: 12px;
    justify-content: center;
    align-items: center;
    height: 64px;
    padding-left: 28px;
    padding-right: 28px;
    text-decoration: none;
    display: flex;
    font-weight: 500;
}

.cta-blue-arrow .icon-arrow-button {
    transition: transform 0.2s ease;
}

.cta-blue-arrow:hover .icon-arrow-button {
    transform: translateX(4px);
}

.cta-blue-arrow.big-blue {
    height: 72px;
    padding-left: 32px;
    padding-right: 32px;
}

.cta-outline {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    border: 1px solid #0f1a23;
    color: #0f1a23;
    border-radius: 12px;
    justify-content: center;
    align-items: center;
    height: 64px;
    padding-left: 28px;
    padding-right: 28px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    display: flex;
    font-weight: 500;
}

.cta-outline:hover {
    color: white;
    background-color: var(--color-primary);
}

.cta-outline.big-outline {
    height: 72px;
    padding-left: 32px;
    padding-right: 32px;
}

.icon-arrow-button {
    width: 24px;
    height: 24px;
}

/* --- Services Section --- */
.heading-center {
    text-align: center;
}

.mg-bottom-64 {
    margin-bottom: 64px;
}

.wrap-heading-top-text-center {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.top-text {
    color: #1087e5;
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 120%;
}

.no-margins {
    margin-top: 0;
    margin-bottom: 0;
}

.grid-2 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.tile-elevation {
    background-color: white;
    box-shadow: 0 4px 30px 0 rgba(15, 26, 35, 0.04);
    color: #0f1a23;
    border-radius: 24px;
    padding: 32px;
}

.tile-elevation.service-tile {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
    padding: 32px;
    text-decoration: none;
    transition: transform 0.4s;
    display: flex;
}

.circle-icon-service-tile {
    background-color: #1087e5;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    display: flex;
}

.icon-service-tile {
    width: 40px;
    height: 40px;
}

.wrap-text-service-tile {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.body-fade-out {
    color: rgba(15, 26, 35, 0.8);
    margin-bottom: 0;
}

.text-read-more {
    color: #1087e5;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.text-read-more .icon-arrow-button {
    transition: transform 0.2s ease;
}

.tile-elevation.service-tile:hover .text-read-more .icon-arrow-button {
    transform: translateX(4px);
}

/* Removed ::after arrow - now using SVG images instead */
.text-read-more::after {
    content: '';
    display: none;
}

.text-read-more:hover::after {
    transform: none;
}

.text-read-more.absolute-service-tile {
    margin-top: auto;
}

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

.mg-top-64 {
    margin-top: 64px;
}

/* --- Process Section --- */
.grid-process {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.master-left-process {
    position: relative;
}

.sticky-left-process {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 400px;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    position: sticky;
    top: 48px;
}

.wrap-heading-top-text-left {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    text-align: left;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.wrap-heading-top-text-left.center-tablet {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.flex-cta-left {
    justify-content: flex-start;
    align-items: center;
    display: flex;
    margin-top: 8px;
}

.right-sticky-process {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    max-width: 618px;
    display: flex;
}

.tile-elevation.process-tile {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 64px;
    display: flex;
}

.tile-elevation.value-tile {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 64px;
    display: flex;
    height: 100%;
}

/* Values Tiles Grid - Uniform Heights */
.values-tiles-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 1fr;
    gap: 24px;
}

.icon-value-tile {
    width: 48px;
    height: 48px;
    margin-bottom: 32px;
}

.text-number-process {
    color: #7bc4ff;
    font-size: 88px;
    font-weight: 700;
    line-height: 130%;
}

.wrap-text-process {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    display: flex;
}

.master-check-list {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    display: flex;
}

.single-check-list {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    font-size: 20px;
    line-height: 125%;
    display: flex;
    align-items: center;
}

.circle-check-list {
    background-color: #1087e5;
    border-radius: 50%;
    flex: none;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    display: flex;
}

.icon-check-list {
    object-fit: contain;
    width: 18px;
    height: 18px;
}

/* --- Testimonials Section --- */
.flex-heading-cta {
    justify-content: space-between;
    align-items: flex-end;
    display: flex;
}

.flex-heading-cta.above-slider-heading {
    margin-bottom: 0;
}

.master-slider-testimonials-big {
    margin-top: 64px;
}

.slider-testmonials-big {
    z-index: 10;
    background-color: transparent;
    height: auto;
}

.mask-testimonials-big {
    height: auto;
    overflow: hidden;
}

.slide-testimonials-big {
    height: auto;
}

.slide-testimonials-big:not(:first-child) {
    display: none;
}

.tile-elevation.testimonial-background {
    padding: 0;
    overflow: hidden;
}

.grid-testimonial {
    grid-column-gap: clamp(16px, 3vw, 32px);
    grid-row-gap: 24px;
    grid-template-rows: auto;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: stretch;
    display: grid;
}

.image-testimonial {
    width: 100%;
    height: 100%;
    min-height: 360px;
    max-height: 520px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

.right-testimonial {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 640px;
    padding: clamp(20px, 3vw, 32px);
    display: flex;
}

.background-testimonial-text {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    background-color: #f4faff;
    border-radius: 24px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: clamp(20px, 3vw, 32px);
    font-size: 1.125rem;
    line-height: 160%;
    box-shadow: 0 8px 32px 0 rgba(15, 26, 35, 0.04);
    display: flex;
}

.icon-quote {
    height: 32px;
}

.bottom-testimonial-right {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex: none;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.image-testimonial-avatar {
    border-radius: 50%;
    flex: none;
    width: 56px;
    height: 56px;
}

.right-testimonial-avatar {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    display: flex;
}

.text-testimonial-top {
    color: rgba(15, 26, 35, 0.8);
    font-size: 22px;
}

.text-testimonial-place {
    color: rgba(15, 26, 35, 0.8);
}

.abstract-testimonials {
    width: 20%;
    max-width: 170px;
    margin-top: auto;
    margin-bottom: auto;
    position: absolute;
    top: 10%;
    left: 0;
}

.wrap-arrows-testimonials {
    display: flex;
    gap: 8px;
}

.arrow-slider-testimonials {
    background-color: white;
    box-shadow: 0 4px 30px 0 rgba(15, 26, 35, 0.04);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    transition: transform 0.2s;
    display: flex;
    cursor: pointer;
}

.arrow-slider-testimonials:hover {
    transform: scale(1.1);
}

.arrow-slider-testimonials.left-arrow {
    padding-right: 2px;
}

.arrow-slider-testimonials.right-arrow {
    padding-left: 2px;
}

.icon-slider-testimonials-big {
    width: 28px;
    height: 28px;
}

/* --- Packages Section --- */
.package-filters {
    margin-bottom: 48px;
}

.filter-group {
    margin-bottom: 16px;
}

.filter-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #0f1a23;
    margin-bottom: 16px;
    display: block;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    background: transparent;
    border: 1px solid #1087e5;
    border-radius: 70px;
    font-size: 14px;
    font-weight: 500;
    color: #0f1a23;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-btn:hover {
    background: #88c3f2;
    color: white;
}

.filter-btn.active {
    background: #88c3f2;
    border-color: #1087e5;
    color: white;
}

.brand-section {
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.brand-section-header {
    margin-bottom: 32px;
}

.brand-section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f1a23;
}

.brand-section-description {
    font-size: 16px;
    color: rgba(15, 26, 35, 0.8);
}

/* --- Big Video CTA --- */
.wrap-video-content {
    z-index: 10;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    position: relative;
}

/* Reset margins on all children - let grid gap handle spacing */
.wrap-video-content>* {
    margin: 0;
}

/* Video section subtitle text */
.video-subtitle {
    color: rgba(255, 255, 255, 0.8);
    max-width: 540px;
    font-size: var(--text-base);
}

.heading {
    color: white;
}

.text-block-2 {
    color: white;
}

.text-block-3 {
    color: #0f1a23;
}

.overlay-video {
    z-index: 0;
    background-color: rgba(15, 26, 35, 0.85);
    position: absolute;
    inset: 0;
}

.mg-top-8 {
    margin-top: 8px;
}

/* --- Footer --- */
.footer {
    padding-top: 80px;
    padding-bottom: 32px;
}

.master-top-footer {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 2fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.column-footer-links {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    display: flex;
}

.column-footer-links.mg-top-bot-24 {
    padding-top: 0;
    padding-bottom: 0;
}

.link-footer {
    color: #0f1a23;
    font-weight: 500;
    text-decoration: none;
}

.link-footer:hover {
    color: #1087e5;
}

.tile-contact-footer {
    background-color: #f8fcff;
    border: 1px solid #d8e9fb;
    border-radius: 20px;
    flex-flow: column;
    padding: 32px;
    display: flex;
}

.heading-footer-links {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.master-footer-contact-list {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    display: flex;
}

.single-footer-contact-list {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    color: #0f1a23;
    align-items: center;
    font-weight: 500;
    text-decoration: none;
    display: flex;
}

.single-footer-contact-list:hover {
    color: #1087e5;
}

.icon-footer-contact-list {
    width: 24px;
    height: 24px;
}

.divider-contact-footer {
    background-color: rgba(135, 140, 145, 0.1);
    width: 100%;
    height: 1px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.master-footer-socials {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    display: flex;
}

.link-social-footer {
    background-color: #88c3f2;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    display: flex;
    transition: transform 0.2s;
}

.link-social-footer:hover {
    transform: scale(1.1);
}

.icon-social-footer {
    width: 24px;
    height: 24px;
}

.master-bottom-footer {
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    border-top: 1px solid rgba(15, 26, 35, 0.1);
    margin-top: 64px;
}

.brand-link-footer {
    text-decoration: none;
}

.brand-footer {
    height: 100px;
}

.text-legal-footer {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.text-legal-footer a {
    color: #1087e5;
    text-decoration: none;
}

/* Footer Contact Link - consolidated from inline styles */
.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
}

/* Section Header Left - consolidated from inline styles */
.section-header-left {
    margin-bottom: 40px;
}

/* Hero CTA Container - consolidated from inline styles */
.flex-cta-hero-home {
    justify-content: center;
    margin-bottom: 40px;
}

/* Contact List Item - consolidated from inline styles */
.contact-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--color-text-muted);
}

.contact-list-item .checkmark {
    color: #10b981;
    font-size: 18px;
}

/* CTA Full Width - consolidated from contact page */
.cta-full-width {
    width: 100%;
    justify-content: center;
}

/* Contact Feature List - consolidates from contact page */
.contact-feature-list {
    margin: 0 0 40px 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* --- Responsive Overrides --- */
@media screen and (max-width: 991px) {
    .grid-process {
        flex-flow: column;
        align-items: center;
        gap: 48px;
        display: flex;
    }

    .sticky-left-process {
        position: relative;
        top: 0;
        text-align: center;
        align-items: center;
    }

    .wrap-heading-top-text-left.center-tablet {
        text-align: center;
        align-items: center;
    }

    .flex-cta-left {
        justify-content: center;
    }

    .grid-2 {
        grid-template-columns: 1fr 1fr;
        grid-row-gap: 32px;
    }

    .grid-testimonial {
        grid-template-columns: 1fr;
        grid-row-gap: 32px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .tile-elevation.testimonial-background {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .master-top-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .column-footer-links {
        align-items: center;
    }

    .master-bottom-footer {
        flex-direction: column;
        text-align: center;
    }

    .image-hero-about {
        width: 400px;
    }
}

@media screen and (max-width: 630px) {
    .grid-2 {
        grid-template-columns: 1fr;
        grid-row-gap: 40px;
        grid-column-gap: 0;
    }

    .tile-elevation.process-tile {
        padding: 32px;
    }

    .tile-elevation.service-tile {
        padding: 28px;
    }

    .image-hero-about {
        width: 300px;
    }

    .arrow-slider-testimonials {
        display: none;
    }

    .grid-testimonial {
        grid-template-columns: 1fr;
        grid-row-gap: 32px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .tile-elevation.testimonial-background {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .right-sticky-process {
        align-items: center;
        grid-row-gap: 32px;
    }

    .tile-elevation.process-tile {
        max-width: 580px;
        width: 100%;
    }
}

@media screen and (max-width: 479px) {
    .hero-subtitle {
        font-size: 20px !important;
    }

    .image-hero-about {
        width: 250px;
    }

    .flex-cta-hero-home {
        flex-direction: column;
        width: 100%;
    }

    .cta-blue-arrow.big-blue,
    .cta-outline.big-outline {
        width: 100%;
        height: 56px;
    }
}

/* =========================================
   Enhanced Hero System (Standardized Premium)
   ========================================= */
.standard-hero {
    position: relative;
    padding: 160px 0 60px;
    background-color: var(--color-bg-lighter);
    overflow: hidden;
    text-align: center;
}

/* Hero overlay - kept for z-index stacking only */
.standard-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.standard-hero .container,
.standard-hero .hero-content {
    position: relative;
    z-index: 2;
}

.hero-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: 24px;
    display: inline-block;
}

.standard-hero h1 {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--color-primary);
}

.standard-hero h1 span {
    color: var(--color-accent);
    background: linear-gradient(120deg, var(--color-accent) 0%, #80e8ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.standard-hero .hero-subtitle,
.standard-hero .subtitle {
    font-size: 22px;
    line-height: 1.45;
    color: var(--color-text-muted);
    max-width: 680px;
    margin: 0 auto 40px;
}

@media (max-width: 991px) {
    .standard-hero {
        padding: 120px 0 40px;
    }
}

/* Reduce gap when section immediately follows hero */
.standard-hero+.section {
    padding-top: 40px;
    background-color: var(--color-bg-lighter);
}

@media (max-width: 768px) {
    .standard-hero {
        padding-top: 80px;
    }

    .standard-hero h1 {
        font-size: 42px;
    }

    .standard-hero .hero-subtitle,
    .standard-hero .subtitle {
        font-size: 18px;
    }
}

@media (max-width: 370px) {
    .standard-hero {
        padding-top: 60px;
    }
}

/* Home Hero Specific Adjustments */
.standard-hero.home-hero {
    padding-bottom: 40px;
}

/* =========================================
   Footer Redesign
   ========================================= */
.master-top-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 64px;
    padding-bottom: 40px;
    gap: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer {
    background-color: var(--color-primary);
    color: white;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 160px;
}

.footer-header {
    color: var(--color-text-muted-light, #94a3b8);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.link-footer {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s ease;
    display: block;
    margin-bottom: 0px;
}

.link-footer:hover {
    color: var(--color-accent);
}

.link-footer-highlight {
    color: var(--color-accent);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.link-footer-highlight:hover {
    color: var(--color-accent-light);
    transform: translateX(4px);
}

.tile-contact-footer {
    background-color: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.master-footer-bottom {
    padding-top: 32px;
    padding-bottom: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 991px) {
    .master-top-footer {
        flex-wrap: wrap;
    }

    .footer-column {
        text-align: left;
    }
}

/* Tablet: Let's Talk on top, 3 columns below */
@media screen and (max-width: 880px) {
    .master-top-footer {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    /* Let's Talk column goes first and spans full width */
    .footer-column:last-child {
        grid-column: 1 / -1;
        order: -1;
        padding-bottom: 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 8px;
    }
}

@media screen and (max-width: 767px) {
    .footer {
        padding-top: 40px;
    }

    .master-top-footer {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .footer-column {
        width: 100%;
        text-align: center;
    }

    /* Let's Talk goes back to bottom on mobile */
    .footer-column:last-child {
        order: 0;
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    /* Center contact list items */
    .single-footer-contact-list {
        justify-content: center !important;
    }

    .tile-contact-footer {
        align-items: center;
    }
}

/* Footer Google Maps Section */
.footer-map-section {
    width: 100%;
    margin-top: 48px;
    margin-bottom: 32px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.footer-map-section iframe {
    display: block;
    width: 100%;
    height: 300px;
    border: none;
}

@media screen and (max-width: 767px) {
    .footer-map-section {
        margin-top: 32px;
        margin-bottom: 24px;
        border-radius: 8px;
    }

    .footer-map-section iframe {
        height: 250px;
    }
}

/* =========================================
   Expandable FAQ Accordion Styling
   ========================================= */
.expandable-single-faq {
    background-color: white;
    border: 1px solid rgba(15, 26, 35, 0.08);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    transition: box-shadow 0.3s ease;
}

.expandable-single-faq:hover {
    box-shadow: 0 4px 20px rgba(15, 26, 35, 0.06);
}

.expandable-single-faq:last-child {
    margin-bottom: 0;
}

.expandable-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.expandable-top:hover {
    background-color: rgba(136, 195, 242, 0.03);
}

.heading-expandable {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.plus-expand-master {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.plus-line {
    position: absolute;
    background-color: var(--color-accent);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.plus-line:first-child {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.plus-line.vertical {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.expandable-bottom {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.expandable-single-faq.is-open .expandable-bottom {
    max-height: 500px;
    padding: 0 28px 24px 28px;
}

.expandable-single-faq.is-open .plus-line.vertical {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-paragraph {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin: 0;
}

/* =========================================
   RESPONSIVE FIXES
   ========================================= */

/* Contact page - single column on mobile */
@media screen and (max-width: 767px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    .contact-grid>div {
        padding: 40px 28px !important;
    }
}

/* Smoother FAQ accordion animations */
.faq-details {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Expandable FAQ smoother animation */
.expandable-bottom {
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease;
}

.expandable-single-faq:not(.is-open) .expandable-bottom {
    opacity: 0;
}

.expandable-single-faq.is-open .expandable-bottom {
    opacity: 1;
}

/* Quote page unified background */
.standard-hero.quote-hero {
    background: var(--color-bg-lighter);
}

/* Required field asterisks */
.form-group label:has(+ input[required])::after,
.form-group label:has(+ select[required])::after,
.form-group label:has(+ textarea[required])::after {
    content: " *";
    color: #dc2626;
    font-weight: 500;
}

/* Fallback for required fields - add to labels manually */
label.required::after {
    content: " *";
    color: #dc2626;
    font-weight: 500;
}

/* =========================================
   Contact Page Styles
   ========================================= */

/* Contact Page Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Contact Cards */
.contact-card {
    background: var(--color-white);
    padding: 56px 48px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(15, 26, 35, 0.06);
    height: 100%;
    /* Ensure equal height in grid */
    display: flex;
    flex-direction: column;
}

/* =========================================
   FAQ Page Styles (Extracted)
   ========================================= */
.faq-section-header {
    margin-bottom: 24px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 16px;
}

.faq-section-header h2 {
    margin: 0;
    font-size: 24px;
}

.faq-category-block {
    padding-bottom: 64px;
}

/* =========================================
   Gallery Page Styles (Extracted)
   ========================================= */
.gallery-masonry {
    column-count: 1;
    column-gap: 24px;
}

@media (min-width: 640px) {
    .gallery-masonry {
        column-count: 2;
    }
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 24px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 26, 35, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(15, 26, 35, 0.12);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-caption {
    padding: 12px 16px;
    font-size: 14px;
    color: #0f1a23;
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
    font-weight: 500;
    line-height: 1.4;
}

/* Cleaned up redundant styles */

.benefit-strip-v2 {
    background: #ffffff;
    padding: 24px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: -1px;
}

.benefit-container-v2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item-v2 {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0 24px;
    text-align: center;
    position: relative;
}

.benefit-item-v2:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(128, 128, 128, 0.08);
}

.benefit-icon-v2 {
    width: 36px;
    height: 36px;
    background: rgba(136, 195, 242, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.benefit-item-v2:hover .benefit-icon-v2 {
    background: rgba(136, 195, 242, 0.15);
    transform: translateY(-2px);
}

.benefit-text-v2 {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.01em;
}

.lifestyle-nav-wrapper {
    position: relative;
    z-index: 10;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 16px 0;
    display: flex;
    justify-content: center;
}

.lifestyle-nav {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding: 0 20px;
}

.lifestyle-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: var(--color-text-muted);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 4px 12px;
}

.lifestyle-nav-link:hover {
    color: var(--color-accent);
    transform: translateY(-2px);
}

.lifestyle-nav-link.active {
    color: var(--color-accent);
}

.lifestyle-nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-accent);
    border-radius: 100px;
}

.lifestyle-icon {
    width: 22px;
    height: 22px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.lifestyle-nav-link:hover .lifestyle-icon,
.lifestyle-nav-link.active .lifestyle-icon {
    opacity: 1;
    stroke: var(--color-accent);
}

.lifestyle-text {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}



@media (max-width: 480px) {
    .compact-card-footer {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .compact-card-link {
        justify-content: center;
    }

    .benefit-container-v2 {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
        max-width: 300px;
        margin: 0 auto;
    }

    .benefit-item-v2:not(:last-child)::after {
        display: none;
    }

    .benefit-item-v2 {
        padding: 0;
        flex-direction: row;
        text-align: left;
        width: 100%;
        gap: 16px;
        justify-content: flex-start;
    }

    .series-title {
        font-size: 28px;
    }

    .lifestyle-nav {
        gap: 16px;
    }

    .lifestyle-text {
        font-size: 10px;
    }
}

/* =========================================
   Homepage Card Styles (Extracted)
   ========================================= */
.homepage-packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.homepage-compact-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.homepage-compact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.homepage-compact-card-image {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ecf5fc 0%, #e2eefa 100%);
    padding: 16px;
}

.homepage-compact-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.12));
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.homepage-compact-card:hover .homepage-compact-card-image img {
    transform: scale(1.06);
}

.homepage-compact-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.homepage-compact-card-name {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: var(--color-text-main);
    letter-spacing: -0.01em;
}

.homepage-compact-card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.homepage-spec-pill {
    display: inline-block;
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 600;
    color: var(--color-text-main);
    background: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
}

.homepage-compact-card-description {
    font-size: 13px;
    line-height: 1.5;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    flex: 1;
}

.homepage-compact-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.homepage-compact-card-price-wrap {
    display: flex;
    flex-direction: column;
}

.homepage-compact-card-price-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 1px;
}

.homepage-compact-card-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-main);
}

.homepage-compact-card-link {
    font-size: 13px;
    font-weight: 500;
    color: #0f1a23;
    background: #bde2ff;
    padding: 10px 16px;
    border-radius: 6px;
    transition: all 0.25s ease;
}

.homepage-compact-card:hover .homepage-compact-card-link {
    background: #b4dcfb;
}

.packages-cta-wrap {
    display: flex;
    justify-content: center;
}

@media (max-width: 1100px) {
    .homepage-packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .homepage-packages-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto 48px auto;
    }
}

@media (max-width: 480px) {
    .homepage-compact-card-footer {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .homepage-compact-card-link {
        justify-content: center;
        text-align: center;
    }
}

.contact-card-icon-lg {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.contact-card-icon-lg.blue-gradient {
    background: linear-gradient(135deg, #84c8d8, #82daea);
}

.contact-card-icon-lg.accent-gradient {
    background: linear-gradient(135deg, var(--color-accent), #9dc0fa);
}

.contact-card-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: var(--color-text-main);
}

.contact-card-desc {
    font-size: 17px;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Contact Links */
.contact-links-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-link-item {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--color-text-main);
    transition: color 0.2s;
}

.contact-link-item:hover {
    color: var(--color-accent);
}

.contact-link-item-static {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--color-text-muted);
}

.contact-link-icon-sm {
    width: 44px;
    height: 44px;
    background: var(--color-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-link-text {
    font-size: 17px;
    font-weight: 500;
}

.contact-link-text-sm {
    font-size: 17px;
}

/* =========================================
   Mobile Responsiveness Fixes (Jan 2026)
   ========================================= */

/* Contact page cards - shrink on narrow screens */
@media (max-width: 400px) {
    .contact-card {
        padding: 32px 20px;
        min-width: 0;
    }

    .contact-grid {
        gap: 24px !important;
    }

    .contact-card-icon-lg {
        width: 56px;
        height: 56px;
    }

    .contact-link-icon-sm {
        width: 36px;
        height: 36px;
    }

    .contact-link-text,
    .contact-link-text-sm {
        font-size: 14px;
    }
}

/* Mobile nav - scrollable when items overflow */
@media (max-width: 991px) {
    .nav-menu {
        overflow-y: auto;
        padding-bottom: 40px;
        align-items: flex-start;
        padding-left: 32px;
        padding-right: 32px;
    }

    .nav-menu .link-nav {
        text-align: left;
        width: 100%;
    }

    .nav-menu .mobile-nav-cta {
        margin-top: 0;
    }
}

/* Service icons - responsive sizing on mobile */
@media (max-width: 600px) {
    .circle-icon-service-tile {
        width: clamp(48px, 14vw, 80px);
        height: clamp(48px, 14vw, 80px);
    }

    .icon-service-tile {
        width: clamp(24px, 7vw, 40px);
        height: clamp(24px, 7vw, 40px);
    }
}

/* Mobile nav - Get a quote styled like links but with arrow */
@media (max-width: 991px) {
    .nav-menu .mobile-nav-cta {
        background: transparent;
        color: #0f1a23;
        font-size: 18px;
        font-weight: 500;
        height: auto;
        padding: 16px 0;
        padding-left: 0;
        padding-right: 0;
        border-radius: 12px;
        gap: 8px;
    }

    .nav-menu .mobile-nav-cta:hover {
        background-color: rgba(136, 195, 242, 0.1);
    }

    .nav-menu .mobile-nav-cta .icon-arrow-button {
        display: none;
    }
}

/* Quote form - reduced padding on narrow screens */
@media (max-width: 480px) {

    .quote-form-page .container,
    .quote-form-page .main-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .input-wrap.step-separator {
        padding: 20px 16px;
    }
}

/* Quote form - reduced container padding on narrow screens (broader selector) */
@media (max-width: 480px) {
    .content-section .main-container {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* Quote Form Step Labels - Text-only indicator */
.input-wrap.step-separator {
    position: relative;
    padding-top: 16px;
    margin-top: 32px;
}

.input-wrap.step-separator:first-of-type {
    margin-top: 0;
}

.form-step-header {
    margin-bottom: 16px;
}

/* Hidden - user prefers text-only */
.form-step-number {
    display: none;
}

.form-step-label {
    font-size: 13px;
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =========================================
   Mobile Spacing Reductions
   Reduce padding and gaps for better mobile UX
   ========================================= */
@media (max-width: 768px) {

    /* Section padding - more compact */
    .section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    /* Tile/card padding reductions */
    .tile-elevation {
        padding: 24px;
        border-radius: 16px;
    }

    .tile-elevation.service-tile {
        padding: 24px;
        gap: 16px;
    }

    .tile-elevation.process-tile {
        padding: 32px;
        gap: 24px;
    }

    .tile-elevation.value-tile {
        padding: 24px;
        gap: 12px;
    }

    .value-card {
        padding: 20px;
        border-radius: 16px;
    }

    /* Section titles - ensure hierarchy */
    .section-title {
        font-size: 26px !important;
    }

    /* Process number - smaller on mobile */
    .text-number-process {
        font-size: 56px;
    }

    /* Heading margins - tighter */
    .mg-bottom-64 {
        margin-bottom: 32px;
    }

    /* Circle icons - smaller on mobile */
    .circle-icon-service-tile {
        width: 56px;
        height: 56px;
    }

    .icon-service-tile {
        width: 28px;
        height: 28px;
    }

    /* Container padding - slightly more space */
    .container,
    .main-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Homepage package cards - tighter */
    .homepage-compact-card-content {
        padding: 16px;
    }

    /* Testimonial cards - tighter */
    .testimonial-card {
        padding: 16px;
    }

    /* Process check list - body size */
    .single-check-list {
        font-size: 15px;
        gap: 12px;
    }

    .circle-check-list {
        width: 24px;
        height: 24px;
    }

    .icon-check-list {
        width: 12px;
        height: 12px;
    }

    /* Subtitle - slightly smaller */
    .subtitle {
        font-size: 16px;
    }

    /* Body fade out text */
    .body-fade-out {
        font-size: 15px;
    }

    /* Value title */
    .value-title {
        font-size: 16px;
    }

    /* Nav links in mobile - smaller */
    .link-nav {
        font-size: 20px;
    }

    /* Footer headings - smaller on mobile */
    .footer-heading {
        font-size: 20px;
        margin-bottom: 16px;
    }

    /* CTA buttons - slightly smaller */
    .btn,
    .cta-btn {
        font-size: 15px;
        padding: 14px 24px;
    }

    /* Hero/header paragraphs */
    .hero-subtitle,
    .header-paragraph {
        font-size: 15px;
    }

    /* Contact cards - tighter text */
    .contact-title {
        font-size: 20px;
    }

    .contact-text {
        font-size: 15px;
    }

    /* Testimonial text */
    .testimonial-text {
        font-size: 15px;
    }

    /* Package card titles */
    .package-title,
    .homepage-compact-card-header h3 {
        font-size: 18px;
    }

    /* General paragraph margins - tighter */
    p {
        margin-bottom: 12px;
    }

    /* Grid gaps - reduce for mobile */
    .services-grid,
    .grid-process {
        gap: 16px;
    }

    /* Wrap-text service tile - tighter gaps */
    .wrap-text-service-tile {
        gap: 16px;
    }

    /* Value cards content */
    .values-content {
        padding: 20px;
    }

    /* Header/hero section padding */
    .hero-section,
    .header-section {
        padding-top: 80px;
        padding-bottom: 60px;
    }

    /* Hide secondary CTA button on mobile */
    .flex-cta-left {
        display: none;
    }

    /* About page - story text */
    .story-text {
        font-size: 15px;
    }

    .story-quote {
        font-size: 16px;
    }

    /* Testimonial card names - keep as emphasis size */
    .testimonial-card-name {
        font-size: 17px;
    }

    /* Homepage package card prices */
    .homepage-compact-card-price {
        font-size: 18px;
    }

    .homepage-compact-card-name {
        font-size: 17px;
    }
}

/* Base Package Grid - Desktop First */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

/* Responsive refinements for Packages Page Redesign */


/* =========================================
   Product Grid Redesign
   ========================================= */

/* Series section headers */
.series-header {
    font-size: 18px;
    font-weight: 500;
    color: #707072;
    margin: 0;
    padding-top: 48px;
}

.series-header:first-of-type {
    padding-top: 24px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    row-gap: 40px;
    padding: 24px 0 40px 0;
}

.product-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #111111;
    border-radius: 8px;
}

/* Series Section Headers */
.grid-series-header {
    grid-column: 1 / -1;
    /* Span full width of grid */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 32px 0 16px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 8px;
}

.grid-series-header:first-child {
    padding-top: 0;
    /* No top padding for first header */
}

.series-label {
    font-size: 26px;
    font-weight: 600;
    color: #111;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
}

.series-label::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 24px;
    background: #88c3f2;
    margin-right: 12px;
    border-radius: 2px;
    flex-shrink: 0;
}

.series-tagline {
    font-size: 16px;
    font-weight: 400;
    color: #707072;
    letter-spacing: 0;
}


.product-card:hover {
    opacity: 1;
    /* Override global a:hover opacity */
}

/* See Details link - appears on hover */
.see-details-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 500;
    color: #111;
    margin-top: 8px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.product-card:hover .see-details-link {
    opacity: 1;
}

.product-image-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #fafafa !important;
    margin-bottom: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
}

.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* .product-info moved to Series Differentiation section above for logic grouping */

.product-badge {
    color: #9e3500;
    font-size: 14px;
    /* Reduced from 16px */
    font-weight: 500;
    margin-bottom: 2px;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
    color: #111111;
}

.product-series {
    font-size: 16px;
    /* Match package name size */
    font-weight: 400;
    color: #707072;
    line-height: 1.5;
    margin: 0;
}

.product-subtitle {
    display: none;
    /* Hidden for clarity in grid view */
}

.product-price {
    font-size: 16px;
    font-weight: 600;
    color: #111111;
    /* Consistent with title */
    line-height: 1.5;
    margin-top: 8px;
    /* Tighter spacing */
}

/* Responsive Grid Breakpoints */
@media (max-width: 960px) {
    .page-header {
        padding-top: 40px;
    }
}

@media (max-width: 767px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        row-gap: 32px;
    }
}

@media (max-width: 650px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        row-gap: 28px;
    }

    .product-image-wrap {
        padding: 0;
        margin-bottom: 0px !important;
        border-radius: 4px;
    }

    .product-info {
        margin-top: 8px !important;
    }

    .product-image-wrap img.img-main {
        padding: 0 !important;
    }

    .product-image-wrap img.img-secondary {
        padding: 8px !important;
    }

    /* Convert thumbnails to dots on mobile */
    .image-toggle-nav {
        bottom: -28px;
        left: 0;
        right: 0;
        justify-content: center;
        gap: 8px;
    }

    .toggle-thumb {
        width: 8px !important;
        height: 8px !important;
        border-radius: 50% !important;
        background: #e6e6e6 !important;
        border: none !important;
        padding: 0 !important;
        min-width: 8px !important;
    }

    .toggle-thumb img {
        display: none !important;
    }

    .toggle-thumb.active {
        background: #888888 !important;
        border: none !important;
    }

    .toggle-thumb:hover {
        background: #cccccc !important;
    }

    .toggle-thumb.active:hover {
        background: #888888 !important;
    }

    /* Reduce font size for tile content on mobile */
    .product-name,
    .product-series,
    .product-price {
        font-size: 14px;
    }

    .see-details-link {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .benefit-container-v2 {
        padding-left: 8px;
        padding-right: 8px;
    }
}

@media (max-width: 370px) {
    .toggle-thumb:first-child img {
        padding: 0 !important;
    }

    .toggle-thumb:last-child img {
        padding: 2px !important;
    }
}

/* --- Dual Image Toggle System --- */
.product-image-wrap {
    position: relative;
    background-color: #fafafa;
}

/* Common styles for both images - perfect stacking */
.product-image-wrap img.img-main,
.product-image-wrap img.img-secondary {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    transition: opacity 0.35s ease;
    padding: 20px;
}

/* Default State: Main image visible */
.img-main {
    opacity: 1;
    z-index: 10;
}

/* Default State: Secondary (diagram) hidden */
.img-secondary {
    opacity: 0;
    z-index: 5;
}

/* Toggled State: When .showing-diagram is applied */
.product-image-wrap.showing-diagram .img-main {
    opacity: 0;
}

.product-image-wrap.showing-diagram .img-secondary {
    opacity: 1;
    z-index: 15;
}

/* Toggle Navigation - Thumbnail Tiles (Nike-inspired) */
.image-toggle-nav {
    position: absolute;
    bottom: -52px;
    left: 0;
    z-index: 30;
    display: flex;
    gap: 6px;
}

.toggle-thumb {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    background: #fafafa;
    cursor: pointer;
    transition: all 0.15s ease;
    border: 1.5px solid transparent;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}

/* Primary thumbnail (main image) - no padding since image has whitespace */
.toggle-thumb:first-child img {
    padding: 0;
}

/* Secondary thumbnail (diagram) - needs padding */
.toggle-thumb:last-child img {
    padding: 4px;
}

.toggle-thumb:hover {
    border-color: #ccc;
}

.toggle-thumb.active {
    border-color: #111;
}

/* Adjust product card spacing to accommodate thumbnails below */
/* margin-bottom removed as per minimalist request */

/* Hide the old hover trigger - replaced with new nav */
.view-diagram-trigger {
    display: none;
}

/* =========================================
   Packages Page - Responsive Adjustments
   ========================================= */

/* Tablet breakpoint (767px) */
@media screen and (max-width: 767px) {
    .packages-page .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}



/* Mobile breakpoint (479px) */
@media screen and (max-width: 479px) {

    .packages-page .container,
    .main-container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .product-grid,
    .homepage-product-grid {
        gap: 10px;
    }
}

/* =========================================
   Homepage Product Grid Variant
   ========================================= */

/* Homepage-specific grid - 4 columns on wide screens */
/* Homepage-specific grid - 3 columns on wide screens */
.homepage-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Visibility for 4th card - Hidden by default (on 3-col grid) */
.homepage-2col-only {
    display: none !important;
}

/* 960px: 3 columns */


/* 767px: 2 columns */
@media screen and (max-width: 767px) {
    .homepage-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Show 4th card when grid becomes 2 columns */
    .homepage-2col-only {
        display: flex !important;
    }
}

/* 479px: tighter gap */
@media screen and (max-width: 479px) {
    .homepage-product-grid {
        gap: 10px;
    }
}

/* ============================================
   FADE-IN ANIMATIONS
   ============================================ */

/* Hero animations - Trigger on page load for above-the-fold content */
.js .hero-fade {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.4s ease-out 0.15s, transform 0.4s ease-out 0.15s;
}

.js .hero-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for hero elements (adds to base 0.15s delay) */
.js .hero-fade.stagger-1 {
    transition-delay: 0.25s;
}

.js .hero-fade.stagger-2 {
    transition-delay: 0.35s;
}

.js .hero-fade.stagger-3 {
    transition-delay: 0.45s;
}

.js .hero-fade.stagger-4 {
    transition-delay: 0.55s;
}

.js .hero-fade.stagger-5 {
    transition-delay: 0.65s;
}

.js .hero-fade.stagger-6 {
    transition-delay: 0.75s;
}

/* Scroll animations - Trigger when scrolling into view */
.js .scroll-fade {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.js .scroll-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for scroll elements */
.js .scroll-fade.stagger-1 {
    transition-delay: 0.1s;
}

.js .scroll-fade.stagger-2 {
    transition-delay: 0.2s;
}

.js .scroll-fade.stagger-3 {
    transition-delay: 0.3s;
}

.js .scroll-fade.stagger-4 {
    transition-delay: 0.4s;
}

.js .scroll-fade.stagger-5 {
    transition-delay: 0.5s;
}

.js .scroll-fade.stagger-6 {
    transition-delay: 0.6s;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    .js .hero-fade,
    .js .scroll-fade {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Utility: Hide elements on mobile devices */
@media screen and (max-width: 767px) {
    .hide-on-mobile {
        display: none !important;
    }
}
