/* =========================================================
   PAWAR RUBBER PRODUCTS
   MARKETS SERVED PAGE
   ========================================================= */


/* =========================================================
   ROOT VARIABLES
   ========================================================= */

:root {

    --black: #151719;
    --dark: #1d1f21;
    --text: #343638;
    --muted: #6f7275;

    --light: #f5f5f3;
    --lighter: #fafaf9;

    --white: #ffffff;

    --border: #dededb;

    --red: #b3262d;

    --container: min(1180px, calc(100% - 48px));

}


/* =========================================================
   RESET
   ========================================================= */

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;
    scrollbar-gutter: stable;

}


html::-webkit-scrollbar {

    width: 0;

}


body {

    overflow-x: hidden;

    font-family: "Inter", sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;

    text-rendering: optimizeLegibility;

}


img {

    max-width: 100%;
    display: block;

}


a {

    color: inherit;
    text-decoration: none;

}


button,
input,
textarea,
select {

    font-family: inherit;

}


button {

    cursor: pointer;

}


.container {

    width: var(--container);

    margin-left: auto;
    margin-right: auto;

}


/* =========================================================
   SCROLL PROGRESS
   ========================================================= */

.scroll-progress {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: transparent;

    z-index: 9999;

}


.scroll-progress span {

    display: block;

    width: 0;
    height: 100%;

    background: var(--red);

}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    min-height: 82px;

    z-index: 1000;

    color: var(--white);

    background: transparent;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        box-shadow 0.35s ease;

}


.site-header.scrolled {

    color: var(--black);

    background: rgba(255, 255, 255, 0.97);

    box-shadow:
        0 5px 24px rgba(0, 0, 0, 0.06);

    backdrop-filter: blur(12px);

}


.header-inner {

    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* =========================================================
   BRAND
   ========================================================= */

.brand {

    display: flex;

    align-items: center;

    gap: 11px;

}


.brand-mark {

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid currentColor;

    font-family: "Manrope", sans-serif;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 0.5px;

}


.brand-text {

    display: flex;

    flex-direction: column;

    line-height: 1.1;

}


.brand-text strong {

    font-family: "Manrope", sans-serif;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 0.8px;

}


.brand-text span {

    margin-top: 4px;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 1.8px;

    opacity: 0.68;

}


/* =========================================================
   MAIN NAVIGATION
   ========================================================= */

.main-nav {

    display: flex;

    align-items: center;

    gap: 30px;

}


.nav-link {

    position: relative;

    font-size: 16px;

    font-weight: 600;

    letter-spacing: 0.2px;

    padding: 8px 0;

    transition: color 0.25s ease;

}


.nav-link::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 1px;

    background: var(--red);

    transition: width 0.25s ease;

}


.nav-link:hover::after,
.nav-link.active::after {

    width: 100%;

}


/* =========================================================
   PRODUCTS DROPDOWN
   ========================================================= */

.nav-product-dropdown {

    position: relative;

    display: flex;

    align-items: center;

}


.nav-product-dropdown > .nav-link {

    display: inline-flex;

    align-items: center;

}


.products-dropdown-menu {

    position: absolute;

    top: calc(100% + 18px);

    left: 50%;

    min-width: 235px;

    padding: 8px;

    background: #ffffff;

    border: 1px solid #e3e3e1;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.10);

    opacity: 0;

    visibility: hidden;

    transform: translate(-50%, 8px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;

    z-index: 2000;

}


.products-dropdown-menu::before {

    content: "";

    position: absolute;

    top: -19px;

    left: 0;

    width: 100%;

    height: 19px;

}


.nav-product-dropdown:hover .products-dropdown-menu {

    opacity: 1;

    visibility: visible;

    transform: translate(-50%, 0);

}


.products-dropdown-menu a {

    min-height: 43px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 0 13px;

    color: #222222;

    background: transparent;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.7px;

    text-transform: uppercase;

    transition:
        color 0.2s ease,
        background-color 0.2s ease;

}


.products-dropdown-menu a:hover {

    color: var(--red);

    background: #f6f6f4;

}


.products-dropdown-menu a span:last-child {

    color: var(--red);

    font-size: 16px;

    font-weight: 700;

    transform: translateX(0);

    transition: transform 0.2s ease;

}


.products-dropdown-menu a:hover span:last-child {

    transform: translateX(4px);

}


/* =========================================================
   REQUEST A QUOTE BUTTON
   ========================================================= */

.header-quote {

    min-height: 42px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 0 16px;

    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.75);

    border-radius: 6px;

    color: #fff;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;

}


