/* Hero */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--secondary);
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--secondary-rgb), 0.95) 40%, rgba(var(--secondary-rgb), 0.5));
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--primary-rgb), 0.15);
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    color: var(--primary-light);
    padding: .4rem 1rem;
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.hero-title .gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats-bar {
    display: flex;
    gap: 3rem;
    margin-top: 3.5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hstat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
}

.hstat-label {
    font-size: .73rem;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: .07em;
}

/* Hero right card — Glassmorphism */
.hero-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    padding: 2.5rem;
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.28),
        0 1.5px 0 rgba(255, 255, 255, 0.12) inset,
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.22) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-card::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(var(--accent-rgb, 245, 158, 11), 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

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

.hero-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    margin-bottom: .5rem;
    letter-spacing: -0.02em;
}

.hero-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: .88rem;
    margin-bottom: 1.5rem;
}

.hcard-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: .8rem 1rem;
    color: white;
    font-size: .875rem;
    font-family: inherit;
    outline: none;
    margin-bottom: .85rem;
    transition: border-color .25s, background .25s, box-shadow .25s;
    backdrop-filter: blur(4px);
}

.hcard-input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.22);
}

.hcard-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.hcard-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 12px;
    padding: .9rem;
    color: white;
    font-size: .92rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(var(--primary-rgb), .5);
    transition: all .25s;
    position: relative;
    z-index: 1;
}

.hcard-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(var(--primary-rgb), .6);
}

.hcard-trust {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-top: 1rem;
    font-size: .72rem;
    color: rgba(255, 255, 255, 0.45);
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Sections */
.section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem;
}

.section-eyebrow {
    font-size: .73rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: .5rem;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.section-sub {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 560px;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    gap: 2rem;
}

.view-all {
    color: var(--primary);
    font-weight: 700;
    font-size: .88rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.view-all:hover {
    text-decoration: underline;
}

/* Category Cards — Light Premium */
.cat-section-wrap {
    background: #f8fafc;
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.cat-section-wrap::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), .08) 0%, transparent 70%);
    pointer-events: none;
}

.cat-section-wrap::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(245, 158, 11, .07) 0%, transparent 70%);
    pointer-events: none;
}

.cat-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.cat-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.5rem;
    gap: 2rem;
}

.cat-header .view-all {
    color: var(--primary);
    border: 2px solid var(--primary-border);
    padding: .5rem 1.35rem;
    border-radius: 100px;
    transition: all .2s;
    background: white;
    font-weight: 700;
    font-size: .85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.cat-header .view-all:hover {
    background: var(--primary-bg);
    border-color: var(--primary);
}

/* Swiper Slider Container */
.cat-swiper {
    padding-bottom: 1rem;
    margin: 0 -1.5rem;
    padding-inline: 1.5rem;
}

.cat-swiper .swiper-slide {
    display: flex;
    height: auto;
    padding-top: 1.5rem;
    padding-bottom: 3.5rem;
}

.cat-nav-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cat-nav-arrows {
    display: flex;
    gap: 0.5rem;
}

.cat-swiper-btn {
    position: static;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    margin: 0 !important;
}

.cat-swiper-btn::after {
    display: none;
}

.cat-swiper-btn:hover:not(.swiper-button-disabled) {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-bg);
}

.cat-swiper-btn.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.cat-swiper-btn svg {
    width: 20px;
    height: 20px;
}

.swiper-pagination-bullet {
    background: var(--primary-border);
    opacity: 1;
    transition: all 0.3s;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    width: 24px;
    border-radius: 10px;
}

.cat-card {
    width: 100%;
    background: white;
    border: 1.5px solid #f1f5f9;
    border-radius: 24px;
    padding: 2rem 1.5rem 1.75rem;
    text-align: center;
    text-decoration: none;
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
}

.cat-card-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    border-radius: 24px 24px 0 0;
}

.cat-card:hover .cat-card-top {
    transform: scaleX(1);
}

.cat-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-border);
    box-shadow: 0 20px 50px rgba(var(--primary-rgb), .12);
}

.cat-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 2rem;
    transition: all .35s;
    position: relative;
}

