/* =========================================================
   XECTIP V5
   FINAL CSS
   CLEAN / MERGED / NO DUPLICATES
========================================================= */


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

:root {

    --bg: #6C6868;
    --dark: #3D3A3A;
    --dark-2: #454141;
    --black: #111111;

    --white: #FFFFFF;
    --muted: #A9A6A6;

    --line: rgba(255,255,255,.16);

    --accent: #C05C33;
    --accent-light: #FF8A5B;

}


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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    background: var(--bg);
}


body {
    background: var(--bg);
    color: var(--white);

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

    overflow-x: hidden;
}


body.menu-open,
body.modal-open {
    overflow: hidden;
}


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


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


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


button {
    cursor: pointer;
}


/* =========================================================
   COMMON
========================================================= */

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

    margin: 0 auto;
}


.section {
    padding: 170px 0;
}


.section-title {
    margin-bottom: 90px;
}


.section-title span,
.section-label {
    color: var(--accent);

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

    letter-spacing: 4px;
}


.section-title h2 {
    margin-top: 28px;

    font-size:
        clamp(
            48px,
            6vw,
            90px
        );

    font-weight: 300;

    line-height: .95;

    letter-spacing: -4px;
}


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

.header {
    position: fixed;

    top: 0;
    left: 0;

    z-index: 1000;

    width: 100%;

    padding: 28px 0;

    transition: .35s ease;
}


.header.scrolled {
    padding: 18px 0;

    background:
        rgba(
            61,
            58,
            58,
            .94
        );

    backdrop-filter: blur(15px);
}


.header-inner {
    width:
        min(
            1500px,
            calc(100% - 80px)
        );

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.logo {
    display: flex;

    align-items: baseline;

    gap: 8px;

    color: var(--accent);
}


.logo-main {
    font-size: 25px;

    font-weight: 800;

    letter-spacing: -1px;
}


.logo-ppf {
    color: #fff;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 2px;
}


.nav {
    display: flex;

    align-items: center;

    gap: 36px;
}


.nav a {
    position: relative;

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

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 2px;
}


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

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: var(--accent);

    transition: .3s;
}


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


.header-right {
    display: flex;

    align-items: center;

    gap: 25px;
}


.language {
    display: flex;

    gap: 10px;
}


.language button {
    border: 0;

    background: none;

    color: #888;

    font-size: 11px;

    letter-spacing: 2px;
}


.language button.active {
    color: var(--accent);
}


.menu-button {
    display: none;

    width: 30px;
    height: 25px;

    border: 0;

    background: none;
}


.menu-button span {
    display: block;

    height: 2px;

    margin: 7px 0;

    background: #fff;

    transition: .3s;
}


.menu-button.active span:first-child {
    transform:
        translateY(4px)
        rotate(45deg);
}


.menu-button.active span:last-child {
    transform:
        translateY(-5px)
        rotate(-45deg);
}


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

.hero {
    position: relative;

    min-height: 100vh;

    overflow: hidden;

    background: #222;
}


.hero-image {
    position: absolute;

    inset: 0;
}


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

    object-fit: cover;

    object-position: center;
}


.hero::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.82),
            rgba(0,0,0,.22) 65%,
            rgba(0,0,0,.42)
        ),
        linear-gradient(
            0deg,
            rgba(0,0,0,.72),
            transparent 50%
        );
}


.hero-content {
    position: absolute;

    z-index: 2;

    left: 8%;
    top: 50%;

    transform:
        translateY(-50%);
}


.hero-label {
    margin-bottom: 20px;

    color: var(--accent);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 5px;
}


.hero h1 {
    display: flex;

    flex-direction: column;

    gap: 5px;

    font-weight: 300;

    line-height: .88;
}


.hero h1 strong {
    color: var(--accent);

    font-size:
        clamp(
            70px,
            11vw,
            170px
        );

    font-weight: 800;

    letter-spacing: -7px;
}


.hero h1 span {
    color: #fff;

    font-size:
        clamp(
            28px,
            4vw,
            62px
        );

    font-weight: 300;

    line-height: .95;

    letter-spacing: -3px;
}


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

    margin-top: 22px;

    color: #ccc;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.7;

    letter-spacing: 1px;
}



.hero-subtitle {
    margin-top: 28px;

    color: #fff;

    font-size: 16px;

    font-weight: 700;

    line-height: 1.7;

    letter-spacing: 4px;
}



.hero-button {
    display: inline-flex;

    align-items: center;

    gap: 28px;

    margin-top: 40px;

    padding: 17px 22px;

    border:
        1px solid
        rgba(255,255,255,.4);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    transition: .3s;
}


.hero-button span {
    color: var(--accent);

    font-size: 22px;
}


.hero-button:hover {
    border-color: var(--accent);

    background: var(--accent);
}


.hero-button:hover span {
    color: #fff;
}


.hero-bottom {
    position: absolute;

    z-index: 2;

    left: 5%;
    right: 5%;
    bottom: 30px;

    display: flex;

    justify-content: space-between;

    color: #aaa;

    font-size: 10px;

    letter-spacing: 3px;
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    background: var(--bg);
}


.about-grid {
    display: grid;

    grid-template-columns:
        1.15fr .85fr;

    min-height: 620px;
}


.about-image {
    overflow: hidden;
}


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

    object-fit: cover;

    transition: 1s;
}


.about-image:hover img {
    transform: scale(1.04);
}


.about-content {
    display: flex;

    flex-direction: column;

    justify-content: flex-start;

    padding: 110px 70px 70px;

    background: var(--dark);
}


.about-content .large-text {
    max-width: 600px;

    color: #fff;

    font-size: 28px;

    line-height: 1.5;
}


.about-content .highlight-text {
    max-width: 600px;

    margin-top: 25px;

    color: #ddd;

    font-size: 28px;

    line-height: 1.7;
}


.about-content .highlight-text strong {
    color: var(--accent-light);
}


.about-content >
p:not(.large-text):not(.highlight-text) {
    max-width: 550px;

    margin-top: 25px;

    color: #aaa;

    font-size: 15px;

    line-height: 1.9;
}


.about-number {
    display: flex;

    align-items: center;

    gap: 20px;

    margin-top: 50px;

    padding-top: 25px;

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


.about-number strong {
    color: var(--accent);

    font-size: 24px;
}


.about-number span {
    color: #aaa;

    font-size: 11px;

    letter-spacing: 3px;
}


/* =========================================================
   PPF
========================================================= */

.ppf-section {
    background: var(--bg);
}


.ppf-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    min-height: 600px;
}


.ppf-image {
    min-height: 600px;

    overflow: hidden;
}


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

    object-fit: cover;
}


.ppf-content {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 70px;

    background: var(--dark);
}


.ppf-large {
    color: #fff;

    font-size: 38px;

    font-weight: 300;

    line-height: 1.1;
}


.ppf-content >
p:not(.ppf-large) {
    max-width: 560px;

    margin-top: 30px;

    color: #bbb;

    font-size: 16px;

    line-height: 1.9;
}


.ppf-points {
    margin-top: 45px;
}


.ppf-points > div {
    display: flex;

    gap: 25px;

    padding: 20px 0;

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


.ppf-points strong {
    color: var(--accent);
}


.ppf-points span {
    font-size: 12px;

    font-weight: 600;

    letter-spacing: 2px;
}


/* =========================================================
   WHY XECTIP
   IMAGE BACKGROUND + TRANSPARENT OVERLAY
========================================================= */

.why-grid {
    display: grid;

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

    gap: 20px;
}


.why-card {
    position: relative;

    min-height: 460px;

    padding: 0;

    overflow: hidden;

    background: #222;

    border:
        1px solid
        rgba(255,255,255,.08);

    transition:
        transform .4s ease,
        border-color .4s ease;
}


/* =========================================================
   BACKGROUND IMAGE
========================================================= */

.why-card-bg {
    position: absolute;

    inset: 0;

    z-index: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: .55;

    transition:
        transform 1s
        cubic-bezier(.2,.6,.2,1),
        opacity .5s ease;
}


/* =========================================================
   DARK TRANSPARENT OVERLAY
========================================================= */

.why-card-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.25) 0%,
            rgba(0,0,0,.55) 50%,
            rgba(0,0,0,.88) 100%
        );
}


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

.why-card-content {
    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    min-height: 460px;

    padding: 40px 35px;
}


/* =========================================================
   NUMBER
========================================================= */

.why-card .number {
    color: var(--accent);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 3px;
}


/* =========================================================
   TITLE
========================================================= */

.why-card h3 {
    margin-top: 55px;

    color: #fff;

    font-size: 30px;

    font-weight: 700;

    line-height: 1.1;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.why-card p {
    max-width: 420px;

    margin-top: 25px;

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

    font-size: 15px;

    line-height: 1.8;
}


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

.why-card:hover {
    border-color: var(--accent);

    transform:
        translateY(-6px);
}


.why-card:hover .why-card-bg {
    opacity: .7;

    transform:
        scale(1.06);
}


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

@media (max-width: 900px) {

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


    .why-card,
    .why-card-content {
        min-height: 420px;
    }

}


@media (max-width: 600px) {

    .why-card,
    .why-card-content {
        min-height: 400px;
    }


    .why-card-content {
        padding: 35px 25px;
    }


    .why-card h3 {
        margin-top: 40px;

        font-size: 27px;
    }


    .why-card p {
        font-size: 14px;
    }

}


/* =========================================================
   TECHNOLOGY
========================================================= */

.technology {
    background: var(--bg);
}


.technology-heading {
    padding: 20px 0;
}


.technology-heading h3 {
    color: #fff;

    font-size:
        clamp(
            42px,
            6vw,
            90px
        );

    font-weight: 800;

    line-height: 1;

    letter-spacing: -4px;
}


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

.products {
    background: var(--dark-2);
}


.products-grid {
    display: grid;

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

    gap: 20px;
}


.product-card {
    overflow: hidden;
}


.product-image {
    height: 500px;

    overflow: hidden;

    background: #333;
}


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

    object-fit: cover;

    transition: 1s;
}


.product-card:hover img {
    transform: scale(1.05);
}


