/* ============================================================
   NASCO PREMIUM WEBSITE
   Main Stylesheet
   ============================================================ */


/* ============================================================
   01. DESIGN SYSTEM
   ============================================================ */

:root {
    --navy: #092d78;
    --navy-dark: #061d4f;
    --navy-deep: #041638;

    --blue: #075ee8;
    --blue-light: #1685ff;
    --blue-soft: #eaf4ff;

    --cyan: #087f9b;
    --cyan-light: #10a3c4;

    --green: #16883c;
    --green-light: #4eae45;
    --green-dark: #0c632c;
    --green-soft: #edf8ee;

    --ink: #08245d;
    --text: #263d61;
    --muted: #53647e;
    --muted-light: #7c8ca3;

    --line: #e3eaf4;
    --line-dark: #d3dfed;

    --bg: #f5f9ff;
    --bg-soft: #f8fbfe;
    --white: #ffffff;

    --danger: #b42318;
    --success: #16883c;

    --radius-sm: 8px;
    --radius: 18px;
    --radius-lg: 26px;
    --radius-xl: 34px;

    --shadow-sm:
        0 8px 25px rgba(5, 36, 91, .07);

    --shadow:
        0 20px 60px rgba(5, 36, 91, .12);

    --shadow-lg:
        0 35px 90px rgba(5, 36, 91, .16);

    --transition:
        .28s cubic-bezier(.2, .7, .3, 1);

    --header-height: 82px;
}


/* ============================================================
   02. RESET / BASE
   ============================================================ */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    min-height: 100vh;

    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--ink);
    background: var(--white);

    font-size: 16px;
    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

svg {
    display: block;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

p {
    margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    color: var(--ink);
}

::selection {
    background: var(--blue);
    color: #fff;
}


/* ============================================================
   03. GLOBAL LAYOUT
   ============================================================ */

.container {
    width: min(1240px, calc(100% - 48px));
    margin-inline: auto;
}

.section {
    padding: 105px 0;
}

.section-sm {
    padding: 70px 0;
}

.section-lg {
    padding: 135px 0;
}

.hidden {
    display: none !important;
}

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


/* ============================================================
   04. TYPOGRAPHY
   ============================================================ */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: #16478e;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 3px;
    line-height: 1.2;
}

.eyebrow::before {
    content: "";
    width: 24px;
    height: 2px;
    border-radius: 10px;
    background: var(--green);
}

.eyebrow.light,
.eyebrow-white {
    color: #d6ecff;
}

.eyebrow.light::before,
.eyebrow-white::before {
    background: #6bd05f;
}

.lead {
    max-width: 650px;

    color: var(--muted);

    font-size: 18px;
    line-height: 1.75;
}

.display-heading {
    margin: 15px 0 0;

    color: var(--ink);

    font-size: clamp(2.8rem, 4vw, 4.8rem);
    font-weight: 800;

    line-height: .98;
    letter-spacing: -.055em;
}

.display-heading span {
    color: var(--cyan);
}


/* ============================================================
   05. HEADER
   ============================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    height: var(--header-height);

    display: flex;
    align-items: center;

    background: rgba(255, 255, 255, .96);

    border-bottom: 1px solid transparent;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    transition:
        box-shadow var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, .98);
    border-color: var(--line);

    box-shadow:
        0 8px 35px rgba(0, 20, 70, .07);
}

.nav-wrap {
    width: 100%;

    display: flex;
    align-items: center;
    gap: 28px;
}


/* ============================================================
   06. LOGO
   ============================================================ */

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-right: auto;
    flex-shrink: 0;
}

.logo img {
    width: auto;
    height: 48px;
    object-fit: contain;
}

.logo-mark {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--green) 0 48%,
            var(--navy) 49%
        );

    font-weight: 900;
}

.logo b {
    display: block;

    color: var(--navy);

    font-size: 28px;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: .95;
}

.logo small {
    display: block;

    margin-top: 3px;

    color: var(--green);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: .02em;
}


/* ============================================================
   07. NAVIGATION
   ============================================================ */

.nav {
    display: flex;
    align-items: center;
    gap: 24px;

    font-size: 12px;
    font-weight: 750;
}

.nav a {
    position: relative;

    display: flex;
    align-items: center;

    min-height: var(--header-height);

    color: #17345f;

    transition: color var(--transition);
}

.nav a::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: 18px;

    width: 0;
    height: 2px;

    border-radius: 10px;

    background: var(--blue);

    transform: translateX(-50%);

    transition: width var(--transition);
}

.nav a:hover,
.nav a.active {
    color: var(--blue);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.nav-cta {
    white-space: nowrap;
}

.menu-btn {
    display: none;

    width: 44px;
    height: 44px;

    border: 1px solid var(--line);
    border-radius: 10px;

    color: var(--navy);
    background: #fff;

    cursor: pointer;

    font-size: 23px;
}


/* ============================================================
   08. BUTTONS
   ============================================================ */

.btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 48px;

    padding: 12px 21px;

    border: 1px solid transparent;
    border-radius: 9px;

    cursor: pointer;

    font-size: 13px;
    font-weight: 800;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition);
}

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