.cat-icon-bg-0 {
    background: linear-gradient(135deg, var(--primary-bg), var(--primary-border));
}

.cat-icon-bg-1 {
    background: linear-gradient(135deg, #fef9c3, #fde047);
}

.cat-icon-bg-2 {
    background: linear-gradient(135deg, #ecfdf5, #6ee7b7);
}

.cat-icon-bg-3 {
    background: linear-gradient(135deg, #eff6ff, #93c5fd);
}

.cat-icon-bg-4 {
    background: linear-gradient(135deg, #fdf4ff, #e879f9);
}

.cat-icon-bg-5 {
    background: linear-gradient(135deg, var(--primary-bg), var(--primary-light));
}

.cat-icon-bg-6 {
    background: linear-gradient(135deg, #f0fdf4, #86efac);
}

.cat-icon-bg-7 {
    background: linear-gradient(135deg, #fef2f2, #fca5a5);
}

.cat-card:hover .cat-icon {
    transform: scale(1.12) rotate(-4deg);
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), .2);
}

.cat-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--secondary);
    font-size: 1rem;
    margin-bottom: .35rem;
}

.cat-count {
    font-size: .75rem;
    color: #94a3b8;
    font-weight: 600;
}

.cat-card:hover .cat-count {
    color: var(--primary);
}

.cat-arrow {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .78rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: .85rem;
    opacity: 0;
    transform: translateY(5px);
    transition: all .3s;
}

.cat-card:hover .cat-arrow {
    opacity: 1;
    transform: translateY(0);
}

/* Product Cards */
.prod-nav-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.prod-nav-arrows {
    display: flex;
    gap: 0.5rem;
}

.prod-swiper-btn {
    position: static;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    margin: 0 !important;
}

.prod-swiper-btn::after {
    display: none;
}

.prod-swiper-btn:hover:not(.swiper-button-disabled) {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-bg);
}

.prod-swiper-btn.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.prod-swiper-btn svg {
    width: 20px;
    height: 20px;
}

.prod-swiper {
    padding-bottom: 1rem;
    margin: 0 -1.5rem;
    padding-inline: 1.5rem;
}

.prod-swiper .swiper-slide {
    display: flex;
    height: auto;
    padding-top: 0.5rem;
    padding-bottom: 3.5rem;
}

.prod-swiper-pagination {
    bottom: 0.5rem !important;
}

.prod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 290px), 1fr));
    gap: 1.75rem;
}

.prod-card {
    background: white;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    overflow: hidden;
    transition: all .3s;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
    width: 100%;
}

.prod-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .09);
}

.prod-img {
    height: 220px;
    overflow: hidden;
    background: #f8fafc;
    position: relative;
}

.prod-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .5s;
    padding: 0.5rem;
}

.prod-card:hover .prod-img img {
    transform: scale(1.04);
}

.prod-cat-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(var(--secondary-rgb), .8);
    backdrop-filter: blur(6px);
    color: white;
    font-size: .68rem;
    font-weight: 700;
    padding: .28rem .7rem;
    border-radius: 100px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.prod-body {
    padding: 1.4rem;
}

.prod-cat {
    font-size: .7rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: .4rem;
}

.prod-name {
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.05rem;
    margin-bottom: .5rem;
    font-family: 'Outfit', sans-serif;
}

.prod-desc {
    color: #94a3b8;
    font-size: .82rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prod-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1.1rem;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}

.prod-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-size: .85rem;
    font-weight: 700;
    padding: .75rem 1.5rem;
    border-radius: 100px;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(var(--primary-rgb), .3);
    transition: all .2s;
}

.prod-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(var(--primary-rgb), .4);
}

/* Why Solar */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-img-wrap {
    position: relative;
}

.why-img-wrap img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .12);
}

.why-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(var(--primary-rgb), .35);
}

.why-badge .num {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
}