.product-info {
    padding: 25px 0;

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


.product-info > span {
    color: var(--accent);

    font-size: 12px;

    letter-spacing: 3px;
}


.product-info h3 {
    margin-top: 15px;

    font-size: 32px;
}


.product-info p {
    margin-top: 10px;

    color: #999;

    font-size: 14px;
}

/* =========================================================
   XECTIP PROTECTION INTRO
   PPF + WRAP
   FINAL / CLEAN / NO DUPLICATES
========================================================= */

.protection-intro {
    width: 100%;
    background: #111111;
    color: #ffffff;
}


/* =========================================================
   PROTECTION ROW
========================================================= */

.protection-row {
    position: relative;

    display: grid;

    grid-template-columns: 42% 58%;

    min-height: 680px;

    overflow: hidden;

    border-top:
        1px solid
        rgba(255,255,255,.12);

    background: #111111;
}


/* =========================================================
   PROTECTION COPY
========================================================= */

.protection-copy {
    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 80px;

    background:
        linear-gradient(
            90deg,
            #050505 0%,
            #080808 75%,
            rgba(8,8,8,.92) 100%
        );
}


/* =========================================================
   PROTECTION NUMBER
========================================================= */

.protection-number {
    display: block;

    margin-bottom: 35px;

    color: #c05c33;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 4px;

    text-transform: uppercase;
}


/* =========================================================
   PROTECTION TITLE
========================================================= */

.protection-copy h2 {
    margin: 0;

    color: #ffffff;

    font-size:
        clamp(
            48px,
            4.5vw,
            78px
        );

    font-weight: 300;

    line-height: .95;

    letter-spacing: -3px;
}


/* =========================================================
   PROTECTION DESCRIPTION
========================================================= */

.protection-description {
    max-width: 520px;

    margin-top: 30px;

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

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   PROTECTION FEATURES
========================================================= */

.protection-features {
    display: grid;

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

    gap: 25px;

    width: 100%;

    margin-top: 35px;

    padding-top: 25px;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            .35
        );
}


.protection-features > div {
    display: flex;

    align-items: flex-start;

    gap: 15px;

    min-width: 0;
}


.protection-features strong {
    flex-shrink: 0;

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    line-height: 1.3;
}


.protection-features span {
    display: block;

    min-width: 0;

    color: #ffffff;

    font-size: 11px;

    font-weight: 600;

    line-height: 1.55;

    letter-spacing: 1px;

    white-space: normal;
}


/* =========================================================
   PROTECTION IMAGE
========================================================= */

.protection-image {
    position: relative;

    width: 100%;

    height: 100%;

    min-height: 680px;

    overflow: hidden;

    background: #111111;
}


.protection-image img {
    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    transition:
        transform 1.2s
        cubic-bezier(.2,.6,.2,1);
}


/* =========================================================
   IMAGE GRADIENT
========================================================= */

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

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.55),
            transparent 35%
        );
}


/* =========================================================
   IMAGE HOVER
========================================================= */

.protection-row:hover
.protection-image img {
    transform: scale(1.03);
}


/* =========================================================
   PPF IMAGE POSITION
========================================================= */

.protection-row:first-child
.protection-image img {
    object-position: center center;
}


/* =========================================================
   WRAP ROW
========================================================= */

.wrap-row {
    border-top:
        1px solid
        rgba(255,255,255,.12);

    background: #111111;
}


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

@media (max-width: 900px) {

    .protection-row {
        grid-template-columns: 1fr;

        min-height: auto;
    }


    .protection-copy {
        padding: 70px 40px;
    }


    .protection-image {
        width: 100%;

        height: 500px;

        min-height: 0;
    }


    .protection-copy h2 {
        font-size: 54px;
    }


    .protection-features {
        grid-template-columns:
            repeat(
                3,
                minmax(
                    0,
                    1fr
                )
            );

        gap: 18px;
    }

}


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

@media (max-width: 600px) {

    .protection-copy {
        padding: 60px 24px;
    }


    .protection-number {
        margin-bottom: 25px;

        font-size: 10px;

        letter-spacing: 3px;
    }


    .protection-copy h2 {
        font-size: 42px;

        letter-spacing: -2px;
    }


    .protection-description {
        margin-top: 25px;

        font-size: 14px;

        line-height: 1.7;
    }


    .protection-features {
        grid-template-columns: 1fr;

        gap: 18px;

        margin-top: 30px;

        padding-top: 20px;
    }


    .protection-features > div {
        align-items: center;

        gap: 14px;
    }


    .protection-features strong {
        font-size: 14px;
    }


    .protection-features span {
        font-size: 10px;

        letter-spacing: .8px;
    }


    .protection-image {
        height: 380px;

        min-height: 0;
    }

}
/* =========================================================
   ABOUT RESPONSIVE
========================================================= */

@media (max-width: 900px) {

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

        min-height: auto;
    }


    .about-image {
        height: 500px;
    }


    .about-content {
        padding: 60px 40px;
    }

}


@media (max-width: 600px) {

    .section {
        padding: 110px 0;
    }


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


    .section-title {
        margin-bottom: 55px;
    }


    .section-title span,
    .section-label {
        font-size: 10px;

        letter-spacing: 3px;
    }


    .section-title h2 {
        margin-top: 20px;

        font-size: 48px;

        letter-spacing: -3px;
    }


    .about-grid {
        display: flex;

        flex-direction: column;
    }


    .about-image {
        width: 100%;

        height: 380px;
    }


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

        object-fit: cover;
    }


    .about-content {
    padding: 50px 25px 45px;
}


.about-content .large-text {
    font-size: 23px;

    line-height: 1.45;
}


.about-content .highlight-text {
    margin-top: 22px;

    font-size: 23px;

    line-height: 1.55;
}


    .about-content >
    p:not(.large-text):not(.highlight-text) {

        margin-top: 22px;

        font-size: 14px;

        line-height: 1.8;
    }


    .about-number {
        margin-top: 40px;

        padding-top: 20px;
    }


    .about-number strong {
        font-size: 20px;
    }


    .about-number span {
        font-size: 9px;

        letter-spacing: 2px;
    }

}
/* =========================================================
   WHY XECTIP IMAGE
========================================================= */

.why-image {
    width: 100%;
    height: 620px;

    margin-bottom: 80px;

    overflow: hidden;

    background: #222;
}


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

    object-fit: cover;
    object-position: center;

    transition:
        transform 1s
        cubic-bezier(.2,.6,.2,1);
}


.why-image:hover img {
    transform: scale(1.03);
}


/* =========================================================
   WHY XECTIP IMAGE - MOBILE
========================================================= */

@media (max-width: 900px) {

    .why-image {
        height: 450px;
    }

}


@media (max-width: 600px) {

    .why-image {
        height: 320px;

        margin-bottom: 50px;
    }

}
/* =========================================================
   WHY XECTIP CARD IMAGE
========================================================= */

.why-card {
    overflow: hidden;
}


.why-card-image {
    width: calc(100% + 70px);
    height: 230px;

    margin: -45px -35px 35px;

    overflow: hidden;

    background: #222;
}


.why-card-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transition:
        transform 1s
        cubic-bezier(.2,.6,.2,1);
}


.why-card:hover .why-card-image img {
    transform: scale(1.05);
}
@media (max-width: 600px) {

    .why-card-image {
        width: calc(100% + 48px);
        height: 200px;

        margin: -45px -24px 30px;
    }

}
/* =========================================================
   GALLERY
========================================================= */

.gallery {
    background: var(--bg);
}


.gallery-filter {
    display: flex;

    gap: 30px;

    margin-bottom: 50px;

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

    padding-bottom: 20px;
}


.gallery-filter-btn {
    border: 0;

    background: none;

    color: #888;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    transition: .3s;
}


.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    color: var(--accent);
}


.gallery-grid {
    display: grid;

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

    gap: 20px;
}


.gallery-item {
    position: relative;

    height: 420px;

    overflow: hidden;

    cursor: pointer;

    background: #222;
}


.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 1s
        cubic-bezier(.2,.6,.2,1);
}


.gallery-item:hover img {
    transform: scale(1.05);
}


.gallery-load {
    display: flex;

    justify-content: center;

    margin-top: 60px;
}


#loadMore {
    display: inline-flex;

    align-items: center;

    gap: 25px;

    padding: 17px 25px;

    border:
        1px solid
        rgba(255,255,255,.3);

    background: transparent;

    color: #fff;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    transition: .3s;
}


#loadMore span {
    color: var(--accent);

    font-size: 20px;
}


#loadMore:hover {
    border-color: var(--accent);

    background: var(--accent);
}


#loadMore:hover span {
    color: #fff;
}


/* =========================================================
   GALLERY LIGHTBOX
========================================================= */

.gallery-lightbox {
    position: fixed;

    inset: 0;

    z-index: 2000;

    display: none;

    align-items: center;

    justify-content: center;

    background:
        rgba(0,0,0,.94);
}


.gallery-lightbox.active {
    display: flex;
}


.lightbox-content {
    width: min(90vw, 1200px);

    height: min(85vh, 800px);

    display: flex;

    align-items: center;

    justify-content: center;
}


.lightbox-content img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}


.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;

    z-index: 2;

    border: 0;

    background: none;

    color: #fff;

    cursor: pointer;

    transition: .3s;
}


.lightbox-close {
    top: 25px;

    right: 35px;

    font-size: 42px;

    font-weight: 300;
}


.lightbox-prev {
    left: 30px;

    top: 50%;

    transform: translateY(-50%);

    font-size: 60px;

    font-weight: 300;
}


.lightbox-next {
    right: 30px;

    top: 50%;

    transform: translateY(-50%);

    font-size: 60px;

    font-weight: 300;
}


.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--accent);
}


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

.contact {
    padding: 170px 0;

    background: #111;
}


.contact-inner {
    width:
        min(
            1400px,
            calc(100% - 80px)
        );

    margin: 0 auto;
}


.contact-header {
    max-width: 850px;

    margin-bottom: 100px;
}


.contact-header h2 {
    margin-top: 25px;

    color: #fff;

    font-size:
        clamp(
            55px,
            7vw,
            110px
        );

    font-weight: 300;

    line-height: .95;

    letter-spacing: -5px;
}


.contact-intro {
    max-width: 600px;

    margin-top: 35px;

    color: #999;

    font-size: 15px;

    line-height: 1.8;
}


.contact-content {
    display: grid;

    grid-template-columns:
        .7fr 1.3fr;

    gap: 100px;
}


.contact-info {
    display: flex;

    flex-direction: column;

    gap: 50px;
}


.contact-block {
    padding-bottom: 25px;

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


.contact-block span {
    display: block;

    margin-bottom: 15px;

    color: var(--accent);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;
}


.contact-block a {
    color: #fff;

    font-size: 17px;

    transition: .3s;
}


.contact-block a:hover {
    color: var(--accent);
}


.contact-form {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 35px 25px;
}


.form-field {
    display: flex;

    flex-direction: column;
}


.form-field-message {
    grid-column: 1 / -1;
}


.form-field label {
    margin-bottom: 12px;

    color: var(--accent);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;
}


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

    padding: 17px 0;

    border: 0;

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

    outline: none;

    background: transparent;

    color: #fff;

    font-size: 13px;
}


.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #666;
}


.form-field select {
    color: #888;
}


.form-field textarea {
    min-height: 130px;

    resize: vertical;
}


.contact-submit-wrap {
    grid-column: 1 / -1;

    margin-top: 20px;
}


.contact-submit {
    display: inline-flex;

    align-items: center;

    gap: 30px;

    padding: 18px 25px;

    border:
        1px solid
        rgba(255,255,255,.35);

    background: transparent;

    color: #fff;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    transition: .3s;
}


.contact-submit span {
    color: var(--accent);

    font-size: 20px;
}


.contact-submit:hover {
    border-color: var(--accent);

    background: var(--accent);
}


.contact-submit:hover span {
    color: #fff;
}


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

