﻿/* ============================================================
    1. DESIGN TOKENS
    ============================================================ */
:root {
    --brand: #0a7da6;
    --brand-dark: #0c5f80;
    --navy: #103e4f;
    --navy-deep: #0c3242;
    --gold-bright: #f5a623;
    --soft: #f5f9fa;
    --soft2: #eaf4f8;
    --line: #dfe8ec;
    --ink: #1f2d33;
    --muted: #64798190;
    --muted: #64798a;
    --green: #1c9a5b;
    --orange: #e08a1e;
    --sky: #00ABCE;
    --font-display: 'Poppins', system-ui, sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --container: 1280px;
    --container-wide: 1600px;
}

#header.header--hidden {
    transform: translateY(-100%);
}

/* ============================================================
        2. RESET / BASE
        ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, p {
    margin: 0;
}

a {
    color: inherit;
}

button {
    font-family: inherit;
    border: none;
    background: none;
}

img {
    max-width: 100%;
    display: block;
}

.wrap {
    padding-top: clamp(48px, 5.5vw, 84px) !important;
    padding-bottom: clamp(48px, 5.5vw, 84px) !important;
}

#mainNav a:first-of-type, #mainNav a:first-of-type:hover {
    padding-left: 0px;
    color: var(--brand-dark);
}

#mainNav a:last-of-type {
    padding-right: 0px;
}

.eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 10px;
    font-family: var(--font-display);
}

.h2 {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: clamp(26px,3vw,38px);
    color: var(--navy);
    line-height: 1.15;
    margin: 0 0 10px;
}

.section-intro {
    text-align: center;
    margin-bottom: 38px;
}

    .section-intro p {
        font-size: 16px;
        color: var(--muted);
        margin: 0 auto;
        line-height: 1.6;
    }

.icon-tile {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: var(--soft2);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    transition: box-shadow .2s, border-color .2s;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    height: 54px;
    padding: 0 30px;
    border-radius: 13px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16.5px;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition: filter .15s, background .15s;
}

.link-arrow:hover {
    gap: 12px;
}

/* ============================================================
        3. NAV
        ============================================================ */
.background-nav {
    background: #f4f7ff;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0px;
    z-index: 9;
}

.nav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    height: 52px;
}

    .nav a {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 9px 14px;
        border-radius: 9px;
        font-size: 14px;
        font-family: var(--font-display);
        font-weight: 600;
        text-decoration: none;
        color: var(--brand-dark);
        white-space: nowrap;
    }

        .nav a.active, .nav a:hover {
            color: var(--sky);
        }

        .nav a.help {
            margin-left: auto;
        }

@media screen and (max-width: 767px) {
    .nav a {
        font-size: 12px;
        padding: 9px 14px;
    }
}

@media screen and (max-width: 580px) {
    .nav a {
        font-size: 11px;
        padding: 9px 5px;
    }
}

/* ============================================================
        4. HERO
        ============================================================ */
.hero {
    background: #f4f7ff;
    color: var(--navy);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(32px,4vw,64px);
    align-items: center;
    padding-top: clamp(40px,5vw,76px);
    padding-bottom: clamp(40px,5vw,76px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--soft2);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 22px;
    color: var(--brand-dark);
}

    .hero-badge .dot {
        color: var(--brand);
    }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(34px,4.6vw,58px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 18px;
    color: var(--navy);
}

    .hero-title .accent {
        color: var(--brand);
    }

.hero-desc {
    font-size: clamp(16px,1.4vw,19px);
    color: var(--muted);
    line-height: 1.65;
    margin: 0 0 26px !important;
    max-width: 560px;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-bottom: 28px;
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--ink);
    font-weight: 500;
}

.hero-media {
    position: relative;
}

.hero-media-glow {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: var(--brand);
    opacity: .10;
    top: -50px;
    right: -40px;
}

/* 3D box view */
.boxModel {
    width: 600px;
    height: 450px;
    margin: auto;
}

