/* =========================================================
   GARUDA3D - CUSTOM CORPORATE GIFTS
   Responsive CSS
   ========================================================= */

:root {
    --ink: #17140f;
    --ink-soft: #2c2721;
    --paper: #faf8f4;
    --paper-2: #f2eee6;
    --card: #ffffff;
    --line: #e7e1d6;
    --muted: #726b60;
    --muted-2: #a49b8e;
    --orange: #e8470a;
    --orange-2: #e05c2a;
    --wash: #fbf0e9;

    --radius: 14px;
    --container: 1180px;
}

/* Reset */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Barlow", system-ui, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

/* Container */

.container {
    width: min(100% - 60px, var(--container));
    margin-inline: auto;
}

/* Sections */

.section {
    padding-block: 92px;
}

/* =========================================================
   HERO SECTION
   ========================================================= */

.hero-section {
    background:
        linear-gradient(
            180deg,
            var(--paper) 0%,
            var(--paper-2) 100%
        );

    border-bottom: 1px solid var(--line);
}


/* Main Hero Layout */

.hero-container {
    min-height: 620px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(360px, .92fr);

    gap: 60px;

    align-items: center;

    padding-top: 78px;
    padding-bottom: 78px;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero-content {
    max-width: 680px;
}


/* Badge */

.hero-badge {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 7px 13px;

    margin-bottom: 22px;

    border: 1px solid #f4d8c8;

    border-radius: 999px;

    background: var(--wash);

    color: var(--orange);

    font-family: "DM Mono", monospace;

    font-size: .7rem;

    font-weight: 500;

    letter-spacing: .14em;

    text-transform: uppercase;
}


.hero-badge-dot {
    width: 7px;
    height: 7px;

    flex: 0 0 7px;

    border-radius: 50%;

    background: var(--orange);

    animation: heroPulse 2.2s infinite;
}


@keyframes heroPulse {

    0% {
        box-shadow:
            0 0 0 0
            rgba(232, 71, 10, .5);
    }

    70% {
        box-shadow:
            0 0 0 8px
            rgba(232, 71, 10, 0);
    }

    100% {
        box-shadow:
            0 0 0 0
            rgba(232, 71, 10, 0);
    }

}


/* Hero Heading */

.hero-title {
    margin: 0;

    font-family: "Barlow Condensed", sans-serif;

    font-size: clamp(
        2.7rem,
        5.3vw,
        4.3rem
    );

    font-weight: 600;

    line-height: 1.02;

    letter-spacing: .004em;

    color: var(--ink);
}


.hero-title span {
    color: var(--orange);

    display: inline;
}


/* Description */

.hero-description {
    max-width: 620px;

    margin: 22px 0 32px;

    color: var(--muted);

    font-size: clamp(
        1.05rem,
        1.5vw,
        1.22rem
    );

    line-height: 1.65;
}


/* =========================================================
   HERO BUTTONS
   ========================================================= */

.hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    align-items: center;
}


.btn {
    min-height: 50px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding: 13px 26px;

    border-radius: 9px;

    border: 1.5px solid transparent;

    font-family:
        "Barlow Condensed",
        sans-serif;

    font-size: 1rem;

    font-weight: 600;

    letter-spacing: .05em;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}


.btn svg {
    flex: 0 0 auto;
}


/* Primary */

.btn-primary {
    background: var(--orange);

    color: #fff;
}


.btn-primary:hover {
    background: var(--ink);

    transform: translateY(-2px);
}


/* Outline */

.btn-outline {
    background: transparent;

    color: var(--ink);

    border-color: #d8d1c5;
}


.btn-outline:hover {
    color: #fff;

    background: var(--ink);

    border-color: var(--ink);

    transform: translateY(-2px);
}


/* Hero Note */

.hero-note {
    margin: 22px 0 0;

    color: var(--muted-2);

    font-family: "DM Mono", monospace;

    font-size: .72rem;

    letter-spacing: .04em;

    line-height: 1.6;
}


/* =========================================================
   HERO VISUAL / PROCESS CARD
   ========================================================= */

.hero-visual {
    width: 100%;
}


.hero-process-card {
    width: 100%;

    padding: 30px 28px;

    background: var(--card);

    border: 1px solid var(--line);

    border-radius: var(--radius);

    box-shadow:
        0 24px 60px -30px
        rgba(23, 20, 15, .25);
}


/* Label */

.process-label {
    margin-bottom: 22px;

    color: var(--muted-2);

    font-family: "DM Mono", monospace;

    font-size: .66rem;

    letter-spacing: .16em;

    text-transform: uppercase;
}


/* =========================================================
   FLOW
   ========================================================= */

.hero-flow {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto
        minmax(0, 1fr);

    gap: 12px;

    align-items: center;
}


/* Nodes */

.hero-node {
    min-width: 0;

    aspect-ratio: 1 / .94;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 14px;

    text-align: center;

    border-radius: 9px;

    overflow: hidden;
}