.footer {
    padding: 90px 0 30px;

    background: #080808;
}


.footer-main {
    display: flex;

    justify-content: space-between;

    gap: 80px;

    padding-bottom: 80px;

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


.footer-brand h2 {
    color: var(--accent);

    font-size: 42px;

    font-weight: 800;

    letter-spacing: -2px;
}


.footer-brand h2 span {
    margin-left: 8px;

    color: #fff;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 2px;
}


.footer-brand p {
    margin-top: 15px;

    color: #777;

    font-size: 10px;

    letter-spacing: 3px;
}


.footer-nav {
    display: grid;

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

    gap: 100px;
}


.footer-nav > div {
    display: flex;

    flex-direction: column;

    gap: 14px;
}


.footer-nav span {
    margin-bottom: 10px;

    color: var(--accent);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;
}


.footer-nav a {
    color: #888;

    font-size: 11px;

    letter-spacing: 1px;

    transition: .3s;
}


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


.footer-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding-top: 25px;

    color: #555;

    font-size: 9px;

    letter-spacing: 1.5px;
}


.footer-bottom a {
    color: #777;

    transition: .3s;
}


.footer-bottom a:hover {
    color: var(--accent);
}
@media (max-width: 900px) {

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


    .gallery-item {
        height: 350px;
    }


    .contact-content {
        grid-template-columns: 1fr;

        gap: 70px;
    }


    .footer-main {
        flex-direction: column;
    }


    .footer-nav {
        gap: 50px;
    }

}


@media (max-width: 600px) {

    .gallery-filter {
        gap: 18px;

        flex-wrap: wrap;
    }


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


    .gallery-item {
        height: 400px;
    }


    .contact {
        padding: 110px 0;
    }


    .contact-inner {
        width: calc(100% - 48px);
    }


    .contact-header h2 {
        font-size: 48px;

        letter-spacing: -3px;
    }


    .contact-form {
        grid-template-columns: 1fr;
    }


    .form-field-message,
    .contact-submit-wrap {
        grid-column: auto;
    }


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

        gap: 45px;
    }


    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 15px;
    }

}
/* =========================================================
   XECTIP V5
   MOBILE HEADER NAV
   TRUE HORIZONTAL SCROLL
   ========================================================= */

@media (max-width: 768px) {

    /* -----------------------------------------------------
       HEADER
    ----------------------------------------------------- */

    .header {
        position: fixed;

        top: 0;
        left: 0;

        width: 100%;
        height: 105px;

        padding: 18px 0 0;

        z-index: 1000;

        background:
            rgba(61, 58, 58, .96);

        backdrop-filter: blur(15px);

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


    /* -----------------------------------------------------
       HEADER INNER
    ----------------------------------------------------- */

    .header-inner {
        position: relative;

        width: 100%;
        max-width: none;

        height: 87px;

        margin: 0;

        padding: 0 20px;

        display: block;
    }


    /* -----------------------------------------------------
       LOGO
    ----------------------------------------------------- */

    .logo {
        position: absolute;

        top: 0;
        left: 20px;

        z-index: 5;

        display: flex;

        align-items: baseline;

        gap: 6px;
    }


    .logo-main {
        font-size: 22px;

        letter-spacing: -1px;
    }


    .logo-ppf {
        font-size: 8px;

        letter-spacing: 1.5px;
    }


    /* -----------------------------------------------------
       LANGUAGE
    ----------------------------------------------------- */

    .header-right {
        position: absolute;

        top: 0;
        right: 20px;

        z-index: 5;

        display: flex;

        align-items: center;

        gap: 12px;
    }


    .language {
        display: flex;

        gap: 7px;
    }


    .language button {
        padding: 0;

        font-size: 9px;

        letter-spacing: 1px;
    }


    /* -----------------------------------------------------
       MOBILE MENU BUTTON
    ----------------------------------------------------- */

    .menu-button {
        display: none !important;
    }


    /* -----------------------------------------------------
       NAV
       
       핵심:
       nav 자체를 header 안에서 독립적인
       가로 스크롤 영역으로 만든다.
    ----------------------------------------------------- */

    .nav {
        position: absolute;

        left: 0;
        right: 0;

        top: 45px;

        width: 100% !important;
        max-width: none !important;

        height: 42px;

        padding: 0 20px;

        margin: 0;

        display: flex !important;

        flex-direction: row !important;

        align-items: center;

        justify-content: flex-start !important;

        gap: 0 !important;

        flex-wrap: nowrap !important;

        overflow-x: auto !important;
        overflow-y: hidden !important;

        white-space: nowrap !important;

        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;

        touch-action: pan-x;

        overscroll-behavior-x: contain;

        cursor: grab;
    }


    .nav:active {
        cursor: grabbing;
    }


    .nav::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }


    /* -----------------------------------------------------
       NAV LINKS
    ----------------------------------------------------- */

    .nav a {
        position: relative;

        display: inline-flex !important;

        align-items: center;

        justify-content: center;

        flex: 0 0 auto !important;

        width: auto !important;

        min-width: max-content !important;

        height: 42px;

        margin: 0 18px 0 0 !important;

        padding: 0;

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

        font-size: 10px;

        font-weight: 600;

        letter-spacing: 1.7px;

        white-space: nowrap !important;

        touch-action: pan-x;
    }


    .nav a:last-child {
        margin-right: 40px !important;
    }


    /* -----------------------------------------------------
       NAV UNDERLINE
    ----------------------------------------------------- */

    .nav a::after {
        left: 0;
        bottom: 5px;

        width: 0;
        height: 1px;

        background: var(--accent);

        transition: width .25s ease;
    }


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


    /* -----------------------------------------------------
       HEADER SCROLLED
    ----------------------------------------------------- */

    .header.scrolled {
        padding: 18px 0 0;

        background:
            rgba(61,58,58,.96);
    }

}
/* =========================================================
   XECTIP MOBILE NAV - FORCE HORIZONTAL SCROLL
========================================================= */

@media (max-width: 768px) {

    .header {
        width: 100%;
        overflow: visible !important;
    }

    .header-inner {
        position: relative !important;
        display: block !important;
        width: 100% !important;
        max-width: none !important;
        height: 95px !important;
        padding: 0 !important;
    }

    .logo {
        position: absolute !important;
        top: 15px !important;
        left: 20px !important;
        z-index: 20 !important;
    }

    .header-right {
        position: absolute !important;
        top: 15px !important;
        right: 20px !important;
        z-index: 20 !important;
    }

    .menu-button {
        display: none !important;
    }

    /* NAV 전체 */
    .nav {
        position: absolute !important;

        top: 48px !important;
        left: 0 !important;
        right: 0 !important;

        width: 100vw !important;
        max-width: 100vw !important;

        height: 42px !important;

        margin: 0 !important;
        padding: 0 20px !important;

        display: flex !important;

        flex-direction: row !important;
        flex-wrap: nowrap !important;

        align-items: center !important;
        justify-content: flex-start !important;

        gap: 0 !important;

        overflow-x: scroll !important;
        overflow-y: hidden !important;

        white-space: nowrap !important;

        -webkit-overflow-scrolling: touch !important;

        scrollbar-width: none !important;

        touch-action: pan-x !important;

        overscroll-behavior-x: contain !important;
    }

    .nav::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }

    /* NAV 각각 */
    .nav a {
        position: relative !important;

        display: inline-flex !important;

        flex: 0 0 auto !important;

        width: auto !important;
        min-width: max-content !important;

        margin: 0 28px 0 0 !important;
        padding: 0 !important;

        height: 42px !important;

        align-items: center !important;

        color: #fff !important;

        font-size: 10px !important;
        font-weight: 600 !important;

        letter-spacing: 1.5px !important;

        white-space: nowrap !important;

        touch-action: manipulation !important;
    }

    .nav a:last-child {
        margin-right: 60px !important;
    }

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

}
/* =========================================================
   MOBILE NAV HORIZONTAL SCROLL
========================================================= */

@media (max-width: 900px) {

    .nav {

        display: flex !important;

        flex-direction: row !important;

        flex-wrap: nowrap !important;

        width: 100%;

        max-width: 100%;

        overflow-x: auto !important;

        overflow-y: hidden !important;

        white-space: nowrap;

        -webkit-overflow-scrolling: touch;

        touch-action: pan-x;

        overscroll-behavior-x: contain;

        scrollbar-width: none;

        -ms-overflow-style: none;

    }


    .nav::-webkit-scrollbar {

        display: none;

    }


    .nav a {

        flex: 0 0 auto !important;

        white-space: nowrap;

    }


    .nav.dragging {

        cursor: grabbing;

    }

}
/* =========================================================
   XECTIP V5 - MOBILE NAV HORIZONTAL SCROLL
========================================================= */

@media (max-width: 900px) {

    .nav {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;

        width: 100%;
        max-width: 100%;

        overflow-x: auto !important;
        overflow-y: hidden !important;

        white-space: nowrap;

        -webkit-overflow-scrolling: touch;

        touch-action: pan-x;

        overscroll-behavior-x: contain;

        scrollbar-width: none;

        -ms-overflow-style: none;
    }


    .nav::-webkit-scrollbar {
        display: none;
    }


    .nav a {
        flex: 0 0 auto !important;

        white-space: nowrap;
    }


    .nav.dragging {
        cursor: grabbing;
    }

}
/* =========================================================
   XECTIP V5
   MOBILE LOGO + PPF WRAP
========================================================= */

@media (max-width: 768px) {

    .logo {
        position: absolute !important;

        top: 10px !important;
        left: 20px !important;

        display: flex !important;

        flex-direction: column !important;

        align-items: flex-start !important;

        gap: 2px !important;

        line-height: 1 !important;
    }

    .logo-main {
        display: block !important;

        font-size: 22px !important;

        line-height: 1 !important;
    }

    .logo-ppf {
        display: block !important;

        margin: 0 !important;

        color: #ffffff !important;

        font-size: 7px !important;

        font-weight: 600 !important;

        letter-spacing: 1.5px !important;

        line-height: 1 !important;
    }

    .nav {
        top: 52px !important;
    }

}
@media (max-width: 768px) {

    .logo {
        ...
    }

    .nav {
        ...
    }

}
/* =========================================================
   XECTIP V5
   FAQ
   PREMIUM ACCORDION
========================================================= */

.faq {
    position: relative;

    width: 100%;

    padding: 170px 0;

    background: #111111;

    color: #ffffff;
}


/* =========================================================
   FAQ CONTAINER
========================================================= */

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

    margin: 0 auto;
}


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

.faq-header {
    max-width: 850px;

    margin-bottom: 90px;
}


.faq-label {
    display: block;

    color: var(--accent);

    font-size: 18px;

    font-weight: 700;

    letter-spacing: 4px;
}


.faq-header h2 {
    margin-top: 25px;

    color: #ffffff;

    font-size:
        clamp(
            55px,
            7vw,
            110px
        );

    font-weight: 300;

    line-height: .92;

    letter-spacing: -5px;
}


