/* ==========================================
   PLUMWIZ - Professional Plumbing Website
   ========================================== */

:root {
    --orange: #FF6B1A;
    --orange-light: #FF8B3D;
    --orange-dark: #E65500;
    --blue: #2BA8E0;
    --blue-light: #4FC1F0;
    --blue-dark: #1A82B5;
    --dark: #0F1B2D;
    --dark-2: #1A2942;
    --gray: #6B7A8F;
    --gray-light: #E8EDF2;
    --bg-light: #F7FAFC;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    --gradient-blue: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-dark) 100%);
    --gradient-mix: linear-gradient(135deg, var(--orange) 0%, var(--blue) 100%);
    --shadow-sm: 0 2px 10px rgba(15, 27, 45, 0.08);
    --shadow-md: 0 8px 30px rgba(15, 27, 45, 0.12);
    --shadow-lg: 0 20px 60px rgba(15, 27, 45, 0.15);
    --shadow-orange: 0 10px 30px rgba(255, 107, 26, 0.35);
    --shadow-blue: 0 10px 30px rgba(43, 168, 224, 0.35);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Scrolling page background (animated via JS) */
    --page-bg: #FFFFFF;
    --page-bg-from: 255, 255, 255;
    --page-bg-to: 220, 234, 244;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--page-bg);
    overflow-x: hidden;
    transition: background-color 0.4s ease-out;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; }

.highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 107, 26, 0.1);
    color: var(--orange);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-top: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 26, 0.45);
}

.btn-secondary {
    background: var(--white);
    color: var(--dark);
    border-color: var(--gray-light);
}

.btn-secondary:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-3px);
}

.btn-light {
    background: var(--white);
    color: var(--dark);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Top Bar */
.top-bar {
    background: var(--dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar i {
    color: var(--orange);
    margin-right: 6px;
}

.top-bar-right a {
    color: var(--white);
    transition: var(--transition);
}

.top-bar-right a:hover {
    color: var(--orange);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    box-shadow: none;
    padding: 14px 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px) saturate(1.5);
    -webkit-backdrop-filter: blur(18px) saturate(1.5);
    box-shadow: 0 4px 24px -8px rgba(15, 27, 45, 0.18);
}

/* Transparent nav text on hero */
.navbar:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.88);
}

.navbar:not(.scrolled) .nav-link:hover,
.navbar:not(.scrolled) .nav-link.active {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.12);
}

.navbar:not(.scrolled) .mobile-toggle span {
    background: #FFFFFF;
}

.nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.logo-link {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
}

.logo {
    height: 80px;
    width: auto;
    transition: var(--transition);
    display: block;
}

.navbar.scrolled .logo {
    height: 65px;
}

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

.nav-menu-left {
    justify-content: flex-end;
}

.nav-menu-right {
    justify-content: flex-start;
}

.nav-link {
    padding: 10px 14px;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.92rem;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    color: var(--orange);
    background: rgba(255, 107, 26, 0.08);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
    box-shadow: var(--shadow-orange);
    white-space: nowrap;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 26, 0.45);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ==========================================
   HERO — cinematic, premium, mobile-first
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    background: #0A1220;
    color: #FFFFFF;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding-top: 110px;
}

/* Background media */
.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
    filter: saturate(1.05) contrast(1.05);
    animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg,
            rgba(8, 14, 26, 0.92) 0%,
            rgba(8, 14, 26, 0.78) 30%,
            rgba(8, 14, 26, 0.45) 60%,
            rgba(8, 14, 26, 0.30) 100%),
        linear-gradient(180deg,
            rgba(8, 14, 26, 0.55) 0%,
            transparent 30%,
            transparent 60%,
            rgba(8, 14, 26, 0.92) 100%);
}

.hero-glow {
    position: absolute;
    bottom: -200px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 26, 0.18) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

/* Layout grid */
.hero-grid {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    padding-top: 20px;
    padding-bottom: 20px;
    max-width: 100%;
    padding-left: clamp(32px, 5vw, 90px);
    padding-right: clamp(32px, 4vw, 60px);
    margin: 0;
}

.hero .hero-stats-bar .container {
    max-width: 100%;
    padding-left: clamp(32px, 5vw, 90px);
    padding-right: clamp(32px, 4vw, 60px);
}

.hero-content {
    max-width: 720px;
}

/* Kicker line */
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    padding: 8px 18px 8px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.kicker-bar {
    width: 18px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

.kicker-sep {
    opacity: 0.4;
    font-weight: 400;
}

/* Headline */
.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3rem, 8vw, 6.2rem);
    font-weight: 800;
    line-height: 0.96;
    letter-spacing: -0.035em;
    margin-bottom: 36px;
    color: #FFFFFF;
}

.hero-title-accent {
    display: inline-block;
    background: linear-gradient(135deg, #FFB347 0%, #FF6B1A 50%, #E65500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    font-weight: 700;
}

/* Lead paragraph */
.hero-lead {
    font-size: 1.18rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    max-width: 580px;
    margin-bottom: 44px;
    font-weight: 400;
}

/* CTAs */
.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.98rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #FF8B3D 0%, #E65500 100%);
    color: #FFFFFF;
    box-shadow: 0 12px 30px -8px rgba(255, 107, 26, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -8px rgba(255, 107, 26, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-hero-primary i {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
    transform: translateX(4px);
}

.btn-hero-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn-hero-ghost:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-hero-ghost i {
    color: var(--orange);
}

/* Trust mini-rows */
.hero-trust {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.94rem;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 500;
}

.hero-trust-item i {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 26, 0.18);
    border: 1px solid rgba(255, 107, 26, 0.4);
    border-radius: 50%;
    color: #FFB347;
    font-size: 0.7rem;
}

/* Services showcase card (right side of hero) */
.hero-services-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    padding: 18px;
    backdrop-filter: blur(18px) saturate(1.4);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    box-shadow: 0 25px 80px -20px rgba(0, 0, 0, 0.65);
    align-self: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hsc-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 4px;
}

.hsc-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
}

.hsc-count {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.08);
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hsc-row {
    display: grid;
    grid-template-columns: 36px 1fr auto auto;
    align-items: center;
    gap: 12px;
    padding: 12px 12px;
    border-radius: 12px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    position: relative;
}

.hsc-row:hover {
    background: rgba(255, 255, 255, 0.08);
}

.hsc-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 139, 61, 0.25) 0%, rgba(230, 85, 0, 0.18) 100%);
    border: 1px solid rgba(255, 107, 26, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFB347;
    font-size: 0.9rem;
    transition: all 0.25s ease;
}

.hsc-row:hover .hsc-icon {
    background: linear-gradient(135deg, #FF8B3D 0%, #E65500 100%);
    color: #FFFFFF;
    border-color: transparent;
    transform: scale(1.05);
}

.hsc-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.hsc-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.25;
}

.hsc-teaser {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.3;
    font-weight: 400;
}

.hsc-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    color: #FFB347;
    background: rgba(255, 107, 26, 0.12);
    padding: 5px 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 26, 0.25);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.hsc-price sup {
    font-size: 0.7em;
    vertical-align: super;
}

.hsc-price-quote {
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    font-weight: 700;
}

.hsc-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    transition: all 0.25s ease;
}

.hsc-row:hover .hsc-arrow {
    color: #FFFFFF;
    transform: translateX(3px);
}

.hsc-foot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 12px 6px;
    margin-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

.hsc-foot i {
    color: var(--orange);
    font-size: 0.75rem;
}

/* Stats — floating, no background, no border */
.hero-stats-bar {
    position: relative;
    z-index: 2;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    gap: 48px;
    padding: 0 0 24px;
    justify-content: flex-start;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
    position: relative;
}

.hero-stat:not(:last-child)::after {
    content: none;
}

.hero-stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.35rem, 1.9vw, 1.75rem);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-stat-num sup {
    font-size: 0.5em;
    color: var(--orange);
    vertical-align: super;
    font-weight: 700;
}

.hero-stat-lbl {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.78);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

/* Tablet */
@media (max-width: 1024px) {
    .hero {
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 40px;
        padding-bottom: 80px;
    }

    .hero-card-floating {
        max-width: 420px;
    }

    .hero-stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        padding-top: 130px;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    .hero-stats-bar {
        margin-top: auto;
    }

    .hero-img {
        object-position: center 30%;
    }

    .hero-veil {
        background:
            linear-gradient(180deg,
                rgba(8, 14, 26, 0.78) 0%,
                rgba(8, 14, 26, 0.7) 50%,
                rgba(8, 14, 26, 0.96) 100%);
    }

    .hero-grid {
        gap: 24px;
    }

    .hero-content {
        padding-top: 6px;
        padding-bottom: 16px;
    }

    .hero-kicker {
        font-size: 0.68rem;
        gap: 8px;
        padding: 7px 14px 7px 12px;
        margin-top: 18px;
        margin-bottom: 28px;
    }

    /* Logo already shows the brand — drop the brand text and separator, keep only the location */
    .hero-kicker .kicker-sep,
    .hero-kicker > span:nth-child(2) {
        display: none;
    }

    .hero-title {
        font-size: clamp(2rem, 9.5vw, 3.2rem);
        margin-bottom: 26px;
        line-height: 1.08;
    }

    .hero-lead {
        font-size: 1.02rem;
        line-height: 1.6;
        margin-bottom: 32px;
    }

    .hero-cta {
        flex-direction: column;
        margin-bottom: 28px;
        gap: 12px;
    }

    .btn-hero {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.92rem;
    }

    .hero-trust {
        gap: 14px;
        margin-top: 12px;
    }

    .hero-trust-item {
        font-size: 0.88rem;
        gap: 12px;
    }

    .hero-services-card {
        padding: 14px;
        border-radius: 16px;
    }

    .hsc-head {
        padding: 4px 10px 12px;
    }

    .hsc-row {
        grid-template-columns: 32px 1fr auto;
        gap: 10px;
        padding: 10px 8px;
    }

    .hsc-icon {
        width: 32px;
        height: 32px;
        font-size: 0.82rem;
    }

    .hsc-name { font-size: 0.88rem; }
    .hsc-teaser { font-size: 0.7rem; }

    .hsc-price {
        font-size: 0.72rem;
        padding: 4px 8px;
    }

    .hsc-arrow {
        display: none;
    }

    .hsc-foot {
        font-size: 0.68rem;
        padding: 12px 8px 4px;
    }

    .hero-stats-bar {
        margin-top: 12px;
        padding-top: 12px;
        padding-bottom: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 6px 0;
    }

    .hero-stat::after {
        display: none;
    }

    .hero-stat {
        padding: 0 4px;
    }

    .hero-stat-num {
        font-size: 1.15rem;
        line-height: 1.1;
    }

    .hero-stat-lbl {
        font-size: 0.55rem;
        letter-spacing: 0.08em;
        line-height: 1.25;
    }
}

@media (max-width: 420px) {
    .hero-title { font-size: 2.05rem; line-height: 1.05; }
    .hero-lead { font-size: 1rem; line-height: 1.55; }
}

/* Trust Bar - Scrolling Marquee */
.trust-bar {
    background: var(--dark);
    padding: 26px 0;
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.trust-bar::before,
.trust-bar::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.trust-bar::before {
    left: 0;
    background: linear-gradient(90deg, var(--dark) 0%, transparent 100%);
}

.trust-bar::after {
    right: 0;
    background: linear-gradient(-90deg, var(--dark) 0%, transparent 100%);
}

.trust-marquee {
    width: 100%;
    overflow: hidden;
}

.trust-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: trust-scroll 35s linear infinite;
}

.trust-bar:hover .trust-track {
    animation-play-state: paused;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.trust-item i {
    color: var(--orange);
    font-size: 1.4rem;
}

@keyframes trust-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .trust-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
}

/* About */
.about {
    padding: 100px 0;
    background: transparent;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    height: 540px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-dark) 100%);
    border-radius: 20px;
    overflow: hidden;
}

.about-img-main::before {
    content: '\f7d8';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12rem;
    color: rgba(255, 255, 255, 0.2);
}

.about-img-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(15, 27, 45, 0.4) 100%);
}

.about-img-accent {
    position: absolute;
    bottom: 40px;
    right: 0;
    width: 50%;
    height: 60%;
    background: var(--gradient);
    border-radius: 20px;
    border: 8px solid var(--white);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.about-img-accent::before {
    content: '\f773';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.3);
}

.about-experience {
    position: absolute;
    top: 30px;
    right: -20px;
    background: var(--white);
    padding: 24px 28px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    z-index: 3;
}

