/* =====================================================
   BRIGHT BARREL INDUSTRIES
   INTERACTIVE INDUSTRIAL DESIGN
===================================================== */

:root {

    --navy: #071A2B;
    --navy-light: #0D2A40;
    --navy-soft: #163A52;

    --accent: #FF6B35;
    --accent-dark: #D94E20;

    --ivory: #F5F1EA;
    --steel: #718796;
    --white: #FFFFFF;
    --black: #050B10;

    --border-light: #D8DEE2;
    --border-dark: rgba(255,255,255,.14);

    --heading-font: "Space Grotesk", sans-serif;
    --body-font: "DM Sans", sans-serif;

    --container: 1240px;

    --mouse-x: 50%;
    --mouse-y: 50%;
}


/* =====================================================
   THEMES
===================================================== */

[data-theme="blue"] {
    --accent: #2388FF;
    --accent-dark: #1267C7;
}

[data-theme="green"] {
    --accent: #18B77A;
    --accent-dark: #0D8C5B;
}

[data-theme="red"] {
    --accent: #F04444;
    --accent-dark: #BD2929;
}


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: var(--body-font);

    color: var(--navy);

    background: var(--ivory);

    line-height: 1.6;

    overflow-x: hidden;

    cursor: default;
}

img {
    width: 100%;
    height: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font-family: inherit;
}


/* =====================================================
   SCROLL PROGRESS
===================================================== */

.scroll-progress {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    z-index: 3000;

    background: transparent;
}

.scroll-progress span {

    display: block;

    width: 0;
    height: 100%;

    background: var(--accent);

    box-shadow:
        0 0 12px var(--accent);

}


/* =====================================================
   CURSOR GLOW
===================================================== */

.cursor-glow {

    position: fixed;

    width: 280px;
    height: 280px;

    left: var(--mouse-x);
    top: var(--mouse-y);

    transform: translate(-50%, -50%);

    border-radius: 50%;

    pointer-events: none;

    z-index: 0;

    background:
        radial-gradient(
            circle,
            color-mix(
                in srgb,
                var(--accent) 12%,
                transparent
            ),
            transparent 70%
        );

    transition:
        left .15s ease-out,
        top .15s ease-out;

}


/* =====================================================
   COMMON
===================================================== */

.container {

    width: min(
        calc(100% - 80px),
        var(--container)
    );

    margin: auto;
}

.section {
    padding: 120px 0;
}

.eyebrow {

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--white);

    font-size: 10px;

    letter-spacing: 2.5px;

    font-weight: 700;

    margin-bottom: 25px;
}

.eyebrow span {

    width: 30px;
    height: 2px;

    background: var(--accent);

    position: relative;

    overflow: hidden;
}

.eyebrow span::after {

    content: "";

    position: absolute;

    inset: 0;

    background: white;

    transform: translateX(-100%);

    animation:
        eyebrowLine 3s infinite;
}

