/* =========================================================
   SALES BURGH
   PUBLIC WEBSITE — MAIN STYLESHEET
   ========================================================= */

/* =========================================================
   01. RESET & BASE
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    background: var(--background);
    color: var(--text);

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
}

/* =========================================================
   02. SALES BURGH COLOR SYSTEM
   ========================================================= */

:root {

    /* ---------- Core Brand ---------- */

    --text: #151515;
    --muted: #707070;

    --background: #F8F3F0;
    --white: #FFFFFF;

    --border: #E4DDD8;


    /* ---------- Brand Green ---------- */

    --green: #0E3B35;
    --green-dark: #092F2A;


    /* ---------- Pink / Blush ---------- */

    --pink: #EADBD3;
    --pink-light: #F3EAE5;


    /* ---------- Utility ---------- */

    --black: #111111;
    --gray-light: #F2EEEB;


    /* ---------- Shadows ---------- */

    --shadow-soft:
        0 15px 45px rgba(17, 17, 17, 0.06);

    --shadow-card:
        0 10px 35px rgba(17, 17, 17, 0.055);


    /* ---------- Border Radius ---------- */

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
}

/* =========================================================
   03. GLOBAL CONTAINER
   ========================================================= */

.container {
    width: min(
        calc(100% - 48px),
        1180px
    );

    margin-left: auto;
    margin-right: auto;
}

/* =========================================================
   04. ADMIN PREVIEW BAR
   ========================================================= */

.admin-preview-bar {
    position: relative;

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 10px;

    padding: 10px 16px;

    background: var(--black);
    color: var(--white);

    font-size: 12px;
    line-height: 1.5;

    text-align: center;

    z-index: 999;
}

.admin-preview-bar strong {
    font-weight: 700;
}

.admin-preview-bar span {
    color: #D0D0D0;
}

.admin-preview-bar a {
    color: #FFFFFF;

    font-weight: 700;

    text-decoration: underline;
    text-underline-offset: 3px;
}

.admin-preview-bar a:hover {
    color: var(--pink);
}

/* =========================================================
   05. HEADER
   ========================================================= */

.site-header {
    position: relative;

    width: 100%;

    background: var(--background);

    border-bottom: 1px solid var(--border);

    z-index: 1000;
}

.header-inner {
    min-height: 84px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

/* =========================================================
   06. LOGO
   ========================================================= */

.site-logo {
    display: inline-flex;
    align-items: center;

    color: var(--text);

    text-decoration: none;

    font-size: 23px;
    line-height: 1;

    font-weight: 750;

    letter-spacing: -0.045em;

    white-space: nowrap;

    transition: color .2s ease;
}

.site-logo:hover {
    color: var(--green);
}

/* =========================================================
   07. DESKTOP NAVIGATION
   ========================================================= */

.site-navigation {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 34px;

    margin-left: auto;
}

.site-navigation a {
    position: relative;

    display: inline-flex;
    align-items: center;

    color: var(--text);

    text-decoration: none;

    font-size: 13px;
    line-height: 1;
    font-weight: 600;

    padding: 10px 0;

    transition: color .2s ease;
}

.site-navigation a:hover {
    color: var(--green);
}

.site-navigation a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 2px;

    width: 0;
    height: 2px;

    background: var(--green);

    transition: width .2s ease;
}

.site-navigation a:hover::after {
    width: 100%;
}

/* =========================================================
   08. HEADER CTA
   ========================================================= */

.header-cta {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 0 21px;

    border-radius: 999px;

    background: var(--green);
    color: var(--white);

    text-decoration: none;

    font-size: 13px;
    line-height: 1;
    font-weight: 700;

    white-space: nowrap;

    transition:
        background .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.header-cta:hover {
    background: var(--green-dark);

    color: var(--white);

    transform: translateY(-1px);

    box-shadow:
        0 8px 20px rgba(14, 59, 53, .15);
}

/* =========================================================
   09. MOBILE MENU BUTTON
   ========================================================= */

/*
   Hidden on desktop.
   Visible below 850px.
*/

.mobile-menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    flex-shrink: 0;

    padding: 0;

    margin-left: auto;

    border: 1px solid var(--border);
    border-radius: 10px;

    background: var(--white);
    color: var(--text);

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;

    appearance: none;
    -webkit-appearance: none;
}

.mobile-menu-toggle span {
    display: block;

    width: 18px;
    height: 2px;

    flex-shrink: 0;

    background: var(--text);

    border-radius: 2px;

    transition:
        transform .2s ease,
        opacity .2s ease;
}

.mobile-menu-toggle:hover {
    border-color: var(--green);
}

/* =========================================================
   10. HERO SECTION
   ========================================================= */

.hero {
    padding: 95px 0 105px;

    background: var(--background);
}

.hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, .9fr);

    gap: 70px;

    align-items: center;
}

/* =========================================================
   11. HERO CONTENT
   ========================================================= */

.hero-content {
    max-width: 660px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;

    color: var(--green);

    font-size: 11px;
    font-weight: 750;

    letter-spacing: .14em;

    text-transform: uppercase;
}

.hero h1 {
    margin: 20px 0 22px;

    font-size: clamp(
        50px,
        6vw,
        80px
    );

    line-height: .96;

    letter-spacing: -.065em;

    font-weight: 750;
}

.hero-highlight {
    display: block;

    color: #7A7A7A;

    font-weight: 500;
}

.hero-description {
    max-width: 620px;

    margin: 0;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.75;
}

/* =========================================================
   12. HERO ACTIONS
   ========================================================= */

.hero-actions {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 32px;
}

/* =========================================================
   13. BUTTON SYSTEM
   ========================================================= */

.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 22px;

    border-radius: 10px;

    text-decoration: none;

    font-size: 13px;

    line-height: 1;

    font-weight: 700;

    transition:
        background .2s ease,
        border-color .2s ease,
        color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}


/* ---------- Primary Button ---------- */

.button-primary {
    background: var(--green);

    color: var(--white);

    border: 1px solid var(--green);
}

.button-primary:hover {
    background: var(--green-dark);

    border-color: var(--green-dark);

    color: var(--white);

    box-shadow:
        0 10px 25px rgba(14, 59, 53, .14);
}


/* ---------- Secondary Button ---------- */

.button-secondary {
    background: var(--white);

    color: var(--text);

    border: 1px solid var(--border);
}

.button-secondary:hover {
    background: var(--pink-light);

    color: var(--green);

    border-color: var(--pink);
}


/* ---------- Light Button ---------- */

.button-light {
    background: var(--white);

    color: var(--green);

    border: 1px solid var(--white);
}

.button-light:hover {
    background: var(--pink-light);

    color: var(--green-dark);

    border-color: var(--pink-light);
}

/* =========================================================
   14. HERO IMAGE
   ========================================================= */

.hero-image {
    position: relative;

    overflow: hidden;

    border-radius: var(--radius-lg);

    background: var(--pink);

    box-shadow: var(--shadow-soft);
}

.hero-image::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.10),
            transparent 45%
        );
}

.hero-image img {
    width: 100%;

    height: 570px;

    object-fit: cover;

    display: block;
}

/* =========================================================
   15. GENERAL SECTIONS
   ========================================================= */

.benefits-section,
.about-section {
    padding: 105px 0;
}

/* =========================================================
   16. SECTION HEADINGS
   ========================================================= */

.section-heading {
    max-width: 700px;

    margin-bottom: 48px;
}

.section-heading > span {
    display: inline-block;

    color: var(--green);

    font-size: 11px;

    font-weight: 750;

    letter-spacing: .14em;

    text-transform: uppercase;
}

.section-heading h2,
.about-content h2 {
    margin: 15px 0 0;

    font-size: clamp(
        38px,
        5vw,
        60px
    );

    line-height: 1;

    letter-spacing: -.055em;

    font-weight: 720;
}

/* =========================================================
   17. BENEFITS SECTION
   ========================================================= */

.benefits-section {
    background: var(--white);
}

.benefits-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}

.benefit-card {
    position: relative;

    min-height: 260px;

    padding: 28px;

    background: var(--background);

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);

    border-color: var(--pink);

    box-shadow: var(--shadow-card);
}

.benefit-number {
    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 45px;

    border-radius: 50%;

    background: var(--pink);

    color: var(--green);

    font-size: 11px;

    font-weight: 750;
}

.benefit-card h3 {
    margin: 0 0 10px;

    color: var(--text);

    font-size: 20px;

    line-height: 1.2;

    letter-spacing: -.025em;
}

.benefit-card p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.75;
}

/* =========================================================
   18. ABOUT SECTION
   ========================================================= */

.about-section {
    background: var(--background);
}

.about-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 75px;

    align-items: center;
}

.about-image {
    overflow: hidden;

    border-radius: var(--radius-lg);

    background: var(--pink);
}

.about-image img {
    width: 100%;

    height: 520px;

    object-fit: cover;

    display: block;
}

.about-content h2 {
    margin-bottom: 25px;
}

.about-description {
    color: var(--muted);

    font-size: 15px;

    line-height: 1.85;

    margin-bottom: 30px;
}

/* =========================================================
   19. CTA SECTION
   ========================================================= */

.cta-section {
    padding: 85px 0;

    background: var(--white);
}

.cta-card {
    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    padding: 60px;

    background: var(--green);

    color: var(--white);

    border-radius: var(--radius-lg);
}