.about-experience h3 {
    font-size: 2.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.about-experience p {
    color: var(--gray);
    font-size: 0.85rem;
    font-weight: 600;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content .lead {
    font-size: 1.15rem;
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.6;
}

.about-content > p {
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 36px;
}

.feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.feature-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.feature h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.feature p {
    color: var(--gray);
    font-size: 0.875rem;
}

/* Services */
.services {
    padding: 120px 0;
    background: transparent;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background: var(--white);
    padding: 48px 40px;
    border-radius: 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(15, 27, 45, 0.06);
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* Product image at the top of each service card (full-bleed) */
.product-img-service {
    margin: -48px -40px 28px;
    aspect-ratio: 16 / 10;
    border-radius: 0;
    border-top-left-radius: 23px;
    border-top-right-radius: 23px;
    background: linear-gradient(135deg, #F4F7FB 0%, #E8EEF5 100%);
    overflow: hidden;
    position: relative;
}

.product-img-service img,
.product-img-service video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Vertical phone video — use a taller frame so cover crops less and fills more */
.product-img.product-img-service.product-img-service-video {
    aspect-ratio: 3 / 4;
    background: radial-gradient(ellipse at center, #1c2538 0%, #0a0f1c 100%);
}

.product-img-service-video video {
    object-fit: cover;
    object-position: center;
    background: transparent;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
}

.service-card:hover .product-img-service img,
.service-card:hover .product-img-service video {
    transform: scale(1.04);
}

/* Video service card — small "Video" badge in top-right corner */
.product-img-service-video {
    position: relative;
}

.product-img-service-video::after {
    content: '\f04b  Video';
    font-family: 'Font Awesome 6 Free', 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 10px 5px 9px;
    background: rgba(15, 27, 45, 0.7);
    color: var(--white);
    border-radius: 50px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Fallback state — logo centered, contained */
.product-img-service.is-fallback {
    background: linear-gradient(135deg, #F4F7FB 0%, #E8EEF5 100%);
}

.product-img-service.is-fallback img {
    object-fit: contain;
    padding: 28px;
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-img-service.is-fallback::after {
    content: 'Photo coming soon';
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gray);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.85);
    padding: 4px 10px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid var(--gray-light);
}

.service-card:hover .product-img-service.is-fallback img {
    opacity: 0.65;
}

/* Featured card image background uses a hint of dark gradient since the card itself is dark */
.service-card-featured .product-img-service {
    background: linear-gradient(135deg, rgba(15, 27, 45, 0.95) 0%, rgba(26, 32, 48, 0.95) 100%);
}

.service-card-featured .product-img-service.is-fallback img {
    opacity: 0.7;
}

.service-card-featured .product-img-service.is-fallback::after {
    background: rgba(15, 27, 45, 0.7);
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Featured badge needs to sit above the image */
.service-card-featured .service-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
}

/* Icons removed on service cards — product images carry the visual identity now.
   CTA card keeps its icon since it has no product image. */
.service-card:not(.service-card-cta) .service-icon { display: none; }

.service-icon {
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, rgba(255, 107, 26, 0.1) 0%, rgba(43, 168, 224, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.9rem;
    margin-bottom: 32px;
    transition: var(--transition);
}

.service-icon svg {
    width: 42px;
    height: 42px;
    display: block;
    color: var(--orange);
    transition: color 0.3s ease;
}

.service-card:hover .service-icon svg {
    color: var(--white);
}

.service-card:hover .service-icon {
    background: var(--gradient);
    color: var(--white);
    transform: rotate(-5deg) scale(1.1);
}

.service-card h3 {
    margin-bottom: 18px;
    font-size: 1.4rem;
}

.service-card > p {
    color: var(--gray);
    margin-bottom: 28px;
    line-height: 1.75;
    font-size: 0.97rem;
}

.service-list {
    margin: 0 0 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(15, 27, 45, 0.08);
    flex-grow: 1;
}

.service-list li {
    padding: 11px 0;
    color: var(--dark);
    font-size: 0.94rem;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.4;
}

.service-list i {
    color: var(--orange);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.service-link:hover {
    gap: 14px;
    color: var(--orange-dark);
}

.service-card-featured {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    color: var(--white);
}

.service-card-featured h3,
.service-card-featured .service-list li {
    color: var(--white);
}

.service-card-featured > p {
    color: rgba(255, 255, 255, 0.7);
}

.service-card-featured .service-icon {
    background: var(--gradient);
    color: var(--white);
}

.service-card-featured:hover .service-icon {
    background: var(--white);
    color: var(--orange);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Water Purification — blue gradient card (uses the old CTA blue) */
.service-card-blue {
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-dark) 100%);
    color: var(--white);
}

.service-card-blue h3,
.service-card-blue .service-list li {
    color: var(--white);
}

.service-card-blue > p {
    color: rgba(255, 255, 255, 0.85);
}

.service-card-blue .service-list li i {
    color: var(--white);
    opacity: 0.85;
}

.service-card-blue .service-link {
    color: var(--white);
}

.service-card-blue .service-link:hover {
    color: rgba(255, 255, 255, 0.85);
}

/* Tile Field — earthy green gradient (eco / drainage theme) */
.service-card-green {
    background: linear-gradient(135deg, #4A8C5F 0%, #2D5A3F 100%);
    color: var(--white);
}

.service-card-green h3,
.service-card-green .service-list li {
    color: var(--white);
}

.service-card-green > p {
    color: rgba(255, 255, 255, 0.85);
}

.service-card-green .service-list li i {
    color: var(--white);
    opacity: 0.85;
}

.service-card-green .service-link {
    color: var(--white);
}

.service-card-green .service-link:hover {
    color: rgba(255, 255, 255, 0.85);
}

/* Reed Bed — teal gradient (water + vegetation, wetland feel) */
.service-card-teal {
    background: linear-gradient(135deg, #2E8B8B 0%, #1A6A6A 100%);
    color: var(--white);
}

.service-card-teal h3,
.service-card-teal .service-list li {
    color: var(--white);
}

.service-card-teal > p {
    color: rgba(255, 255, 255, 0.85);
}

.service-card-teal .service-list li i {
    color: var(--white);
    opacity: 0.85;
}

.service-card-teal .service-link {
    color: var(--white);
}

.service-card-teal .service-link:hover {
    color: rgba(255, 255, 255, 0.85);
}

/* Maintenance — warm charcoal / slate (steady, reliable, professional) */
.service-card-charcoal {
    background: linear-gradient(135deg, #4A5563 0%, #2B323D 100%);
    color: var(--white);
}

.service-card-charcoal h3,
.service-card-charcoal .service-list li {
    color: var(--white);
}

.service-card-charcoal > p {
    color: rgba(255, 255, 255, 0.85);
}

.service-card-charcoal .service-list li i {
    color: var(--white);
    opacity: 0.85;
}

.service-card-charcoal .service-link {
    color: var(--white);
}

.service-card-charcoal .service-link:hover {
    color: rgba(255, 255, 255, 0.85);
}

/* Not Sure CTA — original blue gradient */
.service-card-cta {
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-dark) 100%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Restore the icon at top with stronger presence since this card has no product image */
.service-card-cta .service-icon {
    display: flex;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 22px;
    align-items: center;
    justify-content: center;
}

.service-card-cta h3 {
    color: var(--white);
}

.service-card-cta > p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.service-card-cta:hover .service-icon {
    background: var(--white);
    color: var(--blue);
}

/* ===========================================
   FORM PRE-FILL — highlight pulse when CTA clicked
   =========================================== */
.prefill-pulse {
    animation: prefillPulse 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes prefillPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 26, 0.5), 0 8px 30px rgba(15, 27, 45, 0.12); transform: scale(1); }
    20% { box-shadow: 0 0 0 8px rgba(255, 107, 26, 0.18), 0 8px 30px rgba(15, 27, 45, 0.12); transform: scale(1.005); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 26, 0), 0 8px 30px rgba(15, 27, 45, 0.12); transform: scale(1); }
}

/* ===========================================
   GALLERY — Bento grid + cinematic animations
   =========================================== */
.gallery {
    padding: 130px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

/* Animated background orbs */
.gallery-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.gallery-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: galleryOrb 16s ease-in-out infinite alternate;
}

.gallery-orb-1 {
    width: 480px;
    height: 480px;
    top: -120px;
    left: -150px;
    background: radial-gradient(circle, rgba(255, 107, 26, 0.25) 0%, transparent 60%);
}

.gallery-orb-2 {
    width: 520px;
    height: 520px;
    bottom: -180px;
    right: -120px;
    background: radial-gradient(circle, rgba(43, 168, 224, 0.2) 0%, transparent 60%);
    animation-delay: -8s;
}

@keyframes galleryOrb {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(40px, -30px) scale(1.08); }
    100% { transform: translate(-30px, 40px) scale(0.95); }
}

.gallery .container { position: relative; z-index: 1; }

/* Section header inner stat strip */
.gallery-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--gray-light);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

.gs-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.gs-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    letter-spacing: -0.025em;
}

.gs-num sup, .gs-num sub {
    font-size: 0.5em;
    color: var(--orange);
    font-weight: 700;
}

.gs-num sub { vertical-align: baseline; }

.gs-lbl {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gray);
    font-weight: 600;
}

/* Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 230px;
    gap: 16px;
    margin-bottom: 60px;
    perspective: 1200px;
}

.gallery-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, #FAFBFD 0%, #F0F4F9 100%);
    border: 1px solid var(--gray-light);
    cursor: pointer;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    will-change: transform;
}

.gallery-item-large { grid-column: span 2; grid-row: span 2; }
.gallery-item-tall  { grid-row: span 2; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
    display: block;
    filter: saturate(0.95);
}

/* Hover: lift, glow, image saturates and zooms */
.gallery-item:not(.is-fallback):hover {
    transform: translateY(-8px);
    box-shadow:
        0 30px 60px -20px rgba(15, 27, 45, 0.32),
        0 0 0 1px rgba(255, 107, 26, 0.18);
    border-color: rgba(255, 107, 26, 0.3);
}

.gallery-item:not(.is-fallback):hover img {
    transform: scale(1.1);
    filter: saturate(1.15);
}

/* Sweeping shine effect */
/* Logo watermark — bottom-right corner of each gallery photo (transparent, no pill) */
.gallery-item:not(.is-fallback)::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 64px;
    height: 64px;
    background: url('plumwiz logo.png') no-repeat center;
    background-size: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 12px rgba(0, 0, 0, 0.35));
    z-index: 3;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Subtle scale on hover for premium feel */
.gallery-item:not(.is-fallback):hover::after {
    transform: scale(1.05);
}

.gallery-shine {
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
    transform: skewX(-20deg);
    pointer-events: none;
    transition: left 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:not(.is-fallback):hover .gallery-shine {
    left: 130%;
}

/* Fallback (logo placeholder) */
.gallery-item.is-fallback {
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 107, 26, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, #FAFBFD 0%, #EAF0F7 100%);
    border-style: dashed;
    border-color: rgba(15, 27, 45, 0.12);
}

.gallery-item.is-fallback img {
    width: 50%;
    max-width: 160px;
    height: auto;
    object-fit: contain;
    opacity: 0.65;
    filter: saturate(0.85);
    animation: fallbackFloat 4s ease-in-out infinite;
}

@keyframes fallbackFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

.gallery-item.is-fallback:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 107, 26, 0.3);
    box-shadow: 0 14px 28px -12px rgba(15, 27, 45, 0.15);
}

.gallery-item.is-fallback:hover img { transform: scale(1.06); }

/* Caption overlay — slides up smoothly */
.gallery-cap { display: none; }

.gallery-cap-deprecated {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 27, 45, 0.45) 70%, rgba(15, 27, 45, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--white);
    margin: 0;
    pointer-events: none;
}

.gallery-item:not(.is-fallback):hover .gallery-cap {
    opacity: 1;
    transform: translateY(0);
}

.gc-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
    color: var(--orange-light, #FFB347);
    margin-bottom: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gc-tag::before {
    content: '';
    width: 8px;
    height: 1px;
    background: var(--orange-light, #FFB347);
}

.gc-loc {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}

/* Scroll-reveal staggered fade-in for items */
.gallery-item[data-reveal] {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item[data-reveal].in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Stagger via nth-child delays for nice cascading entrance */
.gallery-item[data-reveal]:nth-child(1).in { transition-delay: 0.05s; }
.gallery-item[data-reveal]:nth-child(2).in { transition-delay: 0.15s; }
.gallery-item[data-reveal]:nth-child(3).in { transition-delay: 0.25s; }
.gallery-item[data-reveal]:nth-child(4).in { transition-delay: 0.35s; }
.gallery-item[data-reveal]:nth-child(5).in { transition-delay: 0.45s; }
.gallery-item[data-reveal]:nth-child(6).in { transition-delay: 0.55s; }
.gallery-item[data-reveal]:nth-child(7).in { transition-delay: 0.65s; }
.gallery-item[data-reveal]:nth-child(8).in { transition-delay: 0.75s; }

/* Mobile */
@media (max-width: 900px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; gap: 12px; }
    .gallery-item-large { grid-column: span 2; grid-row: span 1; }
    .gallery-item-tall  { grid-row: span 1; }
    .gallery-stats { gap: 30px; }
    .gs-num { font-size: 1.5rem; }
}

@media (max-width: 500px) {
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
    .gallery-item-large { grid-column: span 1; }
}

/* Gallery CTA — premium */
.gallery-cta {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--gray-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.gc-marquee {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 10px 22px;
    background: rgba(15, 27, 45, 0.04);
    border: 1px solid rgba(15, 27, 45, 0.08);
    border-radius: 50px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
    color: var(--ink-2, var(--dark));
}

.gc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 0 rgba(255, 107, 26, 0.6);
    animation: gcDot 2s infinite;
}

@keyframes gcDot {
    0%   { box-shadow: 0 0 0 0 rgba(255, 107, 26, 0.6); }
    70%  { box-shadow: 0 0 0 8px rgba(255, 107, 26, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 26, 0); }
}

.gallery-cta p {
    color: var(--gray);
    font-size: 1rem;
    margin: 4px 0 0;
}

.gallery-ig-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCB045 100%);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 12px 30px -8px rgba(253, 29, 29, 0.4);
    position: relative;
    overflow: hidden;
}

.gallery-ig-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #FCB045 0%, #FD1D1D 50%, #833AB4 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-ig-btn > * { position: relative; z-index: 1; }