@keyframes eyebrowLine {

    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.eyebrow.dark {
    color: var(--steel);
}

h1,
h2,
h3 {
    font-family: var(--heading-font);
    line-height: 1.05;
}

h2 {

    font-size:
        clamp(
            42px,
            5vw,
            70px
        );

    letter-spacing: -3px;
}

h2 span {
    color: var(--accent);
}


/* =====================================================
   BUTTONS
===================================================== */

.button {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 20px;

    padding: 16px 23px;

    font-size: 13px;

    font-weight: 700;

    border: 1px solid transparent;

    transition:
        transform .35s ease,
        background .35s ease,
        color .35s ease,
        border-color .35s ease;

    position: relative;

    overflow: hidden;
}

.button::before {

    content: "";

    position: absolute;

    width: 0;
    height: 0;

    border-radius: 50%;

    background:
        rgba(255,255,255,.18);

    left: var(--button-x, 50%);
    top: var(--button-y, 50%);

    transform:
        translate(-50%, -50%);

    transition:
        width .5s ease,
        height .5s ease;
}

.button:hover::before {

    width: 350px;
    height: 350px;
}

.button > * {
    position: relative;
    z-index: 2;
}

.button-primary {

    background: var(--accent);

    color: var(--white);
}

.button-primary:hover {

    background: var(--accent-dark);

    transform: translateY(-4px);
}

.button-outline {

    border-color:
        rgba(255,255,255,.3);

    color: var(--white);
}

.button-outline:hover {

    border-color: var(--accent);

    color: var(--accent);

    transform: translateY(-4px);
}

.button-light {

    background: var(--white);

    color: var(--navy);
}

.button-light:hover {

    background: var(--accent);

    color: var(--white);

    transform: translateY(-4px);
}


/* =====================================================
   THEME PANEL
===================================================== */

.theme-panel {

    position: fixed;

    right: 22px;
    top: 50%;

    transform:
        translateY(-50%);

    z-index: 2000;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 10px;
}

.theme-toggle {

    width: 42px;
    height: 42px;

    border-radius: 50%;

    border: 1px solid
        rgba(255,255,255,.25);

    background: var(--navy);

    cursor: pointer;

    box-shadow:
        0 10px 30px
        rgba(0,0,0,.2);

    display: grid;

    place-items: center;
}

.theme-toggle span {

    width: 16px;
    height: 16px;

    border-radius: 50%;

    background: var(--accent);

    box-shadow:
        0 0 15px var(--accent);
}

.theme-options {

    display: flex;

    flex-direction: column;

    gap: 7px;

    opacity: 0;

    transform:
        translateY(10px)
        scale(.8);

    pointer-events: none;

    transition: .35s ease;
}

.theme-panel.open
.theme-options {

    opacity: 1;

    transform:
        translateY(0)
        scale(1);

    pointer-events: auto;
}

.theme-color {

    width: 20px;
    height: 20px;

    border: 2px solid white;

    border-radius: 50%;

    cursor: pointer;
}

.theme-color.orange {
    background: #FF6B35;
}

.theme-color.blue {
    background: #2388FF;
}

.theme-color.green {
    background: #18B77A;
}

.theme-color.red {
    background: #F04444;
}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background:
        white;

    backdrop-filter:
        blur(18px);

    border-bottom:
        1px solid
        rgba(7,26,43,.08);

    transition: .35s ease;
}

.navbar.scrolled {

    box-shadow:
        0 10px 40px
        rgba(7,26,43,.12);
}

.nav-container {

    width:
        min(
            calc(100% - 80px),
            var(--container)
        );

    height: 82px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.logo {

    display: flex;

    align-items: center;

    gap: 12px;
}

.company-logo {

    width: 155px;
    height: 60px;

    object-fit: contain;
}

.nav-menu {

    display: flex;

    gap: 34px;
}

.nav-menu a {

    position: relative;

    color:
        rgba(7,26,43,.93);

    font-size: 14px;

    padding: 10px 0;

    transition: .3s;
}

.nav-menu a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 2px;

    width: 0;
    height: 2px;

    background: var(--accent);

    transition: .35s ease;
}

.nav-menu a:hover,
.nav-menu a.active {

    color: var(--accent);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {

    width: 100%;
}

.nav-cta {

    color:
        rgba(7,26,43,.94);

    border:
        1px solid var(--accent);

    padding: 11px 18px;

    font-size: 12px;

    font-weight: 700;

    transition: .3s;
}

.nav-cta:hover {

    color: white;

    background: var(--accent);

    transform: translateY(-3px);
}

.menu-button {

    display: none;

    border: none;

    background: none;

    color: var(--navy);

    font-size: 25px;

    cursor: pointer;
}


/* =====================================================
   HERO
===================================================== */

.hero {

    min-height: 100vh;

    padding-top: 82px;

    background: var(--navy);

    color: var(--white);

    position: relative;

    overflow: hidden;
}

.hero-pattern {

    position: absolute;

    inset: 0;

    opacity: .16;

    background-image:

        linear-gradient(
            rgba(255,255,255,.08) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.08) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    animation:
        gridMove 18s linear infinite;
}

@keyframes gridMove {

    from {
        background-position:
            0 0;
    }

    to {
        background-position:
            70px 70px;
    }
}

.hero-orb {

    position: absolute;

    border-radius: 50%;

    filter: blur(2px);

    opacity: .22;

    background:
        radial-gradient(
            circle,
            var(--accent),
            transparent 65%
        );

    animation:
        orbFloat 8s ease-in-out infinite;
}

.orb-one {

    width: 400px;
    height: 400px;

    right: -100px;
    top: 10%;
}

.orb-two {

    width: 250px;
    height: 250px;

    left: 30%;
    bottom: -100px;

    animation-delay: -3s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform:
            translate3d(0,0,0)
            scale(1);
    }

    50% {
        transform:
            translate3d(30px,-30px,0)
            scale(1.08);
    }
}