.btn-large {
    min-height: 56px;
    padding: 0 27px;

    border-radius: 10px;

    font-size: 13px;
}

.btn-primary {
    color: #fff;

    background:
        linear-gradient(
            135deg,
            #0876f8,
            #064ecb
        );

    box-shadow:
        0 12px 28px rgba(6, 94, 232, .23);
}

.btn-primary:hover {
    box-shadow:
        0 17px 35px rgba(6, 94, 232, .3);
}

.btn-outline {
    color: #0757ce;
    background: #fff;

    border-color: #176be9;
}

.btn-outline:hover {
    color: #fff;
    background: var(--blue);
}

.btn-white {
    color: #0757ce;
    background: #fff;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .1);
}

.btn-white:hover {
    color: var(--navy);
}

.btn-green {
    color: #fff;
    background: var(--green);
}

.btn-green:hover {
    background: var(--green-dark);
}

.btn-glass {
    color: var(--navy);

    background: rgba(255, 255, 255, .72);

    border-color: rgba(18, 59, 143, .22);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.btn-glass:hover {
    background: #fff;

    box-shadow: var(--shadow-sm);
}

.btn-dark-glass {
    color: #fff;

    background: rgba(255, 255, 255, .08);

    border-color: rgba(255, 255, 255, .3);

    backdrop-filter: blur(12px);
}

.btn-dark-glass:hover {
    background: rgba(255, 255, 255, .16);
}


/* ============================================================
   09. PREMIUM HERO
   ============================================================ */

.premium-hero {
    position: relative;

    min-height: 690px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #edf4f8;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: 68% center;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, .99) 22%,
            rgba(255, 255, 255, .94) 36%,
            rgba(255, 255, 255, .67) 50%,
            rgba(255, 255, 255, .15) 67%,
            rgba(255, 255, 255, 0) 80%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
}

.hero-copy {
    max-width: 625px;

    padding: 105px 0 115px;
}

.hero-eyebrow {
    margin-bottom: 23px;
}

.premium-hero h1 {
    margin: 0;

    max-width: 700px;

    color: var(--ink);

    font-size: clamp(3.7rem, 5.8vw, 6.4rem);
    font-weight: 850;

    line-height: .91;
    letter-spacing: -.07em;
}

.premium-hero h1 span {
    display: block;

    margin-top: 8px;

    color: var(--cyan);
}

.hero-description {
    max-width: 555px;

    margin: 30px 0 0;

    color: #40516d;

    font-size: 17px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;

    margin-top: 34px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 34px;

    margin-top: 42px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 50%;

    color: var(--green);

    background: rgba(22, 136, 60, .1);

    font-size: 13px;
    font-weight: 900;
}

.trust-item strong,
.trust-item small {
    display: block;
}

.trust-item strong {
    color: var(--ink);

    font-size: 13px;
    line-height: 1.3;
}

.trust-item small {
    margin-top: 3px;

    color: var(--muted);

    font-size: 11px;
}

.hero-message {
    position: absolute;
    top: 85px;
    right: 4%;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 26px;
    font-style: italic;
    line-height: 1.05;

    transform: rotate(-5deg);
}

.hero-message span,
.hero-message strong {
    display: block;
}

.hero-message strong {
    margin-top: 2px;

    color: var(--green);

    font-size: 34px;
}

.hero-message i {
    display: block;

    width: 95px;
    height: 3px;

    margin-top: 10px;

    border-radius: 10px;

    background: var(--green);

    transform: rotate(-5deg);
}

.hero-scroll {
    position: absolute;
    z-index: 3;
    right: 28px;
    bottom: 35px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;

    color: rgba(255, 255, 255, .9);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: .22em;
}

.hero-scroll i {
    width: 1px;
    height: 45px;

    background: rgba(255, 255, 255, .75);
}


/* ============================================================
   10. CUSTOMER SEGMENTS
   ============================================================ */

.customer-segments {
    position: relative;
    z-index: 5;

    background: #fff;

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

    box-shadow:
        0 15px 40px rgba(20, 50, 80, .045);
}

.segment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.segment-card {
    position: relative;

    min-height: 125px;

    display: flex;
    align-items: center;
    gap: 16px;

    padding: 25px 28px;

    color: var(--ink);

    border-right: 1px solid var(--line);

    transition:
        background var(--transition),
        transform var(--transition);
}

.segment-card:first-child {
    border-left: 1px solid var(--line);
}

.segment-card:hover {
    z-index: 2;

    background: #f8fbff;

    transform: translateY(-4px);
}

.segment-icon {
    width: 43px;
    height: 43px;

    flex: 0 0 43px;
}

.segment-icon svg {
    width: 100%;
    height: 100%;

    fill: none;

    stroke: var(--navy);
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.segment-card strong,
.segment-card span {
    display: block;
}

.segment-card strong {
    color: var(--ink);

    font-size: 14px;
}

.segment-card span {
    margin-top: 4px;

    color: var(--muted);

    font-size: 11px;
}

.segment-card > b {
    margin-left: auto;

    color: var(--blue);

    opacity: 0;

    transform: translateX(-8px);

    transition:
        opacity var(--transition),
        transform var(--transition);
}

.segment-card:hover > b {
    opacity: 1;
    transform: translateX(0);
}


/* ============================================================
   11. INTRODUCTION
   ============================================================ */

.intro-section {
    padding-top: 125px;
    padding-bottom: 95px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 100px;
}

.intro-copy {
    max-width: 585px;
}

.intro-copy p {
    margin-bottom: 16px;

    color: var(--muted);

    font-size: 16px;
    line-height: 1.85;
}

.premium-link,
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    margin-top: 15px;

    color: var(--blue);

    font-size: 13px;
    font-weight: 900;
}

.premium-link span,
.text-link span {
    transition: transform var(--transition);
}

.premium-link:hover span,
.text-link:hover span {
    transform: translateX(5px);
}


/* ============================================================
   12. SECTION HEADINGS
   ============================================================ */

.section-head {
    max-width: 730px;

    margin: 0 auto 45px;

    text-align: center;
}

.section-head h2,
.section-heading-row h2,
.section-heading-center h2 {
    margin: 12px 0 0;

    color: var(--ink);

    font-size: clamp(2.4rem, 3.7vw, 4.1rem);
    font-weight: 800;

    line-height: 1;
    letter-spacing: -.05em;
}

.section-head p {
    margin-top: 17px;

    color: var(--muted);

    line-height: 1.75;
}

.section-heading-row {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: end;
    gap: 80px;

    margin-bottom: 48px;
}

.section-heading-row h2 span,
.section-heading-center h2 span {
    color: var(--cyan);
}

.section-heading-row > p {
    max-width: 490px;

    margin: 0;

    color: var(--muted);

    line-height: 1.8;
}

.section-heading-center {
    max-width: 780px;

    margin: 0 auto 55px;

    text-align: center;
}

.section-heading-center p {
    max-width: 650px;

    margin: 20px auto 0;

    color: var(--muted);

    line-height: 1.75;
}


/* ============================================================
   13. BRANDS
   ============================================================ */

.brands,
.premium-brands {
    background:
        radial-gradient(
            circle at 50% 0%,
            #ffffff 0%,
            #f5faff 55%,
            #ffffff 100%
        );
}

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

.brand-card {
    position: relative;

    min-height: 200px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    overflow: hidden;

    padding: 35px;

    border-radius: var(--radius);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.brand-card:hover {
    transform: translateY(-7px);

    box-shadow: var(--shadow);
}

.brand-card strong {
    position: relative;
    z-index: 2;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 55px;
    font-style: italic;

    line-height: 1;
}

.brand-card > span {
    position: relative;
    z-index: 2;

    margin-top: 8px;

    font-weight: 800;
}

.premium-brand-grid .brand-card {
    min-height: 300px;

    justify-content: flex-end;

    padding: 38px;

    border-radius: 24px;
}

.brand-card-content {
    position: relative;
    z-index: 3;
}

.brand-card-content small {
    display: block;

    margin-bottom: 12px;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: .18em;

    opacity: .62;
}

.brand-card-content strong {
    display: block;

    font-size: clamp(2.8rem, 4vw, 4.4rem);
}

.brand-card-content > span {
    display: block;

    margin-top: 12px;

    font-size: 14px;
    font-weight: 800;
}

.brand-cta {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 35px;

    font-size: 12px;
    font-weight: 900;
}

.brand-cta b {
    transition: transform var(--transition);
}

.brand-card:hover .brand-cta b {
    transform: translateX(5px);
}

.brand-watermark {
    position: absolute;
    z-index: 1;
    top: -45px;
    right: -20px;

    font-family: Georgia, serif;
    font-size: 17rem;
    font-weight: 900;

    line-height: 1;

    opacity: .04;

    pointer-events: none;
}

.taji {
    color: #07513c;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(89, 170, 68, .22),
            transparent 42%
        ),
        linear-gradient(
            135deg,
            #f4fbe7,
            #dff3df
        );
}

.purex {
    color: #073fa8;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(38, 130, 255, .18),
            transparent 45%
        ),
        linear-gradient(
            135deg,
            #eef8ff,
            #dcecff
        );
}

