/* =========================================================
   ASLI777 DEALER LAPTOP
   LAPTOP PERFORMANCE STORE
   MODERN PERFORMANCE DESIGN
========================================================= */


/* =========================================================
   ROOT
========================================================= */

:root {

    --black: #080b0f;

    --black-2: #0d1117;

    --panel: #11161d;

    --panel-2: #171d25;

    --white: #ffffff;

    --offwhite: #f4f6f8;

    --text: #10151b;

    --muted: #6d7782;

    --line: #dce1e6;

    --dark-line: #242b34;

    --blue: #00a8ff;

    --blue-dark: #008bd4;

    --container: 1180px;

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    min-height: 100vh;

    background: var(--white);

    color: var(--text);

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    line-height: 1.5;

    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {

    width:
        min(
            var(--container),
            calc(100% - 40px)
        );

    margin-inline: auto;

}


/* =========================================================
   HEADER
========================================================= */

.header {

    position: relative;

    z-index: 100;

    height: 82px;

    background:
        var(--white);

    border-bottom:
        1px solid var(--line);

}

.header-inner {

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


/* BRAND */

.brand {

    display: inline-flex;

    align-items: center;

    gap: 11px;

    flex-shrink: 0;

}

.brand-mark {

    width: 40px;
    height: 40px;

    display: grid;

    place-items: center;

    background:
        var(--black);

    color:
        var(--blue);

    font-size: 12px;

    font-weight: 950;

    letter-spacing: -1px;

}

.brand-info {

    display: flex;

    flex-direction: column;

    line-height: 1;

}

.brand-info strong {

    color:
        var(--black);

    font-size: 15px;

    font-weight: 950;

    letter-spacing: -0.5px;

}

.brand-info small {

    margin-top: 5px;

    color:
        #8b949e;

    font-size: 7px;

    font-weight: 850;

    letter-spacing: 1.5px;

}


/* NAVIGATION */

.navigation {

    display: flex;

    align-items: center;

    gap: 30px;

}

.navigation a {

    position: relative;

    color:
        #68727d;

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .4px;

}

.navigation a:hover,
.navigation a.active {

    color:
        var(--black);

}

.navigation a.active::before {

    content: "";

    position: absolute;

    left: 0;

    bottom: -31px;

    width: 100%;

    height: 2px;

    background:
        var(--blue);

}


/* HEADER CONTACT */

.header-contact {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding:
        11px 15px;

    background:
        var(--black);

    color:
        white;

    font-size: 9px;

    font-weight: 850;

    text-transform: uppercase;

    letter-spacing: .4px;

}

.header-contact span {

    color:
        var(--blue);

    font-size: 13px;

}


/* =========================================================
   HERO
========================================================= */

.hero {

    position: relative;

    overflow: hidden;

    background:
        var(--black);

    color:
        white;

}

.hero::after {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    right: -230px;

    top: -200px;

    border:
        1px solid
        rgba(0,168,255,.15);

    border-radius: 50%;

}

.hero-grid {

    min-height:
        720px;

    display: grid;

    grid-template-columns:
        .9fr
        1.1fr;

    align-items: center;

    gap: 65px;

}


/* HERO COPY */

.hero-copy {

    padding:
        75px 0;

}

.hero-tag {

    display: flex;

    align-items: center;

    gap: 9px;

    color:
        #7d8995;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 2px;

}

.hero-tag span {

    width: 7px;

    height: 7px;

    background:
        var(--blue);

}

.hero h1 {

    margin-top: 24px;

    max-width: 570px;

    font-size:
        clamp(48px, 6.5vw, 82px);

    line-height:
        .9;

    letter-spacing:
        -5px;

    font-weight:
        950;

}

.hero h1 em {

    display: block;

    color:
        var(--blue);

    font-style:
        normal;

}

.hero-copy > p {

    max-width:
        510px;

    margin-top: 27px;

    color:
        #929ca7;

    font-size:
        13px;

    line-height:
        1.9;

}

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    margin-top: 32px;

}


/* BUTTONS */

.btn {

    min-height:
        46px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding:
        0 20px;

    font-size: 9px;

    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: .6px;

    transition:
        transform .2s ease,
        background .2s ease,
        color .2s ease;

}

.btn:hover {

    transform:
        translateY(-2px);

}

.btn-blue {

    background:
        var(--blue);

    color:
        white;

}

.btn-blue:hover {

    background:
        var(--blue-dark);

}

.btn-outline {

    border:
        1px solid
        #303944;

    color:
        white;

}

.btn-outline:hover {

    border-color:
        #56616e;

}


/* HERO META */

.hero-meta {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    max-width:
        560px;

    margin-top:
        60px;

    border-top:
        1px solid
        var(--dark-line);

}

.hero-meta div {

    padding:
        18px 15px 0 0;

    border-right:
        1px solid
        var(--dark-line);

}

.hero-meta div:not(:first-child) {

    padding-left:
        15px;

}

.hero-meta div:last-child {

    border-right:
        0;

}

.hero-meta strong {

    display: block;

    color:
        var(--blue);

    font-size:
        8px;

}

.hero-meta span {

    display: block;

    margin-top:
        5px;

    color:
        #a1aab3;

    font-size:
        9px;

    font-weight:
        750;

}


/* =========================================================
   HERO PRODUCT
========================================================= */

.hero-product {

    position:
        relative;

    min-height:
        590px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

}

.hero-product-label {

    position:
        absolute;

    top:
        75px;

    left:
        0;

    right:
        0;

    display:
        flex;

    justify-content:
        space-between;

    color:
        #5e6873;

    font-size:
        7px;

    font-weight:
        900;

    letter-spacing:
        1.5px;

}

.hero-product-label b {

    color:
        var(--blue);

}


/* LAPTOP */

.laptop-frame {

    position:
        relative;

    width:
        min(670px, 100%);

    transform:
        perspective(1000px)
        rotateY(-8deg);

    box-shadow:
        25px 35px 70px
        rgba(0,0,0,.45);

}

.laptop-frame::after {

    content: "";

    position:
        absolute;

    left:
        4%;

    right:
        4%;

    bottom:
        -24px;

    height:
        25px;

    background:
        #222a33;

    clip-path:
        polygon(
            0 0,
            100% 0,
            93% 100%,
            7% 100%
        );

}

.laptop-frame img {

    width:
        100%;

    aspect-ratio:
        1.25 / 1;

    object-fit:
        cover;

    border:
        1px solid
        #28313b;

}


/* SPEC PANEL */

.spec-panel {

    position:
        absolute;

    right:
        -10px;

    bottom:
        80px;

    width:
        210px;

    padding:
        19px;

    background:
        rgba(13,17,23,.96);

    border:
        1px solid
        #2b343f;

    box-shadow:
        0 20px 50px
        rgba(0,0,0,.35);

}

.spec-title {

    padding-bottom:
        12px;

    border-bottom:
        1px solid
        var(--dark-line);

    color:
        white;

    font-size:
        8px;

    font-weight:
        900;

    letter-spacing:
        1px;

}

.spec-title span {

    color:
        var(--blue);

}

.spec-grid {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        14px;

    padding-top:
        14px;

}

.spec-grid div {

    display:
        flex;

    flex-direction:
        column;

}

.spec-grid small {

    color:
        #69747f;

    font-size:
        7px;

    font-weight:
        800;

}

.spec-grid strong {

    margin-top:
        3px;

    color:
        white;

    font-size:
        11px;

    font-weight:
        900;

}


/* HERO NUMBER */

.hero-number {

    position:
        absolute;

    right:
        25px;

    top:
        155px;

    color:
        rgba(255,255,255,.035);

    font-size:
        160px;

    line-height:
        1;

    font-weight:
        950;

}


/* =========================================================
   INTRO STRIP
========================================================= */

.intro-strip {

    background:
        var(--blue);

    color:
        var(--black);

}

.intro-grid {

    min-height:
        120px;

    display:
        grid;

    grid-template-columns:
        1.3fr
        1fr
        1fr
        1fr;

}

.intro-title,
.intro-item {

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        center;

    padding:
        20px 25px;

    border-right:
        1px solid
        rgba(0,0,0,.12);

}

.intro-title span {

    font-size:
        7px;

    font-weight:
        950;

    letter-spacing:
        1.7px;

}

.intro-title strong {

    margin-top:
        3px;

    font-size:
        20px;

    font-weight:
        950;

    letter-spacing:
        -1px;

}

.intro-item strong {

    font-size:
        9px;

    font-weight:
        950;

    letter-spacing:
        .7px;

}

.intro-item span {

    margin-top:
        5px;

    font-size:
        9px;

}


/* =========================================================
   SECTIONS
========================================================= */

.section {

    padding:
        110px 0;

}

.category-section {

    background:
        #f7f8fa;

}

.section-top {

    display:
        flex;

    align-items:
        flex-end;

    justify-content:
        space-between;

    gap:
        50px;

}

.overline {

    color:
        var(--blue-dark);

    font-size:
        8px;

    font-weight:
        950;

    letter-spacing:
        1.8px;

}

.section-top h2,
.advantage-header h2 {

    margin-top:
        10px;

    color:
        var(--black);

    font-size:
        clamp(40px, 5vw, 61px);

    line-height:
        .95;

    letter-spacing:
        -3px;

    font-weight:
        950;

}

.section-top h2 span,
.advantage-header h2 span {

    color:
        var(--blue-dark);

}

.section-top > p {

    max-width:
        350px;

    color:
        var(--muted);

    font-size:
        11px;

    line-height:
        1.8;

}


/* =========================================================
   CATEGORY
========================================================= */

.category-list {

    margin-top:
        55px;

    border-top:
        1px solid
        var(--line);

}

.category-row {

    min-height:
        130px;

    display:
        grid;

    grid-template-columns:
        80px
        1fr
        150px
        40px;

    align-items:
        center;

    gap:
        25px;

    border-bottom:
        1px solid
        var(--line);

    transition:
        padding .25s ease,
        background .25s ease;

}

.category-row:hover {

    padding-left:
        15px;

    background:
        white;

}

.category-id {

    color:
        #aab2ba;

    font-size:
        9px;

    font-weight:
        900;

}

.category-main h3 {

    color:
        var(--black);

    font-size:
        18px;

    font-weight:
        900;

}

.category-main p {

    max-width:
        560px;

    margin-top:
        5px;

    color:
        var(--muted);

    font-size:
        10px;

}

.category-type {

    color:
        #8d97a0;

    font-size:
        7px;

    font-weight:
        900;

    letter-spacing:
        1.1px;

}

.category-arrow {

    width:
        32px;

    height:
        32px;

    display:
        grid;

    place-items:
        center;

    border:
        1px solid
        var(--line);

    color:
        var(--black);

    font-size:
        12px;

}


/* =========================================================
   FEATURED
========================================================= */

.featured-section {

    background:
        white;

}

.view-all {

    color:
        var(--blue-dark);

    font-size:
        9px;

    font-weight:
        900;

    text-transform:
        uppercase;

    letter-spacing:
        .5px;

}

.machine-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        15px;

    margin-top:
        55px;

}