.cta-card::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -120px;
    bottom: -150px;

    border-radius: 50%;

    background:
        rgba(234, 219, 211, .13);

    pointer-events: none;
}

.cta-card > * {
    position: relative;

    z-index: 1;
}

.cta-card h2 {
    margin: 0 0 12px;

    max-width: 720px;

    font-size: clamp(
        35px,
        5vw,
        58px
    );

    line-height: .98;

    letter-spacing: -.055em;
}

.cta-card p {
    max-width: 650px;

    margin: 0;

    color: rgba(255,255,255,.72);

    font-size: 14px;

    line-height: 1.7;
}

/* =========================================================
   20. FOOTER
   ========================================================= */

.site-footer {
    padding: 90px 0 30px;

    background: var(--background);

    border-top: 1px solid var(--border);
}


.footer-grid {
    display: grid;

    grid-template-columns:
        1.7fr 1fr 1fr;

    gap: 70px;

    padding-bottom: 65px;
}

/* =========================================================
   21. FOOTER BRAND
   ========================================================= */

.footer-logo {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--text);

    text-decoration: none;

    font-size: 21px;

    line-height: 1;

    font-weight: 750;

    letter-spacing: -.035em;

    transition: color .2s ease;
}


.footer-logo:hover {
    color: var(--green);
}


.footer-brand p {
    max-width: 380px;

    margin: 0;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.75;
}

/* =========================================================
   22. FOOTER NAVIGATION
   ========================================================= */

.footer-navigation,
.footer-contact {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 11px;
}


.footer-navigation h4,
.footer-contact h4 {
    margin: 0 0 12px;

    color: var(--text);

    font-size: 11px;

    font-weight: 750;

    letter-spacing: .12em;

    line-height: 1.2;

    text-transform: uppercase;
}


.footer-navigation a,
.footer-contact a {
    color: var(--muted);

    text-decoration: none;

    font-size: 13px;

    line-height: 1.5;

    transition:
        color .2s ease,
        transform .2s ease;
}


.footer-navigation a:hover,
.footer-contact a:hover {
    color: var(--green);

    transform: translateX(2px);
}

/* =========================================================
   23. FOOTER BOTTOM
   ========================================================= */

.footer-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-top: 22px;

    border-top: 1px solid var(--border);

    color: #888888;

    font-size: 11px;

    line-height: 1.5;
}


.footer-bottom a {
    color: #777777;

    text-decoration: none;

    transition: color .2s ease;
}


.footer-bottom a:hover {
    color: var(--green);
}

/* =========================================================
   24. DESKTOP
   MOBILE MENU MUST STAY HIDDEN
   ========================================================= */

@media (min-width: 851px) {

    .mobile-menu-toggle {
        display: none !important;

        visibility: hidden !important;

        width: 0 !important;
        height: 0 !important;

        padding: 0 !important;
        margin: 0 !important;

        border: 0 !important;

        overflow: hidden !important;
    }

    .site-navigation {
        display: flex !important;
    }

    .header-cta {
        display: inline-flex !important;
    }
}

/* =========================================================
   25. TABLET / MOBILE
   MAX WIDTH: 850PX
   ========================================================= */