.header-quote span:last-child {

    font-size: 16px;

    line-height: 1;

    transition:
        transform 0.3s ease;

}


.header-quote:hover {

    background: var(--red);

    border-color: var(--red);

    color: var(--white);

    transform: translateY(-2px);

}


.header-quote:hover span:last-child {

    transform: translateX(5px);

}


.site-header.scrolled .header-quote {

    background: transparent;

    border-color: var(--black);

    color: var(--black);

}


.site-header.scrolled .header-quote:hover {

    background: var(--red);

    border-color: var(--red);

    color: var(--white);

}


/* =========================================================
   MOBILE MENU
   ========================================================= */

.menu-toggle {

    display: none;

    width: 42px;
    height: 42px;

    border: 0;

    background: transparent;

    cursor: pointer;

}


.menu-toggle span {

    display: block;

    width: 23px;
    height: 1px;

    margin: 5px auto;

    background: currentColor;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;

}


.menu-toggle.active span:nth-child(1) {

    transform:
        translateY(6px)
        rotate(45deg);

}


.menu-toggle.active span:nth-child(2) {

    opacity: 0;

}


.menu-toggle.active span:nth-child(3) {

    transform:
        translateY(-6px)
        rotate(-45deg);

}


/* =========================================================
   HERO
   ========================================================= */

.quote-hero {

    position: relative;

    height: 560px;

    min-height: 560px;

    overflow: hidden;

    background: #000000;

}


.quote-hero-content {

    position: relative;

    z-index: 2;

    height: 100%;

    display: flex;

    align-items: flex-end;

    justify-content: center;

    text-align: center;

    padding: 0 30px 185px;

}


.quote-hero h1 {

    position: relative;

    display: inline-block;

    margin: 0;

    padding-bottom: 18px;

    color: #ffffff;

    font-family: "Manrope", sans-serif;

    font-size: clamp(42px, 5vw, 68px);

    font-weight: 700;

    line-height: 1.05;

    letter-spacing: 2px;

    word-spacing: 17px;

    text-transform: uppercase;

}


.quote-hero h1::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: 0;

    width: 550px;

    max-width: 80vw;

    height: 3px;

    background: var(--red);

    transform: translateX(-50%);

}


/* =========================================================
   SCROLL TO EXPLORE
   ========================================================= */

.scroll-explore {

    position: fixed;

    top: 50%;

    right: 28px;

    z-index: 900;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 14px;

    transform: translateY(-50%);

    transition:
        opacity 0.3s ease;

}


.scroll-explore > span {

    writing-mode: vertical-rl;

    transform: rotate(180deg);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2.4px;

    color: #777;

}


.scroll-line {

    position: relative;

    width: 2px;

    height: 120px;

    overflow: hidden;

    background: #d5d5d2;

}


.scroll-line span {

    position: absolute;

    top: 0;
    left: 0;

    display: block;

    width: 100%;

    height: 0;

    background: var(--red);

    transition:
        height 0.05s linear;

}


/* =========================================================
   MARKETS SECTION
   ========================================================= */

.markets-section {

    padding: 125px 0 135px;

    background: var(--white);

}


/* =========================================================
   SECTION HEADING
   ========================================================= */
/* =========================================================
   MARKETS SECTION HEADING — CENTERED
   ========================================================= */

.section-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 68px;
}

.section-heading h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -1.7px;
    font-weight: 600;
    color: var(--black);
}

/* RED LINE */
.section-heading h2::after {
    content: "";
    display: block;
    width: 160px;
    height: 3px;
    margin: 15px auto 22px;
    background: var(--red);
}

/* DESCRIPTION BELOW RED LINE */
.section-heading p {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    font-size: 14px;
    line-height: 1.8;
    color: var(--muted);
}


/* =========================================================
   MARKET GRID
   ========================================================= */

.market-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

}


/* =========================================================
   MARKET CARD
   ========================================================= */

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