@media screen and (max-width: 1000px) {
    .boxModel {
        width: 450px;
        height: 350px;
    }
}

@media screen and (max-width: 480px) {
    .boxModel {
        width: 284px;
        height: 200px;
    }
}

/* ============================================================
        6. WHY CHOOSE US
        ============================================================ */
.section-why {
    background: #fff;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px,4vw,60px);
    align-items: center;
}

.why-text p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 14px !important;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-point {
    display: flex;
    gap: 13px;
    align-items: flex-start;
}

.why-point-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15.5px;
    color: var(--navy);
}

.why-point-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
    margin-top: 2px;
}

.why-media {
    position: relative;
}

.why-media-slot {
    width: 354px;
    aspect-ratio: 3/5;
    height: 322px;
    border-radius: 20px;
    box-shadow: 0 30px 60px -34px rgba(16,62,79,.55);
    background: var(--soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
    padding: 16px;
    border: 1px dashed var(--line);
}

.why-tags {
    position: absolute;
    left: 18px;
    bottom: -16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.why-tag {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--navy);
    box-shadow: 0 10px 24px -14px rgba(16,62,79,.4);
}

/* ============================================================
        7. 9 REASONS
        ============================================================ */
.section-reasons {
    background: var(--soft);
    border-top: 1px solid var(--line);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
    gap: 16px;
}

.reason-card {
    padding: 24px 24px 22px;
    position: relative;
}

.reason-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: var(--soft2);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.reason-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 4px;
}

.reason-sub {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13.5px;
    color: var(--brand);
    margin-bottom: 8px;
}

.reason-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55;
}

@media screen and (max-width: 768px) {
    .reasons-grid {
        grid-template-columns: repeat(auto-fill,minmax(284px,1fr));
    }
}

/* ============================================================
        8. EDITORIAL (durable / brand-ready)
        ============================================================ */
.section-editorial {
    background: #fff;
}

.editorial-media-slot {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 16px;
    background: var(--soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 12.5px;
    text-align: center;
    padding: 12px;
    border: 1px dashed var(--line);
}

    .editorial-media-slot.offset {
        margin-top: 26px;
    }

.editorial-text p {
    font-size: 15.5px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 14px !important;
}

.material-callout {
    background: #fafaf5;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 25px;
}

.material-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #ffead9;
    color: #a6600a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.material-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    color: var(--navy);
}

.material-desc {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.55;
    margin-top: 3px;
}

/* ============================================================
          9. Paperboard
          ============================================================ */
.section-paperboard {
    background: var(--soft2);
    border-top: 1px solid var(--line);
}

table.paperboardTbl {
    border-collapse: collapse;
    width: 100%;
    border: none;
}

    table.paperboardTbl th:first-of-type {
        background: transparent;
        border: none;
    }

    table.paperboardTbl th {
        background: var(--navy);
        color: #fff;
        padding: 14px 22px;
        border-radius: 18px 18px 0px 0px;
        text-align: center;
    }

    .paperboardTbl thead tr.imageRow th {
        background: transparent;
        border: none;
        padding: 0 10px 10px;
    }

    .paperboardTbl thead tr.imageRow img {
        display: block;
        max-width: 250px;
        margin: 0 auto;
    }

    table.paperboardTbl td {
        background: #fff;
        padding: 16px 22px;
    }

        table.paperboardTbl td:first-of-type {
            color: var(--navy);
        }