@media (max-width: 850px) {

    /* =====================================================
       25.0 CONTAINER
       ===================================================== */

    .container {
        width: min(
            calc(100% - 36px),
            1180px
        );
    }


    /* =====================================================
       25.1 HEADER
       ===================================================== */

    .header-inner {
        min-height: 74px;

        /*
         * IMPORTANT:
         * Allows the mobile navigation to take its
         * own row instead of covering the website.
         */
        flex-wrap: wrap;

        position: relative;
    }


    /* =====================================================
       25.2 MOBILE MENU BUTTON
       ===================================================== */

    .mobile-menu-toggle {
        display: flex !important;

        visibility: visible !important;

        width: 42px !important;
        height: 42px !important;

        padding: 0 !important;

        margin-left: auto !important;

        border: 1px solid var(--border) !important;

        border-radius: 10px;

        background: var(--white);

        color: var(--text);

        align-items: center;
        justify-content: center;

        flex-direction: column;

        gap: 5px;

        cursor: pointer;

        flex-shrink: 0;
    }


    .mobile-menu-toggle span {
        display: block;

        width: 18px;
        height: 2px;

        background: var(--text);

        border-radius: 2px;

        transition:
            transform .2s ease,
            opacity .2s ease;
    }


    .mobile-menu-toggle:hover {
        border-color: var(--green);

        background: var(--pink-light);
    }


    /* =====================================================
       25.3 MOBILE NAVIGATION
       ===================================================== */

    .site-navigation {

        /*
         * IMPORTANT:
         * Do NOT use absolute positioning here.
         * The menu should push the hero down.
         */
        position: static !important;

        width: 100%;

        display: none !important;

        flex-direction: column;

        align-items: stretch;

        gap: 2px;

        /*
         * This puts the menu underneath the header row.
         */
        margin: 8px 0 12px;

        padding: 8px;

        background: var(--white);

        border: 1px solid var(--border);

        border-radius: 16px;

        box-shadow:
            0 18px 45px
            rgba(21, 21, 21, 0.10);

        /*
         * Make sure the navigation takes
         * the complete row.
         */
        flex-basis: 100%;

        order: 10;

        z-index: 1100;
    }


    /*
     * JavaScript adds .open when hamburger
     * is clicked.
     */

    .site-navigation.open {
        display: flex !important;
    }


    /* =====================================================
       25.4 MOBILE NAVIGATION LINKS
       ===================================================== */

    .site-navigation a {

        display: flex;

        align-items: center;

        min-height: 46px;

        padding: 0 14px;

        border-radius: 9px;

        color: var(--text);

        font-size: 14px;

        font-weight: 600;

        text-decoration: none;

        transition:
            background .2s ease,
            color .2s ease;
    }


    .site-navigation a:hover {
        background: var(--pink-light);

        color: var(--green);
    }


    /*
     * Disable desktop underline animation
     * inside mobile menu.
     */

    .site-navigation a::after {
        display: none;
    }


    /* =====================================================
       25.5 HEADER CTA
       ===================================================== */

    .header-cta {
        display: none !important;
    }


    /* =====================================================
       25.6 HERO
       ===================================================== */

    .hero {
        padding: 70px 0 80px;
    }


    .hero-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .hero-content {
        max-width: 720px;
    }


    .hero h1 {
        font-size: clamp(
            48px,
            9vw,
            70px
        );
    }


    .hero-image {
        order: 2;
    }


    .hero-image img {
        height: 470px;
    }


    /* =====================================================
       25.7 BENEFITS
       ===================================================== */

    .benefits-section,
    .about-section {
        padding: 80px 0;
    }


    .benefits-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    /* =====================================================
       25.8 ABOUT
       ===================================================== */

    .about-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .about-image {
        order: 1;
    }


    .about-content {
        order: 2;
    }


    /* =====================================================
       25.9 CTA
       ===================================================== */

    .cta-card {
        flex-direction: column;

        align-items: flex-start;

        padding: 45px 35px;
    }


    /* =====================================================
       25.10 FOOTER
       ===================================================== */

    .footer-grid {
        grid-template-columns:
            1.5fr 1fr 1fr;
    }


    /* =====================================================
       25.11 ADMIN PREVIEW BAR
       ===================================================== */

    .admin-preview-bar {
        padding: 9px 12px;

        font-size: 11px;

        gap: 5px 9px;
    }
}

/* =========================================================
   26. MOBILE
   MAX WIDTH: 600PX
   ========================================================= */

@media (max-width: 600px) {

    /* =====================================================
       26.0 CONTAINER
       ===================================================== */

    .container {
        width: calc(100% - 32px);
    }


    /* =====================================================
       26.1 HEADER
       ===================================================== */

    .header-inner {
        min-height: 72px;

        flex-wrap: wrap;
    }


    .site-logo {
        font-size: 20px;
    }


    .mobile-menu-toggle {
        width: 42px !important;
        height: 42px !important;
    }


    /* =====================================================
       26.2 MOBILE NAVIGATION
       ===================================================== */

    .site-navigation {

        /*
         * Keep it in normal document flow.
         */
        position: static !important;

        width: 100%;

        margin-top: 8px;
        margin-bottom: 12px;

        padding: 7px;

        border-radius: 15px;

        flex-basis: 100%;

        order: 10;
    }


    .site-navigation a {
        min-height: 46px;

        padding: 0 13px;

        font-size: 14px;
    }


    /* =====================================================
       26.3 HERO
       ===================================================== */

    .hero {
        padding: 58px 0 70px;
    }


    .hero h1 {
        margin-top: 17px;

        font-size: 46px;

        line-height: .98;
    }


    .hero-description {
        font-size: 15px;

        line-height: 1.7;
    }


    .hero-actions {
        flex-direction: column;

        align-items: stretch;

        width: 100%;
    }


    .hero-actions .button {
        width: 100%;
    }


    .hero-image img {
        height: 390px;
    }


    /* =====================================================
       26.4 SECTIONS
       ===================================================== */

    .benefits-section,
    .about-section {
        padding: 65px 0;
    }


    .section-heading {
        margin-bottom: 35px;
    }


    .section-heading h2,
    .about-content h2 {
        font-size: 42px;
    }


    /* =====================================================
       26.5 BENEFITS
       ===================================================== */

    .benefits-grid {
        grid-template-columns: 1fr;
    }


    .benefit-card {
        min-height: auto;

        padding: 24px;
    }


    .benefit-number {
        margin-bottom: 35px;
    }


    /* =====================================================
       26.6 ABOUT
       ===================================================== */

    .about-image img {
        height: 390px;
    }


    .about-description {
        font-size: 14px;
    }


    /* =====================================================
       26.7 CTA
       ===================================================== */

    .cta-section {
        padding: 60px 0;
    }


    .cta-card {
        padding: 38px 25px;

        border-radius: 18px;
    }


    .cta-card h2 {
        font-size: 38px;
    }


    /* =====================================================
       26.8 FOOTER
       ===================================================== */

    .site-footer {
        padding-top: 55px;
    }


    .footer-grid {
        grid-template-columns: 1fr;

        gap: 32px;
    }


    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 10px;

        margin-top: 45px;
    }


    /* =====================================================
       26.9 ADMIN PREVIEW BAR
       ===================================================== */

    .admin-preview-bar {
        flex-direction: column;

        gap: 2px;

        padding: 8px 12px;

        text-align: center;
    }
}