.gallery-ig-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px -10px rgba(253, 29, 29, 0.55);
}

.gallery-ig-btn:hover::before { opacity: 1; }

.gallery-ig-btn i:first-child {
    font-size: 1.2rem;
}

.gallery-ig-arrow {
    transition: transform 0.3s ease;
}

.gallery-ig-btn:hover .gallery-ig-arrow {
    transform: translateX(4px);
}

/* ===========================================
   PRODUCT IMAGE PLACEHOLDERS (logo fallback)
   Drop real product photos into images/products/
   and they replace the logo automatically.
   =========================================== */
.product-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #FAFBFD 0%, #F0F4F9 100%);
    border-radius: 14px;
    overflow: hidden;
    margin: 0 0 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-light);
    position: relative;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0;
}

/* Fallback state — when the product image doesn't exist, logo is shown */
.product-img.is-fallback {
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 107, 26, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, #FAFBFD 0%, #EAF0F7 100%);
    border-style: dashed;
    border-color: rgba(15, 27, 45, 0.12);
}

.product-img.is-fallback img {
    width: 55%;
    max-width: 180px;
    height: auto;
    object-fit: contain;
    opacity: 0.7;
    filter: saturate(0.85);
}

.product-img.is-fallback::after {
    content: 'Product image coming soon';
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gray);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.85);
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid var(--gray-light);
    white-space: nowrap;
}

/* Hover lift for product images */
.price-card:hover .product-img img,
.pricing-pair-card:hover .product-img img {
    transform: scale(1.04);
}

/* Wide variant for the tile/reed cards (already constrained width) */
.product-img-wide {
    aspect-ratio: 16 / 10;
    margin-bottom: 18px;
}

/* Tank variant (inside the tank selector, larger to accommodate full equipment shots) */
.product-img-tank {
    aspect-ratio: 4 / 3;
    margin-bottom: 0;
    max-height: 240px;
}

/* When a featured (dark) price card has the placeholder, soften the fallback bg */
.price-card-featured .product-img {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.price-card-featured .product-img.is-fallback {
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 179, 71, 0.08) 0%, transparent 55%),
        rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.14);
    border-style: dashed;
}

.price-card-featured .product-img.is-fallback img {
    opacity: 0.95;
    filter: saturate(1.1);
}

.price-card-featured .product-img.is-fallback::after {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.65);
}

/* Mobile */
@media (max-width: 768px) {
    .product-img.is-fallback::after { font-size: 0.6rem; padding: 3px 10px; bottom: 8px; }
    .product-img.is-fallback img { width: 50%; max-width: 140px; }
    .product-img-tank { aspect-ratio: 16 / 9; margin-bottom: 18px; }
}

/* ===========================================
   TANK SELECTOR — Interactive pricing widget
   =========================================== */
.tank-selector {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 22px;
    padding: 32px;
    margin-bottom: 28px;
    box-shadow: 0 20px 50px -30px rgba(15, 27, 45, 0.12);
}

.ts-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--gray-light);
}

.ts-eye {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 14px;
}

.ts-eye i {
    width: 32px;
    height: 32px;
    background: rgba(255, 107, 26, 0.12);
    border: 1px solid rgba(255, 107, 26, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.ts-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 10px;
}

.ts-sub {
    color: var(--gray);
    font-size: 0.98rem;
    line-height: 1.65;
    max-width: 600px;
}

.ts-badge {
    background: var(--dark);
    color: var(--cream, #FAF7F1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Size selector buttons */
.ts-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
    flex-wrap: wrap;
    padding-bottom: 6px;
}

.ts-btn {
    background: var(--white);
    border: 1.5px solid var(--gray-light);
    color: var(--dark);
    padding: 12px 22px;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    position: relative;
    flex-shrink: 0;
}

.ts-btn:hover {
    background: rgba(255, 107, 26, 0.05);
    border-color: rgba(255, 107, 26, 0.3);
    color: var(--orange);
}

.ts-btn.active {
    background: var(--gradient);
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 8px 20px -6px rgba(255, 107, 26, 0.45);
    transform: translateY(-1px);
}

/* Info display panel */
.ts-display {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    background: linear-gradient(160deg, #FAFBFD 0%, #F4F7FB 100%);
    border-radius: 16px;
    padding: 32px;
    min-height: 380px;
    overflow: hidden;
}

.ts-display::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 107, 26, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.tank-info {
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity 0.32s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    grid-template-areas:
        "image    head"
        "buttons  prices"
        "specs    specs"
        "ctas     ctas";
    gap: 18px 28px;
    position: relative;
    z-index: 1;
}

.tank-info > .product-img-tank { grid-area: image; align-self: start; margin: 0; }
.tank-info > .ts-buttons-inline { grid-area: buttons; align-self: start; }
.tank-info > .ti-head { grid-area: head; align-self: start; }
.tank-info > .ti-prices { grid-area: prices; align-self: start; }
.tank-info > .ti-specs { grid-area: specs; }
.tank-info > .ti-ctas { grid-area: ctas; }

/* Inline (per-panel) buttons — vertical stack filling col 1 below the image */
.ts-buttons-inline {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.ts-buttons-inline .ts-btn {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    padding: 12px 18px;
}

/* Desktop: hide the mobile (outer) buttons row, the inline ones are doing the job */
@media (min-width: 769px) {
    .ts-buttons-mobile { display: none; }
}

.tank-info.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ti-head {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: start;
}

.ti-tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--orange);
    background: rgba(255, 107, 26, 0.1);
    border: 1px solid rgba(255, 107, 26, 0.25);
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 12px;
}

.ti-name {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 10px;
}

.ti-desc {
    color: var(--gray);
    font-size: 0.98rem;
    line-height: 1.65;
    max-width: 600px;
}

.ti-best-for {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
    padding: 10px 14px;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 10px;
    min-width: 0;
    align-self: stretch;
}

.ti-best-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gray);
    font-weight: 600;
}

.ti-best-value {
    font-size: 0.92rem;
    color: var(--dark);
    font-weight: 700;
    line-height: 1.3;
}

/* Specs strip */
.ti-specs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 12px;
}

.ti-spec {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.ti-spec i {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 107, 26, 0.1) 0%, rgba(255, 107, 26, 0.04) 100%);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.ti-spec span {
    display: flex;
    flex-direction: column;
    gap: 1px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    min-width: 0;
}

.ti-spec span small {
    font-family: 'Poppins', sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 2px;
}

/* Price cards */
.ti-prices {
    display: grid;
    grid-template-columns: 1fr 1fr 1.3fr;
    gap: 12px;
}

.ti-prices-custom {
    grid-template-columns: 1fr;
    max-width: 400px;
}

.ti-price {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: var(--transition);
}

.ti-price:hover {
    border-color: rgba(255, 107, 26, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -10px rgba(15, 27, 45, 0.1);
}

.tp-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gray);
    font-weight: 700;
}

.tp-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.025em;
    line-height: 1;
}

.tp-value small {
    font-size: 0.55em;
    color: var(--gray);
    font-weight: 600;
    margin-left: 4px;
    letter-spacing: 0.05em;
}

.tp-value-soft {
    color: var(--orange);
    font-style: italic;
    font-size: 1.3rem;
}

.ti-price-total {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    border-color: transparent;
    color: var(--white);
}

.ti-price-total .tp-label {
    color: var(--orange-light, #FFB347);
}

.ti-price-total .tp-value {
    color: var(--white);
    font-size: 1.7rem;
}

.ti-price-total .tp-value small {
    color: rgba(255, 255, 255, 0.6);
}

.ti-price-total .tp-value-soft {
    background: linear-gradient(135deg, #FFC976 0%, #FF8B3D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ti-price-total:hover {
    box-shadow: 0 18px 36px -10px rgba(15, 27, 45, 0.4);
}

/* CTAs */
.ti-ctas {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.ti-cta {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.92rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ti-cta-line {
    background: var(--white);
    border: 1.5px solid var(--dark);
    color: var(--dark);
}

.ti-cta-line:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
}

.ti-cta-solid {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 10px 24px -8px rgba(255, 107, 26, 0.45);
}

.ti-cta-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -8px rgba(255, 107, 26, 0.6);
}

.ti-cta i { transition: transform 0.3s ease; }
.ti-cta:hover i { transform: translateX(4px); }

/* Footer note */
.ts-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 24px 0 0;
    padding: 14px 18px;
    background: rgba(15, 27, 45, 0.03);
    border: 1px dashed var(--gray-light);
    border-radius: 10px;
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.55;
}

.ts-note i {
    color: var(--orange);
    margin-top: 2px;
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* Mobile */
@media (max-width: 900px) {
    .tank-selector { padding: 22px; border-radius: 18px; }
    .ts-head { flex-direction: column; gap: 12px; padding-bottom: 20px; margin-bottom: 20px; }
    .ts-badge { align-self: flex-start; }

    .ts-buttons {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
        margin: 0 0 24px;
        padding: 0;
        flex-wrap: initial;
        overflow: visible;
    }

    .ts-btn {
        padding: 11px 6px;
        font-size: 0.8rem;
        text-align: center;
        white-space: nowrap;
    }

    .ts-display { padding: 22px; min-height: auto; }
    .tank-info {
        grid-template-columns: 1fr;
        grid-template-areas:
            "image"
            "head"
            "prices"
            "specs"
            "ctas";
        gap: 16px;
    }
    .product-img-tank { max-height: 220px; aspect-ratio: 16 / 10; }

    /* Mobile: inline (vertical) buttons hidden; the horizontal mobile row above the panel shows */
    .ts-buttons-inline { display: none; }

    .ti-head {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .ti-best-for { text-align: left; min-width: 0; }

    .ti-specs {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        padding: 18px;
    }

    .ti-prices { grid-template-columns: 1fr; gap: 10px; }
    .ti-price { padding: 16px 18px; }
    .tp-value { font-size: 1.4rem; }
    .ti-price-total .tp-value { font-size: 1.55rem; }

    .ti-ctas { flex-direction: column; gap: 10px; }
}

@media (max-width: 500px) {
    .ti-specs { grid-template-columns: 1fr; }
}

/* ===========================================
   PRICING — Septic Table + Tile/Reed Pair + Terms
   =========================================== */

/* Septic tank pricing table */
.pricing-table-wrap {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 20px;
    padding: 36px;
    margin-bottom: 24px;
    box-shadow: 0 20px 50px -30px rgba(15, 27, 45, 0.12);
}

.pricing-table-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--gray-light);
}

.pt-eye {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 14px;
}

.pt-eye i {
    width: 32px;
    height: 32px;
    background: rgba(255, 107, 26, 0.12);
    border: 1px solid rgba(255, 107, 26, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.pt-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 10px;
}

.pt-sub {
    color: var(--gray);
    font-size: 0.98rem;
    line-height: 1.65;
    max-width: 640px;
}

.pt-badge {
    background: var(--dark);
    color: var(--cream, #FAF7F1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.pricing-table { display: flex; flex-direction: column; }

.pricing-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 24px;
    padding: 18px 0;
    border-bottom: 1px solid var(--gray-light);
    transition: all 0.25s ease;
}

.pricing-row:last-child { border-bottom: none; }

.pricing-row:not(.pricing-row-head):hover {
    background: rgba(255, 107, 26, 0.03);
    padding-left: 14px;
    padding-right: 14px;
}

.pricing-row-head {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gray);
    font-weight: 700;
    padding: 12px 0;
    border-bottom-width: 2px;
    border-bottom-color: var(--dark);
}

.pr-size {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.pr-best {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.45;
}

.pr-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--orange);
    text-align: right;
    letter-spacing: -0.02em;
}

.pr-price small {
    font-size: 0.55em;
    font-weight: 600;
    color: var(--gray);
    margin-left: 4px;
    letter-spacing: 0.05em;
}

/* Tile field + Reed bed pricing pair */
.pricing-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.pricing-pair-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px -20px rgba(15, 27, 45, 0.1);
    display: flex;
    flex-direction: column;
}

.pricing-pair-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px -20px rgba(15, 27, 45, 0.18);
    border-color: rgba(255, 107, 26, 0.25);
}

.ppc-head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.ppc-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 10px 20px -6px rgba(255, 107, 26, 0.45);
}

.ppc-eye {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 6px;
}

.ppc-head h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0;
}

.pricing-pair-card > p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 24px;
    flex-grow: 1;
}

.ppc-price-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 0;
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.ppc-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--orange);
    letter-spacing: -0.025em;
    line-height: 1;
}

.ppc-price small {
    font-size: 0.55em;
    color: var(--gray);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.ppc-note {
    font-size: 0.78rem;
    color: var(--gray);
    font-style: italic;
    text-align: right;
    line-height: 1.4;
}

.ppc-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    background: var(--dark);
    color: var(--white);
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    align-self: stretch;
}

.ppc-cta:hover {
    background: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -8px rgba(255, 107, 26, 0.45);
}

.ppc-cta i { transition: transform 0.3s ease; }
.ppc-cta:hover i { transform: translateX(4px); }

/* Terms & Conditions notice */
.pricing-terms {
    background: linear-gradient(135deg, #0F1B2D 0%, #1A2942 100%);
    color: var(--white, #FFFFFF);
    border-radius: 20px;
    padding: 36px 40px;
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 28px;
    align-items: start;
    position: relative;
    overflow: hidden;
}

.pricing-terms::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -50px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 107, 26, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.pt-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 10px 24px -6px rgba(255, 107, 26, 0.5);
    position: relative;
    z-index: 1;
}

.pt-content {
    position: relative;
    z-index: 1;
}

.pt-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--orange-light, #FFB347);
    margin-bottom: 18px;
    font-weight: 700;
}