.hero-container {

    width:
        min(
            calc(100% - 80px),
            var(--container)
        );

    min-height:
        calc(100vh - 82px);

    margin: auto;

    display: grid;

    grid-template-columns:
        1.05fr .95fr;

    align-items: center;

    gap: 80px;

    position: relative;

    z-index: 2;
}

.hero-content {

    padding: 60px 0;
}

.hero-title {

    font-size:
        clamp(
            55px,
            7vw,
            96px
        );

    letter-spacing: -6px;

    max-width: 850px;
}

.hero-title span {

    display: block;

    color: var(--accent);

    position: relative;
}

.hero-title span::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 80px;
    height: 3px;

    background: var(--accent);

    box-shadow:
        0 0 20px var(--accent);

    animation:
        titleLine 3s ease-in-out infinite;
}

@keyframes titleLine {

    0%,
    100% {
        width: 80px;
    }

    50% {
        width: 180px;
    }
}

.hero-description {

    max-width: 570px;

    margin-top: 30px;

    color: #A9BAC6;

    font-size: 17px;
}

.hero-buttons {

    display: flex;

    gap: 14px;

    margin-top: 40px;
}

.hero-highlights {

    display: flex;

    align-items: center;

    gap: 20px;

    margin-top: 65px;
}

.process-step {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    position: relative;
}

.hero-highlights strong {

    color: var(--accent);

    font-family: var(--heading-font);

    font-size: 18px;
}

.hero-highlights span {

    color: #91A3AE;

    text-transform: uppercase;

    letter-spacing: 1px;

    font-size: 9px;
}

.process-line {

    width: 35px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--accent),
            transparent
        );

    animation:
        processPulse 2s infinite;
}

@keyframes processPulse {

    0% {
        opacity: .2;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: .2;
    }
}


/* =====================================================
   HERO PRODUCT
===================================================== */

.hero-product {

    position: relative;

    perspective: 1000px;
}

.hero-product-image {

    height: 620px;

    position: relative;

    overflow: hidden;

    background: var(--navy-light);

    border:
        1px solid var(--border-dark);

    transform:
        rotateX(var(--rx,0deg))
        rotateY(var(--ry,0deg));

    transition:
        transform .15s ease-out;

    box-shadow:
        0 40px 100px
        rgba(0,0,0,.3);
}

.hero-product-image::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            transparent 30%,
            rgba(255,255,255,.1),
            transparent 70%
        );

    transform:
        translateX(-100%);

    animation:
        heroShine 5s infinite;
}

@keyframes heroShine {

    0% {
        transform:
            translateX(-120%);
    }

    45%,
    100% {
        transform:
            translateX(120%);
    }
}

.hero-product-image img {

    object-fit: contain;

    opacity: .86;

    transition:
        transform 1s ease;
}

.hero-product:hover
.hero-product-image img {

    transform:
        scale(1.07);
}

.image-shine {

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        radial-gradient(
            circle at
            var(--mouse-x)
            var(--mouse-y),
            rgba(255,255,255,.18),
            transparent 25%
        );
}

.floating-tag {

    position: absolute;

    left: -45px;
    bottom: 45px;

    padding: 18px 22px;

    background: var(--white);

    color: var(--navy);

    font-size: 11px;

    font-weight: 700;

    box-shadow:
        0 20px 50px
        rgba(0,0,0,.25);

    animation:
        floatingTag 4s ease-in-out infinite;
}

@keyframes floatingTag {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-12px);
    }
}

.status-dot {

    display: inline-block;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--accent);

    margin-right: 8px;

    box-shadow:
        0 0 0 0
        color-mix(
            in srgb,
            var(--accent) 50%,
            transparent
        );

    animation:
        pulse 1.8s infinite;
}