/* =========================================================
   27. VERY SMALL MOBILE
   MAX WIDTH: 400PX
   ========================================================= */

@media (max-width: 400px) {

    /* =====================================================
       27.1 HERO
       ===================================================== */

    .hero h1 {
        font-size: 40px;
    }


    .hero-image img {
        height: 330px;
    }


    /* =====================================================
       27.2 SECTION HEADINGS
       ===================================================== */

    .section-heading h2,
    .about-content h2 {
        font-size: 37px;
    }


    /* =====================================================
       27.3 CTA
       ===================================================== */

    .cta-card h2 {
        font-size: 34px;
    }


    /* =====================================================
       27.4 MOBILE MENU
       ===================================================== */

    .mobile-menu-toggle {
        width: 40px !important;

        height: 40px !important;
    }


    .site-navigation a {
        min-height: 42px;

        font-size: 13px;
    }
}

/* =========================================================
   BENEFIT ICONS
   ========================================================= */

.benefit-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 55px;
}


.benefit-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: var(--green);

    color: var(--white);

    flex-shrink: 0;
}


.benefit-icon svg {

    width: 21px;
    height: 21px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;

    stroke-linejoin: round;
}

/* =========================================================
   28. FEATURED ON
   ========================================================= */

.featured-section {
    padding: 100px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.featured-item {
    min-height: 110px;
    padding: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}

.featured-item:hover {
    transform: translateY(-3px);
    border-color: var(--pink);
    box-shadow: var(--shadow-card);
}

.featured-item img {
    width: 100%;
    max-width: 150px;
    max-height: 58px;
    object-fit: contain;
}

.featured-item span {
    color: var(--green);
    font-size: 14px;
    font-weight: 750;
    text-align: center;
}

/* =========================================================
   29. SERVICES
   ========================================================= */

.services-section {
    padding: 105px 0;
    background: var(--background);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.service-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--pink);
    box-shadow: var(--shadow-card);
}

.service-image {
    overflow: hidden;
    background: var(--pink);
}

.service-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform .35s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.025);
}

.service-content {
    padding: 27px;
}

.service-content h3 {
    margin: 0 0 11px;
    color: var(--text);
    font-size: 21px;
    line-height: 1.2;
    letter-spacing: -.025em;
}

.service-content p {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}

/* =========================================================
   30. HOW IT WORKS
   ========================================================= */

.how-it-works-section {
    padding: 105px 0;
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.step-card {
    position: relative;
    min-height: 235px;
    padding: 28px;

    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: var(--pink);
    box-shadow: var(--shadow-card);
}

.step-number {
    width: 45px;
    height: 45px;
    margin-bottom: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: var(--green);
    color: var(--white);

    font-size: 11px;
    font-weight: 750;
}

.step-card h3 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -.025em;
}

.step-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}

/* =========================================================
   31. TESTIMONIALS
   ========================================================= */

.testimonials-section {
    padding: 105px 0;
    background: var(--background);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.testimonial-card {
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--pink);
    box-shadow: var(--shadow-card);
}

.testimonial-photo {
    width: 58px;
    height: 58px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 50%;
    background: var(--pink);
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    margin: 0 0 22px;
    color: var(--text);
    font-size: 15px;
    line-height: 1.75;
}

.testimonial-card h3 {
    margin: 0 0 4px;
    color: var(--text);
    font-size: 15px;
    line-height: 1.3;
}

.testimonial-role {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.5;
}

/* =========================================================
   32. AWARDS
   ========================================================= */