.pt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.pt-item-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -0.015em;
}

.pt-item p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    line-height: 1.65;
}

.pt-item p strong {
    color: var(--white);
    font-weight: 700;
}

/* Water purification heading (intro to existing 3-tier cards) */
.water-pricing-head {
    text-align: center;
    max-width: 700px;
    margin: 60px auto 50px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-light);
}

.water-pricing-title {
    font-size: clamp(2rem, 3.8vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark);
    margin: 16px 0;
    letter-spacing: -0.03em;
}

.water-pricing-head p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.65;
}

/* ===========================================
   DIY Single-Stage Promo Banner
   Limited-time hardware-only offer above the 3-tier grid
   =========================================== */
.diy-promo-card {
    position: relative;
    margin: 36px auto 50px;
    background: var(--white);
    border: 1.5px solid var(--gray-light);
    border-radius: 22px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 20px 50px -28px rgba(15, 27, 45, 0.18);
}

.diy-promo-ribbon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 2;
    padding: 7px 14px 7px 12px;
    background: linear-gradient(135deg, #FF8347, #FF6B1A);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    border-radius: 50px;
    box-shadow: 0 8px 18px -6px rgba(255, 107, 26, 0.55);
}

.diy-promo-pulse {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--white);
}

.diy-promo-pulse::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    animation: diyPulse 1.8s ease-out infinite;
}

@keyframes diyPulse {
    0%   { transform: scale(0.6); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

.diy-promo-grid {
    display: grid;
    grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.5fr) minmax(260px, 0.85fr);
    gap: 32px;
    padding: 60px 38px 38px;
    align-items: center;
}

.diy-promo-image {
    aspect-ratio: 3 / 5;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    position: relative;
}

.diy-promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.diy-promo-image.is-fallback {
    border-style: dashed;
}

.diy-promo-image.is-fallback img {
    width: 60%;
    max-width: 180px;
    height: auto;
    object-fit: contain;
    opacity: 0.6;
}

.diy-promo-image.is-fallback::after {
    content: 'Photo coming soon';
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gray);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid var(--gray-light);
}

/* Body */
.diy-promo-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--blue-dark, #1A82B5);
    background: rgba(43, 168, 224, 0.1);
    border: 1px solid rgba(43, 168, 224, 0.28);
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 16px;
}

.diy-promo-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 2.4vw, 1.95rem);
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 12px;
    letter-spacing: -0.025em;
    line-height: 1.12;
}

.diy-promo-sub {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 22px;
}

.diy-promo-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
    margin-bottom: 20px;
}

.diy-feature {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.88rem;
    color: var(--dark);
    line-height: 1.45;
}

.diy-feature i {
    color: var(--orange);
    font-size: 0.95rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.diy-promo-includes {
    padding: 12px 16px;
    background: rgba(15, 27, 45, 0.04);
    border-radius: 10px;
    border-left: 3px solid var(--orange);
    font-size: 0.84rem;
    color: var(--gray-dark);
    line-height: 1.5;
}

.diy-promo-includes strong {
    color: var(--dark);
    margin-right: 6px;
}

/* Price column */
.diy-promo-price {
    background: var(--white);
    border-radius: 16px;
    padding: 24px 22px;
    box-shadow: 0 18px 44px -22px rgba(15, 27, 45, 0.2);
    border: 1px solid rgba(15, 27, 45, 0.06);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.diy-price-figure {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
}

.diy-price-currency {
    font-size: 0.95rem;
    color: var(--orange);
    font-weight: 700;
    letter-spacing: 0.08em;
}

.diy-price-amount {
    font-size: 2.3rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1;
}

.diy-price-note {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gray);
    font-weight: 700;
    margin: -8px 0 4px;
}

.diy-price-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid var(--gray-light);
    padding-top: 14px;
}

.diy-price-meta li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.8rem;
    color: var(--gray-dark);
    line-height: 1.45;
}

.diy-price-meta li i {
    color: var(--blue-dark, #1A82B5);
    font-size: 0.85rem;
    margin-top: 2px;
    flex-shrink: 0;
    width: 14px;
    text-align: center;
}

.diy-promo-price .btn {
    margin-top: 4px;
}

/* DIY promo — mobile/tablet stack */
@media (max-width: 900px) {
    .diy-promo-grid {
        grid-template-columns: 1fr;
        padding: 70px 24px 28px;
        gap: 22px;
    }
    .diy-promo-image {
        aspect-ratio: 4 / 3;
        max-width: 100%;
        margin: 0;
        width: 100%;
    }
    .diy-promo-features { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
    .diy-promo-ribbon { font-size: 0.62rem; padding: 6px 12px 6px 10px; top: 18px; left: 18px; }
    .diy-promo-grid { padding: 60px 18px 22px; }
    .diy-promo-price { padding: 20px 18px; }
    .diy-price-amount { font-size: 2rem; }
}

/* Mobile */
@media (max-width: 900px) {
    .pricing-table-wrap { padding: 24px; }
    .pricing-table-head { flex-direction: column; gap: 12px; padding-bottom: 22px; margin-bottom: 22px; }
    .pt-badge { align-self: flex-start; }

    .pricing-row {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 18px 0;
    }
    .pricing-row-head { display: none; }
    .pricing-row:not(.pricing-row-head):hover { padding-left: 0; padding-right: 0; }

    .pr-size { font-size: 1rem; }
    .pr-price {
        text-align: left;
        font-size: 1.3rem;
        padding-top: 4px;
        border-top: 1px dashed var(--gray-light);
        margin-top: 4px;
    }

    .pricing-pair { grid-template-columns: 1fr; gap: 18px; margin-bottom: 18px; }
    .pricing-pair-card { padding: 26px; }

    .pricing-terms {
        grid-template-columns: 1fr;
        padding: 28px 24px;
        gap: 20px;
    }
    .pt-icon { margin: 0 auto 0 0; }
    .pt-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(43, 168, 224, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.pricing::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 26, 0.08) 0%, transparent 70%);
    z-index: 0;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
    margin-bottom: 50px;
}

.price-card {
    background: var(--white);
    padding: 40px 32px 36px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(43, 168, 224, 0.2);
}

.price-card-featured {
    background: linear-gradient(165deg, #1A82B5 0%, #0F4D6F 100%);
    color: var(--white);
    transform: scale(1.04);
    border-color: transparent;
    box-shadow: 0 20px 50px rgba(43, 168, 224, 0.35);
}

.price-card-featured:hover {
    transform: scale(1.04) translateY(-8px);
    box-shadow: 0 30px 60px rgba(43, 168, 224, 0.45);
    border-color: transparent;
}

.price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: var(--shadow-orange);
    white-space: nowrap;
}

.price-card-head {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-light);
}

.price-card-featured .price-card-head {
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.price-tag {
    display: inline-block;
    background: rgba(43, 168, 224, 0.1);
    color: var(--blue-dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.price-card-featured .price-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.price-card-head h3 {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--dark);
}

.price-card-featured .price-card-head h3 { color: var(--white); }

.price-sub {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.5;
    font-style: italic;
}

.price-card-featured .price-sub { color: rgba(255, 255, 255, 0.85); }

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.price-figure {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--orange);
}

.price-card-featured .price-figure {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-currency {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray);
    letter-spacing: 1px;
}

.price-card-featured .price-currency { color: rgba(255, 255, 255, 0.7); }

.price-install {
    font-size: 0.85rem;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-install i {
    color: #10B981;
    font-size: 1rem;
}

.price-card-featured .price-install { color: rgba(255, 255, 255, 0.95); }

.price-features {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    flex-grow: 1;
}

.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 0.9rem;
    color: var(--dark);
    line-height: 1.5;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-features li:last-child { border-bottom: none; }

.price-card-featured .price-features li {
    color: rgba(255, 255, 255, 0.92);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.price-features li i {
    color: var(--blue);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
}

.price-card-featured .price-features li i { color: #FFC107; }

.price-features li strong {
    color: var(--dark);
    font-weight: 700;
    margin-right: 4px;
}

.price-card-featured .price-features li strong { color: var(--white); }

.pricing-note {
    background: var(--white);
    padding: 22px 28px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-note i {
    color: var(--blue);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.pricing-note p {
    margin: 0;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-note a {
    color: var(--orange);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.pricing-note a:hover {
    color: var(--orange-dark);
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 480px;
        margin: 0 auto 50px;
    }

    .price-card-featured {
        transform: none;
    }

    .price-card-featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .pricing { padding: 70px 0; }
    .price-card { padding: 32px 24px 28px; }
    .price-figure { font-size: 2.4rem; }
    .pricing-note {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
}

/* ===========================================
   HOW WE WORK — Premium Step Slider
   =========================================== */
.why-us {
    padding: 130px 0;
    background: linear-gradient(165deg, #0A1220 0%, #14192A 60%, #1A2030 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -240px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 26, 0.18) 0%, transparent 65%);
    pointer-events: none;
}

.why-us::after {
    content: '';
    position: absolute;
    bottom: -260px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(43, 168, 224, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.why-us .container { position: relative; z-index: 2; }

.why-us .section-header h2 { color: var(--white); }
.why-us .section-header p { color: rgba(255, 255, 255, 0.7); }

.why-us .section-tag.light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
}

.st-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 0 rgba(255, 107, 26, 0.6);
    animation: stDot 2s infinite;
}

@keyframes stDot {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 26, 0.6); }
    70% { box-shadow: 0 0 0 8px rgba(255, 107, 26, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 26, 0); }
}

/* Slider container */
.process-slider {
    max-width: 920px;
    margin: 0 auto;
    position: relative;
}

.ps-stage {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    perspective: 1200px;
}

/* All slides occupy the same grid cell — stack overlap */
.ps-slide {
    grid-area: 1 / 1;
    background: linear-gradient(160deg, #14192A 0%, #1A2235 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 44px 50px 40px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 30px;
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.6s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1)), transform 0.7s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
    box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
    visibility: hidden;
}

.ps-slide::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 26, 0.16) 0%, transparent 70%);
    pointer-events: none;
}

.ps-slide.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    z-index: 2;
    visibility: visible;
}

/* Slide top: counter + decorative quote */
.ps-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.ps-counter {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.16em;
}

.ps-counter .ps-current {
    color: var(--orange-light);
    font-size: 1rem;
}

.ps-mark {
    font-size: 4rem;
    color: rgba(255, 107, 26, 0.18);
    line-height: 1;
}

/* Slide body */
.ps-body {
    position: relative;
    z-index: 1;
    align-self: center;
}

.ps-tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--orange-light);
    font-weight: 700;
    margin-bottom: 18px;
    padding: 5px 12px;
    background: rgba(255, 107, 26, 0.1);
    border: 1px solid rgba(255, 107, 26, 0.22);
    border-radius: 50px;
}

.ps-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 3.6vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 22px;
    line-height: 1.05;
    letter-spacing: -0.025em;
}

.ps-text {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
    line-height: 1.65;
    max-width: 580px;
}

/* Slide footer */
.ps-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.ps-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    box-shadow: 0 12px 24px -8px rgba(255, 107, 26, 0.5);
    flex-shrink: 0;
}

.ps-meta { display: flex; flex-direction: column; gap: 3px; }

.ps-meta-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}

.ps-meta-sub {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

/* Controls — dots + arrows */
.ps-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.ps-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.ps-btn:hover {
    background: var(--gradient);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px -8px rgba(255, 107, 26, 0.55);
}

.ps-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.ps-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.18);
    transition: all 0.3s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
    cursor: pointer;
    padding: 0;
}

.ps-dot:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.15);
}

.ps-dot.active {
    width: 36px;
    background: var(--gradient);
    border-radius: 50px;
}

/* Auto-advance progress bar */
.ps-progress {
    margin-top: 24px;
    width: 100%;
    max-width: 320px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.ps-progress-bar {
    display: block;
    width: 0%;
    height: 100%;
    background: var(--gradient);
    border-radius: 2px;
    transition: width 0.2s linear;
}

.process-slider.paused .ps-progress-bar {
    background: rgba(255, 255, 255, 0.18);
}

/* Mobile */
@media (max-width: 768px) {
    .why-us { padding: 80px 0; }
    .ps-slide {
        padding: 30px 24px 28px;
        border-radius: 22px;
        gap: 22px;
    }
    .ps-mark { font-size: 2.6rem; }
    .ps-tag { font-size: 0.66rem; padding: 4px 10px; margin-bottom: 14px; }
    .ps-title { font-size: 1.65rem; margin-bottom: 16px; }
    .ps-text { font-size: 0.95rem; line-height: 1.6; }
    .ps-footer { padding-top: 22px; gap: 14px; }
    .ps-icon { width: 46px; height: 46px; font-size: 1.05rem; }
    .ps-meta-label { font-size: 0.92rem; }
    .ps-meta-sub { font-size: 0.76rem; }
    .ps-controls { gap: 14px; margin-top: 30px; }
    .ps-btn { width: 42px; height: 42px; font-size: 0.82rem; }
    .ps-progress { max-width: 240px; margin-top: 20px; }
}

@media (max-width: 480px) {
    .ps-slide { padding: 26px 20px 22px; }
    .ps-counter { font-size: 0.74rem; }
    .ps-counter .ps-current { font-size: 0.92rem; }
}

/* ===========================================
   FAQ — Editorial, premium, intentional
   =========================================== */
.faq {
    padding: 140px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(255, 107, 26, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.faq::after {
    content: 'FAQ';
    position: absolute;
    top: 80px;
    right: 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(8rem, 18vw, 16rem);
    font-weight: 900;
    color: rgba(15, 27, 45, 0.025);
    line-height: 0.85;
    letter-spacing: -0.06em;
    pointer-events: none;
    z-index: 0;
}

.faq .container { position: relative; z-index: 1; }

/* Stacked layout: centered header → stats → 2-col FAQ grid → CTA */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
}

.faq-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-intro .section-tag {
    background: rgba(15, 27, 45, 0.05);
    color: var(--dark);
    border: 1px solid rgba(15, 27, 45, 0.08);
}

.faq-intro h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    margin-bottom: 18px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.faq-intro > p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 28px;
    font-size: 1rem;
    max-width: 580px;
}

/* Stat strip — horizontal, centered, sits inside intro */
.faq-stats {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 48px;
    padding: 18px 28px;
    margin: 0;
    border: 1px solid rgba(15, 27, 45, 0.1);
    border-radius: 50px;
    background: var(--white);
}

.faq-stat { align-items: center; text-align: center; }

.faq-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.faq-stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    letter-spacing: -0.02em;
}