.machine-card {

    overflow:
        hidden;

    background:
        #f5f7f9;

    border:
        1px solid
        #e0e5e9;

}

.machine-dark {

    background:
        var(--black);

    border-color:
        var(--black);

    color:
        white;

}


/* MACHINE TOP */

.machine-top {

    display:
        flex;

    justify-content:
        space-between;

    padding:
        18px 20px;

    font-size:
        7px;

    font-weight:
        900;

    letter-spacing:
        1px;

}

.machine-top span {

    color:
        #8b959f;

}

.machine-top b {

    color:
        var(--blue);

}


/* MACHINE VISUAL */

.machine-visual {

    height:
        210px;

    display:
        grid;

    place-items:
        center;

    background:
        linear-gradient(
            145deg,
            #e9edf1,
            #f8fafb
        );

}

.machine-dark .machine-visual {

    background:
        linear-gradient(
            145deg,
            #11171e,
            #1b232c
        );

}

.fake-laptop {

    width:
        190px;

}

.fake-screen {

    height:
        115px;

    display:
        grid;

    place-items:
        center;

    background:
        #10151b;

    border:
        5px solid
        #252e38;

    color:
        rgba(0,168,255,.45);

    font-size:
        10px;

    font-weight:
        950;

    letter-spacing:
        2px;

    box-shadow:
        0 18px 30px
        rgba(0,0,0,.16);

}