.awards-section {
    padding: 100px 0;
    background: var(--white);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.award-card {
    min-height: 270px;
    padding: 25px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.award-card:hover {
    transform: translateY(-4px);
    border-color: var(--pink);
    box-shadow: var(--shadow-card);
}

.award-image {
    width: 150px;
    height: 120px;
    margin-bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--white);
    border-radius: 10px;
}

.award-image img {
    width: 100%;
    height: 100%;
    padding: 12px;
    object-fit: contain;
}

.award-card h3 {
    margin: 0 0 8px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.3;
}

.award-card p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

/* =========================================================
   33. FAQ
   ========================================================= */

.faq-section {
    padding: 105px 0;
    background: var(--background);
}

.faq-list {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.faq-item summary {
    min-height: 70px;
    padding: 0 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    cursor: pointer;
    list-style: none;

    color: var(--text);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: var(--pink);

    color: var(--green);
    font-size: 18px;
    font-weight: 500;

    transition: transform .2s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 22px 22px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

/* =========================================================
   34. NEWSLETTER
   ========================================================= */

.newsletter-section {
    padding: 85px 0;
    background: var(--white);
}

.newsletter-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .75fr);
    align-items: center;
    gap: 50px;

    padding: 50px;

    background: var(--pink-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.newsletter-content {
    min-width: 0;
}

.newsletter-content h2 {
    margin: 14px 0 12px;

    color: var(--text);

    font-size: clamp(35px, 4vw, 52px);
    line-height: 1;
    letter-spacing: -.05em;
}

.newsletter-content p {
    max-width: 590px;
    margin: 0;

    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.newsletter-form {
    width: 100%;
}

.newsletter-form-row {
    display: flex;
    align-items: stretch;
    gap: 9px;
}

.newsletter-form input[type="email"] {
    width: 100%;
    min-width: 0;
    height: 50px;

    padding: 0 15px;

    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;

    color: var(--text);
    font-size: 13px;

    outline: none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(14,59,53,.07);
}

.newsletter-form .button {
    flex: 0 0 auto;
    min-height: 50px;
}

/* =========================================================
   35. NEW HOMEPAGE SECTION RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .featured-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .awards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .newsletter-card {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}


@media (max-width: 850px) {

    .featured-section,
    .services-section,
    .how-it-works-section,
    .testimonials-section,
    .awards-section,
    .faq-section {
        padding: 80px 0;
    }

    .featured-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .newsletter-section {
        padding: 70px 0;
    }

    .newsletter-card {
        padding: 40px 32px;
    }
}


@media (max-width: 600px) {

    .featured-section,
    .services-section,
    .how-it-works-section,
    .testimonials-section,
    .awards-section,
    .faq-section {
        padding: 65px 0;
    }

    .featured-grid,
    .services-grid,
    .steps-grid,
    .testimonials-grid,
    .awards-grid {
        grid-template-columns: 1fr;
    }

    .featured-item {
        min-height: 95px;
    }

    .service-image img {
        height: 215px;
    }

    .step-card {
        min-height: auto;
    }

    .award-card {
        min-height: 240px;
    }

    .faq-item summary {
        min-height: 64px;
        padding: 0 17px;
        font-size: 14px;
    }

    .faq-answer {
        padding: 0 17px 19px;
        font-size: 13px;
    }

    .newsletter-section {
        padding: 60px 0;
    }

    .newsletter-card {
        padding: 32px 22px;
        border-radius: 18px;
    }

    .newsletter-content h2 {
        font-size: 38px;
    }

    .newsletter-form-row {
        flex-direction: column;
    }

    .newsletter-form input[type="email"],
    .newsletter-form .button {
        width: 100%;
    }
}


@media (max-width: 400px) {

    .featured-item {
        min-height: 90px;
        padding: 16px;
    }

    .service-content {
        padding: 23px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .award-card {
        padding: 22px;
    }

    .newsletter-card {
        padding: 28px 18px;
    }

    .newsletter-content h2 {
        font-size: 34px;
    }
}

/* =========================================================
   36. HOMEPAGE CONTENT SAFETY
   ========================================================= */

.featured-section,
.services-section,
.how-it-works-section,
.testimonials-section,
.awards-section,
.faq-section,
.newsletter-section {
    overflow: hidden;
}

.featured-grid,
.services-grid,
.steps-grid,
.testimonials-grid,
.awards-grid,
.newsletter-card {
    min-width: 0;
}

.featured-item,
.service-card,
.step-card,
.testimonial-card,
.award-card,
.faq-item,
.newsletter-card {
    min-width: 0;
}

.featured-item img,
.service-image img,
.testimonial-photo img,
.award-image img {
    max-width: 100%;
}

/* =========================================================
   END — COMPLETE PUBLIC WEBSITE CSS
========================================================= */

/* =========================================================
   CRITICAL SVG / ICON FIX
   Prevent icons from becoming giant black shapes
========================================================= */

.benefit-icon,
.step-icon,
.service-icon,
.featured-icon,
.award-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg,
.step-icon svg,
.service-icon svg,
.featured-icon svg,
.award-icon svg {
    display: block;
    width: 28px;
    height: 28px;
    max-width: 28px;
    max-height: 28px;
    min-width: 28px;
    min-height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* Benefit cards */

.benefit-card {
    position: relative;
    overflow: hidden;
}

.benefit-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}


/* Steps */

.step-card {
    position: relative;
    overflow: hidden;
}

.step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
}


/* Prevent any raw SVG from affecting page layout */

svg {
    max-width: 100%;
}


/* Images */

img {
    max-width: 100%;
    height: auto;
}

/* =========================================================
   SINGLE PAGE NAVIGATION
========================================================= */

html {
    scroll-behavior: smooth;
}

#home,
#about,
#services,
#how-it-works,
#testimonials,
#faq,
#contact {
    scroll-margin-top: 100px;
}

/* =========================================================
   LOGO IMAGE SUPPORT
========================================================= */

.site-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.site-logo img {
    display: block;
    width: auto;
    max-width: 180px;
    height: auto;
    max-height: 52px;
    object-fit: contain;
}

@media (max-width: 600px) {
    .site-logo img {
        max-width: 150px;
        max-height: 46px;
    }
}

/* =========================================================
   SINGLE-PAGE ANCHOR TARGETS
   Header offset for smooth navigation
========================================================= */

#home,
#why,
#why-sales-burgh,
#about,
#services,
#featured-on,
#how-it-works,
#testimonials,
#awards,
#faq,
#newsletter,
#contact {
    scroll-margin-top: 100px;
}
/* =========================================================
   SALES BURGH — FINAL HEADER FIX
   Compatible with current homepage CSS
========================================================= */

/* ---------------------------------------------------------
   HEADER BASE
--------------------------------------------------------- */

.site-header {
    position: relative;
    width: 100%;
    z-index: 1000;
    background: var(--background);
    border-bottom: 1px solid var(--border);
}

.site-header .header-inner {
    min-height: 84px;

    display: flex;
    align-items: center;

    width: min(
        calc(100% - 48px),
        1180px
    );

    margin-left: auto;
    margin-right: auto;

    gap: 24px;
}


/* ---------------------------------------------------------
   LOGO
--------------------------------------------------------- */

.site-header .site-logo {
    display: inline-flex;
    align-items: center;

    flex: 0 0 auto;

    width: auto;
    max-width: 180px;

    margin: 0;
    padding: 0;

    text-decoration: none;
}

.site-header .site-logo-image {
    display: block;

    width: auto;
    max-width: 170px;

    height: auto;
    max-height: 50px;

    object-fit: contain;
}


/* ---------------------------------------------------------
   DESKTOP NAVIGATION
--------------------------------------------------------- */

.site-header .site-navigation {
    display: flex;

    align-items: center;
    justify-content: flex-end;

    flex: 1 1 auto;

    min-width: 0;

    margin: 0;

    gap: 20px;

    white-space: nowrap;
}

.site-header .site-navigation a {
    position: relative;

    display: inline-flex;
    align-items: center;

    flex: 0 0 auto;

    padding: 10px 0;

    color: var(--text);

    font-size: 12px;
    line-height: 1;

    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;

    transition:
        color .2s ease;
}

.site-header .site-navigation a:hover {
    color: var(--green);
}

.site-header .site-navigation a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 2px;

    width: 0;
    height: 2px;

    background: var(--green);

    transition: width .2s ease;
}