.faq-stat-num .orange { color: var(--orange); }

.faq-stat-lbl {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray);
    font-weight: 600;
}

/* Refined "Got a question" CTA — slim, no heavy shadow */
.faq-cta {
    background: var(--white);
    padding: 20px 22px;
    border-radius: 14px;
    border: 1px solid rgba(15, 27, 45, 0.08);
    box-shadow: none;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    margin-top: 0;
    transition: var(--transition);
}

.faq-cta:hover {
    border-color: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -8px rgba(255, 107, 26, 0.18);
}

.faq-cta i {
    width: 42px;
    height: 42px;
    background: var(--gradient);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 6px 14px -4px rgba(255, 107, 26, 0.45);
}

.faq-cta > div { display: flex; flex-direction: column; gap: 2px; }
.faq-cta h4 { margin-bottom: 0; font-size: 0.94rem; font-weight: 700; }
.faq-cta p { color: var(--gray); font-size: 0.82rem; margin: 0; line-height: 1.4; }

.faq-cta .btn {
    padding: 10px 18px;
    font-size: 0.78rem;
    border-radius: 8px;
    letter-spacing: 0.02em;
}

/* Editorial line-divided FAQ list — single column, centered max-width */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 880px;
    margin: 0 auto 40px;
    border-top: 1px solid rgba(15, 27, 45, 0.12);
}

.faq-item {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: none;
    border-bottom: 1px solid rgba(15, 27, 45, 0.12);
    position: relative;
}

.faq-item:hover { box-shadow: none; }

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gradient);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.35s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
}

.faq-item.active::before {
    transform: scaleY(1);
}

.faq-question {
    width: 100%;
    padding: 28px 30px 28px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--dark);
    transition: var(--transition);
    letter-spacing: -0.015em;
    line-height: 1.3;
    cursor: pointer;
    background: transparent;
}

.faq-question:hover {
    color: var(--orange);
    padding-left: 30px;
}

.faq-question span:first-child { flex: 1; padding-right: 24px; }

/* New chevron-based indicator (no rotating + ) */
.faq-question i {
    color: var(--dark);
    transition: all 0.35s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
    flex-shrink: 0;
    margin-left: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(15, 27, 45, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.faq-question:hover i {
    border-color: var(--orange);
    color: var(--orange);
}

.faq-item.active .faq-question {
    color: var(--dark);
    padding-left: 30px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    background: var(--gradient);
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 6px 14px -4px rgba(255, 107, 26, 0.4);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1)), padding 0.5s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
    padding: 0 30px 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 30px 32px 30px;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.75;
    font-size: 1rem;
    max-width: 680px;
}

.faq-answer p a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-answer p a:hover { color: var(--orange-dark); }

/* Mobile adjustments */
@media (max-width: 1024px) {
    .faq-list {
        grid-template-columns: minmax(0, 1fr);
        column-gap: 0;
    }
    .faq-intro { position: static; }
    .faq::after { font-size: 8rem; top: 40px; right: 16px; }
}

@media (max-width: 768px) {
    .faq { padding: 80px 0; }
    .faq-stats { gap: 20px; padding: 18px 0; margin-bottom: 24px; }
    .faq-stat-num { font-size: 1.25rem; }
    .faq-cta {
        grid-template-columns: auto 1fr;
        row-gap: 14px;
    }
    .faq-cta .btn { grid-column: 1 / -1; justify-self: stretch; text-align: center; justify-content: center; }
    .faq-question { font-size: 1rem; padding: 22px 16px 22px 16px; }
    .faq-question:hover { padding-left: 22px; }
    .faq-item.active .faq-question { padding-left: 22px; }
    .faq-question i { width: 30px; height: 30px; font-size: 0.62rem; }
    .faq-answer { padding: 0 22px; }
    .faq-item.active .faq-answer { padding: 0 22px 24px; }
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: transparent;
}

.cta-box {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    border-radius: 30px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-orange);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
}

.cta-box::after {
    content: '\f7d8';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: -20px;
    right: 30px;
    font-size: 12rem;
    color: rgba(255, 255, 255, 0.08);
    z-index: 0;
}

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

.cta-content h2 {
    color: var(--white);
    margin-bottom: 14px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    z-index: 2;
}

/* Contact */
.contact {
    padding: 100px 0;
    background: transparent;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-content: start;
}

.contact-card {
    background: var(--white);
    padding: 28px 24px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-orange);
}

.contact-card h4 {
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--gray);
    font-size: 0.875rem;
    margin-bottom: 12px;
    line-height: 1.6;
}

.contact-card a {
    color: var(--orange);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--orange-dark);
}

/* Form */
.contact-form {
    background: var(--white);
    padding: 44px 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(15, 27, 45, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(15, 27, 45, 0.04);
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient);
}

.form-header {
    padding-bottom: 24px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--gray-light);
}

.contact-form h3 {
    margin-bottom: 8px;
    font-size: 1.55rem;
}

.form-subtitle {
    color: var(--gray);
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-subtitle i {
    color: var(--orange);
    font-size: 0.85rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 9px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark);
}

.form-group label .req {
    color: var(--orange);
    font-weight: 700;
}

.form-group label .optional {
    color: var(--gray);
    font-weight: 400;
    font-size: 0.78rem;
    font-style: italic;
}

.input-wrap {
    position: relative;
    display: block;
}

.input-icon {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 0.95rem;
    pointer-events: none;
    transition: var(--transition);
    z-index: 2;
}

.select-chevron {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 0.8rem;
    pointer-events: none;
    z-index: 2;
    transition: var(--transition);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 16px 15px 46px;
    border: 1.5px solid var(--gray-light);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--dark);
    transition: var(--transition);
    background: #FAFBFC;
    appearance: none;
    -webkit-appearance: none;
}

.form-group select {
    cursor: pointer;
    padding-right: 44px;
}

.form-group textarea {
    padding: 15px 18px;
    resize: vertical;
    min-height: 110px;
    line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #A5ADBB;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 107, 26, 0.08);
}

.input-wrap:focus-within .input-icon,
.input-wrap:focus-within .select-chevron {
    color: var(--orange);
}

.form-submit {
    margin-top: 8px;
    padding: 18px 32px;
    font-size: 1rem;
    border-radius: 12px;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.form-submit i {
    transition: transform 0.3s ease;
}

.form-submit:hover i {
    transform: translateX(4px) rotate(-10deg);
}

.form-note {
    margin-top: 18px;
    text-align: center;
    color: var(--gray);
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note i {
    color: #10B981;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 20px 0 24px;
    line-height: 1.7;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 4px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gradient);
    transform: translateY(-4px);
    box-shadow: var(--shadow-orange);
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--orange);
    padding-left: 6px;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--orange);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ===========================================
   ELEVATION: Hero Scroll Cue
   =========================================== */
.hero-scroll-cue {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.hero-scroll-cue:hover { color: #fff; transform: translateX(-50%) translateY(2px); }

.hsc-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.7) 30%, var(--orange) 100%);
    position: relative;
    overflow: hidden;
}

.hsc-line::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, transparent, #FFFFFF);
    animation: scrollCue 2.2s var(--ease-out) infinite;
}

@keyframes scrollCue {
    0% { top: -50%; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.hsc-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-scroll-cue { display: none; }
}

/* ===========================================
   ELEVATION: About Image (replace fake gradient)
   =========================================== */
.about-image {
    position: relative;
    aspect-ratio: 4 / 5;
    max-width: 480px;
}

.about-img-frame {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 80px -30px rgba(15, 27, 45, 0.45);
    transform: translateY(0);
    transition: transform 0.6s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
}

.about-image:hover .about-img-frame {
    transform: translateY(-6px);
}

.about-img-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
    display: block;
    transition: transform 1.4s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
}

.about-image:hover .about-img-photo {
    transform: scale(1.05);
}

.about-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        transparent 0%,
        transparent 40%,
        rgba(15, 27, 45, 0.4) 100%);
    pointer-events: none;
}

.about-img-caption {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 600;
    padding: 10px 14px;
    background: rgba(15, 27, 45, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.aic-num {
    color: var(--orange-light);
    font-weight: 700;
}

.aic-label {
    flex: 1;
}

.about-experience {
    position: absolute;
    top: -30px;
    right: -30px;
    z-index: 3;
    background: var(--white);
    padding: 22px 26px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 20px 50px -10px rgba(15, 27, 45, 0.25);
    border: 1px solid var(--gray-light);
}

.about-experience h3 {
    font-size: 2.4rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.03em;
}

.about-experience h3 sup {
    font-size: 0.5em;
    -webkit-text-fill-color: var(--orange);
    vertical-align: super;
}

.about-experience p {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--dark);
    font-weight: 700;
    line-height: 1.35;
}

@media (max-width: 1024px) {
    .about-image {
        margin: 0 auto;
        max-width: 520px;
        width: 100%;
        min-width: 0;
        aspect-ratio: 16 / 11;
    }
    .about-experience {
        top: auto;
        bottom: -28px;
        right: 16px;
        padding: 18px 22px;
    }
    .about-experience h3 { font-size: 2rem; }
}

@media (max-width: 768px) {
    .about-image {
        aspect-ratio: 4 / 3;
        max-width: 100%;
        margin-bottom: 40px;
    }
    .about-experience {
        padding: 14px 18px;
        right: 12px;
        bottom: -22px;
    }
    .about-experience h3 { font-size: 1.6rem; }
}

/* ===========================================
   ELEVATION: Cinematic CTA Section
   =========================================== */
.cta-cinema {
    position: relative;
    padding: 130px 0;
    overflow: hidden;
    background: #0A1220;
    color: var(--white);
}

.cta-cinema-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-cinema-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
    filter: saturate(0.95) brightness(0.9);
    transform: scale(1);
    transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-cinema[data-reveal].in .cta-cinema-img {
    transform: scale(1.05);
}

.cta-cinema-veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg,
            rgba(8, 14, 26, 0.96) 0%,
            rgba(8, 14, 26, 0.86) 35%,
            rgba(8, 14, 26, 0.55) 70%,
            rgba(8, 14, 26, 0.4) 100%),
        linear-gradient(180deg,
            rgba(8, 14, 26, 0.6) 0%,
            transparent 30%,
            transparent 70%,
            rgba(8, 14, 26, 0.7) 100%);
}

.cta-cinema-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-cinema-eye {
    display: inline-block;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--orange-light);
    font-weight: 700;
    margin-bottom: 24px;
    padding-left: 26px;
    position: relative;
}

.cta-cinema-eye::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 1px;
    background: var(--orange);
}

.cta-cinema-title {
    font-size: clamp(2.6rem, 5.5vw, 4.8rem);
    font-weight: 800;
    line-height: 1;
    color: var(--white);
    margin-bottom: 22px;
    letter-spacing: -0.035em;
}

.cta-cinema-accent {
    font-style: italic;
    background: linear-gradient(135deg, #FFC976 0%, #FF8B3D 50%, #E65500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.cta-cinema-sub {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.1rem;
    line-height: 1.65;
    max-width: 500px;
}

.cta-cinema-actions {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: flex-end;
}

.cta-cinema-phone {
    display: flex;
    flex-direction: column;
    text-align: right;
    color: var(--white);
    transition: var(--transition);
}

.cta-cinema-phone:hover { color: var(--orange-light); }
.cta-cinema-phone:hover .ccp-num { color: var(--orange-light); }

.ccp-label {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    margin-bottom: 6px;
}

.ccp-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.025em;
    transition: var(--transition);
}

.cta-cinema-buttons {
    display: flex;
    gap: 12px;
}

@media (max-width: 1024px) {
    .cta-cinema { padding: 90px 0; }
    .cta-cinema-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .cta-cinema-actions { align-items: flex-start; }
    .cta-cinema-phone { text-align: left; }
}

@media (max-width: 768px) {
    .cta-cinema { padding: 70px 0; }
    .ccp-num { font-size: 1.8rem; }
    .cta-cinema-buttons { flex-direction: column; width: 100%; }
    .cta-cinema-buttons .btn-hero { width: 100%; justify-content: center; }
}

/* ===========================================
   ELEVATION: Sticky Mobile CTA Bar
   =========================================== */