@keyframes pulse {

    70% {

        box-shadow:
            0 0 0 10px transparent;

    }

    100% {

        box-shadow:
            0 0 0 0 transparent;

    }
}

.hero-corner {

    position: absolute;

    top: 25px;
    right: 25px;

    font-size: 9px;

    letter-spacing: 3px;

    color: var(--accent);

    writing-mode: vertical-rl;
}


/* =====================================================
   REVEAL
===================================================== */

.reveal {

    opacity: 0;

    transform:
        translateY(45px);

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.2,.8,.2,1);
}

.reveal.visible {

    opacity: 1;

    transform:
        translateY(0);
}


/* =====================================================
   ABOUT
===================================================== */

.about {
    background: var(--ivory);
}

.about-heading {
    max-width: 850px;
}

.about-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 100px;

    margin-top: 70px;
}

.about-main {
    max-width: 620px;
}

.about-main p {

    color: #687782;

    margin-bottom: 24px;
}

.about-main .about-large {

    font-size: 25px;

    line-height: 1.45;

    color: var(--navy);
}

.about-values {

    border-top:
        1px solid
        var(--border-light);
}

.value {

    display: grid;

    grid-template-columns:
        50px 1fr;

    gap: 20px;

    padding: 25px 0;

    border-bottom:
        1px solid
        var(--border-light);

    transition: .4s ease;
}

.value:hover {

    padding-left: 15px;

    border-color:
        var(--accent);
}

.value > span {

    color: var(--accent);

    font-family:
        var(--heading-font);

    font-weight: 700;
}

.value h3 {

    font-size: 21px;

    margin-bottom: 7px;
}

.value p {

    color: var(--steel);

    font-size: 13px;
}


/* =====================================================
   PRODUCTS
===================================================== */

.products {

    background: var(--navy);

    color: var(--white);
}

.section-header {

    display: flex;

    justify-content:
        space-between;

    align-items: end;

    gap: 50px;

    margin-bottom: 65px;
}

.product-grid {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 24px;
}

.product-card {

    background:
        linear-gradient(
            145deg,
            #0D2A40,
            #091F31
        );

    border:
        1px solid
        var(--border-dark);

    transition:
        transform .15s ease-out,
        border-color .4s ease,
        box-shadow .4s ease;

    transform-style:
        preserve-3d;

    position: relative;

    overflow: hidden;
}

.product-card::before {

    content: "";

    position: absolute;

    inset: -2px;

    background:
        linear-gradient(
            120deg,
            transparent,
            var(--accent),
            transparent
        );

    opacity: 0;

    z-index: 0;

    transition: .4s;
}

.product-card:hover::before {

    opacity: .15;
}

.product-card:hover {

    border-color:
        color-mix(
            in srgb,
            var(--accent) 70%,
            transparent
        );

    box-shadow:
        0 30px 70px
        rgba(0,0,0,.3);
}

.product-image {

    height: 350px;

    position: relative;

    background: #102E43;

    overflow: hidden;
}

.product-image img {

    object-fit: contain;

    transition:
        transform .8s
        cubic-bezier(.2,.8,.2,1);
}

.product-card:hover
.product-image img {

    transform:
        scale(1.1);
}

.product-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.06),
            transparent 45%
        );

    pointer-events: none;
}

.product-number {

    position: absolute;

    left: 20px;
    top: 20px;

    color: var(--white);

    font-family:
        var(--heading-font);

    font-size: 20px;

    font-weight: 700;
}

.product-industry {

    position: absolute;

    right: 20px;
    top: 20px;

    padding: 8px 11px;

    background:
        rgba(7,26,43,.85);

    color: var(--white);

    font-size: 8px;

    letter-spacing: 1.5px;
}

.coming-soon-badge {

    position: absolute;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%,-50%);

    padding: 13px 18px;

    background: var(--accent);

    color: var(--white);

    font-size: 10px;

    letter-spacing: 2px;

    font-weight: 700;

    box-shadow:
        0 0 30px
        color-mix(
            in srgb,
            var(--accent) 40%,
            transparent
        );

    animation:
        badgePulse 2s infinite;
}