.fake-base {

    width:
        220px;

    height:
        10px;

    margin-left:
        -15px;

    background:
        #b9c0c7;

    clip-path:
        polygon(
            5% 0,
            95% 0,
            100% 100%,
            0 100%
        );

}

.machine-dark .fake-base {

    background:
        #303943;

}


/* MACHINE INFO */

.machine-info {

    padding:
        25px;

}

.machine-category {

    color:
        var(--blue-dark);

    font-size:
        7px;

    font-weight:
        900;

    letter-spacing:
        1.2px;

}

.machine-info h3 {

    margin-top:
        7px;

    font-size:
        19px;

    font-weight:
        950;

    letter-spacing:
        -.5px;

}

.machine-dark .machine-info h3 {

    color:
        white;

}

.machine-info p {

    margin-top:
        8px;

    color:
        var(--muted);

    font-size:
        10px;

    line-height:
        1.7;

}

.machine-dark .machine-info p {

    color:
        #7e8994;

}

.machine-specs {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        5px;

    margin-top:
        18px;

}

.machine-specs span {

    padding:
        6px 8px;

    background:
        #e8edf1;

    color:
        #65707a;

    font-size:
        6px;

    font-weight:
        900;

}

.machine-dark .machine-specs span {

    background:
        #1a2129;

    color:
        #7d8791;

}

.machine-link {

    display:
        flex;

    justify-content:
        space-between;

    margin-top:
        22px;

    padding-top:
        15px;

    border-top:
        1px solid
        #dce1e5;

    color:
        var(--black);

    font-size:
        8px;

    font-weight:
        900;

    text-transform:
        uppercase;

}

.machine-dark .machine-link {

    color:
        white;

    border-color:
        #28313a;

}

.machine-link span {

    color:
        var(--blue);

}


/* =========================================================
   PERFORMANCE
========================================================= */

.performance-section {

    padding:
        110px 0;

    background:
        var(--black);

    color:
        white;

}

.performance-layout {

    display:
        grid;

    grid-template-columns:
        .8fr
        1.2fr;

    gap:
        100px;

}

.performance-heading h2 {

    margin-top:
        10px;

    font-size:
        clamp(40px, 5vw, 62px);

    line-height:
        .95;

    letter-spacing:
        -3px;

    font-weight:
        950;

}

.performance-heading h2 span {

    display:
        block;

    color:
        var(--blue);

}

.performance-heading p {

    max-width:
        430px;

    margin-top:
        22px;

    color:
        #7e8994;

    font-size:
        11px;

    line-height:
        1.9;

}

.performance-heading .btn {

    margin-top:
        28px;

}

.performance-data {

    border-top:
        1px solid
        var(--dark-line);

}

.data-row {

    display:
        grid;

    grid-template-columns:
        50px
        1fr
        55px;

    gap:
        20px;

    align-items:
        center;

    min-height:
        145px;

    border-bottom:
        1px solid
        var(--dark-line);

}

.data-number {

    color:
        var(--blue);

    font-size:
        8px;

    font-weight:
        950;

}

.data-row h3 {

    color:
        white;

    font-size:
        16px;

    font-weight:
        900;

}

.data-row p {

    max-width:
        510px;

    margin-top:
        5px;

    color:
        #78838e;

    font-size:
        10px;

    line-height:
        1.7;

}

.data-row > strong {

    color:
        #48525d;

    font-size:
        9px;

    font-weight:
        950;

}


/* =========================================================
   ADVANTAGE
========================================================= */

.advantage-section {

    background:
        #f6f8fa;

}

.advantage-header {

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        flex-end;

    gap:
        50px;

}

.advantage-header p {

    max-width:
        390px;

    color:
        var(--muted);

    font-size:
        11px;

    line-height:
        1.8;

}

.advantage-grid {

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

    margin-top:
        55px;

    border-top:
        1px solid
        var(--line);

    border-left:
        1px solid
        var(--line);

}

.advantage-grid article {

    min-height:
        245px;

    padding:
        25px;

    border-right:
        1px solid
        var(--line);

    border-bottom:
        1px solid
        var(--line);

    background:
        white;

}

.advantage-grid article > span {

    color:
        var(--blue-dark);

    font-size:
        8px;

    font-weight:
        950;

}

.advantage-grid h3 {

    margin-top:
        50px;

    color:
        var(--black);

    font-size:
        15px;

    font-weight:
        900;

}

.advantage-grid p {

    margin-top:
        8px;

    color:
        var(--muted);

    font-size:
        10px;

    line-height:
        1.75;

}


/* =========================================================
   CTA
========================================================= */

.final-cta {

    padding:
        0 0 110px;

    background:
        #f6f8fa;

}

.cta-content {

    position:
        relative;

    overflow:
        hidden;

    padding:
        90px 40px;

    background:
        var(--blue);

    text-align:
        center;

}