.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    display: none;
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 14px env(safe-area-inset-bottom, 10px);
    gap: 10px;
    box-shadow: 0 -8px 30px -10px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-cta-bar.visible {
    transform: translateY(0);
}

.mcb-call,
.mcb-wa {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 12px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.92rem;
    transition: var(--transition);
}

.mcb-call {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 14px -2px rgba(255, 107, 26, 0.5);
}

.mcb-call i { font-size: 1.1rem; }

.mcb-call span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.mcb-call small {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
    opacity: 0.85;
}

.mcb-call strong {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.mcb-wa {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 14px -2px rgba(37, 211, 102, 0.5);
}

.mcb-wa i { font-size: 1.3rem; }

/* Solo bar — single full-width WhatsApp button, larger and centered */
.mobile-cta-bar-solo .mcb-wa {
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 6px 18px -4px rgba(37, 211, 102, 0.55);
}

.mobile-cta-bar-solo .mcb-wa i { font-size: 1.45rem; }

@media (max-width: 768px) {
    /* Mobile uses the small floating circle, not the full-width bar */
    .mobile-cta-bar { display: none !important; }

    /* Show the floating WhatsApp button on mobile as a compact icon-only circle */
    .floating-stack {
        display: flex;
        bottom: 18px;
        right: 18px;
        gap: 10px;
    }

    .floating-btn {
        width: 54px;
        height: 54px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
        gap: 0;
    }

    .floating-btn span {
        display: none;
    }

    .floating-whatsapp i {
        font-size: 1.6rem;
    }

    body { padding-bottom: 0; }
}

/* ===========================================
   ELEVATION: Scroll Reveal helper
   =========================================== */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].in {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================================
   ORIGINAL Floating Buttons Stack
   =========================================== */
/* ===========================================
   SEPTIC SYSTEMS PAGE (septic-systems.html)
   =========================================== */

/* Inner page body — softer background */
.page-body {
    background: var(--page-bg);
}

/* Page Hero (smaller than home hero) */
.page-hero {
    position: relative;
    background: linear-gradient(165deg, #0A1220 0%, #14192A 60%, #1A2030 100%);
    color: var(--white);
    padding: 86px 0 22px;
    overflow: hidden;
}

/* Animated background layer */
.page-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.phb-grid {
    position: absolute;
    inset: -2px;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.phb-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.55;
    animation: phbOrbFloat 18s ease-in-out infinite alternate;
}

.phb-orb-1 {
    width: 520px;
    height: 520px;
    top: -180px;
    right: -160px;
    background: radial-gradient(circle, rgba(255, 107, 26, 0.55) 0%, transparent 65%);
    animation-duration: 16s;
}

.phb-orb-2 {
    width: 520px;
    height: 520px;
    bottom: -200px;
    left: -160px;
    background: radial-gradient(circle, rgba(43, 168, 224, 0.45) 0%, transparent 65%);
    animation-duration: 20s;
    animation-delay: -6s;
}

.phb-orb-3 {
    width: 340px;
    height: 340px;
    top: 30%;
    left: 45%;
    background: radial-gradient(circle, rgba(255, 107, 26, 0.18) 0%, transparent 65%);
    animation-duration: 24s;
    animation-delay: -10s;
    opacity: 0.4;
}

@keyframes phbOrbFloat {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(40px, -30px) scale(1.06); }
    100% { transform: translate(-30px, 40px) scale(0.96); }
}

.phb-noise {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    mix-blend-mode: overlay;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 3px 3px;
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1240px;
}

.page-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    transition: all 0.25s ease;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.page-back:hover {
    color: var(--orange-light);
    transform: translateX(-3px);
}

.page-back i { font-size: 0.78rem; transition: transform 0.25s ease; }
.page-back:hover i { transform: translateX(-3px); }

.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 36px;
    align-items: center;
    margin-bottom: 14px;
}

.page-hero-content { min-width: 0; }

.page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 18px 8px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50px;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.7rem, 3.4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.025em;
    color: var(--white);
    margin: 10px 0 12px;
}

.page-title-accent {
    background: linear-gradient(135deg, #FFB347 0%, #FF6B1A 50%, #E65500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    font-weight: 700;
}

.page-lede {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
    max-width: 520px;
    margin-bottom: 18px;
}

/* Animated dot on the Resource Guide pill */
.page-eyebrow-dot {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 4px rgba(255, 107, 26, 0.18);
}

.page-eyebrow-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid var(--orange);
    animation: pageDotPulse 2.4s ease-out infinite;
}

@keyframes pageDotPulse {
    0%   { transform: scale(0.6); opacity: 0.9; }
    100% { transform: scale(2.4); opacity: 0; }
}

/* Hero actions row */
.page-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px 22px;
    margin-top: 8px;
}

.page-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 22px;
    background: linear-gradient(135deg, #FF8347 0%, #FF6B1A 55%, #E65500 100%);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: 0 14px 30px -14px rgba(255, 107, 26, 0.65);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 44px -18px rgba(255, 107, 26, 0.8);
    color: var(--white);
}

.page-hero-cta i {
    transition: transform 0.35s ease;
}

.page-hero-cta:hover i { transform: translateY(3px); }

.page-hero-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    font-weight: 500;
    transition: color 0.25s ease;
}

.page-hero-link i {
    color: var(--orange);
    font-size: 0.95rem;
}

.page-hero-link:hover { color: var(--white); }

/* Right-side "Inside this guide" card */
.page-hero-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.025) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 16px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
}

.page-hero-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 26, 0.6), transparent);
    pointer-events: none;
}

.phc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.phc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.phc-eyebrow i {
    color: var(--orange);
    font-size: 0.78rem;
}

.phc-count {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--orange);
    background: rgba(255, 107, 26, 0.12);
    border: 1px solid rgba(255, 107, 26, 0.3);
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: 700;
}

.phc-tile {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--white);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    overflow: hidden;
}

.phc-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 107, 26, 0.06) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.phc-tile:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 107, 26, 0.35);
    transform: translateY(-2px);
    color: var(--white);
}

.phc-tile:hover::before { opacity: 1; }

.phc-tile-num {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: linear-gradient(135deg, #FF8347, #E65500);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 8px 20px -10px rgba(255, 107, 26, 0.7);
}

.phc-tile-body {
    flex: 1;
    min-width: 0;
}

.phc-tile-eye {
    display: block;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 4px;
}

.phc-tile-body h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 2px;
    line-height: 1.25;
}

.phc-tile-body p {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    line-height: 1.45;
}

.phc-tile-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.phc-tile-count {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.phc-tile-arrow {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.phc-tile:hover .phc-tile-arrow {
    color: var(--orange);
    transform: translateX(4px);
}

.phc-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 107, 26, 0.06);
    border: 1px solid rgba(255, 107, 26, 0.16);
    border-radius: 9px;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 500;
    margin-top: 0;
}

.phc-pulse {
    position: relative;
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 26, 0.2);
}

.phc-pulse::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1px solid var(--orange);
    animation: pageDotPulse 2.4s ease-out infinite;
}

/* Inline stat pill row */
.page-meta-bar {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.pmb-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 6px;
}

.pmb-item:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    margin-left: 10px;
}

.pmb-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 7px;
    background: linear-gradient(135deg, rgba(255, 107, 26, 0.22), rgba(255, 107, 26, 0.08));
    border: 1px solid rgba(255, 107, 26, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 0.7rem;
}

.pmb-text {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    min-width: 0;
}

.pmb-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.01em;
}

.pmb-num sup {
    font-size: 0.5em;
    color: var(--orange);
    vertical-align: super;
}

.pmb-lbl {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

/* Scroll-to-content cue */
.page-hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 44px auto 0;
    width: max-content;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 600;
    transition: color 0.25s ease, transform 0.25s ease;
}

.page-hero-scroll:hover {
    color: var(--white);
    transform: translateY(-3px);
}

.phs-mouse {
    width: 22px;
    height: 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 14px;
    position: relative;
    display: block;
}

.phs-dot {
    position: absolute;
    top: 6px;
    left: 50%;
    width: 3px;
    height: 6px;
    background: var(--orange);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: phsScroll 1.6s ease-in-out infinite;
}

@keyframes phsScroll {
    0%   { transform: translate(-50%, 0); opacity: 1; }
    70%  { transform: translate(-50%, 14px); opacity: 0; }
    100% { transform: translate(-50%, 14px); opacity: 0; }
}

/* Page content layout: sticky TOC + main */
.page-content {
    padding: 90px 0 120px;
    background: transparent;
}

.page-content-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 70px;
    align-items: start;
}

/* Table of contents (sticky) */
.toc {
    position: sticky;
    top: 110px;
    align-self: start;
}

.toc-inner {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 24px 22px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--gray-light);
    border-radius: 16px;
    box-shadow: 0 12px 30px -20px rgba(15, 27, 45, 0.18);
}

.toc-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gray);
    font-weight: 700;
    margin-bottom: 14px;
}

.toc-group-label {
    margin: 14px 0 6px;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--orange);
    font-weight: 700;
}

.toc-group-label:first-of-type {
    margin-top: 0;
}

.toc ul {
    display: flex;
    flex-direction: column;
    gap: 2px;
    list-style: none;
}

.toc ul li a {
    display: block;
    padding: 7px 10px;
    font-size: 0.82rem;
    color: var(--dark);
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.25s ease;
    border-left: 2px solid transparent;
}

.toc ul li a:hover {
    background: rgba(255, 107, 26, 0.06);
    color: var(--orange);
    border-left-color: var(--orange);
    padding-left: 14px;
}

.toc-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    padding: 14px 16px;
    background: var(--dark);
    color: var(--white);
    border-radius: 10px;
    transition: all 0.25s ease;
}

.toc-cta:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

.toc-cta i {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toc-cta span {
    display: flex;
    flex-direction: column;
    gap: 1px;
    font-size: 0.78rem;
    line-height: 1.3;
}

.toc-cta strong {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
}

.toc-cta:hover strong { color: var(--white); }

/* Main content */
.page-main {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 760px;
}

/* Category block */
.cat-block {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.cat-head {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-light);
}

.cat-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    box-shadow: 0 10px 24px -8px rgba(255, 107, 26, 0.5);
    flex-shrink: 0;
}

.cat-head > div { flex: 1; }

.cat-eye {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 8px;
}

.cat-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.025em;
    margin-bottom: 10px;
    line-height: 1.1;
}

.cat-sub {
    color: var(--gray);
    font-size: 0.98rem;
    line-height: 1.65;
    max-width: 580px;
}

/* Individual system article */
.sys {
    scroll-margin-top: 100px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sys-head {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.sys-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gray);
    letter-spacing: 0.06em;
}

.sys-cat {
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    color: var(--orange);
    background: rgba(255, 107, 26, 0.1);
    padding: 4px 10px;
    border-radius: 50px;
    border: 1px solid rgba(255, 107, 26, 0.25);
}

.sys h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.6rem, 2.6vw, 2rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 4px;
}

.sys p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 720px;
}

.sys-visual {
    margin: 14px 0 0;
    background: var(--white);
    border-radius: 14px;
    border: 1px solid var(--gray-light);
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 30px -20px rgba(15, 27, 45, 0.15);
}

/* Real image — fills the frame perfectly, no crop, no whitespace */
.sys-visual img {
    width: 100%;
    height: auto;
    display: block;
}

/* Fallback icon + caption — hidden when image loads */
.sys-visual-fallback,
.sys-visual .sys-visual-cap {
    display: none;
}

/* If image failed to load (no-img class added by onerror), show dark gradient + icon + caption */
.sys-visual.no-img {
    aspect-ratio: 16 / 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #0F1B2D 0%, #1A2942 100%);
    border-color: rgba(15, 27, 45, 0.08);
    gap: 14px;
}

.sys-visual.no-img::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 26, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.sys-visual.no-img img { display: none; }

.sys-visual.no-img .sys-visual-fallback {
    display: block;
    font-size: 3.2rem;
    color: rgba(255, 107, 26, 0.7);
    position: relative;
    z-index: 1;
}

.sys-visual.no-img .sys-visual-cap {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

/* Page Final CTA */
.page-final-cta {
    background: linear-gradient(165deg, #0A1220 0%, #14192A 100%);
    padding: 100px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-final-cta::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 26, 0.18) 0%, transparent 60%);
    pointer-events: none;
}

.pfc-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
}

.pfc-eye {
    display: inline-block;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--orange-light);
    font-weight: 700;
    margin-bottom: 22px;
    padding-left: 26px;
    position: relative;
}

.pfc-eye::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 1px;
    background: var(--orange);
}

.pfc-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
    color: var(--white);
}

.pfc-accent {
    background: linear-gradient(135deg, #FFB347 0%, #FF6B1A 50%, #E65500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    font-weight: 700;
}

.pfc-sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 540px;
}

.pfc-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
}

.pfc-actions .btn-hero {
    justify-content: center;
}

