:root {
    --ink: #0b1726;
    --ink-soft: #526174;
    --navy: #071220;
    --navy-2: #10243b;
    --paper: #f5f8fb;
    --white: #ffffff;
    --line: #dbe5ef;
    --mint: #60e6bd;
    --mint-dark: #08735b;
    --blue: #2468e8;
    --blue-dark: #184fb4;
    --amber: #ffb15f;
    --red: #f56f6f;
    --violet: #a88df0;
    --radius: 8px;
    --shadow: 0 22px 70px rgba(7, 18, 32, .13);
    --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img, svg { display: block; }
button, a { -webkit-tap-highlight-color: transparent; }

.container {
    width: min(calc(100% - 40px), var(--max));
    margin-inline: auto;
}

.site-header {
    position: fixed;
    z-index: 80;
    inset: 0 0 auto;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    background: rgba(7, 18, 32, .9);
    backdrop-filter: blur(16px);
}

.nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
    color: var(--white);
    font-weight: 850;
    letter-spacing: 0;
}

.brand-mark {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    color: var(--navy);
    background: var(--mint);
    box-shadow: 0 10px 30px rgba(96, 230, 189, .24);
    font-size: 14px;
    font-weight: 950;
}

.brand-text {
    display: grid;
    gap: 1px;
    min-width: 0;
}

.brand-text strong {
    font-size: 17px;
    line-height: 1.1;
}

.brand-text small {
    color: #8fa1b4;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 27px;
    color: #cbd7e5;
    font-size: 14px;
    font-weight: 720;
}

.nav-links > a:not(.nav-cta):hover {
    color: var(--white);
}

.nav-cta {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: var(--radius);
    color: var(--navy);
    background: var(--mint);
}

.menu-button {
    width: 44px;
    height: 44px;
    display: none;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--radius);
    color: var(--white);
    background: transparent;
    cursor: pointer;
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.2;
    transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--navy);
    background: var(--mint);
}

.button-primary:hover {
    background: #82efce;
}

.button-ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .06);
}

.button-ghost:hover {
    border-color: rgba(255, 255, 255, .36);
    background: rgba(255, 255, 255, .1);
}

.hero {
    position: relative;
    min-height: 760px;
    padding: 165px 0 92px;
    overflow: hidden;
    color: var(--white);
    background-image:
        linear-gradient(90deg, rgba(7, 18, 32, .98) 0%, rgba(7, 18, 32, .9) 42%, rgba(7, 18, 32, .58) 66%, rgba(7, 18, 32, .28) 100%),
        url("/assets/furniture-assembly-new-jersey.jpg");
    background-position: center right;
    background-size: cover;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .2;
    background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max);
}

.hero-content > *:not(.hero-mobile-image) {
    max-width: 690px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 20px;
    color: var(--mint);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 6px rgba(96, 230, 189, .14);
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1 {
    margin: 0;
    max-width: 780px;
    font-size: 68px;
    line-height: 1.02;
    letter-spacing: 0;
}

.hero-lead {
    margin: 27px 0 0;
    color: #c5d2df;
    font-size: 18px;
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

.quick-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 19px;
    margin: 31px 0 0;
    padding: 0;
    color: #b2c0cf;
    font-size: 13px;
    list-style: none;
}

.quick-points li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.quick-points span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mint);
}

.hero-mobile-image {
    display: none;
}

.benefit-strip {
    position: relative;
    z-index: 6;
    margin-top: -40px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 16px 52px rgba(7, 18, 32, .09);
}

.benefit {
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: start;
    gap: 15px;
    padding: 25px 23px;
    border-right: 1px solid var(--line);
}

.benefit:last-child {
    border-right: 0;
}

.benefit-icon,
.service-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    color: var(--mint-dark);
    background: #e0f9f1;
}

.benefit-icon.blue,
.service-icon {
    color: var(--blue);
    background: #e8efff;
}

.benefit-icon.amber,
.service-icon.amber {
    color: #a24f00;
    background: #fff0df;
}

.benefit h2 {
    margin: 0 0 6px;
    font-size: 16px;
    line-height: 1.25;
}

.benefit p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.55;
}

.section {
    padding: 108px 0;
}

.section-white {
    background: var(--white);
}

.section-dark {
    color: var(--white);
    background: var(--navy);
}

.section-heading {
    max-width: 870px;
    margin-bottom: 46px;
}

.section-heading h2,
.quote-grid h2,
.area-grid h2,
.final-panel h2 {
    margin: 0;
    font-size: 50px;
    line-height: 1.08;
    letter-spacing: 0;
}

.section-heading > p:last-child,
.section-copy {
    max-width: 640px;
    margin: 22px 0 0;
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.72;
}