.hero-node > span:last-child {
    font-family: "DM Mono", monospace;

    font-size: .6rem;

    letter-spacing: .12em;

    text-transform: uppercase;
}


/* Input */

.hero-node-input {
    background: var(--paper-2);

    border: 1px dashed #cfc7ba;

    color: var(--muted);
}


/* Logo */

.logo-placeholder {
    width: 54px;
    height: 54px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 2px solid var(--ink);

    border-radius: 8px;

    color: var(--ink);

    font-family:
        "Barlow Condensed",
        sans-serif;

    font-size: 1.5rem;

    font-weight: 700;
}


/* Output */

.hero-node-output {
    background: var(--ink);

    color: #fff;
}


.hero-node-output > span:last-child {
    color: var(--muted-2);
}


/* =========================================================
   PRINTED STACK
   ========================================================= */

.printed-stack {
    width: 66px;
    height: 66px;

    display: flex;

    flex-direction: column-reverse;

    align-items: center;

    justify-content: center;

    gap: 3px;

    transform: rotate(-2deg);
}


.printed-stack span {
    display: block;

    height: 6px;

    border-radius: 2px;

    background: var(--orange);

    opacity: .94;
}


.printed-stack span:nth-child(1) {
    width: 66px;
}

.printed-stack span:nth-child(2) {
    width: 60px;
}

.printed-stack span:nth-child(3) {
    width: 52px;
}

.printed-stack span:nth-child(4) {
    width: 42px;
}

.printed-stack span:nth-child(5) {
    width: 30px;
}

.printed-stack span:nth-child(6) {
    width: 20px;
}


/* =========================================================
   FLOW ARROW
   ========================================================= */

.hero-flow-arrow {
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 6px;

    color: var(--orange);
}


.hero-flow-arrow svg {
    width: 38px;

    height: 20px;
}


.hero-flow-arrow span {
    color: var(--muted-2);

    font-family: "DM Mono", monospace;

    font-size: .54rem;

    letter-spacing: .1em;

    text-transform: uppercase;

    white-space: nowrap;
}


/* =========================================================
   CHIPS
   ========================================================= */

.hero-chips {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 24px;
}


.hero-chips span {
    padding: 7px 13px;

    border: 1px solid var(--line);

    border-radius: 999px;

    background: var(--paper);

    color: var(--ink-soft);

    font-family: "DM Mono", monospace;

    font-size: .68rem;

    letter-spacing: .04em;

    text-transform: uppercase;
}

/* =========================================================
   DESKTOP
   ========================================================= */

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
    gap: 60px;
    align-items: center;
}

.make-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 44px 40px;
}

.customization-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 40px;
}

/* =========================================================
   LARGE TABLET / SMALL LAPTOP
   ========================================================= */