/* Mobile */
@media (max-width: 1024px) {
    .page-hero { padding: 140px 0 80px; }

    .page-hero-grid {
        grid-template-columns: 1fr;
        gap: 44px;
        margin-bottom: 44px;
    }

    .page-meta-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        padding: 22px;
    }

    .page-hero-scroll { display: none; }

    .page-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .toc {
        position: static;
    }

    .toc-inner {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 14px;
    }

    .toc ul {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .toc ul li a {
        padding: 6px 12px;
        border: 1px solid var(--gray-light);
        border-left: 1px solid var(--gray-light);
        border-radius: 50px;
    }

    .toc ul li a:hover {
        padding-left: 12px;
        border-color: var(--orange);
    }

    .toc-cta { flex-basis: 100%; }

    .pfc-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .page-hero { padding: 130px 0 70px; }
    .page-meta-bar { grid-template-columns: 1fr 1fr; gap: 16px; padding: 18px; }
    .pmb-icon { width: 38px; height: 38px; font-size: 1rem; }
    .pmb-num { font-size: 1.4rem; }
    .pmb-lbl { font-size: 0.62rem; }
    .page-hero-card { padding: 22px; gap: 14px; }
    .phc-tile { padding: 14px; gap: 12px; }
    .phc-tile-num { width: 38px; height: 38px; font-size: 1.05rem; }
    .phc-tile-body h3 { font-size: 0.92rem; }
    .phc-tile-count { font-size: 1.2rem; }
    .page-hero-actions { gap: 14px; }
    .page-hero-cta { width: 100%; justify-content: center; }
    .page-hero-link { width: 100%; justify-content: center; }
    .page-content { padding: 60px 0 80px; }
    .page-main { gap: 60px; }
    .cat-block { gap: 36px; }
    .cat-head { gap: 16px; padding-bottom: 24px; }
    .cat-num { width: 48px; height: 48px; font-size: 1.3rem; }
    .sys h3 { font-size: 1.4rem; }
    .sys p { font-size: 0.95rem; }
    .sys-visual i { font-size: 2.4rem; }
    .page-final-cta { padding: 70px 0; }
    .pfc-actions .btn-hero { width: 100%; }

    /* TOC collapse on mobile — hide the long lists, keep just CTA */
    .toc-inner { padding: 18px; }
    .toc-label { margin-bottom: 8px; }
    .toc-group-label { font-size: 0.66rem; }
    .toc ul li a { font-size: 0.78rem; padding: 6px 10px; }
}

/* ===========================================
   ORIGINAL Floating Buttons Stack
   =========================================== */
/* Floating Buttons Stack */
.floating-stack {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-end;
}

.floating-btn {
    background: var(--gradient);
    color: var(--white);
    padding: 16px 24px;
    border-radius: 50px;
    box-shadow: var(--shadow-orange);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 26, 0.5);
}

.floating-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    animation: pulse-green 2s infinite;
}

.floating-whatsapp i {
    font-size: 1.4rem;
}

.floating-whatsapp:hover {
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.55);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(255, 107, 26, 0.35); }
    50% { box-shadow: 0 10px 30px rgba(255, 107, 26, 0.6), 0 0 0 10px rgba(255, 107, 26, 0); }
}

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.65), 0 0 0 10px rgba(37, 211, 102, 0); }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content,
    .about-grid,
    .faq-grid,
    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 60px;
    }
    .about-grid > *, .faq-grid > *, .contact-grid > * { min-width: 0; }

    .hero-visual {
        height: 450px;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .cta-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 50px 30px;
    }

    .cta-buttons {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        justify-content: center;
        font-size: 0.78rem;
    }

    .top-bar-left, .top-bar-right {
        gap: 14px;
    }

    /* Mobile nav: logo centered, hamburger pinned right, menus slide out from top */
    .nav-container {
        display: flex !important;
        align-items: center;
        justify-content: center;
        position: relative;
        grid-template-columns: none;
    }

    .nav-menu {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 14px;
        box-shadow: var(--shadow-md);
        transform: translateY(-150%);
        transition: var(--transition);
        justify-content: flex-start !important;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-menu-left,
    .nav-menu-right {
        top: auto;
    }

    .logo-link {
        justify-content: center;
        margin: 0 auto;
    }

    .mobile-toggle {
        display: flex;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .hero {
        padding-bottom: 0;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat h3 {
        font-size: 1.8rem;
    }

    .hero-visual {
        height: 400px;
    }

    .hero-card {
        width: 200px;
        padding: 20px;
    }

    .services-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr 1fr;
    }

    .contact-form {
        padding: 30px 24px;
    }

    .floating-btn span {
        display: none;
    }

    .floating-btn {
        padding: 18px;
        border-radius: 50%;
        width: 56px;
        height: 56px;
        justify-content: center;
    }

    .floating-stack {
        display: flex;
        bottom: 18px;
        right: 18px;
        gap: 12px;
    }

    .trust-items {
        gap: 16px;
    }

    .trust-item {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }

    .container {
        padding: 0 18px;
    }

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

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}

/* ===========================================
   QUOTE MODAL
   Full-screen overlay form, opens on any CTA click
   =========================================== */
.quote-modal [hidden] { display: none !important; }

.quote-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quote-modal.is-open {
    display: flex;
    opacity: 1;
}

.qm-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 14, 28, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
}

.qm-shell {
    position: relative;
    width: 100%;
    max-width: 720px;
    max-height: calc(100vh - 48px);
    background: linear-gradient(165deg, #0F1A2D 0%, #14192A 60%, #1A2030 100%);
    color: var(--white);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 50px 100px -30px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 107, 26, 0.06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px) scale(0.98);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.quote-modal.is-open .qm-shell {
    transform: translateY(0) scale(1);
}

/* Animated background inside the shell */
.qm-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.qm-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    animation: qmOrbFloat 18s ease-in-out infinite alternate;
}

.qm-orb-1 {
    width: 420px;
    height: 420px;
    top: -160px;
    right: -120px;
    background: radial-gradient(circle, rgba(255, 107, 26, 0.55) 0%, transparent 65%);
}

.qm-orb-2 {
    width: 380px;
    height: 380px;
    bottom: -160px;
    left: -120px;
    background: radial-gradient(circle, rgba(43, 168, 224, 0.45) 0%, transparent 65%);
    animation-duration: 22s;
    animation-delay: -8s;
}

@keyframes qmOrbFloat {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -20px) scale(1.05); }
}

.qm-grid {
    position: absolute;
    inset: -1px;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 85%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 85%);
}

/* Header strip */
.qm-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.18);
}

.qm-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px 8px 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.qm-back i {
    font-size: 0.75rem;
    transition: transform 0.25s ease;
}

.qm-back:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.qm-back:hover i { transform: translateX(-3px); }

.qm-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.qm-dot {
    position: relative;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 26, 0.18);
}

.qm-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1px solid var(--orange);
    animation: pageDotPulse 2.4s ease-out infinite;
}

.qm-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.78);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    font-size: 0.95rem;
}

.qm-close:hover {
    background: rgba(255, 107, 26, 0.18);
    color: var(--orange);
    transform: rotate(90deg);
}

/* Body — intro + form */
.qm-body {
    position: relative;
    z-index: 1;
    padding: 28px 32px 28px;
    overflow-y: auto;
    flex: 1;
}

.qm-intro {
    text-align: center;
    margin-bottom: 24px;
}

.qm-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.45rem, 2.6vw, 1.85rem);
    font-weight: 800;
    color: var(--white);
    margin: 0 0 8px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.qm-sub {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0 0 16px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.qm-trust {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 14px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
}

.qm-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 500;
}

.qm-trust-item i {
    color: var(--orange);
    font-size: 0.78rem;
}

/* Selected service pill (shown when CTA had a specific service) */
.qm-selected {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 107, 26, 0.08);
    border: 1px solid rgba(255, 107, 26, 0.25);
    border-radius: 12px;
    margin-bottom: 16px;
}

.qm-sel-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--orange);
    font-weight: 700;
    flex-shrink: 0;
}

.qm-sel-value {
    font-size: 0.88rem;
    color: var(--white);
    font-weight: 500;
    line-height: 1.4;
}

/* Form */
.qm-form { display: flex; flex-direction: column; gap: 14px; }

.qm-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.qm-field { display: flex; flex-direction: column; gap: 6px; }

.qm-field label {
    font-size: 0.74rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.qm-field .req { color: var(--orange); }
.qm-field .optional { color: rgba(255, 255, 255, 0.45); font-weight: 400; text-transform: none; letter-spacing: 0; }

.qm-input-wrap { position: relative; }

.qm-input-icon {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    pointer-events: none;
    transition: color 0.2s ease;
}

.qm-form input,
.qm-form select,
.qm-form textarea {
    width: 100%;
    padding: 13px 16px 13px 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-family: inherit;
    font-size: 0.92rem;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.qm-form textarea {
    padding: 13px 16px;
    resize: vertical;
    min-height: 96px;
}

.qm-form select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.qm-form select option {
    background: #14192A;
    color: var(--white);
}

.qm-form input::placeholder,
.qm-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.qm-form input:focus,
.qm-form select:focus,
.qm-form textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 0 3px rgba(255, 107, 26, 0.18);
}

.qm-form input:focus ~ .qm-input-icon,
.qm-form select:focus ~ .qm-input-icon {
    color: var(--orange);
}

.qm-input-wrap:focus-within .qm-input-icon { color: var(--orange); }

.qm-select-chevron {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.78rem;
    pointer-events: none;
}

/* Action row */
.qm-actions {
    display: flex;
    gap: 12px;
    margin-top: 6px;
}

.qm-cancel {
    flex-shrink: 0;
    padding: 13px 22px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.qm-cancel:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
}

.qm-submit {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 26px;
    background: linear-gradient(135deg, #FF8347 0%, #FF6B1A 55%, #E65500 100%);
    color: var(--white);
    border: 0;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 14px 30px -14px rgba(255, 107, 26, 0.7);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.qm-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 44px -18px rgba(255, 107, 26, 0.85);
    color: var(--white);
}

.qm-submit i { transition: transform 0.25s ease; }
.qm-submit:hover i { transform: translateX(3px); }

.qm-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.74rem;
    margin: 6px 0 0;
}

.qm-note i {
    color: rgba(255, 107, 26, 0.6);
    margin-right: 4px;
}

/* Success state */
.qm-success {
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.qm-success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10B981, #059669);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 20px 44px -16px rgba(16, 185, 129, 0.6);
}

.qm-success h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 4px 0 0;
    color: var(--white);
}

.qm-success p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: 420px;
    margin: 0;
}

.qm-success-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

/* When modal is open, lock body scroll */
body.modal-open {
    overflow: hidden;
}

/* Mobile */
@media (max-width: 640px) {
    .quote-modal { padding: 0; align-items: stretch; }
    .qm-shell { max-width: 100%; max-height: 100vh; border-radius: 0; height: 100vh; }
    .qm-body { padding: 22px 18px; }
    .qm-header { padding: 14px 16px; }
    .qm-row { grid-template-columns: 1fr; }
    .qm-actions { flex-direction: column-reverse; }
    .qm-cancel, .qm-submit { width: 100%; }
    .qm-back span { display: inline; }
    .qm-trust { gap: 4px 10px; padding: 6px 12px; }
    .qm-trust-item { font-size: 0.68rem; }
    .qm-title { font-size: 1.35rem; }
    .qm-sub { font-size: 0.85rem; }
}

/* ===========================================
   QUOTE PAGE — dedicated form page
   =========================================== */

/* Force [hidden] to win over our display rules */
.quote-selected[hidden],
.quote-summary[hidden],
.quote-success[hidden],
.qsum-item-note[hidden],
.qs-success-meta[hidden] { display: none !important; }

/* Hero / banner */
.quote-hero {
    position: relative;
    background: linear-gradient(165deg, #0A1220 0%, #14192A 60%, #1A2030 100%);
    color: var(--white);
    padding: 96px 0 36px;
    overflow: hidden;
}

.quote-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.qhb-grid {
    position: absolute;
    inset: -2px;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.qhb-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
    animation: phbOrbFloat 18s ease-in-out infinite alternate;
}

.qhb-orb-1 {
    width: 520px;
    height: 520px;
    top: -180px;
    right: -160px;
    background: radial-gradient(circle, rgba(255, 107, 26, 0.55) 0%, transparent 65%);
}

.qhb-orb-2 {
    width: 460px;
    height: 460px;
    bottom: -180px;
    left: -140px;
    background: radial-gradient(circle, rgba(43, 168, 224, 0.45) 0%, transparent 65%);
    animation-duration: 22s;
    animation-delay: -8s;
}

.quote-hero-inner {
    position: relative;
    z-index: 2;
}

.quote-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px 8px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    cursor: pointer;
    margin-bottom: 22px;
    transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease;
    font-family: inherit;
}

.quote-back i {
    font-size: 0.72rem;
    transition: transform 0.25s ease;
}

.quote-back:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.quote-back:hover i { transform: translateX(-3px); }

.quote-hero-text {
    max-width: 760px;
}

.quote-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px 7px 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    margin-bottom: 14px;
}

.qe-dot {
    position: relative;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 26, 0.18);
}

.qe-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1px solid var(--orange);
    animation: pageDotPulse 2.4s ease-out infinite;
}

.quote-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.7rem, 3.4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.025em;
    color: var(--white);
    margin: 0 0 12px;
}

.quote-title .accent {
    background: linear-gradient(135deg, #FFB347 0%, #FF6B1A 50%, #E65500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    font-weight: 700;
}

.quote-sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.98rem;
    line-height: 1.6;
    margin: 0;
    max-width: 620px;
}

/* Selected pill — shows what the visitor asked for */
.quote-selected {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    margin-top: 24px;
    background: rgba(255, 107, 26, 0.08);
    border: 1px solid rgba(255, 107, 26, 0.3);
    border-radius: 14px;
    max-width: 780px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.qs-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #FF8347, #E65500);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: 0 8px 20px -10px rgba(255, 107, 26, 0.7);
}

.qs-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.qs-label {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--orange);
    font-weight: 700;
}