.section-kicker {
    color: var(--blue);
}

.section-kicker::before {
    box-shadow: 0 0 0 6px rgba(36, 104, 232, .11);
}

.section-dark .section-kicker,
.quote-section .section-kicker,
.final-panel .section-kicker {
    color: var(--mint);
}

.section-dark .section-kicker::before,
.quote-section .section-kicker::before,
.final-panel .section-kicker::before {
    box-shadow: 0 0 0 6px rgba(96, 230, 189, .14);
}

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

.service-card {
    min-height: 260px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fbfdff;
}

.service-icon.green {
    color: var(--mint-dark);
    background: #e0f9f1;
}

.service-icon.violet {
    color: #6750b9;
    background: #f1edff;
}

.service-icon.red {
    color: #aa3333;
    background: #fff0f0;
}

.service-icon.navy {
    color: var(--navy);
    background: #e8eef5;
}

.service-card h3 {
    margin: 32px 0 10px;
    font-size: 22px;
    letter-spacing: 0;
}

.service-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.72;
}

.quote-section {
    color: var(--white);
    background:
        radial-gradient(circle at 100% 100%, rgba(36, 104, 232, .48), transparent 42%),
        radial-gradient(circle at 0% 0%, rgba(96, 230, 189, .18), transparent 34%),
        var(--navy);
}

.quote-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 70px;
}

.quote-grid .section-copy {
    color: #c1cfdd;
}

.quote-list {
    display: grid;
    gap: 12px;
    max-width: 620px;
    margin: 30px 0 0;
}

.quote-list div {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 13px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .06);
}

.quote-list strong {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    color: var(--navy);
    background: var(--mint);
    font-size: 14px;
}

.quote-list span {
    color: #d2deeb;
    font-size: 14px;
    line-height: 1.5;
}

.message-preview {
    max-width: 460px;
    min-height: 520px;
    justify-self: end;
    padding: 18px;
    border: 10px solid #0b1726;
    border-radius: 34px;
    background: #eef5f2;
    box-shadow: 0 34px 90px rgba(0, 0, 0, .3);
}

.phone-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 58px;
    color: #0b1726;
    font-size: 14px;
}

.phone-top span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #35d17d;
}

.chat-bubble {
    margin-top: 76px;
    padding: 18px;
    border-radius: 8px 8px 8px 2px;
    color: #183220;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(7, 18, 32, .08);
    font-size: 17px;
    line-height: 1.55;
}

.chat-hints {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.chat-hints span {
    padding: 9px 11px;
    border-radius: var(--radius);
    color: #0c5d42;
    background: #d9f8ed;
    font-size: 12px;
    font-weight: 800;
}

.trust-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 54px;
    align-items: start;
}

.dark-heading {
    margin-bottom: 0;
}

.dark-heading p:last-child {
    color: #aebed0;
}

.trust-list {
    display: grid;
    gap: 14px;
}

.trust-list article {
    padding: 27px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .055);
}

.trust-list h3 {
    margin: 0 0 9px;
    font-size: 21px;
}

.trust-list p {
    margin: 0;
    color: #aebed0;
    font-size: 14px;
    line-height: 1.72;
}

.area-grid {
    display: grid;
    grid-template-columns: .82fr 1fr;
    gap: 58px;
    align-items: center;
}

.area-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.area-cloud span {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 15px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: #34465a;
    background: #fbfdff;
    font-size: 14px;
    font-weight: 760;
}

.area-cloud span:nth-child(3n+1) {
    color: var(--blue-dark);
    background: #eef4ff;
}

.area-cloud span:nth-child(3n+2) {
    color: var(--mint-dark);
    background: #e7faf3;
}

.area-cloud span:nth-child(3n+3) {
    color: #8a4a00;
    background: #fff4e8;
}

.compact-heading {
    text-align: center;
    margin-inline: auto;
}

.compact-heading .section-kicker {
    justify-content: center;
}

.faq-list {
    display: grid;
    gap: 12px;
    max-width: 880px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.faq-item summary {
    position: relative;
    padding: 22px 58px 22px 22px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 850;
    list-style: none;
}

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

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 19px;
    top: 50%;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    color: var(--blue);
    background: #e8efff;
    transform: translateY(-50%);
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-item p {
    margin: 0;
    padding: 0 22px 22px;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.7;
}

.final-cta {
    padding: 24px 0 96px;
    background: var(--paper);
}

.final-panel {
    position: relative;
    overflow: hidden;
    padding: 68px 44px;
    border-radius: var(--radius);
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(7, 18, 32, .94), rgba(7, 18, 32, .76)),
        url("/assets/furniture-assembly-new-jersey.jpg") center right / cover;
    text-align: center;
}