.luna {
    color: #5b158e;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(142, 73, 210, .16),
            transparent 45%
        ),
        linear-gradient(
            135deg,
            #faf1ff,
            #e8ddff
        );
}


/* ============================================================
   14. PRODUCTS
   ============================================================ */

.products-section {
    background: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 17px;
}

.product-card,
.premium-product-card {
    overflow: hidden;

    background: #fff;

    border: 1px solid var(--line);
    border-radius: 16px;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.product-card {
    padding: 24px 20px;
}

.product-card:hover,
.premium-product-card:hover {
    border-color: transparent;

    box-shadow: var(--shadow);

    transform: translateY(-6px);
}

.product-card.large {
    padding: 30px;
}

.product-icon {
    height: 100px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background:
        linear-gradient(
            180deg,
            #f5faff,
            #fff
        );

    font-size: 54px;
}

.product-card h3 {
    margin: 18px 0 9px;

    font-size: 17px;
}

.product-card p {
    min-height: 62px;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.6;
}

.product-card a {
    color: var(--blue);

    font-size: 12px;
    font-weight: 900;
}


/* Premium product cards */

.premium-product-grid {
    gap: 22px;
}

.product-image {
    height: 260px;

    display: grid;
    place-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #f8fbfd,
            #edf4f8
        );
}