.site-header .site-navigation a:hover::after {
    width: 100%;
}


/* ---------------------------------------------------------
   HEADER CTA
--------------------------------------------------------- */

.site-header .header-cta {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    min-height: 44px;

    padding: 0 19px;

    border-radius: 999px;

    background: var(--green);
    color: var(--white);

    font-size: 12px;
    line-height: 1;
    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;
}

.site-header .header-cta:hover {
    background: var(--green-dark);
    color: var(--white);
}


/* ---------------------------------------------------------
   MOBILE BUTTON
--------------------------------------------------------- */

.site-header .mobile-menu-toggle {
    display: none;

    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    margin: 0;
    padding: 0;

    border: 1px solid var(--border);
    border-radius: 10px;

    background: var(--white);

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;
}

.site-header .mobile-menu-toggle span {
    display: block;

    width: 18px;
    height: 2px;

    background: var(--text);

    border-radius: 2px;
}


/* =========================================================
   MEDIUM DESKTOP
   851px — 1100px
========================================================= */

@media (max-width: 1100px) and (min-width: 851px) {

    .site-header .header-inner {
        gap: 16px;
    }

    .site-header .site-logo {
        max-width: 145px;
    }

    .site-header .site-logo-image {
        max-width: 145px;
        max-height: 44px;
    }

    .site-header .site-navigation {
        gap: 14px;
    }

    .site-header .site-navigation a {
        font-size: 11px;
    }

    .site-header .header-cta {
        padding: 0 15px;
        font-size: 11px;
    }
}