.faq-header p {
    max-width: 550px;

    margin-top: 30px;

    color: #888888;

    font-size: 14px;

    line-height: 1.8;

    letter-spacing: .5px;
}


/* =========================================================
   FAQ LIST
========================================================= */

.faq-list {
    width: 100%;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            .22
        );
}


/* =========================================================
   FAQ ITEM
========================================================= */

.faq-item {
    width: 100%;

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


/* =========================================================
   QUESTION
========================================================= */

.faq-question {
    position: relative;

    width: 100%;

    min-height: 100px;

    display: grid;

    grid-template-columns:
        80px
        1fr
        50px;

    align-items: center;

    gap: 25px;

    padding: 25px 0;

    border: 0;

    background: transparent;

    color: #ffffff;

    text-align: left;

    cursor: pointer;
}


/* =========================================================
   NUMBER
========================================================= */

.faq-number {
    color: var(--accent);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;
}


/* =========================================================
   QUESTION TITLE
========================================================= */

.faq-title {
    color: #ffffff;

    font-size: 18px;

    font-weight: 600;

    line-height: 1.4;

    letter-spacing: -.2px;

    transition: color .3s ease;
}


/* =========================================================
   PLUS ICON
========================================================= */

.faq-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 36px;
    height: 36px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .3
        );

    color: var(--accent);

    font-size: 24px;

    font-weight: 300;

    line-height: 1;

    transition:
        transform .35s ease,
        background .35s ease,
        color .35s ease,
        border-color .35s ease;
}


/* =========================================================
   QUESTION HOVER
========================================================= */

.faq-question:hover .faq-title {
    color: var(--accent);
}


.faq-question:hover .faq-icon {
    border-color: var(--accent);
}


/* =========================================================
   ANSWER
========================================================= */

.faq-answer {
    display: grid;

    grid-template-rows: 0fr;

    overflow: hidden;

    transition:
        grid-template-rows .45s
        cubic-bezier(.2,.6,.2,1);
}


.faq-answer-inner {
    min-height: 0;

    overflow: hidden;
}


.faq-answer p {
    max-width: 720px;

    padding:
        0 75px
        35px
        105px;

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

    font-size: 15px;

    line-height: 1.9;
}


/* =========================================================
   ACTIVE FAQ
========================================================= */

.faq-item.active
.faq-answer {
    grid-template-rows: 1fr;
}


.faq-item.active
.faq-icon {
    transform: rotate(45deg);

    border-color: var(--accent);

    background: var(--accent);

    color: #ffffff;
}


.faq-item.active
.faq-title {
    color: var(--accent);
}


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

@media (max-width: 900px) {

    .faq {
        padding: 130px 0;
    }


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


    .faq-header {
        margin-bottom: 65px;
    }


    .faq-question {
        grid-template-columns:
            55px
            1fr
            45px;

        gap: 15px;

        min-height: 90px;
    }


    .faq-title {
        font-size: 16px;
    }


    .faq-answer p {
        padding:
            0 60px
            30px
            70px;

        font-size: 14px;
    }

}


/* =========================================================
   FAQ MOBILE SMALL
========================================================= */

@media (max-width: 600px) {

    .faq {
        padding: 100px 0;
    }


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


    .faq-header {
        margin-bottom: 50px;
    }


    .faq-label {
        font-size: 10px;

        letter-spacing: 3px;
    }


    .faq-header h2 {
        margin-top: 20px;

        font-size: 46px;

        line-height: .95;

        letter-spacing: -3px;
    }


    .faq-header p {
        margin-top: 22px;

        font-size: 13px;

        line-height: 1.7;
    }


    .faq-question {
        grid-template-columns:
            35px
            1fr
            36px;

        gap: 10px;

        min-height: 85px;

        padding: 20px 0;
    }


    .faq-number {
        font-size: 9px;

        letter-spacing: 2px;
    }


    .faq-title {
        font-size: 14px;

        line-height: 1.5;
    }


    .faq-icon {
        width: 30px;
        height: 30px;

        font-size: 19px;
    }


    .faq-answer p {
        padding:
            0 0
            28px
            45px;

        font-size: 13px;

        line-height: 1.8;
    }

}
/* =========================================================
   PRODUCT TABS
========================================================= */

.product-tabs {

    display: flex;

    align-items: center;

    gap: 40px;

    margin-bottom: 60px;

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

}


.product-tab {

    position: relative;

    padding: 0 0 20px;

    border: 0;

    background: transparent;

    color: #777;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

    transition: .3s;

}


.product-tab::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -1px;

    width: 0;
    height: 2px;

    background: var(--accent);

    transition: .3s;

}


.product-tab:hover,
.product-tab.active {

    color: #fff;

}


.product-tab.active::after {

    width: 100%;

}


/* =========================================================
   PRODUCT PANEL
========================================================= */

.product-panel {

    display: none;

}


.product-panel.active {

    display: block;

}


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

.product-panel-header {

    max-width: 750px;

    margin-bottom: 70px;

}


.product-panel-header > span {

    color: var(--accent);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 4px;

}


.product-panel-header h3 {

    margin-top: 18px;

    color: #fff;

    font-size:
        clamp(
            48px,
            6vw,
            90px
        );

    font-weight: 300;

    line-height: .95;

    letter-spacing: -4px;

}


.product-panel-header p {

    max-width: 600px;

    margin-top: 25px;

    color: #999;

    font-size: 14px;

    line-height: 1.8;

}


/* =========================================================
   PRODUCT SPEC GRID
========================================================= */

.product-spec-grid {

    display: grid;

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

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            .18
        );

}


/* =========================================================
   PRODUCT SPEC
========================================================= */

.product-spec {

    min-height: 170px;

    padding: 30px 25px 30px 0;

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

}


.product-spec:not(:nth-child(3n + 1)) {

    padding-left: 25px;

    border-left:
        1px solid
        rgba(
            255,
            255,
            255,
            .18
        );

}


.product-spec > span {

    display: block;

    margin-bottom: 25px;

    color: var(--accent);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 3px;

}


.product-spec strong {

    display: block;

    color: #aaa;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 1px;

}


.product-spec em {

    display: block;

    margin-top: 12px;

    color: #fff;

    font-size: 24px;

    font-weight: 300;

    font-style: normal;

}


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

@media (max-width: 900px) {

    .product-tabs {

        gap: 25px;

        overflow-x: auto;

        white-space: nowrap;

        scrollbar-width: none;

    }


    .product-tabs::-webkit-scrollbar {

        display: none;

    }


    .product-spec-grid {

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

    }


    .product-spec {

        padding: 25px 20px 25px 0;

    }


    .product-spec:not(:nth-child(3n + 1)) {

        padding-left: 0;

        border-left: 0;

    }


    .product-spec:nth-child(even) {

        padding-left: 20px;

        border-left:
            1px solid
            rgba(
                255,
                255,
                255,
                .18
            );

    }

}


/* =========================================================
   PRODUCT SMALL MOBILE
========================================================= */

@media (max-width: 600px) {

    .product-tabs {

        gap: 28px;

        margin-bottom: 45px;

    }


    .product-tab {

        font-size: 10px;

        letter-spacing: 2px;

    }


    .product-panel-header {

        margin-bottom: 50px;

    }


    .product-panel-header h3 {

        font-size: 48px;

        letter-spacing: -3px;

    }


    .product-panel-header p {

        font-size: 13px;

        line-height: 1.7;

    }


    .product-spec-grid {

        grid-template-columns: 1fr;

    }


    .product-spec,
    .product-spec:nth-child(even) {

        min-height: auto;

        padding:
            25px 0;

        border-left: 0;

    }


    .product-spec em {

        font-size: 21px;

    }

}
/* =========================================================
   XECTIP V5
   PRODUCT DETAILS
   SPEC BUTTON + SPEC TABLE
   ========================================================= */


/* =========================================================
   PRODUCT DETAIL BUTTON
========================================================= */

.product-detail-btn {

    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    width: 100%;

    margin-top: 25px;

    padding: 15px 0;

    border: 0;

    border-top:
        1px solid
        rgba(255,255,255,.18);

    background: transparent;

    color: #fff;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    text-align: left;

    transition:
        color .3s ease,
        border-color .3s ease;
}


.product-detail-btn span {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 25px;
    height: 25px;

    border:
        1px solid
        rgba(255,255,255,.35);

    color: var(--accent);

    font-size: 18px;

    font-weight: 300;

    line-height: 1;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}


.product-detail-btn:hover {

    color: var(--accent);

    border-color:
        rgba(
            192,
            92,
            51,
            .6
        );
}


.product-detail-btn:hover span {

    border-color: var(--accent);

    background: var(--accent);

    color: #fff;

    transform: rotate(90deg);
}


/* =========================================================
   PRODUCT SPEC MODAL
========================================================= */

.product-spec-modal {

    position: fixed;

    inset: 0;

    z-index: 3000;

    display: none;

    align-items: center;

    justify-content: center;

    padding: 40px;

    opacity: 0;

    transition:
        opacity .35s ease;
}


.product-spec-modal.active {

    display: flex;

    opacity: 1;
}


/* =========================================================
   MODAL OVERLAY
========================================================= */

.product-spec-overlay {

    position: absolute;

    inset: 0;

    background:
        rgba(
            0,
            0,
            0,
            .88
        );

    backdrop-filter:
        blur(12px);

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


/* =========================================================
   MODAL BOX
========================================================= */

.product-spec-box {

    position: relative;

    z-index: 2;

    width:
        min(
            900px,
            100%
        );

    max-height: 90vh;

    overflow-y: auto;

    padding: 70px;

    background: #181818;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .12
        );

    transform:
        translateY(30px);

    transition:
        transform .4s ease;

    scrollbar-width: thin;

    scrollbar-color:
        var(--accent)
        #222;
}


.product-spec-modal.active
.product-spec-box {

    transform:
        translateY(0);
}


/* =========================================================
   CLOSE
========================================================= */

.product-spec-close {

    position: absolute;

    top: 25px;

    right: 30px;

    width: 42px;
    height: 42px;

    border: 0;

    background: transparent;

    color: #fff;

    font-size: 36px;

    font-weight: 300;

    line-height: 1;

    transition:
        color .3s ease,
        transform .3s ease;
}


.product-spec-close:hover {

    color: var(--accent);

    transform:
        rotate(90deg);
}


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