@media (max-width: 1100px) {

    .container {
        width: min(100% - 48px, var(--container));
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .make-grid,
    .why-grid,
    .customization-grid,
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 800px) {

    .section {
        padding-block: 72px;
    }

    .hero {
        padding-block: 55px;
    }

    .hero-inner {
        gap: 36px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .bulk-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .desktop-navigation {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .container {
        width: min(100% - 32px, var(--container));
    }

    .section {
        padding-block: 56px;
    }

    .hero {
        padding-block: 44px;
    }

    .hero h1 {
        font-size: clamp(2.35rem, 11vw, 3.3rem);
        line-height: 1.02;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .stats-grid,
    .make-grid,
    .why-grid,
    .customization-grid,
    .services-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .stat {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 26px 18px;
    }

    .stat:last-child {
        border-bottom: 0;
    }

    .flow {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .chips {
        justify-content: center;
    }

    .product-row {
        padding: 15px 0;
        font-size: 1.05rem;
    }

    .process-step {
        padding: 26px 0;
        border-right: 0;
    }

    .bulk-inner {
        padding: 34px 24px;
    }

    .occasion-grid {
        grid-template-columns: 1fr;
    }

    .final-actions {
        flex-direction: column;
        width: 100%;
    }

    .final-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .container {
        width: min(100% - 24px, var(--container));
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .pipe {
        padding: 22px 18px;
    }

    .btn {
        padding: 13px 18px;
    }
}

/* =========================================================
   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;
    }
}

/* =========================================================
   STATISTICS SECTION
   ========================================================= */

.stats-section {
    background: var(--card);

    border-bottom: 1px solid var(--line);
}


.stats-container {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    padding-top: 0;
    padding-bottom: 0;
}


/* =========================================================
   STAT ITEM
   ========================================================= */

.stat-item {
    min-width: 0;

    padding: 34px 26px;

    border-right: 1px solid var(--line);
}


.stat-item:last-child {
    border-right: none;
}


/* =========================================================
   NUMBER
   ========================================================= */

.stat-number {
    display: flex;

    align-items: baseline;

    color: var(--ink);

    font-family:
        "Barlow Condensed",
        sans-serif;

    font-size: clamp(
        2rem,
        3.4vw,
        2.9rem
    );

    font-weight: 700;

    line-height: 1;
}


.stat-suffix {
    color: var(--orange);
}


.stat-accent {
    color: var(--orange);
}


/* Text-based statistic */

.stat-number.stat-text {
    display: block;

    font-size: clamp(
        2rem,
        3.4vw,
        2.9rem
    );

    white-space: nowrap;
}


/* =========================================================
   LABEL
   ========================================================= */

.stat-label {
    margin-top: 7px;

    color: var(--muted);

    font-family:
        "Barlow Condensed",
        sans-serif;

    font-size: .98rem;

    font-weight: 500;

    letter-spacing: .05em;

    text-transform: uppercase;
}

/* =========================================================
   STATISTICS - TABLET
   ========================================================= */

@media (max-width: 900px) {

    .stats-container {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .stat-item {
        padding: 30px 24px;

        border-bottom: 1px solid var(--line);
    }


    .stat-item:nth-child(2) {
        border-right: none;
    }


    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-bottom: none;
    }

}

/* =========================================================
   WHAT WE MAKE / GIFTING SECTION
   ========================================================= */

.gifting-section {
    background: var(--paper);
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.section-heading {
    max-width: 760px;

    margin-bottom: 50px;
}


.eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--muted);

    font-family:
        "Barlow Condensed",
        sans-serif;

    font-size: .82rem;

    font-weight: 600;

    letter-spacing: .16em;

    text-transform: uppercase;
}


.eyebrow::before {
    content: "";

    width: 22px;
    height: 2px;

    flex: 0 0 22px;

    background: var(--orange);
}


.section-heading h2 {
    margin: 14px 0 0;

    font-family:
        "Barlow Condensed",
        sans-serif;

    font-size: clamp(
        2rem,
        3.8vw,
        3rem
    );

    font-weight: 600;

    line-height: 1.05;

    letter-spacing: .002em;
}


.section-heading h2 span {
    color: var(--orange);
}


.section-heading p {
    max-width: 700px;

    margin-top: 16px;

    color: var(--muted);

    font-size: clamp(
        1.02rem,
        1.35vw,
        1.16rem
    );

    line-height: 1.65;
}


/* =========================================================
   GIFTING GRID
   ========================================================= */

.gifting-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;
}


/* =========================================================
   GIFTING CARD
   ========================================================= */

.gifting-card {
    min-width: 0;

    overflow: hidden;

    background: var(--card);

    border: 1px solid var(--line);

    border-radius: var(--radius);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}


.gifting-card:hover {
    transform: translateY(-4px);

    border-color: #ddd4c6;

    box-shadow:
        0 22px 46px -28px
        rgba(23, 20, 15, .35);
}


/* =========================================================
   IMAGE / VISUAL AREA
   ========================================================= */

.gifting-image {
    position: relative;

    aspect-ratio: 16 / 10;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        repeating-linear-gradient(
            135deg,
            var(--paper-2) 0 14px,
            #ece7dd 14px 28px
        );

    border-bottom: 1px solid var(--line);
}


.gifting-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(255,255,255,.4),
            transparent 65%
        );

    pointer-events: none;
}


/* Small label */

.image-label {
    position: absolute;

    top: 12px;
    left: 12px;

    z-index: 2;

    padding: 4px 8px;

    border: 1px solid var(--line);

    border-radius: 6px;

    background: rgba(255,255,255,.88);

    color: var(--muted);

    font-family: "DM Mono", monospace;

    font-size: .58rem;

    letter-spacing: .08em;

    text-transform: uppercase;
}


/* Icon */

.gifting-icon {
    position: relative;

    z-index: 1;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--orange);

    opacity: .92;
}


.gifting-icon svg {
    width: 52px;
    height: 52px;
}


/* =========================================================
   CARD CONTENT
   ========================================================= */

.gifting-content {
    padding: 24px 24px 28px;
}


.gifting-content h3 {
    margin: 0;

    color: var(--ink);

    font-family:
        "Barlow Condensed",
        sans-serif;

    font-size: 1.5rem;

    font-weight: 600;

    line-height: 1.1;
}


.gifting-content p {
    margin-top: 8px;

    color: var(--muted);

    font-size: .97rem;

    line-height: 1.6;
}


/* =========================================================
   DARK CTA CARD
   ========================================================= */

.gifting-card-dark {
    display: flex;

    min-height: 100%;

    background: var(--ink);

    color: #fff;

    border-color: var(--ink);
}


.gifting-card-dark:hover {
    border-color: var(--ink);

    box-shadow:
        0 22px 46px -28px
        rgba(23, 20, 15, .5);
}


.gifting-dark-content {
    width: 100%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 34px 28px;
}


.gifting-dark-content h3 {
    margin: 0;

    color: #fff;

    font-family:
        "Barlow Condensed",
        sans-serif;

    font-size: 1.6rem;

    line-height: 1.1;
}


.gifting-dark-content p {
    max-width: 35ch;

    margin-top: 10px;

    color: var(--muted-2);

    font-size: .97rem;
}


.gifting-dark-content a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    width: fit-content;

    margin-top: 18px;

    color: var(--orange-2);

    font-family:
        "Barlow Condensed",
        sans-serif;

    font-size: 1.05rem;

    font-weight: 600;

    letter-spacing: .04em;

    text-transform: uppercase;
}