.market-card {
    position: relative;
    min-height: 270px;
    overflow: hidden;
    background: var(--dark);
    isolation: isolate;
    border: none;
}

.market-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: none;
}

.market-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border: none;
    transition: transform 0.8s cubic-bezier(.2, .7, .2, 1);
}

.market-card:hover .market-image img {
    transform: scale(1.03);
}
/* =========================================================
   CARD OVERLAY
   ========================================================= */

.market-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.76) 0%,
            rgba(0, 0, 0, 0.20) 52%,
            rgba(0, 0, 0, 0.02) 100%
        );

    transition:
        background 0.4s ease;

}


.market-card:hover .market-overlay {

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.28) 60%,
            rgba(0, 0, 0, 0.08) 100%
        );

}


/* =========================================================
   CARD CONTENT
   ========================================================= */

.market-content {

    position: absolute;

    left: 28px;
    right: 28px;
    bottom: 27px;

    z-index: 2;

    color: var(--white);

}

.market-title {

   
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


.market-title h3 {

    font-family: "Manrope", sans-serif;

    font-size: 16px;  

    line-height: 1.1;

    font-weight: 380;

    letter-spacing: -0.2px;

}


.market-arrow {

     width: 21px;            /* reduced from 37px */
    height: 21px;   

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.42);

    font-size: 16px;

    flex-shrink: 0;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;

}


.market-card:hover .market-arrow {

    background: var(--red);

    border-color: var(--red);

    transform: translateX(3px);

}


/* =========================================================
   STATEMENT
   ========================================================= */

.market-statement {

    padding: 115px 0;

    background: var(--light);

}


.statement-inner {

    max-width: 900px;

}


.statement-inner h2 {

    margin-top: 20px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(36px, 5vw, 58px);

    line-height: 1.06;

    letter-spacing: -2px;

    font-weight: 600;

    color: var(--black);

}


.statement-inner p {

    max-width: 570px;

    margin-top: 28px;

    font-size: 14px;

    line-height: 1.9;

    color: var(--muted);

}


/* =========================================================
   FINAL CTA
   ========================================================= */

.products-cta {

    padding-top: 64px;

    padding-bottom: 64px;

    background: var(--light);

}


.products-cta-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 45px;

    padding: 34px 0;

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);

}


.products-cta h2 {

    margin-top: 4px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(38px, 4.3vw, 52px);

    font-weight: 700;

    line-height: 1.12;

    letter-spacing: -1.3px;

    color: var(--black);

}


.products-cta h2 span {

    font-weight: 500;

    color: #727477;

}


/* =========================================================
   CTA BUTTON
   ========================================================= */

.products-cta .cta-button {

    min-height: 48px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    padding: 0 21px;

    background: #151719;

    border: 1px solid #151719;

    color: #ffffff;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.1px;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;

}


.products-cta .cta-button span:last-child {

    font-size: 18px;

    line-height: 1;

    transition:
        transform 0.3s ease;

}


.products-cta .cta-button:hover {

    background: var(--red);

    border-color: var(--red);

    color: var(--white);

    transform: translateY(-2px);

}


.products-cta .cta-button:hover span:last-child {

    transform: translateX(5px);

}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {

    padding-top: 58px;

    padding-bottom: 24px;

    background: var(--black);

    color: var(--white);

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr 0.8fr 0.9fr 1.2fr;

    gap: 55px;

    padding-bottom: 42px;

    border-bottom:
        1px solid rgba(
            255,
            255,
            255,
            0.12
        );

}


.footer-brand {

    color: var(--white);

}


/* =========================================================
   FOOTER COMPANY
   ========================================================= */

.footer-company p {

    max-width: 360px;

    margin-top: 18px;

    font-size: 15px;

    line-height: 1.75;

    color:
        rgba(
            255,
            255,
            255,
            0.62
        );

}


/* =========================================================
   FOOTER COLUMNS
   ========================================================= */

.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


.footer-column h4 {

    margin-bottom: 18px;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1.6px;

    text-transform: uppercase;

    color:
        rgba(
            255,
            255,
            255,
            0.9
        );

}