.cta-content::before {

    content:
        "A7";

    position:
        absolute;

    right:
        3%;

    top:
        -45px;

    color:
        rgba(0,0,0,.055);

    font-size:
        220px;

    line-height:
        1;

    font-weight:
        950;

}

.cta-content h2 {

    position:
        relative;

    z-index:
        2;

    margin-top:
        10px;

    color:
        var(--black);

    font-size:
        clamp(43px, 6vw, 70px);

    line-height:
        .9;

    letter-spacing:
        -4px;

    font-weight:
        950;

}

.cta-content h2 span {

    color:
        white;

}

.cta-content p {

    position:
        relative;

    z-index:
        2;

    max-width:
        520px;

    margin:
        20px auto 0;

    color:
        rgba(0,0,0,.62);

    font-size:
        11px;

    line-height:
        1.8;

}

.cta-buttons {

    position:
        relative;

    z-index:
        2;

    display:
        flex;

    justify-content:
        center;

    gap:
        8px;

    flex-wrap:
        wrap;

    margin-top:
        28px;

}

.btn-white {

    background:
        white;

    color:
        var(--black);

}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    padding:
        70px 0 25px;

    background:
        var(--black);

    color:
        white;

}

.footer-main {

    display:
        grid;

    grid-template-columns:
        1.6fr
        .7fr
        .7fr
        1fr;

    gap:
        60px;

}

.footer-about p {

    max-width:
        330px;

    margin-top:
        20px;

    color:
        #727d88;

    font-size:
        10px;

    line-height:
        1.9;

}

.footer .brand-info strong {

    color:
        white;

}

.footer-links {

    display:
        flex;

    flex-direction:
        column;

    align-items:
        flex-start;

}

.footer-links h3 {

    margin-bottom:
        16px;

    color:
        white;

    font-size:
        9px;

    font-weight:
        900;

    text-transform:
        uppercase;

    letter-spacing:
        .8px;

}

.footer-links a,
.footer-links span {

    margin-bottom:
        10px;

    color:
        #727d88;

    font-size:
        9px;

}

.footer-links a:hover {

    color:
        var(--blue);

}

