:root {
    --bark: #2c2117;
    --bark-soft: #4a3826;
    --cedar: #a8682f;
    --cedar-lt: #c98c4e;
    --moss: #5c6b4a;
    --moss-dk: #424e36;
    --parchment: #f4ede1;
    --parchment-d: #e8dcc8;
    --char: #1c1712;
    --ember: #c45533;

    --font-disp: 'Fraunces', serif;
    --font-body: 'Inter', sans-serif;

    --r-sm: 3px;
    --r-md: 6px;
    --r-lg: 10px;
    --ease: cubic-bezier(.4, 0, .2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--char);
    background: var(--parchment);
    line-height: 1.6;
    overflow-x: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: none;
    color: initial;
}

.maincontent {
    max-width: 100%;
    margin: 0 auto -25px;
    padding: 0;
    border: none;
}  

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}

/* -- ANIMATIONS -------------------------------------------- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

.reveal {
    transform: translateY(24px);
    transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.reveal.in {
    opacity: 1;
    transform: none;
}

.d1 {
    transition-delay: .08s;
}

.d2 {
    transition-delay: .16s;
}

.d3 {
    transition-delay: .24s;
}

.d4 {
    transition-delay: .32s;
}

/* -- HERO -------------------------------------------------- */
.hero {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/imageserver/Reusable/Cedur/cedur-live-oak-hero.jpg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(28, 21, 15, .92) 0%, rgba(58, 44, 29, .82) 55%, rgba(74, 56, 38, .55) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
    padding: 100px 28px 80px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 56px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--cedar-lt);
    margin-bottom: 22px;
    animation: fadeUp .6s ease both;
}

.hero-eyebrow::before {
    content: '';
    width: 22px;
    height: 1px;
    background: var(--cedar-lt);
}

.hero-title {
    font-family: var(--font-disp);
    font-weight: 600;
    font-style: italic;
    font-size: clamp(40px, 5.6vw, 68px);
    line-height: 1.04;
    color: #fdf8ef;
    animation: fadeUp .65s .08s ease both;
}

.hero-title em {
    font-style: normal;
    color: var(--cedar-lt);
}

.hero-sub {
    margin-top: 20px;
    font-size: 16.5px;
    font-weight: 400;
    color: #d9cdb9;
    line-height: 1.75;
    max-width: 480px;
    animation: fadeUp .65s .16s ease both;
}

.hero-cta {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--cedar);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .03em;
    padding: 14px 30px;
    border-radius: var(--r-sm);
    animation: fadeUp .65s .24s ease both;
    transition: background .25s var(--ease), transform .25s var(--ease);
}

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

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 14px;
    animation: fadeUp .7s .2s ease both;
}

.stat-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    border-left: 3px solid var(--cedar-lt);
    border-radius: var(--r-md);
    padding: 17px 22px;
    backdrop-filter: blur(8px);
    transition: background .22s;
}

.stat-card:hover {
    background: rgba(255, 255, 255, .1);
}

.stat-num {
    font-family: var(--font-disp);
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
}

.stat-lbl {
    font-size: 12px;
    color: #c9bda9;
    margin-top: 3px;
    letter-spacing: .03em;
}

/* -- SECTION BASE ------------------------------------------ */
.section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 78px 28px;
}

.eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--cedar);
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.eyebrow::before {
    content: '';
    width: 22px;
    height: 1px;
    background: var(--cedar);
}

.sec-title {
    font-family: var(--font-disp);
    font-weight: 600;
    font-style: italic;
    font-size: clamp(28px, 3.6vw, 44px);
    line-height: 1.06;
    color: var(--char);
}

.sec-title em {
    font-style: normal;
    color: var(--cedar);
}

.sec-desc {
    margin-top: 14px;
    font-size: 16px;
    color: var(--bark-soft);
    max-width: 620px;
    line-height: 1.75;
}

/* -- ABOUT / WHY ------------------------------------------- */
.about-section {
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 26px;
    margin-top: 44px;
}

.about-card {
    background: var(--parchment);
    border: 1px solid var(--parchment-d);
    border-radius: var(--r-lg);
    padding: 30px 26px;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(44, 33, 23, .12);
}

.about-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
}

.about-card h3 {
    font-family: var(--font-disp);
    font-weight: 600;
    font-size: 19px;
    color: var(--char);
    margin-bottom: 8px;
}

.about-card p {
    font-size: 14px;
    color: var(--bark-soft);
    line-height: 1.65;
}

/* -- PRODUCTS / COLORS ------------------------------------- */
.products-section {
    background: var(--parchment);
}

.color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.color-card {
    background: #fff;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(44, 33, 23, .08);
    display: flex;
    flex-direction: column;
    transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}

.color-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(44, 33, 23, .18);
}

.color-swatch {
    height: 190px;
    position: relative;
    overflow: hidden;
    background: var(--bark-soft);
}

.color-swatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s var(--ease);
}

.color-card:hover .color-swatch img {
    transform: scale(1.06);
}