.product-image img {
    width: 100%;
    height: 100%;

    padding: 20px;

    object-fit: contain;

    transition: transform .45s ease;
}

.premium-product-card:hover .product-image img {
    transform: scale(1.055);
}

.product-placeholder {
    display: grid;
    place-items: center;

    color: var(--navy);

    font-size: 5rem;

    opacity: .16;
}

.product-content {
    padding: 25px;
}

.product-category {
    color: var(--green);

    font-size: 9px;
    font-weight: 900;
    letter-spacing: .18em;
}

.product-content h3 {
    margin: 8px 0 10px;

    font-size: 18px;
}

.product-content h3 a {
    color: var(--ink);
}

.product-content p {
    min-height: 55px;

    margin-bottom: 0;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.65;
}

.product-link {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 20px;
    padding-top: 17px;

    color: var(--blue);

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

    font-size: 12px;
    font-weight: 900;
}

.product-link span {
    transition: transform var(--transition);
}

.premium-product-card:hover .product-link span {
    transform: translateX(5px);
}

.center-action {
    margin-top: 48px;

    text-align: center;
}


/* ============================================================
   15. PREMIUM BUSINESS SECTION
   ============================================================ */

.business-premium {
    position: relative;

    overflow: hidden;

    color: #fff;
    background: var(--navy-dark);
}

.business-bg {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 84% 50%,
            rgba(16, 132, 181, .46),
            transparent 38%
        ),
        radial-gradient(
            circle at 70% 0%,
            rgba(25, 105, 220, .28),
            transparent 34%
        ),
        linear-gradient(
            120deg,
            #061d4f,
            #0b3676
        );
}

.business-bg::after {
    content: "";

    position: absolute;
    right: -120px;
    bottom: -250px;

    width: 650px;
    height: 650px;

    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
}

.business-content {
    position: relative;
    z-index: 2;

    min-height: 590px;

    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    gap: 100px;
}

.business-copy {
    max-width: 680px;
}

.business-copy h2 {
    margin: 18px 0 25px;

    color: #fff;

    font-size: clamp(3.1rem, 5vw, 5.5rem);
    font-weight: 800;

    line-height: .93;
    letter-spacing: -.06em;
}

.business-copy h2 span {
    display: block;

    color: #6bd05f;
}

.business-copy p {
    max-width: 590px;

    color: rgba(255, 255, 255, .73);

    font-size: 16px;
    line-height: 1.85;
}

.business-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 34px;
}

.business-features {
    border-left: 1px solid rgba(255, 255, 255, .18);
}

.business-features > div {
    display: grid;
    grid-template-columns: 52px 1fr;

    padding: 28px 0 28px 42px;

    border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.business-features > div:last-child {
    border-bottom: 0;
}

.business-features span {
    grid-row: span 2;

    color: #6bd05f;

    font-size: 10px;
    font-weight: 900;
}

.business-features strong {
    color: #fff;

    font-size: 16px;
}

.business-features small {
    margin-top: 4px;

    color: rgba(255, 255, 255, .6);

    font-size: 12px;
}


/* ============================================================
   16. LEGACY BUSINESS BAND
   ============================================================ */

.business-band {
    padding: 70px 0;

    color: white;

    background:
        linear-gradient(
            115deg,
            #052c6c,
            #087bb5
        );
}

.band-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.business-band h2 {
    max-width: 670px;

    margin: 10px 0;

    color: #fff;

    font-size: 40px;
    letter-spacing: -1.5px;
}

.business-band p {
    margin-bottom: 0;

    color: #d7e8ff;
}


/* ============================================================
   17. SUSTAINABILITY
   ============================================================ */

.sustainability-premium {
    background: #f4f8f4;
}

.sustainability-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 90px;
}

.sustainability-image {
    position: relative;

    height: 610px;

    overflow: hidden;

    border-radius: 28px;

    box-shadow: var(--shadow);
}

.sustainability-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.sustainability-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 50%,
            rgba(5, 50, 24, .2)
        );

    pointer-events: none;
}