@keyframes badgePulse {

    50% {
        box-shadow:
            0 0 50px
            color-mix(
                in srgb,
                var(--accent) 60%,
                transparent
            );
    }
}

.product-content {

    padding: 30px;

    position: relative;

    z-index: 2;
}

.product-label {

    color: var(--accent);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;
}

.product-label.coming {
    color: #FFB299;
}

.product-content h3 {

    font-size: 31px;

    margin:
        10px 0 13px;
}

.product-content > p {

    color: #96A9B5;

    font-size: 14px;
}

.applications {

    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 20px;
}

.applications span {

    padding: 7px 9px;

    border:
        1px solid
        var(--border-dark);

    color: #B9C5CC;

    font-size: 9px;

    transition: .3s;
}

.applications span:hover {

    border-color: var(--accent);

    color: var(--accent);

    transform:
        translateY(-3px);
}

.product-link {

    display: inline-flex;

    gap: 15px;

    align-items: center;

    margin-top: 25px;

    color: var(--white);

    font-size: 12px;

    font-weight: 700;

    transition: .3s;
}

.product-link span {

    color: var(--accent);

    font-size: 19px;

    transition: .3s;
}

.product-link:hover {

    color: var(--accent);
}

.product-link:hover span {

    transform:
        translateX(8px);
}


/* =====================================================
   INDUSTRIES
===================================================== */

.industries {
    background: var(--ivory);
}

.industry-heading {
    max-width: 800px;
}

.industry-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    margin-top: 65px;
}

.industry-card {

    min-height: 320px;

    padding: 35px;

    border:
        1px solid
        var(--border-light);

    margin-right: -1px;

    transition:
        .5s cubic-bezier(.2,.8,.2,1);

    position: relative;

    overflow: hidden;
}

.industry-card::before {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    background: var(--accent);

    transform:
        scaleX(0);

    transform-origin: left;

    transition: .5s;
}

.industry-card:hover {

    background: var(--white);

    transform:
        translateY(-10px);

    box-shadow:
        0 25px 60px
        rgba(7,26,43,.1);
}

.industry-card:hover::before {

    transform:
        scaleX(1);
}

.industry-icon {

    color: var(--accent);

    font-family:
        var(--heading-font);

    font-size: 12px;

    margin-bottom: 60px;
}

.industry-card h3 {

    font-size: 24px;

    margin-bottom: 14px;
}

.industry-card p {

    color: var(--steel);

    font-size: 13px;
}

.industry-products {

    margin-top: 25px;

    color: var(--accent);

    font-size: 10px;

    font-weight: 700;
}

.industry-products span {

    margin:
        0 5px;

    color: #B0B9BE;
}


/* =====================================================
   BARRELMATE PRO
===================================================== */

.pro-section {

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            var(--navy),
            #06111C
        );

    color: white;

    padding: 120px 0;
}

.pro-pattern {

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(
            45deg,
            rgba(255,255,255,.04) 25%,
            transparent 25%
        );

    background-size:
        40px 40px;

    opacity: .5;

    animation:
        gridMove 15s linear infinite;
}

.pro-container {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 80px;

    position: relative;

    z-index: 2;
}

.pro-content h2 {

    max-width: 700px;
}

.pro-content p {

    max-width: 600px;

    color: #A8B7C0;

    margin:
        30px 0;
}

.pro-visual {

    min-height: 450px;

    display: grid;

    place-items: center;

    position: relative;
}

.pro-circle {

    width: 220px;
    height: 220px;

    border:
        1px solid
        var(--accent);

    border-radius: 50%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    color: white;

    font-family:
        var(--heading-font);

    font-weight: 700;

    font-size: 18px;

    position: relative;

    z-index: 3;

    box-shadow:
        0 0 80px
        color-mix(
            in srgb,
            var(--accent) 20%,
            transparent
        );

    animation:
        circleFloat 5s ease-in-out infinite;
}

.pro-circle span {

    font-size: 70px;

    line-height: 1;

    color: var(--accent);
}

@keyframes circleFloat {

    0%,
    100% {
        transform:
            translateY(0)
            rotate(0);
    }

    50% {
        transform:
            translateY(-15px)
            rotate(3deg);
    }
}