.footer-column a {

    margin-bottom: 10px;

    font-size: 15px;

    line-height: 1.5;

    color:
        rgba(
            255,
            255,
            255,
            0.62
        );

    transition:
        color 0.25s ease;

}


.footer-column a:hover {

    color: var(--white);

}


/* =========================================================
   FOOTER CONTACT
   ========================================================= */

.footer-contact p {

    margin-bottom: 10px;

    font-size: 15px;

    line-height: 1.7;

    color:
        rgba(
            255,
            255,
            255,
            0.62
        );

}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.footer-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-top: 20px;

    font-size: 11px;

    color:
        rgba(
            255,
            255,
            255,
            0.42
        );

}


/* =========================================================
   TABLET / SMALL DESKTOP
 /* =========================================================
   TABLET / SMALL DESKTOP
========================================================= */

@media (max-width: 1050px) {

    .container {
        width: calc(100% - 40px);
    }

    .main-nav {
        gap: 22px;
    }

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

    .footer-grid {
        gap: 35px;
    }
}


/* =========================================================
   TABLET / MOBILE NAVIGATION
   SAME AS ABOUT + PRODUCTS PAGE
========================================================= */

@media (max-width: 850px) {

    /* =====================================================
       GLOBAL MOBILE CONTAINMENT
    ===================================================== */

    html,
    body {
        max-width: 100%;
        width: 100%;
        overflow-x: hidden;
    }

    body {
        width: 100%;
    }

    .site-header {
        width: 100%;
        max-width: 100vw;
    }

    .header-inner {
        width: 100%;
        min-width: 0;
    }


    /* =====================================================
       BRAND
       SAME AS ABOUT PAGE
    ===================================================== */

    .brand {
        min-width: 0;
        max-width: calc(100% - 58px);
    }

    .brand-text {
        min-width: 0;
    }

    .brand-text strong,
    .brand-text span {
        white-space: nowrap;
    }


    /* =====================================================
       HAMBURGER
       EXACT SAME AS ABOUT PAGE
    ===================================================== */

    .menu-toggle {
        position: relative;
        z-index: 3000;

        display: block;

        width: 42px;
        height: 42px;

        flex-shrink: 0;

        padding: 0;

        border: 0;
        background: transparent;

        color: #ffffff;

        cursor: pointer;

        -webkit-tap-highlight-color: transparent;
    }


    .menu-toggle span {
        display: block;

        width: 23px;
        height: 1px;

        margin: 5px auto;

        background: currentColor;

        transition:
            transform 0.3s ease,
            opacity 0.3s ease;
    }


    /* =====================================================
       HAMBURGER → X
    ===================================================== */

    .menu-toggle.active span:nth-child(1) {
        transform:
            translateY(6px)
            rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform:
            translateY(-6px)
            rotate(-45deg);
    }


    /* =====================================================
       TOP OF PAGE
       WHITE HAMBURGER
    ===================================================== */

    .site-header:not(.scrolled) .menu-toggle {
        color: #ffffff;
        background: transparent;
    }

    .site-header:not(.scrolled) .menu-toggle span {
        background-color: #ffffff;
    }


    /* =====================================================
       AFTER SCROLL
       BLACK HAMBURGER
    ===================================================== */

    .site-header.scrolled .menu-toggle {
        color: #111111;
        background: transparent;
    }

    .site-header.scrolled .menu-toggle span {
        background-color: #111111;
    }


    /* =====================================================
       MOBILE NAVIGATION
       EXACT SAME STRUCTURE AS ABOUT PAGE
    ===================================================== */

    .main-nav {

        position: fixed;

        top: 82px;
        left: 0;

        width: 100%;
        max-width: 100vw;
        min-width: 0;

        padding: 22px 24px 28px;

        overflow-x: hidden;

        display: flex;
        flex-direction: column;
        align-items: flex-start;

        gap: 4px;

        background:
            rgba(
                255,
                255,
                255,
                0.98
            );

        color: var(--black);

        box-shadow:
            0 12px 30px
            rgba(
                0,
                0,
                0,
                0.08
            );

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform:
            translateY(-10px);

        transition:
            opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.25s ease;

        z-index: 2500;
    }


    /* =====================================================
       OPEN MENU
    ===================================================== */

    .main-nav.open {

        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform:
            translateY(0);
    }


    /* =====================================================
       MOBILE NAV LINKS
       EXACT SAME AS ABOUT PAGE
    ===================================================== */

    .main-nav .nav-link {

        width: 100%;
        min-width: 0;

        padding: 11px 0;

        font-size: 14px;

        color: var(--black);
    }


    .main-nav .nav-link:hover,
    .main-nav .nav-link:focus,
    .main-nav .nav-link:active {

        color: var(--black);
    }


    /* =====================================================
       ACTIVE LINK
    ===================================================== */

    .main-nav .nav-link.active {
        color: var(--black);
    }


    /* =====================================================
       QUOTE BUTTON
    ===================================================== */

    .header-quote {
        display: none !important;
    }


    /* =====================================================
       PRODUCTS DROPDOWN CONTAINER
    ===================================================== */

    .nav-product-dropdown {

        width: 100%;
        min-width: 0;

        display: block;
    }


    .nav-product-dropdown > .nav-link {

        width: 100%;
    }


    /* =====================================================
       PRODUCTS DROPDOWN
       EXACT SAME AS ABOUT PAGE
    ===================================================== */

    .products-dropdown-menu {

        position: static;

        width: 100%;
        min-width: 0;

        margin-top: 4px;

        padding: 0;

        border: 0;

        box-shadow: none;

        background: #f6f6f4;

        opacity: 1;
        visibility: visible;

        transform: none;

        display: block;
    }


    /* Remove dropdown decorative element */

    .products-dropdown-menu::before {
        display: none;
    }


    /* =====================================================
       PRODUCT DROPDOWN ITEMS
       EXACT SAME AS ABOUT PAGE
    ===================================================== */

    .products-dropdown-menu a {

        width: 100%;
        min-height: 42px;

        padding: 0 12px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        gap: 20px;

        box-sizing: border-box;

        color: var(--black);

        background: transparent;

        font-size: 10px;
        font-weight: 700;

        letter-spacing: 0.7px;

        text-transform: uppercase;

        text-decoration: none;

        transition:
            color 0.2s ease,
            background-color 0.2s ease;
    }


    /* =====================================================
       PRODUCT HOVER
    ===================================================== */

    .products-dropdown-menu a:hover {

        color: var(--red);

        background: #f6f6f4;
    }


    /* =====================================================
       PRODUCT ARROWS
       EXACT SAME AS ABOUT PAGE
    ===================================================== */

    .products-dropdown-menu a span:last-child {

        color: var(--red);

        font-size: 16px;
        font-weight: 700;

        transform: translateX(0);

        transition:
            transform 0.2s ease;
    }


    .products-dropdown-menu a:hover span:last-child {

        transform:
            translateX(4px);
    }


    /* =====================================================
       MARKETS SERVED
    ===================================================== */

    .main-nav > .nav-link.active {

        color: var(--black);
    }


    /* =====================================================
       EBROCHURE
    ===================================================== */

    .main-nav > .nav-link:last-child {

        color: var(--black);
    }


    /* =====================================================
       KEEP PRODUCTS DROPDOWN OPEN ON MOBILE
    ===================================================== */

    .nav-product-dropdown:hover .products-dropdown-menu {

        opacity: 1;
        visibility: visible;

        transform: none;

        display: block;
    }


    /* =====================================================
       TOUCH / TAP
    ===================================================== */

    .menu-toggle,
    .main-nav a,
    .cta-button {

        touch-action: manipulation;
    }

    .menu-toggle {

        pointer-events: auto !important;
    }

    .main-nav {

        pointer-events: none;
    }

    .main-nav.open {

        pointer-events: auto;
    }


    /* =====================================================
       FOOTER
    ===================================================== */

    .footer-grid {

        grid-template-columns: 1fr 1fr;

        gap: 40px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 700px) {

    .market-grid {

        grid-template-columns: 1fr;

        gap: 16px;
    }


    .market-card {

        min-height: 380px;
    }


    .section-heading {

        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 45px;
    }


    .section-heading h2 {

        max-width: 600px;
    }


    .section-heading p {

        max-width: 520px;

        padding-top: 0;
    }


    .products-cta-inner {

        align-items: flex-start;

        flex-direction: column;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .container {

        width: calc(100% - 32px);
    }


    /* -----------------------------------------------------
       HEADER
       KEEP SAME NAV STRUCTURE AS ABOUT PAGE
    ----------------------------------------------------- */

    .header-inner {

        min-height: 82px;
    }


    .main-nav {

        top: 82px;

        padding: 22px 24px 28px;
    }


    .menu-toggle {

        width: 42px;
        height: 42px;
    }


    .menu-toggle span {

        width: 23px;
        height: 1px;

        margin: 5px auto;
    }


    /* -----------------------------------------------------
       HERO
    ----------------------------------------------------- */

    .quote-hero {

        height: 640px;

        min-height: 640px;
    }


    .quote-hero-content {

        padding:
            0 22px 150px;
    }


    .quote-hero h1 {

        font-size:
            clamp(36px, 10vw, 52px);

        letter-spacing: 1px;

        word-spacing: 7px;
    }


    .quote-hero h1::after {

        width: 80vw;

        height: 2px;
    }


    .hero-page-number {

        right: 25px;

        bottom: 28px;
    }


    /* -----------------------------------------------------
       SCROLL INDICATOR
    ----------------------------------------------------- */

    .scroll-explore {

        right: 12px;
    }


    .scroll-explore > span {

        font-size: 8px;
    }


    .scroll-line {

        height: 85px;
    }


    /* -----------------------------------------------------
       MARKETS
    ----------------------------------------------------- */

    .markets-section {

        padding:
            70px 0 75px;
    }


    .section-heading {

        margin-bottom: 40px;
    }


    .section-heading h2 {

        font-size:
            clamp(30px, 7.5vw, 39px);

        letter-spacing: -1px;
    }


    .section-heading p {

        font-size: 13px;

        line-height: 1.75;
    }


    .market-card {

        min-height: 340px;
    }


    .market-content {

        left: 22px;

        right: 22px;

        bottom: 22px;
    }


    .market-title h3 {

        font-size: 22px;
    }


    /* -----------------------------------------------------
       STATEMENT
    ----------------------------------------------------- */

    .market-statement {

        padding:
            70px 0;
    }


    .statement-inner h2 {

        font-size:
            clamp(32px, 8vw, 44px);

        letter-spacing: -1.3px;
    }


    .statement-inner p {

        margin-top: 20px;

        font-size: 13px;

        line-height: 1.8;
    }


    /* -----------------------------------------------------
       CTA
    ----------------------------------------------------- */

    .products-cta {

        padding-top: 50px;

        padding-bottom: 50px;
    }


    .products-cta-inner {

        align-items: flex-start;

        flex-direction: column;

        gap: 25px;

        padding:
            28px 0;
    }


    .products-cta h2 {

        font-size:
            clamp(29px, 7.2vw, 38px);

        letter-spacing: -1px;
    }


    .products-cta .cta-button {

        width: 100%;
    }


    /* -----------------------------------------------------
       FOOTER
    ----------------------------------------------------- */

    .site-footer {

        padding-top: 48px;
    }


    .footer-grid {

        grid-template-columns: 1fr;

        gap: 32px;

        padding-bottom: 32px;
    }


    .footer-bottom {

        align-items: flex-start;

        flex-direction: column;

        gap: 7px;

        font-size: 10px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .container {

        width:
            calc(100% - 26px);
    }


    .brand-text strong {

        font-size: 12px;
    }


    .brand-text span {

        font-size: 7px;
    }


    .brand-mark {

        width: 38px;

        height: 38px;

        font-size: 11px;
    }


    .quote-hero {

        height: 600px;

        min-height: 600px;
    }


    .quote-hero h1 {

        font-size: 34px;
    }


    .scroll-explore {

        display: none;
    }


    .market-card {

        min-height: 310px;
    }


    .market-title h3 {

        font-size: 20px;
    }


    .market-arrow {

        width: 34px;

        height: 34px;
    }


    /* Keep navigation exactly like About */

    .main-nav {

        top: 82px;

        padding:
            22px 20px 28px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

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

    html {

        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;
    }
}
.image-disclaimer {
    margin-top: 30px;
    text-align: center;
    font-size: 12px;
    color: #777;
    font-style: italic;
    letter-spacing: 0.2px;
}