.sustainability-badge {
    position: absolute;
    z-index: 2;
    left: 30px;
    bottom: 30px;

    min-width: 190px;

    padding: 20px 24px;

    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 15px;

    background: rgba(255, 255, 255, .92);

    backdrop-filter: blur(15px);
}

.sustainability-badge span,
.sustainability-badge strong {
    display: block;
}

.sustainability-badge span {
    color: var(--muted);

    font-size: 10px;
}

.sustainability-badge strong {
    margin-top: 3px;

    color: var(--green-dark);

    font-size: 15px;
}

.sustainability-content h2 {
    margin: 15px 0 25px;

    color: var(--ink);

    font-size: clamp(3rem, 4vw, 4.8rem);
    font-weight: 800;

    line-height: .96;
    letter-spacing: -.055em;
}

.sustainability-content h2 span {
    display: block;

    color: var(--green);
}

.sustainability-content > p {
    color: var(--muted);

    font-size: 16px;
    line-height: 1.85;
}

.sustainability-points {
    margin: 35px 0;
}

.sustainability-points > div {
    display: flex;
    align-items: center;
    gap: 18px;

    padding: 18px 0;

    border-bottom: 1px solid #dce7dd;
}

.sustainability-points i {
    color: var(--green);

    font-size: 10px;
    font-style: normal;
    font-weight: 900;
}

.sustainability-points strong,
.sustainability-points small {
    display: block;
}

.sustainability-points strong {
    color: var(--ink);

    font-size: 14px;
}

.sustainability-points small {
    margin-top: 3px;

    color: var(--muted);

    font-size: 12px;
}


/* Legacy sustainability */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.green-art {
    height: 360px;

    display: grid;
    place-items: center;

    border-radius: 22px;

    background:
        radial-gradient(
            circle at 50% 80%,
            #93c33e,
            #2d7d2b 45%,
            #0b4c28
        );

    box-shadow: var(--shadow);
}

.leaf {
    color: #eaffb4;

    font-size: 150px;
}


/* ============================================================
   18. PREMIUM CTA
   ============================================================ */

.premium-cta {
    position: relative;

    overflow: hidden;

    color: #fff;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(50, 160, 210, .45),
            transparent 30%
        ),
        linear-gradient(
            120deg,
            #082c70,
            #075fa3
        );
}

.premium-cta::after {
    content: "";

    position: absolute;
    top: -160px;
    right: -80px;

    width: 420px;
    height: 420px;

    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 50%;
}

.premium-cta-inner {
    position: relative;
    z-index: 2;

    min-height: 400px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.premium-cta h2 {
    margin: 16px 0;

    color: #fff;

    font-size: clamp(3rem, 5vw, 5.1rem);
    font-weight: 800;

    line-height: .94;
    letter-spacing: -.055em;
}

.premium-cta p {
    max-width: 580px;

    margin-bottom: 0;

    color: rgba(255, 255, 255, .73);
}

.premium-cta-actions {
    min-width: 240px;
}

.cta-contact-link {
    display: block;

    margin-top: 20px;

    color: #fff;

    text-align: center;

    font-size: 12px;
    font-weight: 800;
}


/* ============================================================
   19. INNER PAGE HERO
   ============================================================ */

.page-hero {
    position: relative;

    overflow: hidden;

    padding: 115px 0;

    background:
        radial-gradient(
            circle at 80% 20%,
            #eaf5ff,
            transparent 30%
        ),
        linear-gradient(
            120deg,
            #f5faff,
            #fff
        );
}

.page-hero h1 {
    max-width: 900px;

    margin: 18px 0 22px;

    color: var(--ink);

    font-size: clamp(3.4rem, 5vw, 5.8rem);
    font-weight: 800;

    line-height: .96;
    letter-spacing: -.06em;
}

.page-hero p {
    max-width: 680px;

    color: var(--muted);

    font-size: 18px;
    line-height: 1.7;
}

.page-hero.dark {
    color: white;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(19, 143, 205, .4),
            transparent 35%
        ),
        linear-gradient(
            120deg,
            #04245a,
            #07589e
        );
}

.page-hero.green {
    color: white;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(135, 205, 78, .4),
            transparent 30%
        ),
        linear-gradient(
            120deg,
            #174b24,
            #55a236
        );
}

.page-hero.dark h1,
.page-hero.green h1 {
    color: #fff;
}

.page-hero.dark p,
.page-hero.green p {
    color: #dbeaff;
}


/* ============================================================
   20. FEATURES
   ============================================================ */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.feature-grid > div {
    padding: 30px;

    background: #fff;

    border: 1px solid var(--line);
    border-radius: 15px;

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.feature-grid > div:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow-sm);
}

.feature-grid h3 {
    margin-bottom: 10px;
}

.feature-grid p {
    margin-bottom: 0;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.65;
}

.feature-grid.vertical {
    grid-template-columns: 1fr;
}


/* ============================================================
   21. PRODUCT DETAIL
   ============================================================ */