.footer-bottom {

    display:
        flex;

    justify-content:
        space-between;

    gap:
        20px;

    margin-top:
        60px;

    padding-top:
        20px;

    border-top:
        1px solid
        var(--dark-line);

    color:
        #56616c;

    font-size:
        8px;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .navigation {

        gap:
            15px;

    }

    .header-contact {

        display:
            none;

    }

    .hero-grid {

        grid-template-columns:
            1fr;

        padding-top:
            30px;

        padding-bottom:
            60px;

    }

    .hero-copy {

        padding:
            50px 0 20px;

    }

    .hero-product {

        min-height:
            520px;

    }

    .intro-grid {

        grid-template-columns:
            1fr 1fr;

    }

    .intro-title {

        border-bottom:
            1px solid
            rgba(0,0,0,.12);

    }

    .intro-item {

        border-bottom:
            1px solid
            rgba(0,0,0,.12);

    }

    .machine-grid {

        grid-template-columns:
            1fr 1fr;

    }

    .machine-card:last-child {

        grid-column:
            1 / -1;

    }

    .performance-layout {

        grid-template-columns:
            1fr;

        gap:
            55px;

    }

    .advantage-grid {

        grid-template-columns:
            1fr 1fr;

    }

    .footer-main {

        grid-template-columns:
            1fr 1fr;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .container {

        width:
            calc(100% - 28px);

    }

    .header {

        height:
            70px;

    }

    .navigation {

        display:
            none;

    }

    .hero-grid {

        min-height:
            auto;

    }

    .hero h1 {

        font-size:
            clamp(45px, 14vw, 65px);

        letter-spacing:
            -3px;

    }

    .hero-product {

        min-height:
            390px;

    }

    .hero-product-label {

        top:
            15px;

    }

    .laptop-frame {

        width:
            94%;

        transform:
            none;

    }

    .spec-panel {

        right:
            0;

        bottom:
            30px;

        width:
            175px;

        padding:
            14px;

    }

    .hero-number {

        display:
            none;

    }

    .hero-meta {

        grid-template-columns:
            repeat(2,1fr);

        margin-top:
            40px;

    }

    .hero-meta div {

        border-bottom:
            1px solid
            var(--dark-line);

        padding-bottom:
            15px;

    }

    .hero-meta div:nth-child(2) {

        border-right:
            0;

    }

    .intro-grid {

        grid-template-columns:
            1fr 1fr;

    }

    .intro-title,
    .intro-item {

        padding:
            18px;

    }

    .section {

        padding:
            75px 0;

    }

    .section-top,
    .advantage-header {

        flex-direction:
            column;

        align-items:
            flex-start;

        gap:
            18px;

    }

    .section-top h2,
    .advantage-header h2 {

        font-size:
            40px;

        letter-spacing:
            -2px;

    }

    .category-row {

        min-height:
            145px;

        grid-template-columns:
            35px
            1fr
            30px;

        gap:
            10px;

    }

    .category-type {

        display:
            none;

    }

    .category-main h3 {

        font-size:
            15px;

    }

    .machine-grid {

        grid-template-columns:
            1fr;

    }

    .machine-card:last-child {

        grid-column:
            auto;

    }

    .performance-section {

        padding:
            75px 0;

    }

    .performance-heading h2 {

        font-size:
            42px;

        letter-spacing:
            -2px;

    }

    .data-row {

        grid-template-columns:
            35px
            1fr;

        gap:
            10px;

        min-height:
            125px;

    }

    .data-row > strong {

        display:
            none;

    }

    .advantage-grid {

        grid-template-columns:
            1fr;

    }

    .cta-content {

        padding:
            65px 20px;

    }

    .cta-content h2 {

        font-size:
            44px;

        letter-spacing:
            -2.5px;

    }

    .footer-main {

        grid-template-columns:
            1fr 1fr;

        gap:
            40px 20px;

    }

    .footer-about {

        grid-column:
            1 / -1;

    }

    .footer-bottom {

        flex-direction:
            column;

        gap:
            8px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .hero-buttons {

        flex-direction:
            column;

    }

    .hero-buttons .btn {

        width:
            100%;

    }

    .intro-grid {

        grid-template-columns:
            1fr;

    }

    .intro-title,
    .intro-item {

        border-right:
            0;

    }

    .hero-product {

        min-height:
            310px;

    }

    .spec-panel {

        transform:
            scale(.88);

        transform-origin:
            bottom right;

    }

    .footer-main {

        grid-template-columns:
            1fr;

    }

    .footer-about {

        grid-column:
            auto;

    }

}
/* =========================================================
   PART 2 — INTERNAL PAGES
========================================================= */


/* =========================================================
   PAGE HERO
========================================================= */

.page-hero,
.about-hero,
.contact-hero {

    position: relative;

    overflow: hidden;

    padding: 115px 0 100px;

    background: var(--black);

    color: white;

}

.page-hero::after,
.about-hero::after,
.contact-hero::after {

    content: "A7";

    position: absolute;

    right: 4%;

    top: -50px;

    color: rgba(255,255,255,.025);

    font-size: 260px;

    font-weight: 950;

    line-height: 1;

}

.page-hero h1,
.about-hero h1,
.contact-hero h1 {

    position: relative;

    z-index: 2;

    max-width: 800px;

    margin-top: 14px;

    font-size:
        clamp(48px, 7vw, 82px);

    line-height: .9;

    letter-spacing: -4px;

    font-weight: 950;

}

.page-hero h1 span,
.about-hero h1 span,
.contact-hero h1 span {

    display: block;

    color: var(--blue);

}

.page-hero p,
.about-hero p,
.contact-hero p {

    position: relative;

    z-index: 2;

    max-width: 560px;

    margin-top: 25px;

    color: #89949f;

    font-size: 12px;

    line-height: 1.9;

}

.page-code {

    position: relative;

    z-index: 2;

    margin-top: 50px;

    padding-top: 15px;

    border-top: 1px solid var(--dark-line);

    color: #4f5a65;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 2px;

}


/* =========================================================
   PRODUCT CATALOG
========================================================= */

.product-catalog {

    padding: 105px 0;

    background: #f6f8fa;

}

.catalog-heading {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

}

.catalog-heading h2 {

    margin-top: 10px;

    font-size: clamp(40px, 5vw, 60px);

    line-height: .95;

    letter-spacing: -3px;

    font-weight: 950;

}

.catalog-heading h2 span {

    color: var(--blue-dark);

}

.catalog-heading > p {

    max-width: 330px;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.8;

}

.catalog-list {

    margin-top: 55px;

    border-top: 1px solid var(--line);

}

.catalog-item {

    display: grid;

    grid-template-columns: 70px 1fr 110px;

    gap: 30px;

    padding: 38px 0;

    border-bottom: 1px solid var(--line);

    transition:
        padding .25s ease,
        background .25s ease;

}

.catalog-item:hover {

    padding-left: 15px;

    padding-right: 15px;

    background: white;

}

.catalog-number {

    color: #9ca6af;

    font-size: 9px;

    font-weight: 950;

}

.catalog-content > span {

    color: var(--blue-dark);

    font-size: 7px;

    font-weight: 950;

    letter-spacing: 1.4px;

}

.catalog-content h3 {

    margin-top: 7px;

    color: var(--black);

    font-size: 25px;

    font-weight: 950;

    letter-spacing: -.8px;

}

.catalog-content p {

    max-width: 650px;

    margin-top: 8px;

    color: var(--muted);

    font-size: 10px;

    line-height: 1.8;

}

.catalog-specs {

    display: flex;

    flex-wrap: wrap;

    gap: 6px;

    margin-top: 18px;

}

.catalog-specs b {

    padding: 6px 8px;

    background: #e9edf1;

    color: #68727c;

    font-size: 6px;

    letter-spacing: .4px;

}

.catalog-action {

    display: flex;

    align-items: center;

    justify-content: flex-end;

}

.catalog-action a {

    color: var(--black);

    font-size: 8px;

    font-weight: 950;

    letter-spacing: .6px;

}

.catalog-action a:hover {

    color: var(--blue-dark);

}


/* =========================================================
   SPEC GUIDE
========================================================= */

.spec-guide {

    padding: 110px 0;

    background: var(--black);

    color: white;

}

.spec-guide-head h2 {

    margin-top: 10px;

    max-width: 700px;

    font-size: clamp(42px, 6vw, 65px);

    line-height: .9;

    letter-spacing: -3px;

    font-weight: 950;

}

.spec-guide-head h2 span {

    color: var(--blue);

}

.spec-guide-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    margin-top: 60px;

    border-top: 1px solid var(--dark-line);

    border-left: 1px solid var(--dark-line);

}

.spec-guide-grid > div {

    min-height: 245px;

    padding: 25px;

    border-right: 1px solid var(--dark-line);

    border-bottom: 1px solid var(--dark-line);

}

.spec-guide-grid span {

    color: var(--blue);

    font-size: 8px;

    font-weight: 950;

}

.spec-guide-grid h3 {

    margin-top: 55px;

    color: white;

    font-size: 17px;

    font-weight: 900;

}

.spec-guide-grid p {

    margin-top: 8px;

    color: #747f8a;

    font-size: 10px;

    line-height: 1.75;

}


/* =========================================================
   CATALOG CTA
========================================================= */

.catalog-cta {

    padding: 0 0 110px;

    background: var(--black);

}

.catalog-cta-inner {

    padding: 75px 40px;

    background: #111820;

    border: 1px solid #242e38;

}

.catalog-cta-inner h2 {

    margin-top: 10px;

    color: white;

    font-size: clamp(42px, 6vw, 65px);

    line-height: .9;

    letter-spacing: -3px;

    font-weight: 950;

}

.catalog-cta-inner h2 span {

    color: var(--blue);

}

.catalog-cta-inner p {

    max-width: 500px;

    margin-top: 20px;

    color: #77828d;

    font-size: 11px;

    line-height: 1.8;

}

.catalog-cta-inner .btn {

    margin-top: 25px;

}


/* =========================================================
   ABOUT PAGE
========================================================= */

.about-story {

    padding: 110px 0;

    background: white;

}

.about-story-grid {

    display: grid;

    grid-template-columns: 220px 1fr;

    gap: 80px;

}

.about-index {

    color: var(--black);

    font-size: 100px;

    line-height: .8;

    font-weight: 950;

    letter-spacing: -7px;

}

.about-index span {

    display: block;

    margin-top: 25px;

    color: var(--blue-dark);

    font-size: 8px;

    line-height: 1;

    letter-spacing: 1.5px;

}

.about-copy {

    max-width: 760px;

}

.about-copy h2 {

    margin-top: 12px;

    font-size: clamp(38px, 5vw, 58px);

    line-height: .95;

    letter-spacing: -3px;

    font-weight: 950;

}

.about-copy h2 span {

    display: block;

    color: var(--blue-dark);

}

.about-copy p {

    max-width: 650px;

    margin-top: 25px;

    color: var(--muted);

    font-size: 12px;

    line-height: 2;

}

.about-copy p + p {

    margin-top: 14px;

}


/* VALUES */

.about-values {

    padding: 105px 0;

    background: #f5f7f9;

}

.about-values-heading h2 {

    margin-top: 10px;

    font-size: clamp(42px, 6vw, 65px);

    line-height: .9;

    letter-spacing: -3px;

    font-weight: 950;

}

.about-values-heading h2 span {

    color: var(--blue-dark);

}

.values-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    margin-top: 55px;

    border-top: 1px solid var(--line);

    border-left: 1px solid var(--line);

}