/* Mobile */
@media (max-width: 768px) {

    .paperboardTbl,
    .paperboardTbl thead,
    .paperboardTbl tbody,
    .paperboardTbl th,
    .paperboardTbl td,
    .paperboardTbl tr {
        display: block;
    }

        .paperboardTbl thead {
            display: none;
        }

        .paperboardTbl tr {
            margin-bottom: 20px;
            border: 1px solid #ddd;
            border-radius: 6px;
            overflow: hidden;
            background: #fff;
        }

        .paperboardTbl td {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            border: none;
            border-bottom: 1px solid #eee;
            padding: 12px 15px;
            text-align: left;
        }

            .paperboardTbl td:last-child {
                border-bottom: none;
            }

            .paperboardTbl td::before {
                content: attr(data-label);
                flex: 0 0 42%;
                font-weight: 700;
                color: var(--navy);
            }

            .paperboardTbl td > * {
                flex: 1;
            }
}


/* ============================================================
        9. BOX TYPES
        ============================================================ */
.section-boxtypes {
    background: #fff;
}

.boxtypes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
    gap: 18px;
}

.boxtype-card {
    display: flex;
    flex-direction: column;
}

.boxtype-media {
    position: relative;
}

.boxtype-media-slot {
    aspect-ratio: 10/8;
    background: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 12.5px;
    text-align: center;
	padding: 50px;
    border-radius: 18px 18px 0px 0px;
}

.boxtype-media-slot img{
    border-radius: 18px 18px 0px 0px;
}

.boxtype-tag {
    position: absolute;
    left: 14px;
    top: 14px;
    background: rgba(16,62,79,.88);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 7px;
    backdrop-filter: blur(4px);
}

.boxtype-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 11px;
    flex: 1;
}

.boxtype-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 19px;
    color: var(--navy);
}

.boxtype-bestfor {
    font-size: 13.5px;
    color: var(--muted);
    margin-top: 3px;
    line-height: 1.5;
}

    .boxtype-bestfor strong {
        color: var(--navy);
        font-weight: 600;
    }

.boxtype-examples {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.5;
}

.boxtype-perfect {
    background: var(--soft2);
    color: var(--brand-dark);
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    width: fit-content;
}

.boxtype-foot {
    border-top: 1px solid var(--line);
    padding-top: 12px;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.boxtype-line {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    font-size: 13px;
    line-height: 1.5;
}

    .boxtype-line svg {
        flex-shrink: 0;
        margin-top: 2px;
    }

    .boxtype-line.pro {
        color: var(--ink);
    }

        .boxtype-line.pro strong {
            font-weight: 700;
            color: var(--green);
        }

    .boxtype-line.con {
        color: var(--muted);
    }

        .boxtype-line.con strong {
            font-weight: 700;
            color: var(--ink);
        }

@media screen and (max-width: 768px) {
    .boxtypes-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill,minmax(284px,1fr));
        gap: 18px;
    }
}

/* ============================================================
        10. BEST SELLER MODELS
        ============================================================ */
.section-bestsellers {
    background: var(--soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section-head-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 34px;
}

    .section-head-row .h2 {
        margin-bottom: 10px;
    }

    .section-head-row .lede {
        max-width: 640px;
    }

        .section-head-row .lede p {
            font-size: 16px;
            color: var(--muted);
            margin: 0;
            line-height: 1.6;
        }

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(255px,1fr));
    gap: 16px;
}

.model-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    transition: box-shadow .2s, border-color .2s;
}

    .model-card:hover {
        border-color: var(--brand);
        box-shadow: 0 18px 40px -24px rgba(16,62,79,.5);
        text-decoration: none;
    }

.model-media {
    position: relative;
}

.model-media-slot {
    width: 100%;
    aspect-ratio: 10/8;
    background: var(--soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 12px;
    text-align: center;
    border-radius: 18px 18px 0px 0px;
}

.model-media-slot img{
    border-radius: 18px 18px 0px 0px;
}

.model-code {
    position: absolute;
    left: 12px;
    top: 12px;
    background: var(--navy);
    color: var(--sky);
    font-family: ui-monospace,monospace;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .06em;
    padding: 4px 9px;
    border-radius: 7px;
}

.model-badge {
    position: absolute;
    right: 12px;
    top: 12px;
    background: var(--gold-bright);
    color: #3a2600;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 7px;
}

.model-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.model-category {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--navy);
    line-height: 1.3;
}