.product-stage {
    min-height: 390px;

    display: grid;
    place-items: center;

    overflow: hidden;

    border-radius: 24px;

    background:
        radial-gradient(
            circle at 50% 40%,
            #fff,
            #e8f3ff
        );

    box-shadow: var(--shadow-sm);

    font-size: 130px;
}

.product-stage img {
    width: 100%;
    max-height: 430px;

    padding: 30px;

    object-fit: contain;
}


/* ============================================================
   22. FORMS
   ============================================================ */

.quote-form {
    display: grid;
    gap: 18px;

    padding: 38px;

    background: #fff;

    border: 1px solid var(--line);
    border-radius: 22px;

    box-shadow: var(--shadow);
}

.quote-form label {
    display: grid;
    gap: 8px;

    color: var(--ink);

    font-size: 12px;
    font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;

    padding: 14px 15px;

    color: var(--text);
    background: #fff;

    border: 1px solid #ccd8e8;
    border-radius: 9px;

    outline: none;

    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    border-color: var(--blue);

    box-shadow:
        0 0 0 4px rgba(7, 94, 232, .08);
}

.quote-form textarea {
    min-height: 140px;
    resize: vertical;
}

.success {
    padding: 15px 17px;

    color: #166534;
    background: #e6f8eb;

    border: 1px solid #c7eed1;
    border-radius: 9px;
}


/* ============================================================
   23. FOOTER
   ============================================================ */

footer,
.site-footer {
    position: relative;

    padding: 70px 0 28px;

    color: #d9e7f8;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(8, 126, 176, .18),
            transparent 25%
        ),
        #062b5d;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 48px;
}

.footer-grid > div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-grid h4 {
    margin-bottom: 8px;

    color: #fff;

    font-size: 13px;
}

.footer-grid a,
.footer-grid p {
    color: #afc5df;

    font-size: 12px;
    line-height: 1.7;

    transition: color var(--transition);
}

.footer-grid a:hover {
    color: #fff;
}

.footer-brand {
    color: white;

    font-size: 32px;
    font-weight: 900;
    letter-spacing: -.04em;
}

.footer-logo img {
    max-width: 190px;
    max-height: 70px;

    object-fit: contain;
}

.copyright {
    margin-top: 48px;
    padding-top: 23px;

    color: #91aaca;

    border-top: 1px solid #234775;

    font-size: 11px;
}


/* ============================================================
   24. LEGACY HERO FALLBACK
   Keep for pages still using old index structure.
   ============================================================ */

.hero {
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            #fff 0 45%,
            #edf4fb 45%
        );
}

.hero-grid {
    min-height: 570px;

    display: grid;
    grid-template-columns: 1fr 1.18fr;
    align-items: center;
}

.hero .hero-copy {
    padding: 60px 20px 60px 0;
}

.hero h1 {
    margin: 18px 0 22px;

    color: var(--ink);

    font-size: 62px;
    font-weight: 800;

    line-height: .98;
    letter-spacing: -3px;
}

.hero h1 em {
    color: var(--cyan);

    font-style: normal;
}

.hero p {
    max-width: 650px;

    color: var(--muted);

    font-size: 18px;
    line-height: 1.65;
}

.actions {
    display: flex;
    gap: 12px;

    margin-top: 28px;
}


/* Old CSS artwork */

.hero-art {
    position: relative;

    height: 100%;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 70% 30%,
            white,
            #edf3f5 55%,
            #dde7ec
        );
}

.hero-art::before {
    content: "";

    position: absolute;
    inset: auto 0 0;

    height: 34%;

    background:
        linear-gradient(
            170deg,
            rgba(255, 255, 255, .5),
            #fff
        );
}

.roll {
    position: absolute;

    border-radius: 8px;

    background:
        linear-gradient(
            90deg,
            #f7f7f3,
            #fff 50%,
            #ecece7
        );

    box-shadow:
        0 18px 30px rgba(50, 60, 70, .15);
}

.roll::after {
    content: "";

    position: absolute;
    top: 9%;
    left: 50%;

    width: 31%;
    height: 15%;

    border-radius: 50%;

    background: #d8d8d2;

    transform: translateX(-50%);
}

.r1 {
    left: 21%;
    bottom: 110px;

    width: 135px;
    height: 190px;
}

.r2 {
    left: 49%;
    bottom: 105px;

    width: 150px;
    height: 220px;
}

.r3 {
    right: 2%;
    bottom: 110px;

    width: 120px;
    height: 170px;
}

.tissue-box {
    position: absolute;
    left: 35%;
    bottom: 68px;

    width: 210px;
    height: 105px;

    padding: 40px 20px 10px;

    color: var(--navy);

    background:
        linear-gradient(
            145deg,
            #dff2ff,
            #fff
        );

    box-shadow: var(--shadow);

    font-size: 25px;
    font-weight: 900;
    text-align: center;

    transform: skewY(-2deg);
}