.pro-orbit {

    position: absolute;

    border:
        1px dashed
        color-mix(
            in srgb,
            var(--accent) 70%,
            transparent
        );

    border-radius: 50%;

    animation:
        orbitRotate 12s linear infinite;
}

.orbit-one {

    width: 320px;
    height: 320px;
}

.orbit-two {

    width: 420px;
    height: 420px;

    animation-direction:
        reverse;

    animation-duration:
        18s;
}

@keyframes orbitRotate {

    to {
        transform:
            rotate(360deg);
    }
}

.pro-line {

    position: absolute;

    width: 100%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--accent),
            transparent
        );

    animation:
        lineMove 3s infinite;
}

@keyframes lineMove {

    0% {
        transform:
            scaleX(.2);
        opacity: .2;
    }

    50% {
        transform:
            scaleX(1);
        opacity: 1;
    }

    100% {
        transform:
            scaleX(.2);
        opacity: .2;
    }
}


/* =====================================================
   WHY
===================================================== */

.why {
    background: white;
}

.why-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    margin-top: 65px;
}

.why-item {

    padding: 35px;

    border:
        1px solid
        var(--border-light);

    margin-right: -1px;

    transition: .4s;
}

.why-item:hover {

    background: var(--ivory);

    transform:
        translateY(-8px);
}

.why-item > span {

    color: var(--accent);

    font-family:
        var(--heading-font);

    font-weight: 700;
}

.why-item h3 {

    font-size: 21px;

    margin:
        55px 0 14px;
}

.why-item p {

    color: var(--steel);

    font-size: 13px;
}


/* =====================================================
   CONTACT CTA
===================================================== */

.contact-cta {

    position: relative;

    overflow: hidden;

    background: var(--navy);

    color: white;

    padding: 120px 0;
}

.cta-grid {

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(
            rgba(255,255,255,.05) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.05) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    animation:
        gridMove 15s linear infinite;
}

.cta-container {

    position: relative;

    z-index: 2;
}

.cta-container h2 {

    max-width: 900px;
}

.cta-container p {

    color: #A8B7C0;

    max-width: 550px;

    margin:
        25px 0 35px;
}


/* =====================================================
   CONTACT
===================================================== */

.contact {
    background: var(--ivory);
}

.contact-grid {

    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 100px;

    align-items: start;
}

.contact-information h2 {

    max-width: 600px;
}

.contact-information > p {

    color: var(--steel);

    max-width: 500px;

    margin:
        30px 0 45px;
}

.contact-details {

    display: grid;

    gap: 25px;
}

.contact-details div {

    display: grid;

    gap: 4px;

    padding-bottom: 15px;

    border-bottom:
        1px solid
        var(--border-light);
}

.contact-details span {

    color: var(--accent);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;
}

.contact-details strong {

    font-family:
        var(--heading-font);

    font-size: 15px;
}

.contact-form {

    background: white;

    padding: 45px;

    box-shadow:
        0 30px 80px
        rgba(7,26,43,.08);
}

.form-row {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 20px;
}

.form-group {

    display: grid;

    gap: 8px;

    margin-bottom: 20px;
}

.form-group label {

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

    color: var(--navy);
}