.gifting-dark-content a:hover {
    color: #fff;
}


.gifting-dark-content a span {
    transition: transform .2s ease;
}


.gifting-dark-content a:hover span {
    transform: translateX(4px);
}

/* =========================================================
   GIFTING SECTION - TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .gifting-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 20px;
    }

}
/* =========================================================
   GIFTING SECTION - MOBILE
   ========================================================= */

@media (max-width: 640px) {

    .section-heading {
        margin-bottom: 34px;
    }


    .section-heading h2 {
        font-size: 2.35rem;
    }


    .section-heading p {
        font-size: 1rem;
    }


    .gifting-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .gifting-image {
        aspect-ratio: 16 / 9;
    }


    .gifting-content {
        padding: 21px 20px 24px;
    }


    .gifting-content h3 {
        font-size: 1.4rem;
    }


    .gifting-content p {
        font-size: .95rem;
    }


    .gifting-dark-content {
        min-height: 220px;

        padding: 30px 24px;
    }

}

/* =========================================================
   WHAT CAN WE CUSTOMIZE
   ========================================================= */

.customize-products-section {
    background: var(--paper-2);

    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}


/* =========================================================
   PRODUCT GRID - DESKTOP
   ========================================================= */

.customize-products-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    column-gap: 40px;

    row-gap: 0;
}


/* =========================================================
   PRODUCT ITEM
   ========================================================= */

.customize-product {
    min-width: 0;

    display: flex;

    align-items: center;

    gap: 14px;

    min-height: 58px;

    padding: 12px 0;

    border-bottom: 1px solid var(--line);

    color: var(--ink-soft);

    font-family:
        "Barlow Condensed",
        sans-serif;

    font-size: 1.16rem;

    font-weight: 500;

    letter-spacing: .02em;

    text-transform: uppercase;
}


/* =========================================================
   CHECK ICON
   ========================================================= */

.product-check {
    width: 22px;
    height: 22px;

    flex: 0 0 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 6px;

    background: var(--wash);

    color: var(--orange);

    font-family:
        Arial,
        sans-serif;

    font-size: 14px;

    font-weight: 700;

    line-height: 1;
}


/* =========================================================
   PRODUCT NOTE
   ========================================================= */

.customize-note {
    margin-top: 30px;

    color: var(--ink);

    font-family:
        "Barlow Condensed",
        sans-serif;

    font-size: 1.25rem;

    font-weight: 500;

    line-height: 1.4;
}


.customize-note a {
    color: var(--orange);

    border-bottom: 2px solid var(--orange);

    transition:
        color .2s ease,
        border-color .2s ease;
}