.tissue-box::before {
    content: "";

    position: absolute;
    top: -48px;
    left: 72px;

    width: 65px;
    height: 75px;

    border-radius: 50% 50% 10% 10%;

    background: white;

    box-shadow:
        0 4px 10px #ccd;
}

.tissue-box small {
    display: block;

    font-size: 10px;
}

.napkins {
    position: absolute;
    right: 7%;
    bottom: 72px;

    width: 180px;
    height: 45px;

    background:
        repeating-linear-gradient(
            #fff,
            #fff 5px,
            #e7e7e7 6px
        );

    box-shadow:
        0 10px 20px #bbc;
}

.script {
    position: absolute;
    top: 70px;
    right: 7%;

    color: #0648b8;

    font-family: cursive;
    font-size: 28px;
    line-height: 1.1;

    transform: rotate(-5deg);
}

.script b {
    color: var(--green);
}


/* ============================================================
   25. LEGACY SEGMENTS
   ============================================================ */

.segments {
    background: white;

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

.segments .segment-grid {
    padding: 26px 0;
}

.segment-grid > div {
    display: grid;
    grid-template-columns: 40px 1fr;

    padding: 8px 28px;

    border-right: 1px solid var(--line);
}

.segment-grid > div:last-child {
    border-right: 0;
}

.segment-grid > div i {
    grid-row: span 2;

    font-size: 27px;
    font-style: normal;
}

.segment-grid > div b {
    font-size: 14px;
}

.segment-grid > div span {
    color: var(--muted);

    font-size: 12px;
}


/* ============================================================
   26. ACCESSIBILITY / MOTION
   ============================================================ */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(7, 94, 232, .25);
    outline-offset: 3px;
}

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

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}


/* ============================================================
   27. TABLET
   ============================================================ */

@media (max-width: 1100px) {

    .container {
        width: min(100% - 40px, 1100px);
    }

    .nav {
        gap: 16px;
    }

    .nav a {
        font-size: 11px;
    }

    .premium-hero {
        min-height: 650px;
    }

    .hero-copy {
        max-width: 555px;
    }

    .premium-hero h1 {
        font-size: clamp(3.5rem, 6vw, 5.3rem);
    }

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

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

    .segment-card:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .intro-grid,
    .section-heading-row,
    .business-content,
    .sustainability-grid {
        gap: 55px;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .premium-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

}


/* ============================================================
   28. MOBILE NAVIGATION / TABLET PORTRAIT
   ============================================================ */

@media (max-width: 900px) {

    :root {
        --header-height: 74px;
    }

    .nav-wrap {
        gap: 13px;
    }

    .logo img {
        height: 43px;
    }

    .nav-cta {
        display: none;
    }

    .menu-btn {
        display: grid;
        place-items: center;
    }

    .nav {
        position: fixed;
        z-index: 999;
        top: var(--header-height);
        right: 0;
        left: 0;

        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;

        max-height: calc(100vh - var(--header-height));

        overflow-y: auto;

        padding: 18px 24px 28px;

        background: #fff;

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

        box-shadow: var(--shadow);
    }

    .nav.open {
        display: flex;
    }

    .nav a {
        min-height: auto;

        padding: 14px 0;

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

        font-size: 14px;
    }

    .nav a::after {
        display: none;
    }


    /* Hero */

    .premium-hero {
        min-height: 650px;

        background: #fff;
    }

    .hero-bg img {
        object-position: 70% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(255, 255, 255, 1) 0%,
                rgba(255, 255, 255, .98) 38%,
                rgba(255, 255, 255, .75) 62%,
                rgba(255, 255, 255, .2) 100%
            );
    }

    .hero-copy {
        max-width: 510px;

        padding: 80px 0;
    }

    .hero-message {
        display: none;
    }

    .hero-scroll {
        display: none;
    }

    .intro-grid,
    .section-heading-row,
    .business-content,
    .sustainability-grid,
    .split {
        grid-template-columns: 1fr;
    }

    .intro-grid {
        gap: 35px;
    }

    .section-heading-row {
        gap: 22px;
    }

    .business-content {
        min-height: auto;

        padding: 90px 0;
    }

    .business-features {
        border-top: 1px solid rgba(255, 255, 255, .18);
        border-left: 0;
    }

    .business-features > div {
        padding-left: 0;
    }

    .sustainability-image {
        height: 480px;
    }

    .premium-cta-inner {
        min-height: 450px;

        flex-direction: column;
        align-items: flex-start;
        justify-content: center;

        gap: 35px;
    }

    .premium-cta-actions {
        min-width: 0;
    }

    .band-grid {
        flex-direction: column;
        align-items: flex-start;
    }

    .brand-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }


    /* Legacy hero */

    .hero {
        background: #fff;
    }

    .hero-grid {
        grid-template-columns: 1fr;

        padding-top: 25px;
    }

    .hero .hero-copy {
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-art {
        height: 450px;
    }

}