/* =========================================================
   MOBILE / TABLET
   IMPORTANT:
   Use 850px breakpoint to match existing CSS
========================================================= */

@media (max-width: 850px) {

    .site-header .header-inner {
        width: min(
            calc(100% - 36px),
            1180px
        );

        min-height: 74px;

        display: flex;

        flex-wrap: wrap;

        gap: 0;

        position: relative;
    }


    /* Logo */

    .site-header .site-logo {
        max-width: 160px;
    }

    .site-header .site-logo-image {
        max-width: 150px;
        max-height: 46px;
    }


    /* Hamburger */

    .site-header .mobile-menu-toggle {
        display: flex !important;

        visibility: visible !important;

        margin-left: auto !important;
    }


    /* Hide CTA on mobile */

    .site-header .header-cta {
        display: none !important;
    }


    /* Navigation */

    .site-header .site-navigation {
        position: static !important;

        display: none !important;

        width: 100%;

        flex: 0 0 100%;

        flex-direction: column;

        align-items: stretch;

        justify-content: flex-start;

        gap: 2px;

        order: 20;

        margin: 8px 0 12px;

        padding: 8px;

        background: var(--white);

        border: 1px solid var(--border);

        border-radius: 16px;

        box-shadow:
            0 18px 45px
            rgba(21, 21, 21, .10);

        white-space: normal;
    }


    /* Open state */

    .site-header .site-navigation.open {
        display: flex !important;
    }


    /* Mobile links */

    .site-header .site-navigation a {
        display: flex;

        align-items: center;

        width: 100%;

        min-height: 46px;

        padding: 0 14px;

        border-radius: 9px;

        font-size: 14px;

        line-height: 1.2;

        white-space: normal;
    }


    .site-header .site-navigation a:hover {
        background: var(--pink-light);
        color: var(--green);
    }


    .site-header .site-navigation a::after {
        display: none;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 600px) {

    .site-header .header-inner {
        width: calc(100% - 32px);

        min-height: 72px;
    }

    .site-header .site-logo-image {
        max-width: 140px;
        max-height: 44px;
    }

    .site-header .mobile-menu-toggle {
        width: 42px;
        height: 42px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .site-header .site-logo-image {
        max-width: 125px;
        max-height: 40px;
    }

    .site-header .mobile-menu-toggle {
        width: 40px;
        height: 40px;
    }
}


/* =========================================================
   SINGLE-PAGE ANCHOR TARGETS
========================================================= */

#home,
#why,
#why-sales-burgh,
#about,
#services,
#featured-on,
#how-it-works,
#testimonials,
#awards,
#faq,
#newsletter,
#contact {
    scroll-margin-top: 100px;
}
/* =========================================================
   STICKY HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;

    background: var(--background);

    border-bottom: 1px solid var(--border);

    transition:
        box-shadow .25s ease,
        background-color .25s ease;
}
/* =========================================================
   AWARD LIGHTBOX
========================================================= */

.award-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity .2s ease,
        visibility .2s ease;
}

.award-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.award-lightbox-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, .88);

    cursor: zoom-out;
}

.award-lightbox-content {
    position: relative;
    z-index: 2;

    max-width: 95vw;
    max-height: 90vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.award-lightbox-content img {
    display: block;

    max-width: 90vw;
    max-height: 80vh;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 10px;

    background: #fff;

    box-shadow:
        0 25px 80px rgba(0, 0, 0, .45);
}

.award-lightbox-close {
    position: fixed;

    top: 20px;
    right: 25px;

    z-index: 3;

    width: 46px;
    height: 46px;

    border: 0;
    border-radius: 50%;

    background: rgba(255, 255, 255, .15);

    color: #fff;

    font-size: 30px;
    line-height: 1;

    cursor: pointer;
}

.award-lightbox-caption {
    margin-top: 14px;

    color: #fff;

    font-size: 14px;
    font-weight: 600;

    text-align: center;
}

body.award-lightbox-open {
    overflow: hidden;
}


/* MOBILE */

@media (max-width: 600px) {

    .award-lightbox {
        padding: 15px;
    }

    .award-lightbox-content img {
        max-width: 94vw;
        max-height: 78vh;
    }

    .award-lightbox-close {
        top: 14px;
        right: 14px;

        width: 42px;
        height: 42px;

        font-size: 27px;
    }

}