.qs-value {
    font-size: 0.92rem;
    color: var(--white);
    font-weight: 500;
    line-height: 1.4;
}

.qs-clear {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.qs-clear:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    transform: rotate(90deg);
}

/* Rich order summary card (shown when item + price are present) */
.quote-summary {
    margin-top: 24px;
    max-width: 780px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.025) 100%);
    border: 1px solid rgba(255, 107, 26, 0.3);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 24px 50px -28px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    position: relative;
}

.quote-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.qsum-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255, 107, 26, 0.08);
    border-bottom: 1px solid rgba(255, 107, 26, 0.18);
}

.qsum-eye {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--orange);
    font-weight: 700;
}

.qsum-eye i { font-size: 0.78rem; }

.qsum-clear {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.65);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.qsum-clear:hover {
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
    transform: rotate(90deg);
}

.qsum-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
}

.qsum-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.qsum-item-label,
.qsum-price-label {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 700;
}

.qsum-item-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.qsum-item-note {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
    line-height: 1.4;
}

.qsum-divider {
    width: 1px;
    align-self: stretch;
    background: rgba(255, 255, 255, 0.1);
    margin: 4px 0;
}

.qsum-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: right;
    min-width: 0;
}

.qsum-price-label { text-align: right; }

.qsum-price-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFB347 0%, #FF6B1A 50%, #E65500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.015em;
    line-height: 1.1;
    white-space: nowrap;
}

.qsum-foot {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: rgba(0, 0, 0, 0.18);
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.qsum-foot i {
    color: var(--orange);
    font-size: 0.78rem;
    flex-shrink: 0;
}

/* Form + Aside section */
.quote-section {
    background: linear-gradient(180deg, #F4F7FB 0%, #FFFFFF 100%);
    padding: 60px 0 100px;
}

.quote-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.8fr);
    gap: 40px;
    align-items: start;
    margin-top: -56px;
}

/* Form wrap (left column, white card) */
.quote-form-wrap {
    background: var(--white);
    border-radius: 22px;
    padding: 36px 36px 30px;
    box-shadow: 0 30px 80px -30px rgba(15, 27, 45, 0.18), 0 1px 0 rgba(15, 27, 45, 0.04);
    border: 1px solid rgba(15, 27, 45, 0.04);
}

.qf-step-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-light);
}

.qf-step-label:not(:first-child) {
    margin-top: 18px;
}

.qf-step-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--orange);
    letter-spacing: 0.04em;
}

.qf-step-text {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
    color: var(--gray-dark);
}

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

.qf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.qf-field { display: flex; flex-direction: column; gap: 6px; }

.qf-field label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.qf-field .req { color: var(--orange); }
.qf-field .optional { color: var(--gray); font-weight: 400; text-transform: none; letter-spacing: 0; }

.qf-input-wrap { position: relative; }

.qf-input-icon {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 0.9rem;
    pointer-events: none;
    transition: color 0.2s ease;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 14px 16px 14px 44px;
    background: var(--gray-bg, #F7F9FC);
    border: 1.5px solid var(--gray-light);
    border-radius: 12px;
    color: var(--dark);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.quote-form textarea {
    padding: 14px 16px;
    resize: vertical;
    min-height: 110px;
}

.quote-form select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
    color: var(--gray);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 107, 26, 0.12);
}

.qf-input-wrap:focus-within .qf-input-icon { color: var(--orange); }

.qf-select-chevron {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 0.8rem;
    pointer-events: none;
}

/* ===== Site Visit Consultation toggle + fee block ===== */
.qf-toggle {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: var(--gray-bg, #F7F9FC);
    border: 1.5px solid var(--gray-light);
    border-radius: 14px;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.qf-toggle:hover {
    border-color: var(--gray);
}

.qf-toggle input[type="checkbox"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.qf-toggle-track {
    flex-shrink: 0;
    position: relative;
    width: 42px;
    height: 24px;
    background: var(--gray-light);
    border-radius: 24px;
    transition: background 0.25s ease;
    margin-top: 2px;
}

.qf-toggle-thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.qf-toggle input:checked ~ .qf-toggle-track {
    background: var(--orange);
}

.qf-toggle input:checked ~ .qf-toggle-track .qf-toggle-thumb {
    transform: translateX(18px);
}

.qf-toggle:has(input:checked) {
    background: rgba(255, 107, 26, 0.04);
    border-color: rgba(255, 107, 26, 0.35);
}

.qf-toggle-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.qf-toggle-copy strong {
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 700;
    line-height: 1.3;
}

.qf-toggle-copy small {
    font-size: 0.78rem;
    color: var(--gray-dark);
    line-height: 1.5;
}

/* Premium fee display card */
.qf-fee {
    position: relative;
    padding: 22px 24px;
    background: linear-gradient(135deg, #FFF6EE 0%, #FFEFE0 100%);
    border: 1.5px solid rgba(255, 107, 26, 0.4);
    border-radius: 14px;
    box-shadow: 0 12px 30px -16px rgba(255, 107, 26, 0.3);
}

.qf-fee-head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 6px;
}

.qf-fee-head i {
    font-size: 0.95rem;
}

.qf-fee-amount {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.qf-fee-currency {
    font-size: 0.95rem;
    color: var(--orange);
    font-weight: 700;
    letter-spacing: 0.08em;
}

.qf-fee-value {
    font-size: 2rem;
    line-height: 1;
}

.qf-fee-note {
    margin: 0;
    font-size: 0.82rem;
    color: var(--gray-dark);
    line-height: 1.55;
}

/* Summary card — fee row (sits below item/price in the qsum-body grid) */
.qsum-fee {
    grid-column: 1 / -1;
    margin-top: 6px;
    padding-top: 16px;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.qsum-fee-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.qsum-fee-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
}

.qsum-fee-parish {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.qsum-fee-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--orange);
    letter-spacing: -0.01em;
    flex-shrink: 0;
}

.qf-actions {
    display: flex;
    gap: 14px;
    margin-top: 12px;
}

.qf-cancel {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    background: transparent;
    border: 1.5px solid var(--gray-light);
    border-radius: 50px;
    color: var(--gray-dark);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    font-family: inherit;
}

.qf-cancel:hover {
    background: var(--gray-bg, #F7F9FC);
    border-color: var(--gray);
    color: var(--dark);
}

.qf-cancel i { font-size: 0.78rem; }

.qf-submit {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    background: linear-gradient(135deg, #FF8347 0%, #FF6B1A 55%, #E65500 100%);
    color: var(--white);
    border: 0;
    border-radius: 50px;
    font-size: 0.98rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 14px 30px -14px rgba(255, 107, 26, 0.6);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    font-family: inherit;
}

.qf-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 44px -18px rgba(255, 107, 26, 0.75);
    color: var(--white);
}

.qf-submit i { transition: transform 0.25s ease; }
.qf-submit:hover i { transform: translateX(3px); }

.qf-note {
    text-align: center;
    color: var(--gray);
    font-size: 0.78rem;
    margin: 4px 0 0;
}

.qf-note i {
    color: var(--orange);
    margin-right: 4px;
}

/* Aside (right column) */
.quote-aside {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
    top: 100px;
}

.qa-card {
    background: var(--white);
    border-radius: 18px;
    padding: 24px;
    border: 1px solid rgba(15, 27, 45, 0.06);
    box-shadow: 0 18px 40px -24px rgba(15, 27, 45, 0.12);
}

.qa-card-head { margin-bottom: 18px; }

.qa-card-eye {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 6px;
}

.qa-card-head h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
    letter-spacing: -0.01em;
}

/* Process steps */
.qa-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.qa-steps li {
    display: flex;
    gap: 12px;
    position: relative;
}

.qa-step-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF8347, #E65500);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.82rem;
    box-shadow: 0 6px 14px -6px rgba(255, 107, 26, 0.5);
}

.qa-steps li > div {
    flex: 1;
    min-width: 0;
}

.qa-steps strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.qa-steps p {
    font-size: 0.82rem;
    color: var(--gray-dark);
    margin: 0;
    line-height: 1.5;
}

/* Contact channels */
.qa-channel {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: var(--gray-bg, #F7F9FC);
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    margin-bottom: 10px;
    color: var(--dark);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.qa-channel:last-child { margin-bottom: 0; }

.qa-channel:hover {
    background: var(--white);
    border-color: var(--orange);
    transform: translateY(-1px);
    color: var(--dark);
}

.qa-channel-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
}

.qa-channel-call { background: linear-gradient(135deg, #FF8347, #E65500); }
.qa-channel-wa { background: linear-gradient(135deg, #25D366, #128C7E); }
.qa-channel-mail { background: linear-gradient(135deg, #6366F1, #4338CA); }

.qa-channel-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.qa-channel-text small {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray);
    font-weight: 600;
}

.qa-channel-text strong {
    font-size: 0.92rem;
    color: var(--dark);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.qa-channel-arrow {
    flex-shrink: 0;
    color: var(--gray);
    font-size: 0.8rem;
    transition: transform 0.25s ease, color 0.25s ease;
}

.qa-channel:hover .qa-channel-arrow {
    color: var(--orange);
    transform: translateX(3px);
}

/* Trust stats */
.qa-card-trust {
    background: linear-gradient(135deg, #0F1A2D 0%, #1A2030 100%);
    color: var(--white);
    border: 0;
}

.qa-trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

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

.qa-trust-stat strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
}

.qa-trust-stat strong sup {
    font-size: 0.5em;
    color: var(--orange);
    vertical-align: super;
}

.qa-trust-stat strong small {
    font-size: 0.55em;
    color: var(--orange);
    margin-left: 1px;
}

.qa-trust-stat span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

/* Success state */
.quote-success {
    background: linear-gradient(180deg, #F4F7FB 0%, #FFFFFF 100%);
    padding: 60px 0 100px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qs-card {
    max-width: 580px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 22px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 30px 80px -30px rgba(15, 27, 45, 0.18);
    border: 1px solid rgba(15, 27, 45, 0.04);
}

.qs-success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10B981, #059669);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 18px;
    box-shadow: 0 20px 50px -16px rgba(16, 185, 129, 0.6);
    animation: qsCheckPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes qsCheckPop {
    0%   { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.qs-success-eye {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #10B981;
    font-weight: 700;
    margin-bottom: 8px;
}

.qs-card h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.6rem, 2.6vw, 2rem);
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 10px;
    letter-spacing: -0.02em;
}

.qs-card p {
    color: var(--gray-dark);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 14px;
}

.qs-success-meta {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px 14px;
    padding: 10px 18px;
    background: var(--gray-bg, #F7F9FC);
    border: 1px solid var(--gray-light);
    border-radius: 50px;
    margin: 6px auto 22px;
    font-size: 0.78rem;
    color: var(--gray-dark);
    font-weight: 500;
}

.qs-success-meta:empty { display: none; }

.qs-success-meta i { color: var(--orange); margin-right: 4px; }

.qs-success-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.qs-success-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 26px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.qs-success-btn-primary {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    box-shadow: 0 14px 30px -14px rgba(37, 211, 102, 0.55);
}

.qs-success-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 44px -18px rgba(37, 211, 102, 0.7);
    color: var(--white);
}

.qs-success-btn-ghost {
    background: transparent;
    border: 1.5px solid var(--gray-light);
    color: var(--gray-dark);
}

.qs-success-btn-ghost:hover {
    background: var(--gray-bg, #F7F9FC);
    border-color: var(--gray);
    color: var(--dark);
}

/* Mobile */
@media (max-width: 1024px) {
    .quote-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: -40px;
    }
    .quote-aside { position: static; }
}

@media (max-width: 640px) {
    .quote-hero { padding: 84px 0 28px; }
    .quote-back { margin-bottom: 16px; padding: 7px 14px 7px 12px; font-size: 0.72rem; }
    .quote-selected { flex-wrap: wrap; padding: 12px 14px; }
    .quote-summary { margin-top: 18px; }
    .qsum-body { grid-template-columns: 1fr; gap: 12px; padding: 16px 18px; text-align: left; }
    .qsum-divider { display: none; }
    .qsum-price { text-align: left; }
    .qsum-price-label { text-align: left; }
    .qsum-price-value { font-size: 1.3rem; }
    .qsum-foot { padding: 10px 18px; font-size: 0.7rem; }
    .quote-section { padding: 40px 0 70px; }
    .quote-form-wrap { padding: 22px 18px; border-radius: 16px; }
    .qf-row { grid-template-columns: 1fr; }
    .qf-actions { flex-direction: column-reverse; }
    .qf-cancel, .qf-submit { width: 100%; justify-content: center; }
    .qa-card { padding: 18px; border-radius: 14px; }
    .qa-trust-stat strong { font-size: 1.3rem; }
    .qs-card { padding: 36px 22px; }
    .qs-success-actions { flex-direction: column; }
    .qs-success-btn { width: 100%; justify-content: center; }

    /* Site visit toggle + fee compact for mobile */
    .qf-toggle { padding: 14px; gap: 12px; }
    .qf-toggle-copy strong { font-size: 0.9rem; }
    .qf-toggle-copy small { font-size: 0.74rem; }
    .qf-fee { padding: 16px 18px; }
    .qf-fee-value { font-size: 1.65rem; }
    .qf-fee-note { font-size: 0.78rem; }

    /* Summary fee row stacks on narrow screens */
    .qsum-fee { flex-direction: column; align-items: flex-start; gap: 6px; }
    .qsum-fee-amount { font-size: 1.05rem; }
}