.values-grid article {

    min-height: 230px;

    padding: 25px;

    background: white;

    border-right: 1px solid var(--line);

    border-bottom: 1px solid var(--line);

}

.values-grid article > span {

    color: var(--blue-dark);

    font-size: 8px;

    font-weight: 950;

}

.values-grid h3 {

    margin-top: 55px;

    font-size: 17px;

    font-weight: 900;

}

.values-grid p {

    margin-top: 8px;

    color: var(--muted);

    font-size: 10px;

    line-height: 1.75;

}


/* STATEMENT */

.about-statement {

    padding: 0 0 110px;

    background: #f5f7f9;

}

.statement-box {

    padding: 85px 50px;

    background: var(--black);

    color: white;

}

.statement-box h2 {

    margin-top: 12px;

    font-size: clamp(42px, 6vw, 70px);

    line-height: .9;

    letter-spacing: -4px;

    font-weight: 950;

}

.statement-box p {

    max-width: 500px;

    margin-top: 22px;

    color: #78838e;

    font-size: 11px;

    line-height: 1.8;

}

.statement-box .btn {

    margin-top: 27px;

}


/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-section {

    padding: 110px 0;

    background: #f5f7f9;

}

.contact-layout {

    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 90px;

}

.contact-information h2 {

    margin-top: 10px;

    font-size: clamp(40px, 5vw, 58px);

    line-height: .95;

    letter-spacing: -3px;

    font-weight: 950;

}

.contact-information h2 span {

    display: block;

    color: var(--blue-dark);

}

.contact-information > p {

    max-width: 470px;

    margin-top: 22px;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.9;

}

.contact-data {

    margin-top: 45px;

    border-top: 1px solid var(--line);

}

.contact-data div {

    display: flex;

    flex-direction: column;

    gap: 5px;

    padding: 18px 0;

    border-bottom: 1px solid var(--line);

}

.contact-data span {

    color: var(--blue-dark);

    font-size: 7px;

    font-weight: 950;

    letter-spacing: 1.2px;

}

.contact-data strong {

    color: var(--black);

    font-size: 10px;

    font-weight: 850;

}


/* FORM */

.contact-form-box {

    padding: 35px;

    background: white;

    border: 1px solid var(--line);

}

.form-label {

    padding-bottom: 18px;

    border-bottom: 1px solid var(--line);

    color: var(--blue-dark);

    font-size: 7px;

    font-weight: 950;

    letter-spacing: 1.4px;

}

.contact-form-box form {

    margin-top: 25px;

}

.form-group {

    margin-bottom: 20px;

}

.form-group label {

    display: block;

    margin-bottom: 7px;

    color: var(--black);

    font-size: 8px;

    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: .5px;

}

.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    padding: 13px 14px;

    border: 1px solid #dce1e6;

    outline: none;

    background: #f8f9fa;

    color: var(--black);

    font-family: inherit;

    font-size: 10px;

    transition: border-color .2s ease;

}

.form-group textarea {

    resize: vertical;

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: var(--blue);

}

.contact-form-box button {

    border: 0;

    cursor: pointer;

}


/* CONTACT BOTTOM */

.contact-bottom {

    padding: 0 0 110px;

    background: #f5f7f9;

}

.contact-bottom-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--line);

    border-left: 1px solid var(--line);

}

.contact-bottom-grid > div {

    min-height: 210px;

    padding: 25px;

    background: white;

    border-right: 1px solid var(--line);

    border-bottom: 1px solid var(--line);

}

.contact-bottom-grid span {

    color: var(--blue-dark);

    font-size: 8px;

    font-weight: 950;

}