.final-panel .section-kicker {
    justify-content: center;
}

.final-panel p:last-of-type {
    max-width: 640px;
    margin: 21px auto 0;
    color: #c5d2df;
    font-size: 16px;
    line-height: 1.72;
}

.center-actions {
    justify-content: center;
}

.site-footer {
    padding: 30px 0;
    color: #6e7b8a;
    background: var(--white);
    font-size: 13px;
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.footer-brand {
    color: var(--ink);
}

.footer-brand .brand-text small {
    color: #69798a;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
}

.footer-links a:hover {
    color: var(--blue);
}

.whatsapp-float {
    position: fixed;
    z-index: 70;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(7, 18, 32, .12);
    border-radius: var(--radius);
    color: var(--navy);
    background: var(--mint);
    box-shadow: 0 15px 40px rgba(7, 18, 32, .22);
    transition: transform .2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.03);
}

@media (max-width: 1040px) {
    h1 {
        font-size: 58px;
    }

    .section-heading h2,
    .quote-grid h2,
    .area-grid h2,
    .final-panel h2 {
        font-size: 43px;
    }

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

    .benefit:nth-child(2) {
        border-right: 0;
    }

    .benefit:nth-child(3) {
        grid-column: 1 / -1;
        border-top: 1px solid var(--line);
        border-right: 0;
    }

    .quote-grid,
    .trust-grid,
    .area-grid {
        grid-template-columns: 1fr;
    }

    .message-preview {
        justify-self: start;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(calc(100% - 28px), var(--max));
    }

    .site-header {
        background: rgba(7, 18, 32, .96);
    }

    .nav {
        min-height: 68px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .brand-text strong {
        font-size: 15px;
    }

    .brand-text small {
        font-size: 10px;
    }

    .menu-button {
        display: grid;
    }

    .nav-links {
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 4px;
        padding: 12px 14px 18px;
        border-top: 1px solid rgba(255, 255, 255, .09);
        background: #091728;
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a {
        padding: 13px 14px;
        border-radius: var(--radius);
    }

    .nav-cta {
        width: 100%;
        min-height: 48px;
        text-align: center;
    }

    .hero {
        min-height: 720px;
        padding: 118px 0 82px;
        background-image:
            linear-gradient(180deg, rgba(7, 18, 32, .94) 0%, rgba(7, 18, 32, .88) 48%, rgba(7, 18, 32, .72) 100%),
            url("/assets/furniture-assembly-new-jersey.jpg");
        background-position: 58% center;
        background-size: cover;
    }

    h1 {
        font-size: 42px;
        line-height: 1.08;
    }

    .hero-lead {
        font-size: 16px;
    }

    .hero-actions .button {
        width: 100%;
    }

    .quick-points {
        display: grid;
        gap: 10px;
    }

    .hero-mobile-image {
        display: none;
    }

    .benefit-strip {
        margin-top: -20px;
    }

    .benefit-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .benefit,
    .benefit:nth-child(2),
    .benefit:nth-child(3) {
        grid-column: auto;
        border-right: 0;
        border-top: 0;
        border-bottom: 1px solid var(--line);
    }

    .benefit:last-child {
        border-bottom: 0;
    }

    .section {
        padding: 76px 0;
    }

    .section-heading {
        margin-bottom: 31px;
    }

    .section-heading h2,
    .quote-grid h2,
    .area-grid h2,
    .final-panel h2 {
        font-size: 34px;
        line-height: 1.13;
    }

    .service-card {
        min-height: auto;
        padding: 23px;
    }

    .service-card h3 {
        margin-top: 25px;
    }

    .quote-grid {
        gap: 44px;
    }

    .quote-list div {
        grid-template-columns: 38px 1fr;
    }

    .quote-list strong {
        width: 38px;
        height: 38px;
    }

    .message-preview {
        width: 100%;
        min-height: 430px;
        border-width: 8px;
        border-radius: 26px;
    }

    .chat-bubble {
        margin-top: 48px;
        font-size: 15px;
    }

    .area-cloud span {
        min-height: 40px;
        font-size: 13px;
    }

    .final-cta {
        padding-bottom: 72px;
    }

    .final-panel {
        padding: 44px 22px;
        background-image:
            radial-gradient(circle at 100% 0%, rgba(36, 104, 232, .34), transparent 42%),
            var(--navy);
    }

    .footer-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 54px;
        height: 54px;
    }
}

@media (max-width: 390px) {
    h1 {
        font-size: 36px;
    }

    .section-heading h2,
    .quote-grid h2,
    .area-grid h2,
    .final-panel h2 {
        font-size: 30px;
    }

    .brand-text strong {
        font-size: 14px;
    }

    .brand-text small {
        font-size: 9px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

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