.product-spec-header {

    padding-bottom: 40px;

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


.product-spec-number {

    display: block;

    margin-bottom: 20px;

    color: var(--accent);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 4px;
}


.product-spec-header h2 {

    color: #fff;

    font-size:
        clamp(
            42px,
            6vw,
            75px
        );

    font-weight: 300;

    line-height: .95;

    letter-spacing: -3px;
}


.product-spec-header p {

    max-width: 600px;

    margin-top: 25px;

    color: #999;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   SPEC TABLE
========================================================= */

.product-spec-table-wrap {

    margin-top: 35px;

    overflow-x: auto;
}


.product-spec-table {

    width: 100%;

    border-collapse: collapse;

    table-layout: fixed;
}


.product-spec-table tr {

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

    transition:
        background .25s ease;
}


.product-spec-table tr:hover {

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


.product-spec-table th,
.product-spec-table td {

    padding: 20px 15px;

    text-align: left;

    vertical-align: middle;
}


.product-spec-table th {

    width: 55%;

    color: #999;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.product-spec-table td {

    color: #fff;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: .5px;
}


.product-spec-table td::first-letter {

    color: #fff;
}


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

.product-spec-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 35px;

    padding-top: 25px;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            .12
        );

    color: #666;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 2px;
}


.product-spec-footer span:first-child {

    color: var(--accent);

    font-size: 11px;

    font-weight: 800;
}


/* =========================================================
   PRODUCT CARD
   DETAILS ACTIVE
========================================================= */

.product-card.spec-open
.product-detail-btn {

    color: var(--accent);

    border-color:
        rgba(
            192,
            92,
            51,
            .6
        );
}


.product-card.spec-open
.product-detail-btn span {

    border-color: var(--accent);

    background: var(--accent);

    color: #fff;

    transform: rotate(45deg);
}


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

@media (max-width: 900px) {

    .product-spec-modal {

        padding: 25px;
    }


    .product-spec-box {

        padding: 55px 40px;

        max-height: 92vh;
    }


    .product-spec-header h2 {

        font-size: 55px;
    }

}


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

@media (max-width: 600px) {

    .product-detail-btn {

        margin-top: 20px;

        padding: 14px 0;

        font-size: 9px;

        letter-spacing: 1.5px;
    }


    .product-detail-btn span {

        width: 23px;
        height: 23px;

        font-size: 16px;
    }


    .product-spec-modal {

        padding: 15px;
    }


    .product-spec-box {

        width: 100%;

        max-height: 94vh;

        padding: 55px 24px 30px;
    }


    .product-spec-close {

        top: 15px;

        right: 18px;

        width: 35px;
        height: 35px;

        font-size: 30px;
    }


    .product-spec-header {

        padding-bottom: 30px;
    }


    .product-spec-number {

        margin-bottom: 15px;

        font-size: 9px;

        letter-spacing: 3px;
    }


    .product-spec-header h2 {

        font-size: 42px;

        letter-spacing: -2px;
    }


    .product-spec-header p {

        margin-top: 20px;

        font-size: 13px;

        line-height: 1.7;
    }


    .product-spec-table {

        table-layout: auto;
    }


    .product-spec-table th,
    .product-spec-table td {

        padding: 17px 8px;
    }


    .product-spec-table th {

        width: 55%;

        font-size: 8px;

        letter-spacing: 1px;
    }


    .product-spec-table td {

        font-size: 11px;

        white-space: nowrap;
    }


    .product-spec-footer {

        flex-direction: column;

        align-items: flex-start;

        gap: 8px;

        margin-top: 25px;

        padding-top: 20px;
    }

}
/* =========================================================
   PRODUCTS
   BOTTOM PRODUCTS
   CLEAR PPF / MATTE PPF
========================================================= */

.products-grid-bottom {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;

    width: 66.6667%;

    margin: 20px auto 0;

}


/* =========================================================
   PRODUCT DETAIL BUTTON
========================================================= */

.product-detail-btn {

    display: inline-flex;

    align-items: center;

    gap: 20px;

    margin-top: 25px;

    padding: 12px 0;

    border: 0;

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

    background: transparent;

    color: #fff;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    transition: .3s;
}


.product-detail-btn span {

    color: var(--accent);

    font-size: 18px;

    line-height: 1;

    transition: .3s;
}


.product-detail-btn:hover {

    color: var(--accent);

    border-color: var(--accent);

}


.product-detail-btn:hover span {

    color: #fff;

    transform: translateX(4px);

}


/* =========================================================
   PRODUCT MODAL
========================================================= */

.product-modal {

    position: fixed;

    inset: 0;

    z-index: 3000;

    display: none;

    align-items: center;

    justify-content: center;

    padding: 30px;

    background:
        rgba(0,0,0,.88);

    backdrop-filter: blur(10px);

}


.product-modal.active {

    display: flex;

}


.product-modal-inner {

    position: relative;

    width: min(
        900px,
        100%
    );

    max-height: 90vh;

    overflow-y: auto;

    padding: 65px;

    background: #181818;

    border:
        1px solid
        rgba(255,255,255,.12);

}


.product-modal-close {

    position: absolute;

    top: 20px;
    right: 25px;

    width: 40px;
    height: 40px;

    border: 0;

    background: transparent;

    color: #fff;

    font-size: 35px;

    font-weight: 300;

    line-height: 1;

    transition: .3s;
}


.product-modal-close:hover {

    color: var(--accent);

}


.product-modal-label {

    display: block;

    color: var(--accent);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 4px;

}


.product-modal-inner h2 {

    margin-top: 20px;

    color: #fff;

    font-size:
        clamp(
            45px,
            6vw,
            75px
        );

    font-weight: 300;

    line-height: 1;

    letter-spacing: -3px;

}


/* =========================================================
   SPEC TABLE
========================================================= */

.product-spec-table {

    margin-top: 50px;

    border-top:
        1px solid
        rgba(255,255,255,.2);

}


.product-spec-row {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    min-height: 60px;

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

}


.product-spec-name {

    display: flex;

    align-items: center;

    color: var(--accent);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}


.product-spec-value {

    display: flex;

    align-items: center;

    color: #ddd;

    font-size: 13px;

    font-weight: 400;

    line-height: 1.5;
}


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

@media (max-width: 900px) {

    .products-grid-bottom {

        width: 100%;

    }

}


@media (max-width: 600px) {

    .products-grid-bottom {

        grid-template-columns: 1fr;

        width: 100%;

        margin-top: 20px;

    }


    .product-modal {

        padding: 15px;

    }


    .product-modal-inner {

        padding: 50px 25px 35px;

    }


    .product-modal-inner h2 {

        font-size: 45px;

    }


    .product-spec-row {

        grid-template-columns:
            1fr;

        padding: 15px 0;

    }


    .product-spec-name {

        margin-bottom: 7px;

    }


    .product-spec-value {

        font-size: 12px;

    }

}
/* =========================================================
   ABOUT XECTIP
   TEXT ONLY
========================================================= */

.about-text-only {

    max-width: 1100px;

    margin: 0 auto;

    padding: 30px 0 20px;

}


.about-large-text {

    max-width: 1000px;

    color: #ffffff;

    font-size:
        clamp(
            32px,
            4vw,
            58px
        );

    font-weight: 300;

    line-height: 1.25;

    letter-spacing: -2px;

}


.about-highlight-text {

    max-width: 1050px;

    margin-top: 45px;

    color: #dddddd;

    font-size:
        clamp(
            27px,
            3.2vw,
            46px
        );

    font-weight: 300;

    line-height: 1.45;

    letter-spacing: -1.5px;

}


.about-highlight-text strong {

    color: var(--accent-light);

    font-weight: 700;

}


.about-description {

    max-width: 700px;

    margin-top: 45px;

    color: #999999;

    font-size: 15px;

    line-height: 1.9;

}


.about-text-only .about-number {

    max-width: 700px;

    margin-top: 60px;

}


/* =========================================================
   TECHNOLOGY
========================================================= */

.technology {

    background: var(--bg);

}


/* =========================================================
   TECHNOLOGY IMAGE
   MOVED FROM ABOUT
========================================================= */

.technology-image {

    position: relative;

    width: 100%;

    height: 700px;

    margin-top: 20px;

    overflow: hidden;

    background: #222222;

}


.technology-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    transition:
        transform 1.2s
        cubic-bezier(.2,.6,.2,1);

}


.technology-image::after {

    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.05),
            rgba(0,0,0,.35)
        );

}


.technology-image:hover img {

    transform: scale(1.03);

}


/* =========================================================
   TECHNOLOGY INTRO
========================================================= */

.technology-intro {

    display: grid;

    grid-template-columns:
        .7fr 1.3fr;

    gap: 80px;

    padding:
        100px 0
        90px;

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

}


.technology-intro-label {

    padding-top: 10px;

    color: var(--accent);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 4px;

}


.technology-intro h3 {

    max-width: 800px;

    color: #ffffff;

    font-size:
        clamp(
            38px,
            5vw,
            72px
        );

    font-weight: 300;

    line-height: 1;

    letter-spacing: -3px;

}


.technology-intro p {

    grid-column: 2;

    max-width: 650px;

    margin-top: 35px;

    color: #999999;

    font-size: 15px;

    line-height: 1.9;

}


/* =========================================================
   TECHNOLOGY CARDS
========================================================= */

.technology-cards {

    display: grid;

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

    gap: 20px;

    margin-top: 20px;

}


.technology-card {

    position: relative;

    min-height: 460px;

    padding: 35px;

    overflow: hidden;

    background: #3D3A3A;

    border:
        1px solid
        rgba(255,255,255,.08);

    transition:
        transform .4s ease,
        border-color .4s ease,
        background .4s ease;

}


.technology-card:hover {

    transform:
        translateY(-6px);

    border-color:
        var(--accent);

    background: #454141;

}


/* =========================================================
   CARD NUMBER
========================================================= */

.technology-card-number {

    color: var(--accent);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 3px;

}


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

.technology-card-content {

    position: absolute;

    left: 35px;
    right: 35px;
    bottom: 35px;

}


.technology-card-content > span {

    color: #999999;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

}


.technology-card h4 {

    margin-top: 20px;

    color: #ffffff;

    font-size:
        clamp(
            30px,
            3vw,
            44px
        );

    font-weight: 700;

    line-height: .95;

    letter-spacing: -2px;

}


.technology-card p {

    max-width: 420px;

    margin-top: 25px;

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

    font-size: 13px;

    line-height: 1.8;

}


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

@media (max-width: 900px) {

    .technology-image {

        height: 500px;

    }


    .technology-intro {

        grid-template-columns: 1fr;

        gap: 30px;

        padding:
            70px 0;

    }


    .technology-intro p {

        grid-column: auto;

        margin-top: 0;

    }


    .technology-cards {

        grid-template-columns: 1fr;

    }


    .technology-card {

        min-height: 400px;

    }

}


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

@media (max-width: 600px) {

    .about-text-only {

        padding:
            10px 0
            0;

    }


    .about-large-text {

        font-size: 26px;

        line-height: 1.4;

        letter-spacing: -1px;

    }


    .about-highlight-text {

        margin-top: 30px;

        font-size: 23px;

        line-height: 1.5;

        letter-spacing: -1px;

    }


    .about-description {

        margin-top: 30px;

        font-size: 14px;

        line-height: 1.8;

    }


    .about-text-only .about-number {

        margin-top: 40px;

    }


    /* TECHNOLOGY IMAGE */

    .technology-image {

        height: 360px;

        margin-top: 0;

    }


    /* TECHNOLOGY INTRO */

    .technology-intro {

        padding:
            60px 0;

    }


    .technology-intro-label {

        font-size: 9px;

        letter-spacing: 3px;

    }


    .technology-intro h3 {

        font-size: 38px;

        line-height: 1;

        letter-spacing: -2px;

    }


    .technology-intro p {

        margin-top: 25px;

        font-size: 14px;

        line-height: 1.8;

    }


    /* TECHNOLOGY CARDS */

    .technology-cards {

        grid-template-columns: 1fr;

        gap: 15px;

        margin-top: 15px;

    }


    .technology-card {

        min-height: 380px;

        padding: 28px;

    }


    .technology-card-content {

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

    }


    .technology-card h4 {

        font-size: 34px;

    }


    .technology-card p {

        margin-top: 20px;

        font-size: 13px;

    }

}
/* =====================================================
   HERO TYPOGRAPHY
===================================================== */