.contact-bottom-grid h3 {

    margin-top: 55px;

    font-size: 16px;

    font-weight: 900;

}

.contact-bottom-grid p {

    margin-top: 8px;

    color: var(--muted);

    font-size: 10px;

    line-height: 1.75;

}


/* =========================================================
   PART 2 RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .catalog-heading {

        flex-direction: column;

        align-items: flex-start;

    }

    .spec-guide-grid {

        grid-template-columns: 1fr 1fr;

    }

    .values-grid {

        grid-template-columns: 1fr 1fr;

    }

    .contact-layout {

        grid-template-columns: 1fr;

        gap: 55px;

    }

    .about-story-grid {

        grid-template-columns: 130px 1fr;

        gap: 40px;

    }

}


@media (max-width: 650px) {

    .page-hero,
    .about-hero,
    .contact-hero {

        padding: 80px 0 75px;

    }

    .page-hero h1,
    .about-hero h1,
    .contact-hero h1 {

        font-size: 46px;

        letter-spacing: -2.5px;

    }

    .catalog-item {

        grid-template-columns: 35px 1fr;

        gap: 12px;

    }

    .catalog-action {

        grid-column: 2;

        justify-content: flex-start;

        margin-top: 5px;

    }

    .catalog-content h3 {

        font-size: 20px;

    }

    .spec-guide-grid,
    .values-grid {

        grid-template-columns: 1fr;

    }

    .about-story-grid {

        grid-template-columns: 1fr;

        gap: 40px;

    }

    .about-index {

        font-size: 70px;

    }

    .statement-box {

        padding: 60px 25px;

    }

    .contact-form-box {

        padding: 22px;

    }

    .contact-bottom-grid {

        grid-template-columns: 1fr;

    }

}

/* =========================================================
   PART 3 — REVIEWS + FAQ
========================================================= */


/* =========================================================
   REVIEWS HERO
========================================================= */

.reviews-hero {

    padding: 110px 0;

    background: var(--black);

    color: white;

}

.reviews-hero-grid {

    display: grid;

    grid-template-columns: 1fr 180px;

    align-items: end;

    gap: 50px;

}

.reviews-hero h1 {

    max-width: 750px;

    margin-top: 14px;

    font-size:
        clamp(48px, 7vw, 82px);

    line-height: .88;

    letter-spacing: -4px;

    font-weight: 950;

}

.reviews-hero h1 span {

    display: block;

    color: var(--blue);

}

.reviews-hero p {

    max-width: 540px;

    margin-top: 25px;

    color: #7f8a95;

    font-size: 12px;

    line-height: 1.9;

}

.review-index {

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    padding-bottom: 8px;

}

.review-index strong {

    color: white;

    font-size: 90px;

    line-height: .8;

    letter-spacing: -6px;

    font-weight: 950;

}

.review-index span {

    margin-top: 15px;

    color: var(--blue);

    font-size: 7px;

    font-weight: 950;

    line-height: 1.6;

    letter-spacing: 1.2px;

    text-align: right;

}


/* =========================================================
   REVIEWS INTRO
========================================================= */

.reviews-intro {

    padding: 100px 0;

    background: white;

}

.reviews-intro-grid {

    display: grid;

    grid-template-columns: 220px 1fr;

    gap: 80px;

}

.review-intro-label {

    color: var(--blue-dark);

    font-size: 8px;

    font-weight: 950;

    letter-spacing: 1.4px;

}

.reviews-intro h2 {

    max-width: 700px;

    font-size: clamp(40px, 5vw, 60px);

    line-height: .92;

    letter-spacing: -3px;

    font-weight: 950;

}

.reviews-intro h2 span {

    display: block;

    color: var(--blue-dark);

}

.reviews-intro p {

    max-width: 650px;

    margin-top: 25px;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.9;

}


/* =========================================================
   REVIEWS LIST
========================================================= */

.reviews-list {

    padding: 105px 0;

    background: #f4f6f8;

}

.review-list-head h2 {

    margin-top: 10px;

    font-size: clamp(42px, 6vw, 65px);

    line-height: .9;

    letter-spacing: -3px;

    font-weight: 950;

}

.review-list-head h2 span {

    color: var(--blue-dark);

}

.review-cards {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 1px;

    margin-top: 55px;

    background: var(--line);

    border: 1px solid var(--line);

}

.review-card {

    min-height: 360px;

    padding: 30px;

    background: white;

    transition:
        transform .25s ease,
        box-shadow .25s ease;

}

.review-card:hover {

    position: relative;

    z-index: 2;

    transform: translateY(-4px);

    box-shadow:
        0 20px 45px rgba(10,15,20,.08);

}