.customize-note a:hover {
    color: var(--ink);

    border-color: var(--ink);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 800px) {

    .customize-products-grid {
        column-gap: 28px;
    }


    .customize-product {
        font-size: 1.08rem;

        min-height: 55px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .customize-products-grid {
        grid-template-columns: 1fr;

        column-gap: 0;
    }


    .customize-product {
        min-height: 54px;

        padding: 13px 0;

        gap: 12px;

        font-size: 1.05rem;

        line-height: 1.25;
    }


    .product-check {
        width: 21px;
        height: 21px;

        flex-basis: 21px;
    }


    .customize-note {
        margin-top: 26px;

        font-size: 1.1rem;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .customize-product {
        font-size: .98rem;
    }


    .customize-note {
        font-size: 1.02rem;
    }

}

/* =========================================================
   PROCESS SECTION
   ========================================================= */

.process-section {
    background: #f7f7f5;
    padding: 100px 0;
}

.process-heading {
    max-width: 760px;
    margin-bottom: 60px;
}

.process-heading p {
    max-width: 650px;
    margin: 18px auto 0;
    color: #666;
    font-size: 17px;
    line-height: 1.7;
}

/* Process Steps */

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}

/* Connecting line */

.process-steps::before {
    content: "";
    position: absolute;
    top: 31px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #d8d8d5;
    z-index: 0;
}

/* Individual Step */

.process-step {
    position: relative;
    z-index: 1;
    padding: 0 18px;
    text-align: center;
}

.process-step-number {
    width: 64px;
    height: 64px;
    margin: 0 auto 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    border: 2px solid #111;
    border-radius: 50%;

    font-family: "DM Mono", monospace;
    font-size: 15px;
    font-weight: 500;
    color: #111;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.process-step:hover .process-step-number {
    background: #ff5a1f;
    border-color: #ff5a1f;
    color: #ffffff;
    transform: translateY(-4px);
}

.process-step-content {
    max-width: 220px;
    margin: 0 auto;
}

.process-step-label {
    display: block;
    margin-bottom: 9px;

    font-family: "DM Mono", monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #ff5a1f;
}

.process-step h3 {
    margin: 0 0 12px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 600;
    color: #111;
}

.process-step p {
    margin: 0;

    font-family: "Barlow", sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: #666;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .process-section {
        padding: 85px 0;
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 55px;
    }

    .process-steps::before {
        display: none;
    }

    .process-step {
        padding: 0 15px;
    }

    .process-step-number {
        margin-bottom: 22px;
    }

    .process-step-content {
        max-width: 260px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .process-section {
        padding: 70px 0;
    }

    .process-heading {
        margin-bottom: 45px;
    }

    .process-heading p {
        font-size: 15px;
        line-height: 1.6;
    }

    .process-steps {
        display: flex;
        flex-direction: column;
        gap: 0;
        position: relative;
    }

    /* Vertical connecting line */

    .process-steps::before {
        display: block;
        top: 32px;
        bottom: 32px;
        left: 31px;
        right: auto;
        width: 2px;
        height: auto;
    }

    .process-step {
        display: flex;
        align-items: flex-start;
        text-align: left;

        padding: 0;
        margin-bottom: 35px;
    }

    .process-step:last-child {
        margin-bottom: 0;
    }

    .process-step-number {
        flex: 0 0 64px;
        margin: 0 22px 0 0;
    }

    .process-step-content {
        max-width: none;
        padding-top: 3px;
    }

    .process-step-label {
        margin-bottom: 6px;
    }

    .process-step h3 {
        font-size: 21px;
        margin-bottom: 8px;
    }

    .process-step p {
        font-size: 14px;
        line-height: 1.6;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .process-section {
        padding: 60px 0;
    }

    .process-step-number {
        flex-basis: 54px;
        width: 54px;
        height: 54px;
        margin-right: 17px;

        font-size: 13px;
    }

    .process-steps::before {
        left: 26px;
    }

    .process-step h3 {
        font-size: 19px;
    }

    .process-step p {
        font-size: 13px;
    }
}

/* =========================================================
   WHY 3D PRINTING SECTION
   ========================================================= */

.why-printing-section {
    background: #ffffff;
    padding: 100px 0;
}

.why-printing-section .section-heading {
    max-width: 760px;
    margin-bottom: 55px;
}

.why-printing-section .section-heading p {
    max-width: 650px;
    margin: 18px auto 0;
    color: #666;
    font-size: 17px;
    line-height: 1.7;
}

.why-printing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-printing-card {
    position: relative;
    min-height: 300px;
    padding: 32px 28px;

    background: #f7f7f5;
    border: 1px solid #e5e5e2;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.why-printing-card:hover {
    transform: translateY(-6px);
    border-color: #ff5a1f;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.why-printing-number {
    display: block;

    font-family: "DM Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.08em;

    color: #999;
}

.why-printing-icon {
    width: 48px;
    height: 48px;
    margin: 35px 0 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #111;
    color: #ffffff;

    font-size: 22px;
    font-weight: 500;
}

.why-printing-card h3 {
    margin: 0 0 12px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 25px;
    line-height: 1.1;
    font-weight: 600;

    color: #111;
}

.why-printing-card p {
    margin: 0;

    font-family: "Barlow", sans-serif;
    font-size: 14px;
    line-height: 1.65;

    color: #666;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .why-printing-section {
        padding: 85px 0;
    }

    .why-printing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .why-printing-card {
        min-height: 270px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .why-printing-section {
        padding: 70px 0;
    }

    .why-printing-section .section-heading {
        margin-bottom: 40px;
    }

    .why-printing-section .section-heading p {
        font-size: 15px;
        line-height: 1.6;
    }

    .why-printing-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .why-printing-card {
        min-height: auto;
        padding: 28px 24px;
    }

    .why-printing-icon {
        margin: 25px 0 20px;
    }

    .why-printing-card h3 {
        font-size: 23px;
    }

    .why-printing-card p {
        font-size: 14px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .why-printing-section {
        padding: 60px 0;
    }

    .why-printing-card {
        padding: 24px 20px;
    }

    .why-printing-card h3 {
        font-size: 21px;
    }

    .why-printing-card p {
        font-size: 13px;
    }
}

/* =========================================================
   BULK ORDERS SECTION
   ========================================================= */

.bulk-orders-section {
    background: #111;
    color: #ffffff;
    padding: 100px 0;
}

.bulk-orders-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
}

.bulk-orders-content .eyebrow {
    color: #ff5a1f;
}

.bulk-orders-content h2 {
    margin: 16px 0 20px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(48px, 5vw, 72px);
    line-height: 0.95;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.bulk-orders-content h2 span {
    color: #ff5a1f;
}

.bulk-orders-intro {
    max-width: 650px;
    margin: 0 0 38px;

    font-family: "Barlow", sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #b8b8b8;
}


/* Bulk Points */

.bulk-orders-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 35px;
    margin-bottom: 40px;
}

.bulk-order-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.bulk-order-check {
    flex: 0 0 24px;

    width: 24px;
    height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #ff5a1f;
    border-radius: 50%;

    color: #ff5a1f;
    font-size: 13px;
    line-height: 1;
}

.bulk-order-point h3 {
    margin: 0 0 6px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

.bulk-order-point p {
    margin: 0;

    font-family: "Barlow", sans-serif;
    font-size: 13px;
    line-height: 1.55;
    color: #999;
}


/* Button */

.bulk-order-button {
    display: inline-flex;
}


/* =========================================================
   BULK ORDER VISUAL
   ========================================================= */

.bulk-orders-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bulk-quantity-card {
    width: 100%;
    max-width: 430px;
    padding: 38px;

    border: 1px solid #333;
    background: #181818;

    position: relative;
}

.bulk-quantity-card::before {
    content: "";
    position: absolute;

    top: 0;
    left: 0;

    width: 70px;
    height: 4px;

    background: #ff5a1f;
}

.bulk-quantity-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 25px;
    border-bottom: 1px solid #303030;

    font-family: "DM Mono", monospace;
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
}

.bulk-status {
    color: #ff5a1f;
}

.bulk-quantity-main {
    display: flex;
    align-items: baseline;
    gap: 10px;

    padding: 50px 0;
}

.bulk-quantity-main strong {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 100px;
    line-height: 0.8;
    font-weight: 600;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.bulk-quantity-main span {
    font-family: "DM Mono", monospace;
    font-size: 13px;
    color: #999;
}

.bulk-quantity-line {
    height: 1px;
    background: #303030;
}

.bulk-quantity-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    padding-top: 20px;

    font-family: "DM Mono", monospace;
    font-size: 10px;
    text-transform: uppercase;
    color: #777;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .bulk-orders-section {
        padding: 85px 0;
    }

    .bulk-orders-wrapper {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .bulk-orders-content {
        max-width: 800px;
    }

    .bulk-orders-visual {
        justify-content: flex-start;
    }

    .bulk-quantity-card {
        max-width: 500px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .bulk-orders-section {
        padding: 70px 0;
    }

    .bulk-orders-wrapper {
        gap: 45px;
    }

    .bulk-orders-content h2 {
        font-size: 48px;
    }

    .bulk-orders-intro {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 32px;
    }

    .bulk-orders-points {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-bottom: 35px;
    }

    .bulk-order-point h3 {
        font-size: 19px;
    }

    .bulk-order-point p {
        font-size: 13px;
    }

    .bulk-quantity-card {
        padding: 28px 24px;
    }

    .bulk-quantity-main {
        padding: 40px 0;
    }

    .bulk-quantity-main strong {
        font-size: 78px;
    }

    .bulk-quantity-bottom {
        flex-direction: column;
        gap: 8px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .bulk-orders-section {
        padding: 60px 0;
    }

    .bulk-orders-content h2 {
        font-size: 42px;
    }

    .bulk-quantity-card {
        padding: 24px 20px;
    }

    .bulk-quantity-main strong {
        font-size: 68px;
    }
}

/* =========================================================
   CUSTOMIZATION SECTION
   ========================================================= */

.customization-section {
    background: #f7f7f5;
    padding: 100px 0;
}

.customization-wrapper {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 80px;
    align-items: center;
}

.customization-content {
    max-width: 650px;
}

.customization-content h2 {
    margin: 16px 0 24px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(52px, 5vw, 76px);
    line-height: 0.9;
    font-weight: 600;
    letter-spacing: -0.025em;

    color: #111;
}

.customization-content h2 span {
    color: #ff5a1f;
}

.customization-intro {
    max-width: 600px;
    margin: 0 0 40px;

    font-family: "Barlow", sans-serif;
    font-size: 17px;
    line-height: 1.7;

    color: #666;
}


/* Customization Features */

.customization-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 35px;
}

.customization-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.customization-feature-number {
    flex: 0 0 auto;

    font-family: "DM Mono", monospace;
    font-size: 11px;
    color: #ff5a1f;
    padding-top: 3px;
}

.customization-feature h3 {
    margin: 0 0 7px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 21px;
    line-height: 1.1;
    font-weight: 600;

    color: #111;
}

.customization-feature p {
    margin: 0;

    font-family: "Barlow", sans-serif;
    font-size: 13px;
    line-height: 1.6;

    color: #777;
}


/* =========================================================
   CUSTOMIZATION VISUAL
   ========================================================= */

.customization-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.customization-card {
    width: 100%;
    max-width: 450px;

    padding: 28px;

    background: #111;
    border: 1px solid #292929;

    position: relative;
}

.customization-card::after {
    content: "";

    position: absolute;
    right: 0;
    bottom: 0;

    width: 60px;
    height: 4px;

    background: #ff5a1f;
}

.customization-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 20px;
    border-bottom: 1px solid #303030;

    font-family: "DM Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.04em;

    color: #888;
}

.customization-card-header span:last-child {
    color: #ff5a1f;
}


/* Preview */

.customization-preview {
    min-height: 330px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            45deg,
            #171717 25%,
            transparent 25%
        ),
        linear-gradient(
            -45deg,
            #171717 25%,
            transparent 25%
        ),
        linear-gradient(
            45deg,
            transparent 75%,
            #171717 75%
        ),
        linear-gradient(
            -45deg,
            transparent 75%,
            #171717 75%
        );

    background-size: 28px 28px;
    background-position:
        0 0,
        0 14px,
        14px -14px,
        -14px 0;
}


/* 3D-style preview object */

.preview-object {
    width: 210px;
    height: 115px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ff5a1f;

    border-radius: 8px;

    transform:
        perspective(500px)
        rotateX(18deg)
        rotateY(-18deg);

    box-shadow:
        18px 18px 0 #b83d12,
        25px 25px 25px rgba(0, 0, 0, 0.35);
}

.preview-logo {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.03em;

    color: #ffffff;
}


/* Footer Tags */

.customization-card-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    padding-top: 20px;
}