.hero-title {
    margin: 0;
    padding: 0;
}


/* =====================================================
   XECTIP
   가장 큰 메인 브랜드
===================================================== */

.hero-brand {
    display: block;

    margin-bottom: 22px;

    font-size: clamp(48px, 6vw, 100px);
    font-weight: 800;

    letter-spacing: -0.055em;
    line-height: 0.9;
}


/* =====================================================
   THE NEXT-GENERATION + TECHNOLOGY
===================================================== */

.hero-main-title {
    display: flex;
    flex-direction: column;

    line-height: 0.95;
}


/* THE NEXT-GENERATION */

.hero-generation {
    display: block;

    font-size: clamp(20px, 2.3vw, 40px);
    font-weight: 400;

    letter-spacing: -0.025em;
    line-height: 1;
}


/* TECHNOLOGY */

.hero-technology {
    display: block;

    margin-top: 4px;

    font-size: clamp(34px, 4.2vw, 72px);
    font-weight: 700;

    letter-spacing: -0.045em;
    line-height: 0.92;
}


/* =====================================================
   PPF & WRAP FILM
===================================================== */

.hero-sub-title {
    display: block;

    margin-top: 18px;

    font-size: clamp(12px, 1vw, 18px);
    font-weight: 500;

    letter-spacing: 0.1em;
    line-height: 1.2;
}


/* =====================================================
   DESCRIPTION
===================================================== */

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

    margin-top: 26px;

    font-size: 14px;
    font-weight: 400;

    line-height: 1.8;
    letter-spacing: 0.02em;
}


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

@media (max-width: 768px) {

    .hero-brand {
        margin-bottom: 18px;

        font-size: 48px;
    }

    .hero-generation {
        font-size: 21px;
    }

    .hero-technology {
        margin-top: 4px;

        font-size: 38px;
    }

    .hero-sub-title {
        margin-top: 15px;

        font-size: 12px;
    }

    .hero-description {
        margin-top: 20px;

        font-size: 13px;
    }

}
.logo {
    display: flex;
    align-items: center;
}

.logo-divider {
    font-size: 18px;
    font-weight: 300;
    margin: 0 10px;
    opacity: 0.7;
    line-height: 1;
}

.logo-ppf {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    line-height: 1;
}
/* =====================================================
   FORCE HEADER LOGO TO XECTIP
===================================================== */

.header .logo .logo-main {
    font-size: 0 !important;
    color: #C05C33 !important;
}

.header .logo .logo-main::after {
    content: "XECTIP";
    display: inline-block;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    color: #C05C33;
}
/* =========================================================
   PRODUCT CARD - GLOSS / MATTE / SATIN ALIGNMENT
========================================================= */

.products-grid {
    align-items: stretch;
}

.products-grid .product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.products-grid .product-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.products-grid .product-info p {
    min-height: 42px;
}

.products-grid .product-detail-btn {
    margin-top: auto;
}
/* =========================================================
   WHY XECTIP - UPGRADE LABEL
========================================================= */

.why-upgrade {
    color: #C05C33;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 10px;
    margin-bottom: 10px;
}
/* =========================================================
   WHY XECTIP
   UPGRADE LABEL
========================================================= */

.why-upgrade {
    color: #C05C33;

    font-size: clamp(
        28px,
        3vw,
        48px
    );

    font-weight: 700;

    line-height: 1.1;

    letter-spacing: -1px;

    margin: 0;

    padding: 0;

    display: block;
}
/* =========================================================
   WHY XECTIP
   LARGE PREMIUM CARDS
========================================================= */

.why-grid {

    display: grid;

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

    gap: 14px;

    width: 100%;
}


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

.why-card {

    position: relative;

    min-height: 840px;

    overflow: hidden;

    background: #111111;
}


/* =========================================================
   BACKGROUND IMAGE
========================================================= */

.why-card-bg {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;

    transition:
        transform 0.8s ease;
}


.why-card:hover .why-card-bg {

    transform: scale(1.03);

}


/* =========================================================
   DARK OVERLAY
========================================================= */

.why-card-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.08) 0%,
            rgba(0,0,0,0.15) 35%,
            rgba(0,0,0,0.82) 78%,
            rgba(0,0,0,0.96) 100%
        );
}


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

.why-card-content {

    position: absolute;

    left: 40px;
    right: 40px;
    bottom: 48px;

    z-index: 2;
}


/* =========================================================
   NUMBER
========================================================= */

.why-card .number {

    margin-bottom: 22px;

    color: var(--accent);

    font-size: 56px;

    font-weight: 400;

    line-height: 1;

    letter-spacing: -2px;
}


/* =========================================================
   UPGRADE
========================================================= */

.why-upgrade {

    margin-bottom: 20px;

    color: #C05C33;

    font-size: 29px;

    font-weight: 500;

    line-height: 1;

    letter-spacing: 1px;
}


/* =========================================================
   TITLE
========================================================= */

.why-card h3 {

    margin: 0 0 28px 0;

    color: #ffffff;

    font-size:
        clamp(
            36px,
            3vw,
            48px
        );

    font-weight: 600;

    line-height: 1.15;

    letter-spacing: -1px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.why-card p {

    max-width: 500px;

    margin: 0;

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

    font-size: 21px;

    font-weight: 400;

    line-height: 1.7;

}


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

@media (max-width: 1000px) {

    .why-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }


    .why-card {

        min-height: 700px;

    }


    .why-card-content {

        left: 30px;
        right: 30px;
        bottom: 35px;

    }


    .why-card .number {

        font-size: 48px;

    }


    .why-upgrade {

        font-size: 25px;

    }


    .why-card h3 {

        font-size: 36px;

    }


    .why-card p {

        font-size: 18px;

    }

}


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

@media (max-width: 700px) {

    .why-grid {

        grid-template-columns: 1fr;

        gap: 12px;

    }


    .why-card {

        min-height: 620px;

    }


    .why-card-content {

        left: 25px;
        right: 25px;
        bottom: 30px;

    }


    .why-card .number {

        font-size: 44px;

        margin-bottom: 18px;

    }


    .why-upgrade {

        font-size: 23px;

        margin-bottom: 16px;

    }


    .why-card h3 {

        font-size: 34px;

        margin-bottom: 22px;

    }


    .why-card p {

        font-size: 17px;

        line-height: 1.6;

    }

}
/* =========================================================
   WHY XECTIP - STRAIGHT ALIGNMENT FIX
   ========================================================= */

#why,
#why .section-inner,
#why .section-header,
#why .why-grid,
#why .why-card,
#why .why-card-content {
    transform: none !important;
    rotate: none !important;
    skew: none !important;
}
/* =========================================================
   FOOTER CONTACT INFO
========================================================= */

.footer-contact-info {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}


.footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}


.footer-contact-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--accent);
}


.footer-contact-item p,
.footer-contact-item a {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 400;
    color: var(--muted);
    text-decoration: none;
}


.footer-contact-item a {
    transition: color 0.3s ease;
}


.footer-contact-item a:hover {
    color: var(--white);
}
/* =========================================================
   FOOTER NAV - ORIGINAL POSITION RESTORE
========================================================= */

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}


.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    width: 100%;
}


.footer-nav > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.footer-nav > div > span {
    margin-bottom: 20px;
}


.footer-nav > div > a {
    margin-bottom: 10px;
}


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

@media (max-width: 768px) {

    .footer-main {
        grid-template-columns: 1fr;
        gap: 50px;
    }


    .footer-nav {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

}
/* =========================================================
   FOOTER BOTTOM - BACK TO TOP RIGHT
========================================================= */

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    align-items: center;
    width: 100%;
}


.footer-bottom > span:nth-child(1) {
    text-align: left;
}


.footer-bottom > span:nth-child(2) {
    text-align: center;
}


.footer-bottom > a {
    justify-self: end;
    text-align: right;
    white-space: nowrap;
}


/* MOBILE */

@media (max-width: 768px) {

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .footer-bottom > span,
    .footer-bottom > a {
        text-align: left;
        justify-self: start;
    }

}
/* =========================================================
   FOOTER BOTTOM - FORCE RIGHT ALIGN
========================================================= */

.footer-bottom {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: relative !important;
}


.footer-bottom > span:first-child {
    margin-right: auto !important;
}


.footer-bottom > span:nth-child(2) {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    white-space: nowrap !important;
}


.footer-bottom > a {
    margin-left: auto !important;
    display: block !important;
    text-align: right !important;
    white-space: nowrap !important;
}

/* BACK TO TOP - BOTTOM RIGHT */

.footer-bottom {
    position: relative !important;
}

.footer-bottom > a {
    position: absolute !important;
    right: 0 !important;
    bottom: 0 !important;
    margin: 0 !important;
    white-space: nowrap !important;
}
/* =========================================
   FOOTER XECTIP LOGO SIZE
========================================= */