.review-card-top {

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.review-number {

    color: #9aa4ad;

    font-size: 8px;

    font-weight: 950;

}

.review-category {

    color: var(--blue-dark);

    font-size: 7px;

    font-weight: 950;

    letter-spacing: 1.1px;

}

.review-quote {

    margin-top: 45px;

    color: var(--blue);

    font-size: 50px;

    line-height: .5;

    font-weight: 950;

}

.review-card blockquote {

    max-width: 530px;

    margin-top: 22px;

    color: var(--black);

    font-size: 16px;

    line-height: 1.6;

    font-weight: 750;

}

.review-author {

    display: flex;

    flex-direction: column;

    gap: 4px;

    margin-top: 35px;

    padding-top: 17px;

    border-top: 1px solid var(--line);

}

.review-author strong {

    color: var(--black);

    font-size: 9px;

    font-weight: 950;

}

.review-author span {

    color: #89939c;

    font-size: 7px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .8px;

}


/* =========================================================
   REVIEW PRINCIPLE
========================================================= */

.review-principle {

    padding: 0 0 110px;

    background: #f4f6f8;

}

.review-principle-inner {

    padding: 80px 45px;

    background: var(--black);

}

.review-principle-inner h2 {

    margin-top: 12px;

    color: white;

    font-size: clamp(42px, 6vw, 68px);

    line-height: .88;

    letter-spacing: -4px;

    font-weight: 950;

}

.review-principle-inner h2 span {

    color: var(--blue);

}

.review-principle-inner p {

    max-width: 560px;

    margin-top: 22px;

    color: #77838e;

    font-size: 11px;

    line-height: 1.9;

}

.review-principle-inner .btn {

    margin-top: 28px;

}


/* =========================================================
   FAQ HERO
========================================================= */

.faq-hero {

    position: relative;

    overflow: hidden;

    padding: 110px 0 100px;

    background: #e9edf1;

}

.faq-hero::after {

    content: "?";

    position: absolute;

    right: 5%;

    top: -80px;

    color: rgba(0,0,0,.035);

    font-size: 330px;

    line-height: 1;

    font-weight: 950;

}

.faq-hero h1 {

    position: relative;

    z-index: 2;

    margin-top: 14px;

    max-width: 750px;

    color: var(--black);

    font-size:
        clamp(50px, 7vw, 82px);

    line-height: .87;

    letter-spacing: -4px;

    font-weight: 950;

}

.faq-hero h1 span {

    display: block;

    color: var(--blue-dark);

}

.faq-hero p {

    position: relative;

    z-index: 2;

    max-width: 580px;

    margin-top: 25px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.9;

}


/* =========================================================
   FAQ CONTENT
========================================================= */

.faq-content {

    padding: 110px 0;

    background: white;

}

.faq-layout {

    display: grid;

    grid-template-columns: 290px 1fr;

    gap: 85px;

}

.faq-sidebar {

    position: sticky;

    top: 30px;

    align-self: start;

}

.faq-sidebar h2 {

    margin-top: 12px;

    color: var(--black);

    font-size: 42px;

    line-height: .92;

    letter-spacing: -2px;

    font-weight: 950;

}

.faq-sidebar h2 span {

    display: block;

    color: var(--blue-dark);

}

.faq-sidebar p {

    margin-top: 20px;

    color: var(--muted);

    font-size: 10px;

    line-height: 1.8;

}

.faq-code {

    margin-top: 40px;

    padding-top: 15px;

    border-top: 1px solid var(--line);

    color: #9ba4ac;

    font-size: 7px;

    font-weight: 950;

    letter-spacing: 1.3px;

}


/* =========================================================
   FAQ DETAILS
========================================================= */

.faq-list {

    border-top: 1px solid var(--line);

}

.faq-list details {

    border-bottom: 1px solid var(--line);

}

.faq-list summary {

    display: grid;

    grid-template-columns: 45px 1fr 30px;

    align-items: center;

    gap: 15px;

    padding: 25px 0;

    cursor: pointer;

    list-style: none;

}

.faq-list summary::-webkit-details-marker {

    display: none;

}

.faq-list summary span {

    color: var(--blue-dark);

    font-size: 8px;

    font-weight: 950;

}

.faq-list summary strong {

    color: var(--black);

    font-size: 13px;

    line-height: 1.5;

    font-weight: 900;

}

.faq-list summary i {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 25px;

    height: 25px;

    border: 1px solid var(--line);

    color: var(--black);

    font-size: 14px;

    font-style: normal;

    transition: transform .2s ease;

}

.faq-list details[open] summary i {

    transform: rotate(45deg);

    background: var(--blue);

    color: white;

    border-color: var(--blue);

}

.faq-answer {

    padding:

        0 45px 30px 60px;

}

.faq-answer p {

    max-width: 650px;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.9;

}

.faq-answer p + p {

    margin-top: 12px;

}


/* =========================================================
   FAQ CTA
========================================================= */

.faq-cta {

    padding: 0 0 110px;

    background: white;

}

.faq-cta-box {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding: 65px 45px;

    background: var(--black);

}

.faq-cta-box h2 {

    margin-top: 10px;

    color: white;

    font-size: clamp(40px, 5vw, 58px);

    line-height: .9;

    letter-spacing: -3px;

    font-weight: 950;

}

.faq-cta-box h2 span {

    color: var(--blue);

}

.faq-cta-box .btn {

    flex-shrink: 0;

}


/* =========================================================
   PART 3 RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .reviews-hero-grid {

        grid-template-columns: 1fr;

    }

    .review-index {

        align-items: flex-start;

    }

    .review-index span {

        text-align: left;

    }

    .reviews-intro-grid {

        grid-template-columns: 140px 1fr;

        gap: 40px;

    }

    .faq-layout {

        grid-template-columns: 1fr;

        gap: 55px;

    }

    .faq-sidebar {

        position: static;

    }

}


@media (max-width: 650px) {

    .reviews-hero {

        padding: 80px 0;

    }

    .reviews-hero h1,
    .faq-hero h1 {

        font-size: 48px;

        letter-spacing: -2.5px;

    }

    .review-index strong {

        font-size: 65px;

    }

    .reviews-intro {

        padding: 75px 0;

    }

    .reviews-intro-grid {

        grid-template-columns: 1fr;

        gap: 25px;

    }

    .review-cards {

        grid-template-columns: 1fr;

    }

    .review-card {

        min-height: 330px;

    }

    .review-principle-inner {

        padding: 60px 25px;

    }

    .faq-hero {

        padding: 80px 0;

    }

    .faq-content {

        padding: 75px 0;

    }

    .faq-list summary {

        grid-template-columns: 32px 1fr 25px;

        gap: 8px;

    }

    .faq-list summary strong {

        font-size: 11px;

    }

    .faq-answer {

        padding:

            0 25px 25px 40px;

    }

    .faq-cta-box {

        flex-direction: column;

        align-items: flex-start;

        padding: 55px 25px;

    }

}