.customization-card-footer span {
    padding: 7px 10px;

    border: 1px solid #333;

    font-family: "DM Mono", monospace;
    font-size: 9px;
    letter-spacing: 0.04em;

    color: #999;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .customization-section {
        padding: 85px 0;
    }

    .customization-wrapper {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .customization-content {
        max-width: 800px;
    }

    .customization-visual {
        justify-content: flex-start;
    }

    .customization-card {
        max-width: 520px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .customization-section {
        padding: 70px 0;
    }

    .customization-wrapper {
        gap: 40px;
    }

    .customization-content h2 {
        font-size: 50px;
    }

    .customization-intro {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 32px;
    }

    .customization-features {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .customization-feature h3 {
        font-size: 20px;
    }

    .customization-feature p {
        font-size: 13px;
    }

    .customization-card {
        padding: 22px;
    }

    .customization-preview {
        min-height: 270px;
    }

    .preview-object {
        width: 175px;
        height: 95px;
    }

    .preview-logo {
        font-size: 40px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .customization-section {
        padding: 60px 0;
    }

    .customization-content h2 {
        font-size: 43px;
    }

    .customization-card {
        padding: 18px;
    }

    .customization-preview {
        min-height: 230px;
    }

    .preview-object {
        width: 145px;
        height: 80px;
    }

    .preview-logo {
        font-size: 34px;
    }
}


/* =========================================================
   WHO WE SERVE SECTION
   ========================================================= */

.serve-section {
    background: #ffffff;
    padding: 100px 0;
}

.serve-section .section-heading {
    max-width: 760px;
    margin-bottom: 55px;
}

.serve-section .section-heading p {
    max-width: 680px;
    margin: 18px auto 0;

    font-family: "Barlow", sans-serif;
    font-size: 17px;
    line-height: 1.7;

    color: #666;
}


/* Serve Grid */

.serve-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.serve-card {
    position: relative;

    min-height: 310px;
    padding: 28px 22px;

    background: #f7f7f5;
    border: 1px solid #e5e5e2;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.serve-card:hover {
    transform: translateY(-6px);

    border-color: #ff5a1f;

    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.serve-number {
    display: block;

    font-family: "DM Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.08em;

    color: #999;
}

.serve-icon {
    width: 44px;
    height: 44px;
    margin: 32px 0 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #111;

    color: #ffffff;

    font-size: 18px;
    font-weight: 500;
}

.serve-card h3 {
    margin: 0 0 12px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 23px;
    line-height: 1.1;
    font-weight: 600;

    color: #111;
}

.serve-card p {
    margin: 0;

    font-family: "Barlow", sans-serif;
    font-size: 13px;
    line-height: 1.6;

    color: #707070;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .serve-section {
        padding: 85px 0;
    }

    .serve-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .serve-card {
        min-height: 280px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .serve-section {
        padding: 70px 0;
    }

    .serve-section .section-heading {
        margin-bottom: 40px;
    }

    .serve-section .section-heading p {
        font-size: 15px;
        line-height: 1.6;
    }

    .serve-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .serve-card {
        min-height: auto;
        padding: 26px 24px;
    }

    .serve-icon {
        margin: 24px 0 20px;
    }

    .serve-card h3 {
        font-size: 22px;
    }

    .serve-card p {
        font-size: 14px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .serve-section {
        padding: 60px 0;
    }

    .serve-card {
        padding: 23px 20px;
    }

    .serve-card h3 {
        font-size: 20px;
    }

    .serve-card p {
        font-size: 13px;
    }
}

/* =========================================================
   FAQ SECTION
   ========================================================= */

.faq-section {
    background: #f7f7f5;
    padding: 100px 0;
}

.faq-heading {
    max-width: 760px;
    margin-bottom: 55px;
}


/* FAQ List */

.faq-list {
    max-width: 900px;
    margin: 0 auto;

    border-top: 1px solid #d8d8d5;
}

.faq-item {
    border-bottom: 1px solid #d8d8d5;
}


/* Question */

.faq-question {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 25px 5px;

    border: 0;
    background: transparent;

    text-align: left;
    cursor: pointer;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 23px;
    line-height: 1.2;
    font-weight: 600;

    color: #111;
}

.faq-question:hover {
    color: #ff5a1f;
}

.faq-toggle {
    flex: 0 0 auto;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #cfcfcb;
    border-radius: 50%;

    font-family: "Barlow", sans-serif;
    font-size: 21px;
    font-weight: 400;

    color: #111;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}


/* Answer */

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;

    transition: grid-template-rows 0.3s ease;
}

.faq-answer p {
    overflow: hidden;

    max-width: 760px;

    margin: 0;
    padding: 0 60px 0 5px;

    font-family: "Barlow", sans-serif;
    font-size: 15px;
    line-height: 1.7;

    color: #666;

    transition:
        padding 0.3s ease,
        opacity 0.3s ease;

    opacity: 0;
}


/* Active FAQ */

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
    padding-bottom: 25px;
    opacity: 1;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);

    background: #ff5a1f;
    border-color: #ff5a1f;
    color: #ffffff;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 800px) {

    .faq-section {
        padding: 85px 0;
    }

    .faq-heading {
        margin-bottom: 45px;
    }

    .faq-question {
        font-size: 21px;
        padding: 23px 4px;
    }

    .faq-answer p {
        font-size: 14px;
        padding-right: 45px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .faq-section {
        padding: 70px 0;
    }

    .faq-heading {
        margin-bottom: 38px;
    }

    .faq-question {
        gap: 18px;
        padding: 20px 2px;

        font-size: 19px;
    }

    .faq-toggle {
        width: 29px;
        height: 29px;

        font-size: 19px;
    }

    .faq-answer p {
        padding: 0 35px 0 2px;

        font-size: 14px;
        line-height: 1.65;
    }

    .faq-item.active .faq-answer p {
        padding-bottom: 20px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .faq-section {
        padding: 60px 0;
    }

    .faq-question {
        font-size: 18px;
    }

    .faq-answer p {
        font-size: 13px;
    }
}

/* =========================================================
   FINAL CTA SECTION
   ========================================================= */

.final-cta-section {
    position: relative;

    background: #111;
    color: #ffffff;

    padding: 110px 0;

    overflow: hidden;
}


/* Subtle background elements */

.final-cta-section::before {
    content: "";

    position: absolute;
    top: -180px;
    right: -180px;

    width: 420px;
    height: 420px;

    border: 1px solid rgba(255, 90, 31, 0.18);
    border-radius: 50%;
}

.final-cta-section::after {
    content: "";

    position: absolute;
    bottom: -220px;
    left: -220px;

    width: 500px;
    height: 500px;

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.final-cta-content {
    position: relative;
    z-index: 1;

    max-width: 900px;
    margin: 0 auto;

    text-align: center;
}

.final-cta-content .eyebrow {
    color: #ff5a1f;
}

.final-cta-content h2 {
    margin: 18px 0 24px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(50px, 6vw, 82px);
    line-height: 0.92;
    font-weight: 600;
    letter-spacing: -0.025em;

    color: #ffffff;
}

.final-cta-content h2 span {
    color: #ff5a1f;
}

.final-cta-content > p {
    max-width: 650px;
    margin: 0 auto 35px;

    font-family: "Barlow", sans-serif;
    font-size: 17px;
    line-height: 1.7;

    color: #aaa;
}


/* CTA Buttons */

.final-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 0 24px;

    border: 1px solid #555;

    color: #ffffff;
    background: transparent;

    font-family: "Barlow", sans-serif;
    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

.btn-outline-light:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #111;
}

.final-cta-note {
    margin-top: 28px !important;
    margin-bottom: 0 !important;

    font-family: "DM Mono", monospace !important;
    font-size: 10px !important;
    letter-spacing: 0.05em;

    color: #666 !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 800px) {

    .final-cta-section {
        padding: 90px 0;
    }

    .final-cta-content {
        max-width: 700px;
    }

    .final-cta-content h2 {
        font-size: 62px;
    }

    .final-cta-content > p {
        font-size: 16px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .final-cta-section {
        padding: 75px 0;
    }

    .final-cta-content {
        max-width: 100%;
    }

    .final-cta-content h2 {
        font-size: 48px;
        line-height: 0.95;
    }

    .final-cta-content > p {
        font-size: 15px;
        line-height: 1.65;
    }

    .final-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .final-cta-actions .btn {
        width: 100%;
    }

    .final-cta-actions .btn-outline-light {
        width: 100%;
    }

    .final-cta-note {
        font-size: 9px !important;
    }

    .final-cta-section::before {
        width: 300px;
        height: 300px;
        top: -120px;
        right: -140px;
    }

    .final-cta-section::after {
        width: 350px;
        height: 350px;
        bottom: -160px;
        left: -170px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .final-cta-section {
        padding: 65px 0;
    }

    .final-cta-content h2 {
        font-size: 42px;
    }

    .final-cta-content > p {
        font-size: 14px;
    }
}