.footer-logo strong {
    font-size: 1.35em;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.footer-logo span {
    font-size: 1em;
    font-weight: 600;
}
.footer-xectip {
    color: #C05C33;
    font-size: 1.35em;
    font-weight: inherit;
}
/* FOOTER BRAND SIZE */
.footer-logo {
    font-size: 1.3em;
}

.footer-brand p {
    font-size: 1.05em;
}
/* FOOTER BRAND - FINAL SIZE */

.footer-logo {
    font-size: 1.45em;
}

.footer-brand p {
    font-size: 1.1em;
}
/* =========================================
   FOOTER BRAND - LARGE
========================================= */

.footer-logo {
    font-size: 2.2rem;
    line-height: 1.05;
    font-weight: 700;
}

.footer-brand p {
    margin-top: 12px;
    font-size: 1.15rem;
    line-height: 1.4;
}
/* =========================================================
   FOOTER - BALANCED LARGE LAYOUT
========================================================= */

/* XECTIP PPF */
.footer-logo {
    font-size: 2.2rem;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* PREMIUM PAINT PROTECTION FILM */
.footer-brand p {
    margin-top: 14px;
    font-size: 1.05rem;
    line-height: 1.5;
}

/* ADDRESS / E-MAIL 제목 */
.footer-contact h4,
.footer-contact h3,
.footer-info h4,
.footer-info h3 {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

/* 주소 / 이메일 내용 */
.footer-contact p,
.footer-info p,
.footer-contact a,
.footer-info a {
    font-size: 1rem;
    line-height: 1.6;
}

/* 각 정보 사이 간격 */
.footer-contact > div,
.footer-info > div {
    margin-bottom: 22px;
}

/* Footer 전체 정보 영역 */
.footer-brand,
.footer-contact,
.footer-info {
    min-height: 180px;
}
/* =========================================================
   XECTIP FOOTER - LARGE / FULL
========================================================= */

/* XECTIP PPF */
.footer-logo {
    font-size: 3.2rem !important;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.03em;
}

/* PREMIUM PAINT PROTECTION FILM */
.footer-brand p {
    margin-top: 18px;
    font-size: 1.35rem !important;
    line-height: 1.5;
}

/* ADDRESS / E-MAIL 제목 */
.footer-contact h4,
.footer-contact h3,
.footer-info h4,
.footer-info h3 {
    font-size: 1.2rem !important;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

/* 주소 / 이메일 */
.footer-contact p,
.footer-info p,
.footer-contact a,
.footer-info a {
    font-size: 1.25rem !important;
    line-height: 1.6;
}

/* 각 항목 간격 */
.footer-contact > div,
.footer-info > div {
    margin-bottom: 30px;
}

/* Footer 정보 영역 높이 */
.footer-brand,
.footer-contact,
.footer-info {
    min-height: 250px;
}/* =========================================================
   XECTIP FOOTER - LARGE / FULL
========================================================= */

/* XECTIP PPF */
.footer-logo {
    font-size: 3.2rem !important;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.03em;
}

/* PREMIUM PAINT PROTECTION FILM */
.footer-brand p {
    margin-top: 18px;
    font-size: 1.35rem !important;
    line-height: 1.5;
}

/* ADDRESS / E-MAIL 제목 */
.footer-contact h4,
.footer-contact h3,
.footer-info h4,
.footer-info h3 {
    font-size: 1.2rem !important;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

/* 주소 / 이메일 */
.footer-contact p,
.footer-info p,
.footer-contact a,
.footer-info a {
    font-size: 1.25rem !important;
    line-height: 1.6;
}

/* 각 항목 간격 */
.footer-contact > div,
.footer-info > div {
    margin-bottom: 30px;
}

/* Footer 정보 영역 높이 */
.footer-brand,
.footer-contact,
.footer-info {
    min-height: 250px;
}/* =========================================================
   XECTIP FOOTER - LARGE / FULL
========================================================= */

/* XECTIP PPF */
.footer-logo {
    font-size: 3.2rem !important;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.03em;
}

/* PREMIUM PAINT PROTECTION FILM */
.footer-brand p {
    margin-top: 18px;
    font-size: 1.35rem !important;
    line-height: 1.5;
}

/* ADDRESS / E-MAIL 제목 */
.footer-contact h4,
.footer-contact h3,
.footer-info h4,
.footer-info h3 {
    font-size: 1.2rem !important;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

/* 주소 / 이메일 */
.footer-contact p,
.footer-info p,
.footer-contact a,
.footer-info a {
    font-size: 1.25rem !important;
    line-height: 1.6;
}

/* 각 항목 간격 */
.footer-contact > div,
.footer-info > div {
    margin-bottom: 30px;
}

/* Footer 정보 영역 높이 */
.footer-brand,
.footer-contact,
.footer-info {
    min-height: 250px;
}/* =========================================================
   XECTIP FOOTER - LARGE / FULL
========================================================= */

/* XECTIP PPF */
.footer-logo {
    font-size: 3.2rem !important;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.03em;
}

/* PREMIUM PAINT PROTECTION FILM */
.footer-brand p {
    margin-top: 18px;
    font-size: 1.35rem !important;
    line-height: 1.5;
}

/* ADDRESS / E-MAIL 제목 */
.footer-contact h4,
.footer-contact h3,
.footer-info h4,
.footer-info h3 {
    font-size: 1.2rem !important;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

/* 주소 / 이메일 */
.footer-contact p,
.footer-info p,
.footer-contact a,
.footer-info a {
    font-size: 1.25rem !important;
    line-height: 1.6;
}

/* 각 항목 간격 */
.footer-contact > div,
.footer-info > div {
    margin-bottom: 30px;
}

/* Footer 정보 영역 높이 */
.footer-brand,
.footer-contact,
.footer-info {
    min-height: 250px;
}/* =========================================================
   XECTIP FOOTER - LARGE / FULL
========================================================= */

/* XECTIP PPF */
.footer-logo {
    font-size: 3.2rem !important;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.03em;
}

/* PREMIUM PAINT PROTECTION FILM */
.footer-brand p {
    margin-top: 18px;
    font-size: 1.35rem !important;
    line-height: 1.5;
}

/* ADDRESS / E-MAIL 제목 */
.footer-contact h4,
.footer-contact h3,
.footer-info h4,
.footer-info h3 {
    font-size: 1.2rem !important;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

/* 주소 / 이메일 */
.footer-contact p,
.footer-info p,
.footer-contact a,
.footer-info a {
    font-size: 1.25rem !important;
    line-height: 1.6;
}

/* 각 항목 간격 */
.footer-contact > div,
.footer-info > div {
    margin-bottom: 30px;
}

/* Footer 정보 영역 높이 */
.footer-brand,
.footer-contact,
.footer-info {
    min-height: 250px;
}/* =========================================================
   XECTIP FOOTER - LARGE / FULL
========================================================= */

/* XECTIP PPF */
.footer-logo {
    font-size: 3.2rem !important;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.03em;
}

/* PREMIUM PAINT PROTECTION FILM */
.footer-brand p {
    margin-top: 18px;
    font-size: 1.35rem !important;
    line-height: 1.5;
}

/* ADDRESS / E-MAIL 제목 */
.footer-contact h4,
.footer-contact h3,
.footer-info h4,
.footer-info h3 {
    font-size: 1.2rem !important;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

/* 주소 / 이메일 */
.footer-contact p,
.footer-info p,
.footer-contact a,
.footer-info a {
    font-size: 1.25rem !important;
    line-height: 1.6;
}

/* 각 항목 간격 */
.footer-contact > div,
.footer-info > div {
    margin-bottom: 30px;
}

/* Footer 정보 영역 높이 */
.footer-brand,
.footer-contact,
.footer-info {
    min-height: 250px;
}/* =========================================================
   XECTIP FOOTER - LARGE / FULL
========================================================= */

/* XECTIP PPF */
.footer-logo {
    font-size: 3.2rem !important;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.03em;
}

/* PREMIUM PAINT PROTECTION FILM */
.footer-brand p {
    margin-top: 18px;
    font-size: 1.35rem !important;
    line-height: 1.5;
}

/* ADDRESS / E-MAIL 제목 */
.footer-contact h4,
.footer-contact h3,
.footer-info h4,
.footer-info h3 {
    font-size: 1.2rem !important;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

/* 주소 / 이메일 */
.footer-contact p,
.footer-info p,
.footer-contact a,
.footer-info a {
    font-size: 1.25rem !important;
    line-height: 1.6;
}

/* 각 항목 간격 */
.footer-contact > div,
.footer-info > div {
    margin-bottom: 30px;
}

/* Footer 정보 영역 높이 */
.footer-brand,
.footer-contact,
.footer-info {
    min-height: 250px;
}
/* =========================================
   FOOTER LOGO - BALANCED
========================================= */

.footer-logo {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.footer-logo-main {
    color: #C05C33;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    text-decoration: none;
}

.footer-logo-sub {
    color: inherit;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    text-decoration: none;
    margin-left: 8px;
}
/* =========================================================
   FOOTER - MOBILE XECTIP PPF & WRAP FIX
   ========================================================= */

@media (max-width: 768px) {

    /* Footer 브랜드 영역 */
    footer .footer-brand,
    footer .footer-logo,
    footer .logo {
        max-width: 100%;
        width: 100%;
        overflow: hidden;
    }

    /* XECTIP */
    footer .logo-main {
        font-size: clamp(28px, 9vw, 48px);
        line-height: 1;
        white-space: nowrap;
    }

    /* PPF & WRAP */
    footer .logo-ppf {
        font-size: clamp(11px, 3.2vw, 16px);
        line-height: 1;
        white-space: nowrap;
        letter-spacing: 0.08em;
    }

    /* XECTIP + PPF & WRAP 전체가 화면 밖으로 나가지 않도록 */
    footer .footer-logo,
    footer .footer-brand,
    footer .logo {
        box-sizing: border-box;
        min-width: 0;
    }

}


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

@media (max-width: 480px) {

    footer .logo-main {
        font-size: 32px;
    }

    footer .logo-ppf {
        font-size: 10px;
        letter-spacing: 0.06em;
    }

}


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

@media (max-width: 360px) {

    footer .logo-main {
        font-size: 28px;
    }

    footer .logo-ppf {
        font-size: 9px;
        letter-spacing: 0.04em;
    }

}
/* =========================================================
   MOBILE ONLY - CLEAR PPF + MATTE PPF
   ========================================================= */

@media (max-width: 600px) {

    /* CLEAR PPF + MATTE PPF가 들어있는 마지막 2개 카드 */
    .product-grid .product-card:nth-last-child(2),
    .product-grid .product-card:last-child {
        width: calc(50% - 6px);
    }

    .product-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

}
/* =========================================================
   MOBILE HEADER - XECTIP | INLINE
   ========================================================= */

@media (max-width: 600px) {

    .logo {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        white-space: nowrap;
    }

    .logo-main {
        display: inline-block;
        white-space: nowrap;
    }

    .logo-ppf {
        display: inline-block;
        white-space: nowrap;
        margin-left: 8px;
    }

}
/* =========================================================
   HERO TYPOGRAPHY
   ========================================================= */

/* Main XECTIP */
.hero-brand {
    font-size: clamp(52px, 8vw, 110px);
    line-height: 0.9;
    display: block;
}

/* THE NEXT-GENERATION + TECHNOLOGY */
.hero-main-title {
    display: block;
    font-size: clamp(18px, 2.8vw, 38px);
    line-height: 1.05;
    margin-top: 18px;
}

/* PPF & WRAP FILM */
.hero-sub-title {
    display: block;
    font-size: clamp(14px, 2vw, 26px);
    line-height: 1.1;
    margin-top: 8px;
}


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

@media (max-width: 600px) {

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

    .hero-main-title {
        font-size: 18px;
        margin-top: 12px;
    }

    .hero-sub-title {
        font-size: 13px;
        margin-top: 6px;
    }

}
/* HERO */
.hero-brand {
    display: block;
    font-size: clamp(52px, 8vw, 110px);
    line-height: 0.9;
}

.hero-main-title {
    display: block;
    margin-top: 18px;
    line-height: 1;
}

.hero-generation,
.hero-technology {
    display: block;
    font-size: clamp(18px, 2.8vw, 38px);
    line-height: 1.05;
}

.hero-sub-title {
    display: block;
    margin-top: 8px;
    font-size: clamp(14px, 2vw, 26px);
    line-height: 1.1;
}


/* MOBILE */
@media (max-width: 600px) {

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

    .hero-main-title {
        margin-top: 12px;
    }

    .hero-generation,
    .hero-technology {
        font-size: 18px;
    }

    .hero-sub-title {
        margin-top: 6px;
        font-size: 13px;
    }

}
/* =========================================================
   XECTIP PRODUCTS SYSTEM
========================================================= */

.products-section {
    position: relative;
    padding: 150px 0;
    background: var(--bg);
    overflow: hidden;
}

.products-section .section-inner {
    width: min(1400px, 90%);
    margin: 0 auto;
}

.products-heading {
    max-width: 760px;
    margin-bottom: 80px;
}

.products-heading .section-label,
.product-panel-heading .section-label {
    margin-bottom: 24px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .22em;
}

.products-heading h2 {
    margin: 0;
    font-size: clamp(48px, 7vw, 100px);
    line-height: .92;
    font-weight: 700;
    letter-spacing: -.05em;
}

.products-heading h2 span {
    color: var(--accent);
}

.products-heading p {
    max-width: 560px;
    margin-top: 32px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   PRODUCT FAMILY GRID
========================================================= */

.product-family-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.product-family-card {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    cursor: pointer;
    background: var(--dark);
}

.product-family-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

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

.product-family-card:hover .product-family-image img {
    transform: scale(1.06);
}

.product-family-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(17,17,17,.05) 20%,
            rgba(17,17,17,.25) 45%,
            rgba(17,17,17,.92) 100%
        );
}

.product-family-number {
    position: absolute;
    top: 28px;
    left: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .18em;
}

.product-family-content {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 36px;
}

.product-family-category {
    margin-bottom: 12px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
}

.product-family-content h3 {
    margin: 0;
    font-size: clamp(42px, 4vw, 68px);
    line-height: .95;
    font-weight: 700;
    letter-spacing: -.04em;
}

.product-family-content p {
    max-width: 340px;
    margin: 20px 0 28px;
    color: rgba(255,255,255,.72);
    font-size: 13px;
    line-height: 1.7;
}

.product-view-btn,
.product-spec-btn {
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--white);
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    cursor: pointer;
}

.product-view-btn span,
.product-spec-btn span {
    display: inline-block;
    margin-left: 12px;
    color: var(--accent);
    transition: transform .3s ease;
}

.product-view-btn:hover span,
.product-spec-btn:hover span {
    transform: translateX(6px);
}


/* =========================================================
   PRODUCT MODAL
========================================================= */

.product-family-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.product-family-modal.is-open {
    display: flex;
}

.product-family-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.82);
    backdrop-filter: blur(10px);
}

.product-family-modal-window {
    position: relative;
    z-index: 2;
    width: min(1250px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    padding: 70px;
    background: var(--dark);
    border: 1px solid var(--line);
}

.product-family-modal-close {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--white);
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    transition:
        background .25s ease,
        color .25s ease;
}

.product-family-modal-close:hover {
    background: var(--accent);
    color: var(--white);
}

.product-family-panel {
    display: none;
}

.product-family-panel.is-active {
    display: block;
}

.product-panel-heading {
    max-width: 700px;
    margin-bottom: 55px;
}

.product-panel-heading h2 {
    margin: 0;
    font-size: clamp(42px, 6vw, 80px);
    line-height: .95;
    letter-spacing: -.05em;
}

.product-panel-heading h2 span {
    color: var(--accent);
}

.product-panel-heading p {
    max-width: 600px;
    margin-top: 25px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   PRODUCT DETAIL CARDS
========================================================= */

.product-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.product-detail-card {
    overflow: hidden;
    background: var(--black);
    border: 1px solid var(--line);
}

.product-detail-card-featured {
    border-color: rgba(192,92,51,.65);
}

.product-detail-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.product-apex-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 9px 13px;
    background: var(--accent);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .16em;
}

.product-detail-info {
    padding: 34px;
}

.product-detail-number {
    margin-bottom: 18px;
    color: var(--accent);
    font-size: 11px;
    letter-spacing: .18em;
}

.product-detail-info h3 {
    margin: 0;
    font-size: 34px;
    line-height: 1;
    letter-spacing: -.04em;
}

.product-detail-type {
    margin-top: 12px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .16em;
}

.product-detail-info p {
    margin: 22px 0;
    color: rgba(255,255,255,.68);
    font-size: 13px;
    line-height: 1.8;
}

.product-detail-info ul {
    display: grid;
    gap: 10px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.product-detail-info li {
    position: relative;
    padding-left: 18px;
    color: rgba(255,255,255,.82);
    font-size: 11px;
    letter-spacing: .03em;
}

.product-detail-info li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 5px;
    height: 5px;
    background: var(--accent);
}


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

@media (max-width: 900px) {

    .products-section {
        padding: 100px 0;
    }

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

    .product-family-card {
        min-height: 540px;
    }

    .product-family-modal {
        padding: 15px;
    }

    .product-family-modal-window {
        padding: 55px 20px 30px;
        max-height: 94vh;
    }

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

    .product-detail-image {
        height: 260px;
    }

}


@media (max-width: 560px) {

    .products-section .section-inner {
        width: 92%;
    }

    .products-heading {
        margin-bottom: 50px;
    }

    .product-family-card {
        min-height: 480px;
    }

    .product-family-content {
        left: 24px;
        right: 24px;
        bottom: 26px;
    }

    .product-family-number {
        left: 24px;
        top: 24px;
    }

    .product-detail-info {
        padding: 25px;
    }

}
/* =========================================================
   XECTIP PRODUCT DETAIL MODAL
========================================================= */

.xectip-product-detail-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;

    display: none;

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

    padding: 25px;
}

.xectip-product-detail-modal.is-open {
    display: flex;
}


/* BACKDROP */

.xectip-product-detail-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, .88);

    backdrop-filter: blur(12px);
}


/* WINDOW */

.xectip-product-detail-window {
    position: relative;
    z-index: 2;

    width: min(1180px, 100%);
    max-height: 92vh;

    overflow-y: auto;

    background: var(--dark);

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

    box-shadow:
        0 30px 100px rgba(0, 0, 0, .45);
}


/* CLOSE */

.xectip-product-detail-close {
    position: absolute;

    top: 22px;
    right: 25px;

    z-index: 10;

    width: 42px;
    height: 42px;

    border: 1px solid rgba(255,255,255,.2);

    background: rgba(17,17,17,.55);

    color: #fff;

    font-family: inherit;

    font-size: 27px;
    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    transition:
        background .25s ease,
        border-color .25s ease;
}

.xectip-product-detail-close:hover {
    background: var(--accent);

    border-color: var(--accent);
}


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

.xectip-product-detail-hero {
    display: grid;

    grid-template-columns: 1.15fr .85fr;

    min-height: 520px;

    background: #111;
}


.xectip-product-detail-hero-image {
    position: relative;

    min-height: 520px;

    overflow: hidden;
}


.xectip-product-detail-hero-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            transparent 65%,
            rgba(17,17,17,.8) 100%
        );
}


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

    display: block;

    object-fit: cover;
}


.xectip-product-detail-hero-content {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 70px 65px;
}


.xectip-product-detail-label {
    margin-bottom: 20px;

    color: var(--accent);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .2em;
}


.xectip-product-detail-hero-content h2 {
    margin: 0;

    color: #fff;

    font-size: clamp(45px, 5vw, 75px);

    line-height: .95;

    letter-spacing: -.05em;
}


.xectip-product-detail-hero-content p {
    max-width: 440px;

    margin-top: 28px;

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

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   SECTIONS
========================================================= */

.xectip-product-detail-section {
    padding: 70px 65px;

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


.xectip-product-detail-section-label {
    margin-bottom: 35px;

    color: var(--accent);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .2em;
}


/* =========================================================
   FEATURES
========================================================= */

.xectip-product-feature-grid {
    display: grid;

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

    gap: 15px;
}


.xectip-product-feature {
    min-height: 150px;

    padding: 25px;

    background: #111;

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


.xectip-product-feature-number {
    display: block;

    margin-bottom: 30px;

    color: var(--accent);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .15em;
}


.xectip-product-feature strong {
    display: block;

    color: #fff;

    font-size: 14px;

    line-height: 1.4;
}


.xectip-product-feature small {
    display: block;

    margin-top: 10px;

    color: var(--muted);

    font-size: 10px;

    line-height: 1.5;
}


/* =========================================================
   FILM STRUCTURE
========================================================= */

.xectip-film-structure {
    display: grid;

    gap: 2px;
}


.xectip-film-layer {
    display: grid;

    grid-template-columns: 60px 1fr 1fr;

    align-items: center;

    min-height: 70px;

    padding: 0 25px;

    background: #111;

    border-left: 3px solid var(--accent);
}


.xectip-film-layer span {
    color: var(--accent);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .15em;
}


.xectip-film-layer strong {
    color: #fff;

    font-size: 12px;

    letter-spacing: .08em;
}


.xectip-film-layer small {
    color: var(--muted);

    font-size: 10px;
}


/* =========================================================
   SPECIFICATIONS
========================================================= */

.xectip-product-spec-table {
    border-top: 1px solid var(--line);
}


.xectip-spec-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 58px;

    align-items: center;

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


.xectip-spec-row span {
    color: var(--muted);

    font-size: 11px;
}


.xectip-spec-row strong {
    color: #fff;

    font-size: 11px;

    font-weight: 600;
}


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

.xectip-product-detail-cta {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 35px 65px;

    background: #111;

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


.xectip-product-detail-cta div {
    display: flex;

    align-items: center;

    gap: 15px;
}


.xectip-product-detail-cta div span {
    color: var(--accent);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .18em;
}


.xectip-product-detail-cta div strong {
    color: #fff;

    font-size: 18px;
}


.xectip-product-detail-cta button {
    padding: 15px 22px;

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

    background: var(--accent);

    color: #fff;

    font-family: inherit;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .15em;

    cursor: pointer;

    transition:
        background .25s ease,
        color .25s ease;
}


.xectip-product-detail-cta button span {
    margin-left: 12px;
}


.xectip-product-detail-cta button:hover {
    background: transparent;

    color: var(--accent);
}


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

@media (max-width: 850px) {

    .xectip-product-detail-modal {
        padding: 10px;
    }


    .xectip-product-detail-window {
        max-height: 96vh;
    }


    .xectip-product-detail-hero {
        grid-template-columns: 1fr;
    }


    .xectip-product-detail-hero-image {
        min-height: 320px;
    }


    .xectip-product-detail-hero-content {
        padding: 45px 25px 50px;
    }


    .xectip-product-detail-section {
        padding: 50px 25px;
    }


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


    .xectip-product-detail-cta {
        padding: 30px 25px;

        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 500px) {

    .xectip-product-detail-hero-image {
        min-height: 250px;
    }


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


    .xectip-film-layer {
        grid-template-columns:
            45px 1fr;

        gap: 5px;

        padding: 15px 18px;
    }


    .xectip-film-layer small {
        grid-column: 2;
    }


    .xectip-spec-row {
        grid-template-columns:
            1fr;

        gap: 5px;

        padding: 15px 0;
    }

}