.color-tag {
    position: absolute;
    bottom: 12px;
    left: 14px;
    background: rgba(255, 255, 255, .92);
    color: var(--char);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    z-index: 1;
}

.color-body {
    padding: 22px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.color-body h3 {
    font-family: var(--font-disp);
    font-weight: 600;
    font-size: 21px;
    margin-bottom: 8px;
}

.color-body p {
    font-size: 13.5px;
    color: var(--bark-soft);
    line-height: 1.6;
    flex: 1;
}

.color-link {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: #fff;
    background: var(--cedar);
    border-top: 1px solid var(--parchment-d);
    padding: 12px 16px;
    border-radius: var(--r-sm);
    transition: background .22s, gap .22s;
    width: 100%;
}

.color-link:hover {
    gap: 12px;
    background: var(--ember);
}

/* Construction notes */
.install-strip {
    background: #fff;
    border: 1px solid var(--parchment-d);
    border-radius: var(--r-lg);
    padding: 34px 32px;
    margin-top: 48px;
}

.install-strip h3 {
    font-family: var(--font-disp);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 16px;
}

.install-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px 28px;
}

.install-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13.5px;
    color: var(--bark-soft);
}

.install-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cedar);
    margin-top: 6px;
    flex-shrink: 0;
}

/* -- PRODUCT MODAL ----------------------------------------- */
.modal-bg {
    position: fixed;
    inset: 0;
    background: rgba(20, 15, 10, .72);
    backdrop-filter: blur(5px);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s var(--ease);
}

.modal-bg.open {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background: #fff;
    border-radius: var(--r-lg);
    max-width: 680px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .5);
    transform: scale(.94) translateY(18px);
    transition: transform .3s var(--ease);
}

.modal-bg.open .modal-box {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 13px;
    right: 13px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .48);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .2s;
}

.modal-close:hover {
    background: var(--bark);
    transform: rotate(90deg);
}

.modal-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    display: block;
    background: var(--bark-soft);
}

.modal-body {
    padding: 30px 30px 26px;
}

.modal-eye {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--cedar);
    margin-bottom: 6px;
}

.modal-title {
    font-family: var(--font-disp);
    font-weight: 600;
    font-size: 30px;
    color: var(--char);
    line-height: 1.05;
}

.modal-desc {
    margin-top: 14px;
    font-size: 15px;
    color: var(--bark-soft);
    line-height: 1.72;
}

.modal-feat-head {
    font-family: var(--font-disp);
    font-weight: 600;
    font-size: 15px;
    color: var(--char);
    margin-top: 22px;
    margin-bottom: 10px;
}

.modal-feats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal-feat-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--char);
}

.mf-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--parchment-d);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid var(--parchment-d);
    background: var(--parchment);
    border-radius: 0 0 var(--r-lg) var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}

.modal-footer-text {
    font-size: 12.5px;
    color: var(--bark-soft);
}

.btn-modal-estimate {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cedar);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: var(--r-sm);
    transition: background .22s, transform .22s;
    white-space: nowrap;
}

.btn-modal-estimate:hover {
    background: var(--ember);
    transform: translateY(-1px);
}

/* -- VISUALIZER -------------------------------------------- */
.viz-section {
    background: linear-gradient(135deg, var(--moss-dk) 0%, var(--moss) 100%);
    padding: 80px 28px;
    position: relative;
    overflow: hidden;
}

.viz-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.035'%3E%3Cpath d='M40 0l10 20h20l-16 13 6 21-20-13-20 13 6-21-16-13h20z'/%3E%3C/g%3E%3C/svg%3E");
}

.viz-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    text-align: left;
}

.viz-text {
    text-align: left;
}

.viz-img-col {
    position: relative;
}

.viz-img-wrap {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 255, 255, .15);
}

.viz-img-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.viz-inner .eyebrow {
    color: #cfe0bd;
    justify-content: flex-start;
}

.viz-inner .eyebrow::before {
    background: #cfe0bd;
}

.viz-inner h2 {
    font-family: var(--font-disp);
    font-weight: 600;
    font-style: italic;
    font-size: clamp(28px, 4vw, 44px);
    color: #fff;
    line-height: 1.1;
}

.viz-inner h2 em {
    font-style: normal;
    color: #d9c98a;
}

.viz-inner p {
    margin-top: 16px;
    font-size: 16px;
    color: #e3ecd8;
    max-width: 480px;
    line-height: 1.7;
}

.viz-btn {
    margin-top: 32px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--moss-dk);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .03em;
    padding: 15px 34px;
    border-radius: var(--r-sm);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.viz-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .25);
}

@media (max-width: 880px) {
    .viz-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .viz-text {
        text-align: center;
    }

    .viz-inner .eyebrow {
        justify-content: center;
    }

    .viz-inner p {
        margin-inline: auto;
    }

    .viz-img-col {
        order: -1;
    }
}

/* -- VIDEOS ------------------------------------------------ */
.video-section {
    background: #fff;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
    margin-top: 44px;
}