.why-badge .lbl {
    font-size: .72rem;
    font-weight: 600;
    opacity: .85;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.why-feat {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.why-feat-icon {
    width: 44px;
    height: 44px;
    background: rgba(var(--primary-rgb), .1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-feat-title {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: .25rem;
}

.why-feat-desc {
    color: #64748b;
    font-size: .875rem;
    line-height: 1.6;
}

/* CTA Strip */
.cta-strip {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    border-radius: 28px;
    padding: 3.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.cta-strip::after {
    content: '';
    position: absolute;
    right: 0;
    top: -50%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), .15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-strip h2 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: .5rem;
}

.cta-strip h2 span {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-strip p {
    color: #64748b;
    font-size: .95rem;
}

.cta-strip-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
    position: relative;
    z-index: 1;
}

.cta-strip-phone {
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    text-decoration: none !important;
}

.cta-strip-phone:hover {
    color: var(--primary) !important;
    transform: scale(1.02);
}

/* Trust Bar */
.trust-bar {
    background: var(--primary-bg);
    border-top: 1px solid var(--primary-border);
    border-bottom: 1px solid var(--primary-border);
    padding: .85rem 0;
}

.trust-bar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--primary-darker);
}

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

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 0;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 1.25rem;
    box-shadow: 0 8px 24px rgba(var(--primary-rgb), .35);
}

.step-title {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: .4rem;
    font-size: .95rem;
}

.step-desc {
    color: #64748b;
    font-size: .82rem;
    line-height: 1.6;
}

/* Savings Calculator */
.calc-wrap {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    border-radius: 28px;
    padding: 3.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.calc-label {
    color: #94a3b8;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: .5rem;
}

.calc-slider {
    width: 100%;
    -webkit-appearance: none;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--primary) var(--pct, 50%), #334155 var(--pct, 50%));
    outline: none;
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), .25);
}

.calc-result-box {
    background: rgba(var(--primary-rgb), .12);
    border: 1px solid rgba(var(--primary-rgb), .25);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: .5rem;
}

.calc-result-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-light);
}

.calc-result-label {
    color: #94a3b8;
    font-size: .82rem;
    margin-top: .25rem;
}

.calc-results {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.calc-res-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, .04);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .06);
}

.calc-res-label {
    color: #94a3b8;
    font-size: .85rem;
}

.calc-res-val {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: white;
    font-size: 1.1rem;
}

/* Testimonials */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testi-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 1.75rem;
    transition: all .3s;
}

.testi-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
    transform: translateY(-4px);
}

.testi-stars {
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: .75rem;
    letter-spacing: 2px;
}

.testi-text {
    color: #475569;
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.testi-name {
    font-weight: 700;
    color: var(--secondary);
    font-size: .9rem;
}

.testi-loc {
    font-size: .75rem;
    color: #94a3b8;
}

/* FAQ */
.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-weight: 700;
    color: var(--secondary);
    font-size: .95rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}

.faq-q:hover {
    color: var(--primary);
}

.faq-q .icon {
    font-size: 1.2rem;
    color: var(--primary);
    transition: transform .3s;
}

.faq-a {
    display: none;
    padding: 0 1.5rem 1.2rem;
    color: #64748b;
    font-size: .9rem;
    line-height: 1.7;
}

.faq-item.open .faq-a {
    display: block;
}

.faq-item.open .faq-q .icon {
    transform: rotate(45deg);
}

/* Segment tabs */
.seg-tabs {
    display: flex;
    gap: .75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.seg-tab {
    padding: .6rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 100px;
    font-weight: 700;
    font-size: .88rem;
    color: #475569;
    cursor: pointer;
    transition: all .2s;
    background: white;
}

.seg-tab.active,
.seg-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-bg);
}