.form-group input,
.form-group textarea,
.form-group select {

    width: 100%;

    border:
        1px solid
        var(--border-light);

    background:
        #FAFAFA;

    padding: 14px 15px;

    outline: none;

    font-size: 13px;

    transition: .3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {

    border-color:
        var(--accent);

    background: white;

    box-shadow:
        0 0 0 3px
        color-mix(
            in srgb,
            var(--accent) 10%,
            transparent
        );
}

.submit-button {

    width: 100%;

    padding: 17px;

    border: none;

    background: var(--accent);

    color: white;

    cursor: pointer;

    font-weight: 700;

    display: flex;

    justify-content: center;

    gap: 15px;

    transition: .35s;
}

.submit-button:hover {

    background: var(--accent-dark);

    transform:
        translateY(-3px);
}

.form-message {

    margin-top: 15px;

    font-size: 12px;

    text-align: center;
}


/* =====================================================
   FOOTER
===================================================== */

footer {

    background:
        #040A0F;

    color: white;

    padding:
        70px 0 25px;
}

.footer-top {

    display: flex;

    justify-content:
        space-between;

    gap: 50px;
}

.footer-logo {

    width: 150px;

    margin-bottom: 20px;
}

.footer-brand h3 {

    font-size: 18px;

    margin-bottom: 5px;
}

.footer-brand h5 {

    color: var(--accent);

    letter-spacing: 1px;
}

.footer-links {

    display: flex;

    gap: 30px;

    align-items: center;
}

.footer-links a {

    color: #A4B1B8;

    font-size: 12px;

    transition: .3s;
}

.footer-links a:hover {

    color: var(--accent);

    transform:
        translateY(-3px);
}

.footer-bottom {

    display: flex;

    justify-content:
        space-between;

    border-top:
        1px solid
        rgba(255,255,255,.1);

    margin-top: 60px;

    padding-top: 20px;

    color: #66747C;

    font-size: 10px;
}


/* =====================================================
   WHATSAPP
===================================================== */

.whatsapp-button {

    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 58px;
    height: 58px;

    border-radius: 50%;

    background: #25D366;

    color: white;

    display: grid;

    place-items: center;

    z-index: 1500;

    box-shadow:
        0 10px 35px
        rgba(0,0,0,.25);

    animation:
        whatsappPulse 2s infinite;

    transition: .3s;
}

.whatsapp-button:hover {

    transform:
        scale(1.12);
}

@keyframes whatsappPulse {

    70% {

        box-shadow:
            0 0 0 15px
            rgba(37,211,102,0);

    }

    100% {

        box-shadow:
            0 0 0 0
            rgba(37,211,102,0);

    }
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .hero-container,
    .pro-container,
    .contact-grid {

        grid-template-columns:
            1fr;

    }

    .hero-product {

        max-width: 650px;

        width: 100%;

        margin: auto;

    }

    .about-grid {

        grid-template-columns:
            1fr;

        gap: 50px;
    }

    .industry-grid {

        grid-template-columns:
            1fr;

    }

    .why-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

    .hero-product-image {

        height: 500px;
    }

    .pro-visual {

        min-height: 400px;
    }

}


@media (max-width: 760px) {

    .container,
    .nav-container,
    .hero-container {

        width:
            calc(100% - 40px);

    }

    .nav-menu {

        position: fixed;

        left: 20px;
        right: 20px;

        top: 82px;

        padding: 25px;

        background: white;

        flex-direction: column;

        gap: 5px;

        box-shadow:
            0 20px 50px
            rgba(0,0,0,.15);

        opacity: 0;

        transform:
            translateY(-20px);

        pointer-events: none;

        transition: .35s;
    }

    .nav-menu.active {

        opacity: 1;

        transform:
            translateY(0);

        pointer-events: auto;
    }

    .nav-cta {

        display: none;
    }

    .menu-button {

        display: block;
    }

    .hero {

        padding-top: 82px;
    }

    .hero-title {

        font-size:
            clamp(
                48px,
                14vw,
                72px
            );

        letter-spacing:
            -4px;
    }

    .hero-description {

        font-size: 15px;
    }

    .hero-buttons {

        flex-direction: column;

        align-items:
            stretch;
    }

    .hero-highlights {

        flex-direction: column;

        align-items:
            flex-start;

        gap: 12px;
    }

    .process-line {

        display: none;
    }

    .hero-product-image {

        height: 400px;
    }

    .floating-tag {

        left: 15px;
        bottom: 20px;
    }

    .product-grid {

        grid-template-columns:
            1fr;
    }

    .industry-grid {

        grid-template-columns:
            1fr;
    }

    .why-grid {

        grid-template-columns:
            1fr;
    }

    .form-row {

        grid-template-columns:
            1fr;
    }

    .contact-form {

        padding: 25px;
    }

    .footer-top,
    .footer-bottom {

        flex-direction: column;

        align-items:
            flex-start;
    }

    .footer-links {

        flex-wrap: wrap;

        gap: 18px;
    }

    .theme-panel {

        right: 10px;
    }

    .whatsapp-button {

        right: 18px;
        bottom: 18px;
    }

}


@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        scroll-behavior:
            auto !important;

        transition-duration:
            .01ms !important;
    }

}