.video-card {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--bark);
    display: flex;
    align-items: flex-end;
    transition: transform .26s var(--ease);
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-card-bg {
    position: absolute;
    inset: 0;
    background: var(--bark);
    overflow: hidden;
}

.video-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s var(--ease);
}

.video-card:hover .video-card-bg img {
    transform: scale(1.06);
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s var(--ease), background .25s;
    z-index: 2;
}

.video-card:hover .video-play {
    transform: translate(-50%, -50%) scale(1.1);
    background: #fff;
}

.video-play svg {
    width: 18px;
    height: 18px;
}

.video-label {
    position: relative;
    z-index: 1;
    padding: 20px;
    color: #fff;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, .55), transparent);
}

.video-label .tag {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--cedar-lt);
}

.video-label h3 {
    font-family: var(--font-disp);
    font-weight: 600;
    font-size: 17px;
    margin-top: 4px;
}


/* Video Modal */
.video-modal-bg {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .85);
    z-index: 9100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
}

.video-modal-bg.open {
    opacity: 1;
    pointer-events: all;
}

.video-modal-box {
    position: relative;
    width: 100%;
    max-width: 860px;
    background: #000;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .7);
    transform: scale(.94);
    transition: transform .28s ease;
}

.video-modal-bg.open .video-modal-box {
    transform: scale(1);
}

.video-modal-ratio {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}


.video-modal-ratio iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}



.video-modal-placeholder p {
    font-size: 14px;
    color: #aaa;
    margin-top: 10px;
    line-height: 1.6;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    z-index: 10;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, .3);
}



/* -- FAQ --------------------------------------------------- */
.faq-section {
    background: var(--parchment);
}

.faq-section .reveal,
.faq-section .sec-desc {
    text-align: center;
}

.faq-section .sec-desc {
margin-inline: auto;
}


.faq-list {
    max-width: 860px;
    margin: 44px auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--parchment-d);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 4px;
    text-align: left;
    font-family: var(--font-disp);
    font-weight: 600;
    font-size: 17px;
    color: var(--char);
}

.faq-q-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid var(--cedar);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform .3s var(--ease), background .25s;
}

.faq-q-icon::before,
.faq-q-icon::after {
    content: '';
    position: absolute;
    background: var(--cedar);
    transition: transform .3s var(--ease), opacity .2s;
}

.faq-q-icon::before {
    width: 10px;
    height: 1.5px;
}

.faq-q-icon::after {
    width: 1.5px;
    height: 10px;
}

.faq-item.open .faq-q-icon {
    background: var(--cedar);
    transform: rotate(180deg);
}

.faq-item.open .faq-q-icon::before,
.faq-item.open .faq-q-icon::after {
    background: #fff;
}

.faq-item.open .faq-q-icon::after {
    opacity: 0;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease);
}

.faq-a-inner {
    padding: 0 4px 24px;
    font-size: 14.5px;
    color: var(--bark-soft);
    line-height: 1.75;
    max-width: 760px;
}

.faq-cta {
    text-align: center;
    margin-top: 46px;
}

.faq-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--cedar);
    border-bottom: 1.5px solid var(--cedar);
    padding-bottom: 3px;
    transition: color .2s, border-color .2s;
}

.faq-cta a:hover {
    color: var(--ember);
    border-color: var(--ember);
}

/* -- CTA STRIP --------------------------------------------- */
.cta-strip {
    background: var(--bark);
    position: relative;
    overflow: hidden;
    padding: 64px 28px;
    text-align: center;
    inset: 0;
    background: linear-gradient(160deg, rgba(28, 21, 15, 0.527) 0%, rgba(58, 44, 29, .82) 55%, rgba(74, 56, 38, .55) 100%), url('/imageserver/Reusable/Cedur/cedur-hero001.jpg');
    background-size: cover;
    background-position: center;
}


.cta-strip-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.cta-strip h2 {
    font-family: var(--font-disp);
    font-weight: 600;
    font-style: italic;
    font-size: clamp(28px, 4vw, 42px);
    color: #fdf8ef;
    line-height: 1.1;
}

.cta-strip h2 em {
    font-style: normal;
    color: var(--cedar-lt);
}

.cta-strip p {
    margin-top: 14px;
    color: #cdbfa8;
    font-size: 15.5px;
    line-height: 1.7;
}

.cta-strip-btns {
    margin-top: 30px;
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cedar {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--cedar);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--r-sm);
    transition: background .22s, transform .22s;
}

.btn-cedar:hover {
    background: var(--ember);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: #fdf8ef;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--r-sm);
    border: 1.5px solid rgba(255, 255, 255, .3);
    transition: border-color .22s, background .22s, transform .22s;
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .08);
    transform: translateY(-2px);
}

/* -- RESPONSIVE -------------------------------------------- */
@media (max-width:920px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-card {
        flex: 1 1 150px;
    }
}

@media (max-width:600px) {
    .hero-stats {
        flex-direction: column;
    }

    .install-list {
        grid-template-columns: 1fr;
    }

    .faq-q {
        font-size: 15.5px;
    }
}