@media(max-width:1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-card {
        max-width: 480px;
        margin: 0 auto;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .cta-strip {
        grid-template-columns: 1fr;
    }

    .cta-strip-actions {
        align-items: flex-start;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps-grid::before {
        display: none;
    }

    .testi-grid {
        grid-template-columns: 1fr 1fr;
    }

    .calc-wrap {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media(max-width:640px) {
    .hero-stats-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1rem;
        text-align: center;
        margin-top: 2rem;
        padding-top: 2rem;
        width: 100% !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.15;
        width: 100% !important;
        text-align: center;
        margin-bottom: 1rem;
    }

    .hero-sub {
        font-size: 0.9rem;
        margin-bottom: 2rem;
        width: 100% !important;
        text-align: center;
        opacity: 0.8;
    }

    .hero-inner {
        padding: 0 1.5rem;
        gap: 3rem;
        width: 100% !important;
        max-width: 100% !important;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        flex-direction: column;
        width: 100% !important;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-actions .btn-primary-lg,
    .hero-actions .btn-secondary-lg {
        width: 100% !important;
        text-align: center;
        justify-content: center;
        padding: 0.85rem 1rem;
        font-size: 0.95rem;
    }

    .hero-card {
        padding: 1.75rem;
        border-radius: 24px;
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 1rem;
        text-align: left;
    }

    .section {
        padding: 3rem 1.5rem;
        width: 100% !important;
        max-width: 100% !important;
    }

    .section-header-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        width: 100% !important;
    }

    .section-title {
        text-align: center;
        font-size: 1.85rem;
    }

    .section-sub {
        text-align: center;
        margin: 0 auto;
    }

    .trust-bar-inner {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
        width: 100% !important;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        width: 100% !important;
    }

    .testi-grid {
        grid-template-columns: 1fr;
        width: 100% !important;
    }

    .cat-header {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100% !important;
        text-align: center;
    }

    .cta-strip {
        padding: 2.5rem 1.5rem;
        grid-template-columns: 1fr;
        text-align: center;
        width: 100% !important;
        border-radius: 0;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        width: calc(100% + 3rem) !important;
    }

    .cta-strip-actions {
        align-items: center;
        width: 100%;
    }

    .calc-wrap {
        padding: 2.5rem 1.5rem;
        width: 100% !important;
        border-radius: 24px;
        margin-left: 0;
        margin-right: 0;
        width: 100% !important;
        text-align: left;
    }

    .calc-result-num {
        font-size: 2.2rem;
    }

    .calc-res-item {
        padding: 0.85rem 1rem;
    }

    .calc-res-val {
        font-size: 1rem;
    }

    .calc-label {
        font-size: 0.75rem;
    }

    .hstat-num {
        font-size: 1.5rem;
    }

    .hstat-label {
        font-size: 0.65rem;
    }
}

@media(max-width: 480px) {
    .calc-result-num {
        font-size: 1.8rem;
    }

    .calc-res-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .calc-res-val {
        font-size: 1.1rem;
    }

    .calc-wrap {
        padding: 2rem 1.25rem;
    }

    .calc-wrap div[style*="justify-content:space-between"] {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem;
    }
}

/* Home Utility Extras */
.success-msg-home {
    background: #22c55e;
    border: 1px solid #16a34a;
    color: #ffffff;
    padding: .75rem 1rem;
    border-radius: 10px;
    font-size: .82rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
}

.section-white {
    background: white;
    padding: 1px 0;
}

.section-light {
    background: var(--primary-bg);
    border-top: 1px solid var(--primary-border);
    border-bottom: 1px solid var(--primary-border);
}

.google-rating-box {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    padding: .5rem 1.25rem;
    margin-top: .75rem;
}

.google-stars {
    color: var(--accent);
    font-size: 1.1rem;
}

.google-score {
    font-weight: 700;
    color: var(--secondary);
}

.google-count {
    color: #64748b;
    font-size: .85rem;
}

.empty-msg-home {
    color: #94a3b8;
    text-align: center;
    padding: 3rem 0;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mt-2rem {
    margin-top: 2rem !important;
}

.mt-1rem {
    margin-top: 1rem !important;
}

.text-center {
    text-align: center !important;
}

.flex-inline-gap {
    display: inline-flex;
    gap: 8px;
}

.color-white {
    color: white !important;
}

.color-primary-light {
    color: var(--primary-light) !important;
}

.color-green {
    color: #22c55e !important;
}

.color-emerald {
    color: #10b981 !important;
}

.mb-2-5rem {
    margin-bottom: 2.5rem !important;
}

.calc-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .75rem;
}

.calc-current-val {
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
    font-family: 'Outfit';
}

.calc-note {
    color: #64748b;
    font-size: .78rem;
    margin-top: 1.5rem;
    line-height: 1.5;
}

.btn-full {
    width: 100% !important;
    justify-content: center !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.py-3rem {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}