.model-structure {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--brand);
    line-height: 1.4;
}

.model-bestfor {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

    .model-bestfor strong {
        color: var(--ink);
        font-weight: 600;
    }

.model-note {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.5;
    margin-top: auto;
    padding-top: 6px;
    border-top: 1px dashed var(--line);
}

/* ============================================================
        11. STYLE GROUPS / IDEAL FOR
        ============================================================ */
.section-idealfor {
    background: #fff;
}

.idealfor-lede {
    max-width: 720px;
    margin-bottom: 36px;
}

    .idealfor-lede p {
        font-size: 16px;
        color: var(--muted);
        margin: 0;
        line-height: 1.65;
    }

.stylegroups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(290px,1fr));
    gap: 18px;
    margin-bottom: 26px;
}

.stylegroup-card {
    padding: 26px 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stylegroup-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stylegroup-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 19px;
    color: var(--navy);
    line-height: 1.25;
}

.stylegroup-structures {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand);
}

.stylegroup-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

.finishing-banner {
    background: linear-gradient(135deg,var(--navy),var(--brand));
    border-radius: 20px;
    padding: clamp(24px,3vw,34px);
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    gap: 18px 30px;
    align-items: center;
    justify-content: space-between;
}

.finishing-banner-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 6px;
}

.finishing-banner-desc {
    font-size: 14.5px;
    color: #cfe2ea;
    line-height: 1.6;
    max-width: 620px;
}

.finishing-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.finishing-chip {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 999px;
    padding: 7px 15px;
    font-size: 13px;
    font-weight: 600;
}

/* ============================================================
        12. SHOP BY INDUSTRY
        ============================================================ */
.section-industries {
    background: var(--soft2);
    border-top: 1px solid var(--line);
}

.industry-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    justify-content: center;
    margin-bottom: 30px;
}

.industry-tab {
    border: 1.5px solid var(--line);
    background: #fff;
    color: var(--navy);
    border-radius: 999px;
    padding: 10px 20px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s;
}

    .industry-tab.active {
        border-color: var(--brand);
        background: var(--brand);
        color: #fff;
    }

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
    gap: 16px;
}

.industry-card {
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.industry-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.industry-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16.5px;
    color: var(--navy);
    letter-spacing: .01em;
}

.industry-examples {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.55;
}

.industry-recs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
    padding-top: 6px;
}

.industry-rec {
    background: var(--soft2);
    color: var(--brand-dark);
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    .industry-grid {
        grid-template-columns: repeat(auto-fill,minmax(284px,1fr));
    }
}

/* ============================================================
        13. CUSTOM QUOTE
        ============================================================ */
.section-custom {
    background: #fff;
}

.custom-table {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    /* overflow:hidden; */
    width: 100%;
    margin-bottom: 20px;
}

.custom-table-head {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    background: var(--navy);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13.5px;
    border-radius: 15px 15px 0px 0px;
}

    .custom-table-head div {
        padding: 14px 22px;
    }

        .custom-table-head div + div {
            border-left: 1px solid rgba(255,255,255,.14);
        }

.custom-row {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    border-top: 1px solid var(--line);
    font-size: 14px;
}

.custom-row-type {
    padding: 16px 22px;
    font-weight: 700;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 10px;
}

    .custom-row-type svg {
        color: var(--brand);
        flex-shrink: 0;
    }

.custom-row-desc {
    padding: 16px 22px;
    border-left: 1px solid var(--line);
    color: var(--muted);
    line-height: 1.55;
}

.quote-panel {
    background: linear-gradient(150deg,var(--navy),var(--brand));
    border-radius: 20px;
    padding: clamp(24px,2.5vw,32px);
    color: #fff;
    display: flex;
    flex-direction: column;
}

.quote-panel-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 4px;
}