/* ============================================================
   29. MOBILE
   ============================================================ */

@media (max-width: 680px) {

    .container {
        width: min(100% - 30px, 1240px);
    }

    .section {
        padding: 78px 0;
    }

    .section-lg {
        padding: 90px 0;
    }


    /* Header */

    .logo b {
        font-size: 23px;
    }

    .logo small {
        font-size: 7px;
    }


    /* Premium hero */

    .premium-hero {
        min-height: auto;

        display: block;

        padding-bottom: 0;
    }

    .premium-hero::after {
        content: "";

        display: block;

        height: 340px;

        background:
            linear-gradient(
                180deg,
                rgba(255, 255, 255, 0),
                rgba(255, 255, 255, .15)
            );
    }

    .hero-bg {
        top: auto;
        bottom: 0;

        height: 390px;
    }

    .hero-bg img {
        object-position: 68% center;
    }

    .hero-overlay {
        z-index: 1;

        background:
            linear-gradient(
                180deg,
                #fff 0%,
                #fff 48%,
                rgba(255, 255, 255, .94) 58%,
                rgba(255, 255, 255, .25) 78%,
                rgba(255, 255, 255, 0) 100%
            );
    }

    .hero-content {
        position: relative;
        z-index: 3;
    }

    .hero-copy {
        max-width: 100%;

        padding: 65px 0 25px;
    }

    .premium-hero h1 {
        font-size: clamp(3rem, 13vw, 4.4rem);

        line-height: .94;
        letter-spacing: -.065em;
    }

    .hero-description {
        max-width: 100%;

        margin-top: 24px;

        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;

        margin-top: 28px;
    }

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

    .hero-trust {
        flex-direction: column;
        gap: 14px;

        margin-top: 28px;
    }


    /* Segments */

    .segment-grid {
        grid-template-columns: 1fr;
    }

    .segment-card {
        min-height: 100px;

        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .segment-card:first-child {
        border-left: 0;
    }

    .segment-card:last-child {
        border-bottom: 0;
    }

    .segment-card > b {
        opacity: 1;
        transform: none;
    }


    /* Headings */

    .section-head h2,
    .section-heading-row h2,
    .section-heading-center h2,
    .business-band h2 {
        font-size: 34px;
    }

    .display-heading {
        font-size: 3rem;
    }


    /* Brands */

    .premium-brand-grid .brand-card {
        min-height: 245px;

        padding: 30px;
    }

    .brand-card-content strong {
        font-size: 3.4rem;
    }


    /* Products */

    .product-grid,
    .premium-product-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 300px;
    }


    /* Business */

    .business-copy h2 {
        font-size: 3.1rem;
    }

    .business-actions {
        flex-direction: column;
    }

    .business-actions .btn {
        width: 100%;
    }


    /* Sustainability */

    .sustainability-image {
        height: 390px;

        border-radius: 20px;
    }

    .sustainability-content h2 {
        font-size: 3.1rem;
    }


    /* CTA */

    .premium-cta h2 {
        font-size: 3.1rem;
    }

    .premium-cta-actions {
        width: 100%;
    }

    .premium-cta-actions .btn {
        width: 100%;
    }


    /* Pages */

    .page-hero {
        padding: 80px 0;
    }

    .page-hero h1 {
        font-size: 3.2rem;
    }


    /* Features */

    .feature-grid {
        grid-template-columns: 1fr;
    }


    /* Forms */

    .quote-form {
        padding: 25px 20px;
    }


    /* Footer */

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

}


/* ============================================================
   30. SMALL PHONES
   ============================================================ */

@media (max-width: 420px) {

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

    .logo img {
        max-width: 155px;
        height: 40px;
    }

    .premium-hero h1 {
        font-size: 2.85rem;
    }

    .hero-copy {
        padding-top: 55px;
    }

    .premium-hero::after {
        height: 300px;
    }

    .hero-bg {
        height: 340px;
    }

    .section {
        padding: 65px 0;
    }

    .display-heading,
    .business-copy h2,
    .sustainability-content h2,
    .premium-cta h2 {
        font-size: 2.65rem;
    }

    .premium-brand-grid .brand-card {
        min-height: 220px;
    }

    .brand-card-content strong {
        font-size: 3rem;
    }

    .product-image {
        height: 250px;
    }

    .sustainability-image {
        height: 330px;
    }

    .sustainability-badge {
        right: 18px;
        bottom: 18px;
        left: 18px;
    }

    .page-hero h1 {
        font-size: 2.75rem;
    }

}


/* ============================================================
   31. LARGE DESKTOP
   ============================================================ */

@media (min-width: 1500px) {

    .container {
        width: min(1320px, calc(100% - 80px));
    }

    .premium-hero {
        min-height: 760px;
    }

    .hero-copy {
        max-width: 680px;

        padding: 120px 0;
    }

    .premium-hero h1 {
        font-size: 6.6rem;
    }

    .hero-description {
        font-size: 18px;
    }

}