.quote-panel-sub {
    font-size: 14px;
    color: #cfe2ea;
    margin-bottom: 18px;
}

.quote-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quote-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.quote-num {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background: rgba(255,255,255,.16);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12.5px;
    flex-shrink: 0;
}

.quote-item span.text {
    font-size: 14px;
    line-height: 1.5;
    color: #eaf4f8;
}

    .quote-item span.text strong {
        font-weight: 700;
        color: #fff;
    }

.quote-quote {
    font-size: 13px;
    color: #9fd6e8;
    line-height: 1.6;
    margin: 18px 0 16px;
    font-style: italic;
}

.quote-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    height: 52px;
    border-radius: 12px;
    background: var(--gold-bright);
    color: #3a2600;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 16px 34px -14px rgba(245,166,35,.5);
    transition: filter .15s;
}

    .quote-cta:hover {
        filter: brightness(1.04);
        text-decoration: none;
    }

/* ============================================================
        14. HOW TO START
        ============================================================ */
.section-start {
    background: var(--soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 16px;
}

.step-card {
    padding: 26px 24px;
    position: relative;
}

.step-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 44px;
    color: var(--soft2);
    line-height: 1;
    position: absolute;
    top: 18px;
    right: 22px;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--soft2);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.step-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16.5px;
    color: var(--navy);
    margin-bottom: 7px;
}

.step-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55;
}

/* ============================================================
        15. TESTIMONIALS
        ============================================================ */
.section-testimonials {
    background: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 16px;
}

.testimonial-card {
    background: #fff;
    border: 1.5px dashed #c9dbe4;
    border-radius: 18px;
    padding: 26px 26px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    color: var(--gold-bright);
    font-size: 16px;
    letter-spacing: 2px;
}

.testimonial-quote {
    font-size: 14.5px;
    color: #9aabb3;
    line-height: 1.65;
    font-style: italic;
}

.testimonial-foot {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--soft2);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
}

.testimonial-who {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13.5px;
    color: var(--navy);
}

.testimonial-industry {
    font-size: 12px;
    color: var(--muted);
}

/* ============================================================
        16. OTHER PACKAGING
        ============================================================ */
.section-others {
    background: var(--soft2);
    border-top: 1px solid var(--line);
}

.others-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(170px,1fr));
    gap: 14px;
}

.other-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    transition: box-shadow .2s, border-color .2s;
}

    .other-card:hover {
        border-color: var(--brand);
        box-shadow: 0 16px 36px -22px rgba(16,62,79,.5);
        text-decoration: none;
    }

.other-media-slot {
    width: 100%;
    aspect-ratio: 1/1;
    background: var(--soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 11.5px;
    text-align: center;
    padding: 8px;
    border-radius: 18px 18px 0px 0px;
}

.other-body {
    padding: 13px 15px;
}

.other-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14.5px;
    color: var(--navy);
}

.other-view {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--brand);
    font-weight: 700;
    font-size: 12px;
    margin-top: 6px;
}

/* ============================================================
        17. FINAL CTA (hidden in source template — kept for completeness)
        ============================================================ */
.section-finalcta {
    background: #fff;
    color: var(--navy);
}

.finalcta-inner {
    margin: 0 auto;
    padding: clamp(48px,5.5vw,84px) clamp(26px,3.5vw,60px);
    text-align: center;
}

.finalcta-title {
    font-family: var(--font-display);
    font-size: clamp(28px,3.4vw,44px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
    line-height: 1.1;
    text-wrap: balance;
}

.finalcta-desc {
    font-size: 17px;
    color: var(--muted);
    margin: 0 auto 30px !important;
    line-height: 1.6;
}

.finalcta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    justify-content: center;
}

/* utility */
.hidden {
    display: none !important;
}

@media (max-width: 860px) {
    .hero-grid, .split, .custom-table-head, .custom-row {
        grid-template-columns: 1fr;
    }

    .editorial-media {
        order: 0;
    }
}
