/* =====================================================
   GLOBAL
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;

    background: #0A0A0A;
    color: #ffffff;

    line-height: 1.6;

    overflow-x: hidden;
}

/* =====================================================
   CONTAINER
===================================================== */

.container {
    width: 100%;
    max-width: 1280px;

    margin: 0 auto;
    padding: 0 24px;
}

/* =====================================================
   SECTION
===================================================== */

section {
    position: relative;
    padding: 110px 0;
}

/* =====================================================
   TYPOGRAPHY
===================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

p {
    color: #b8b8b8;
}

a {
    text-decoration: none;
    color: inherit;
}

/* =====================================================
   BUTTONS
===================================================== */

button {
    border: none;
    outline: none;

    cursor: pointer;

    font-family: inherit;
    font-size: 15px;
    font-weight: 600;

    color: #fff;

    padding: 16px 30px;

    border-radius: 16px;

    background: linear-gradient(
        135deg,
        #FF6B00,
        #ff8c2a
    );

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        opacity 0.25s ease;

    box-shadow:
        0 15px 40px rgba(255,107,0,0.35),
        0 0 20px rgba(255,107,0,0.15);
}

button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 25px 60px rgba(255,107,0,0.45),
        0 0 30px rgba(255,107,0,0.25);
}

button:active {
    transform: scale(0.98);
}

/* =====================================================
   INPUTS
===================================================== */

input {
    width: 100%;

    border: none;
    outline: none;

    font-family: inherit;
    font-size: 15px;

    color: #fff;

    padding: 16px 18px;

    border-radius: 14px;

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.06);

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

input::placeholder {
    color: #8d8d8d;
}

input:focus {
    border-color: rgba(255,107,0,0.5);

    background: rgba(255,255,255,0.06);

    box-shadow:
        0 0 0 1px rgba(255,107,0,0.35),
        0 0 20px rgba(255,107,0,0.12);
}

/* =====================================================
   IMAGE
===================================================== */

img {
    max-width: 100%;
    display: block;
}

/* =====================================================
   SCROLLBAR
===================================================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0A0A0A;
}

::-webkit-scrollbar-thumb {
    background: rgba(255,107,0,0.5);
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255,107,0,0.8);
}

/* =====================================================
   SELECTION
===================================================== */

::selection {
    background: rgba(255,107,0,0.3);
    color: #fff;
}

/* =====================================================
   HEADER
===================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 90px;

    display: flex;
    align-items: center;

    z-index: 1000;

    background: rgba(10,10,10,0.72);

    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255,255,255,0.04);
}


/* =====================================================
   HEADER INNER
===================================================== */

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
}

/* =====================================================
   LOGO
===================================================== */

.logo {
    font-size: 30px;
    font-weight: 900;

    color: #FF6B00;

    letter-spacing: -1px;

    white-space: nowrap;
}

/* =====================================================
   NAVIGATION
===================================================== */

.nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav a {
    position: relative;

    font-size: 14px;
    font-weight: 500;

    color: #d7d7d7;

    transition:
        color 0.25s ease,
        opacity 0.25s ease;
}

.nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0%;
    height: 2px;

    border-radius: 20px;

    background: #FF6B00;

    transition: width 0.25s ease;
}

.nav a:hover {
    color: #fff;
}

.nav a:hover::after {
    width: 100%;
}

/* =====================================================
   CONTACT
===================================================== */

.header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* PHONE */

.phone {
    font-size: 20px;
    font-weight: 800;

    color: #FF6B00;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.phone:hover {
    opacity: 0.85;
}

/* =====================================================
   CALL BUTTON
===================================================== */

.call-btn {
    margin-top: 6px;

    padding: 10px 18px;

    border-radius: 12px;

    font-size: 13px;
    font-weight: 600;

    box-shadow:
        0 10px 30px rgba(255,107,0,0.25),
        0 0 15px rgba(255,107,0,0.1);
}

.call-btn:hover {
    transform: translateY(-2px);
}

/* =====================================================
   HEADER MOBILE
===================================================== */

@media (max-width: 992px) {

    .header {
        height: 80px;
    }

    .nav {
        display: none;
    }

    .logo {
        font-size: 24px;
    }

    .phone {
        font-size: 16px;
    }

    .call-btn {
        padding: 8px 14px;
        font-size: 12px;
    }

}

@media (max-width: 576px) {

    .header {
        height: 74px;
    }

    .container {
        padding: 0 18px;
    }

    .logo {
        font-size: 22px;
    }

    .phone {
        font-size: 14px;
    }

    .call-btn {
        margin-top: 4px;

        padding: 7px 12px;

        border-radius: 10px;
    }

}


/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;

    width: 100%;
    height: 100vh;
    min-height: 860px;

    overflow: hidden;
}

/* =====================================================
   HERO IMAGE
===================================================== */

.hero-img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;

    transform: scale(1.02);
}

/* =====================================================
   HERO OVERLAY
===================================================== */

.hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.92) 15%,
            rgba(0,0,0,0.7) 50%,
            rgba(0,0,0,0.28) 100%
        );
}

/* =====================================================
   HERO INNER
===================================================== */

.hero-inner {
    position: relative;
    z-index: 2;

    height: 100%;

    display: grid;
    grid-template-columns: 1fr 430px;

    align-items: center;
    gap: 50px;

    max-width: 1280px;

    margin: 0 auto;

    padding:
        120px
        24px
        40px;
}

/* =====================================================
   HERO LEFT
===================================================== */

.hero-left {
    max-width: 760px;
}

/* TITLE */

.hero h1 {
    font-size: 62px;
    line-height: 1.08;

    margin-bottom: 26px;
}

/* SUBTITLE */

.hero-sub {
    max-width: 640px;

    font-size: 18px;
    line-height: 1.7;

    margin-bottom: 28px;

    color: #c5c5c5;
}

/* =====================================================
   TRUST
===================================================== */

.hero-trust {
    display: inline-flex;
    align-items: center;

    padding: 14px 22px;
    margin-bottom: 34px;

    border-radius: 50px;

    background: rgba(255,107,0,0.08);

    border: 1px solid rgba(255,107,0,0.2);

    color: #FF6B00;

    font-size: 15px;
    font-weight: 700;

    backdrop-filter: blur(10px);
}

/* =====================================================
   BENEFITS
===================================================== */

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 14px 18px;

    border-radius: 16px;

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.05);

    backdrop-filter: blur(12px);

    color: #e5e5e5;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);

    border-color: rgba(255,107,0,0.3);

    background: rgba(255,255,255,0.06);
}

/* ICON */

.benefit-item .icon {
    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #FF6B00;

    box-shadow:
        0 0 12px rgba(255,107,0,0.8);
}

/* =====================================================
   HERO RIGHT
===================================================== */

.hero-right {
    display: flex;
    justify-content: flex-end;
}

/* =====================================================
   HERO MOBILE
===================================================== */

@media (max-width: 1200px) {

    .hero h1 {
        font-size: 54px;
    }

}

@media (max-width: 992px) {

    .hero {
        min-height: auto;
        height: auto;
    }

    .hero-inner {
        grid-template-columns: 1fr;

        gap: 40px;

        padding-top: 140px;
        padding-bottom: 80px;
    }

    .hero-right {
        justify-content: flex-start;
    }

    .hero h1 {
        font-size: 46px;
    }

}

@media (max-width: 768px) {

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(0,0,0,0.88) 0%,
                rgba(0,0,0,0.72) 50%,
                rgba(0,0,0,0.4) 100%
            );
    }

    .hero-inner {
        padding-top: 120px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-sub {
        font-size: 16px;
    }

    .hero-benefits {
        flex-direction: column;
        align-items: flex-start;
    }

    .benefit-item {
        width: 100%;
    }

}

@media (max-width: 576px) {

    .hero {
        min-height: 100vh;
    }

    .hero-inner {
        padding:
            110px
            18px
            60px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-sub {
        font-size: 15px;
        line-height: 1.6;
    }

    .hero-trust {
        width: 100%;

        justify-content: center;

        text-align: center;

        font-size: 14px;
    }

}


/* =====================================================
   HERO FORM
===================================================== */

.hero-form {
    width: 100%;
    max-width: 430px;

    padding: 42px;

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.05),
            rgba(255,255,255,0.02)
        );

    backdrop-filter: blur(22px);

    border: 1px solid rgba(255,255,255,0.06);

    box-shadow:
        0 30px 80px rgba(0,0,0,0.75),
        0 0 40px rgba(255,107,0,0.08);
}

/* =====================================================
   FORM TITLE
===================================================== */

.hero-form h3 {
    font-size: 30px;
    line-height: 1.2;

    margin-bottom: 14px;
}

/* =====================================================
   FORM TEXT
===================================================== */

.hero-form p {
    font-size: 15px;
    line-height: 1.6;

    color: #a9a9a9;

    margin-bottom: 26px;
}

/* =====================================================
   FORM INPUTS
===================================================== */

.hero-form input {
    margin-bottom: 14px;
}

/* =====================================================
   FORM BUTTON
===================================================== */

.hero-form button {
    width: 100%;

    margin-top: 8px;

    padding: 18px;

    font-size: 16px;
    font-weight: 700;
}

/* =====================================================
   FORM NOTE
===================================================== */

.form-note {
    margin-top: 14px;

    text-align: center;

    font-size: 12px;
    line-height: 1.5;

    color: rgba(255,255,255,0.42);
}

/* =====================================================
   FORM TRUST
===================================================== */

.hero-form .hero-trust {
    width: 100%;

    justify-content: center;

    text-align: center;

    margin:
        22px
        0
        0;

    padding: 12px 18px;

    font-size: 13px;

    border-radius: 14px;

    background: rgba(255,107,0,0.08);

    border: 1px solid rgba(255,107,0,0.18);
}

/* =====================================================
   HERO FORM MOBILE
===================================================== */

@media (max-width: 992px) {

    .hero-form {
        max-width: 100%;
    }

}

@media (max-width: 768px) {

    .hero-form {
        padding: 34px 28px;
        border-radius: 24px;
    }

    .hero-form h3 {
        font-size: 26px;
    }

}

@media (max-width: 576px) {

    .hero-form {
        padding: 28px 22px;

        border-radius: 22px;
    }

    .hero-form h3 {
        font-size: 24px;
    }

    .hero-form p {
        font-size: 14px;
    }

    .hero-form button {
        padding: 16px;
    }

}


/* =====================================================
   ADVANTAGES
===================================================== */

.advantages {
    background:
        linear-gradient(
            180deg,
            #0a0a0a 0%,
            #0f0f0f 100%
        );
}

/* =====================================================
   HEADER
===================================================== */

.adv-title {
    max-width: 900px;

    margin:
        0 auto
        18px;

    text-align: center;

    font-size: 48px;
    line-height: 1.15;
}

.adv-sub {
    max-width: 760px;

    margin:
        0 auto
        70px;

    text-align: center;

    font-size: 18px;
    line-height: 1.7;

    color: #a9a9a9;
}

/* =====================================================
   GRID
===================================================== */

.adv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 24px;
}

/* =====================================================
   CARD
===================================================== */

.adv-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;

    padding: 28px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.04),
            rgba(255,255,255,0.015)
        );

    border: 1px solid rgba(255,255,255,0.05);

    backdrop-filter: blur(12px);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.adv-item:hover {
    transform: translateY(-6px);

    border-color: rgba(255,107,0,0.28);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.06),
            rgba(255,255,255,0.025)
        );

    box-shadow:
        0 25px 60px rgba(0,0,0,0.55),
        0 0 24px rgba(255,107,0,0.08);
}

/* =====================================================
   ICON
===================================================== */

.adv-icon {
    width: 56px;
    height: 56px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: rgba(255,107,0,0.1);

    border: 1px solid rgba(255,107,0,0.18);

    font-size: 24px;
}

/* =====================================================
   TEXT
===================================================== */

.adv-item h4 {
    font-size: 22px;
    line-height: 1.3;

    margin-bottom: 10px;
}

.adv-item p {
    font-size: 15px;
    line-height: 1.7;

    color: #ababab;
}

/* =====================================================
   CTA
===================================================== */

.adv-cta {
    margin-top: 70px;

    text-align: center;
}

.adv-cta p {
    margin-bottom: 20px;

    font-size: 17px;
    font-weight: 600;

    color: #FF6B00;
}

.adv-cta button {
    min-width: 260px;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 992px) {

    .adv-title {
        font-size: 40px;
    }

    .adv-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {

    .advantages {
        padding: 90px 0;
    }

    .adv-title {
        font-size: 34px;
    }

    .adv-sub {
        margin-bottom: 50px;

        font-size: 16px;
    }

    .adv-item {
        padding: 24px;
    }

    .adv-item h4 {
        font-size: 20px;
    }

}

@media (max-width: 576px) {

    .adv-title {
        font-size: 30px;
    }

    .adv-item {
        flex-direction: column;
    }

    .adv-icon {
        width: 52px;
        height: 52px;

        border-radius: 16px;
    }

    .adv-item h4 {
        font-size: 18px;
    }

    .adv-item p {
        font-size: 14px;
    }

    .adv-cta button {
        width: 100%;
    }

}


/* =====================================================
   CASES
===================================================== */

.cases {
    background:
        linear-gradient(
            180deg,
            #0f0f0f 0%,
            #0a0a0a 100%
        );

    overflow: hidden;
}

/* =====================================================
   CASES HEADER
===================================================== */

.cases-head {
    max-width: 920px;

    margin:
        0 auto
        70px;

    text-align: center;
}

.cases-label {
    display: inline-flex;
    align-items: center;

    padding: 12px 18px;
    margin-bottom: 24px;

    border-radius: 50px;

    background: rgba(255,107,0,0.08);

    border: 1px solid rgba(255,107,0,0.18);

    color: #FF6B00;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;
}

.cases-title {
    font-size: 52px;
    line-height: 1.1;

    margin-bottom: 20px;
}

.cases-sub {
    max-width: 760px;

    margin: 0 auto;

    font-size: 18px;
    line-height: 1.7;

    color: #ababab;
}

/* =====================================================
   CASE SLIDE
===================================================== */

.case-slide {
    position: relative;
}

/* =====================================================
   HERO
===================================================== */

.case-hero {
    position: relative;

    height: 680px;

    overflow: hidden;

    border-radius: 32px;

    margin-bottom: 34px;

    box-shadow:
        0 40px 100px rgba(0,0,0,0.7);
}

.case-hero-img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 1s ease;
}

.case-hero:hover .case-hero-img {
    transform: scale(1.04);
}

/* =====================================================
   HERO OVERLAY
===================================================== */

.case-hero-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: flex-end;

    padding: 50px;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.08),
            rgba(0,0,0,0.82)
        );
}

.case-hero-content {
    max-width: 760px;
}

/* =====================================================
   BADGE
===================================================== */

.case-badge {
    display: inline-flex;
    align-items: center;

    padding: 10px 16px;

    margin-bottom: 24px;

    border-radius: 50px;

    background: rgba(255,255,255,0.08);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,0.08);

    font-size: 13px;
    font-weight: 700;

    color: #fff;
}

/* =====================================================
   TITLE
===================================================== */

.case-hero-content h3 {
    font-size: 52px;
    line-height: 1.1;

    margin-bottom: 30px;
}

/* =====================================================
   HERO INFO
===================================================== */

.case-hero-info {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.hero-info-item {
    min-width: 170px;

    padding: 18px 20px;

    border-radius: 20px;

    background: rgba(255,255,255,0.06);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,0.05);
}

.hero-info-item span {
    display: block;

    margin-bottom: 6px;

    color: #aaa;

    font-size: 13px;
}

.hero-info-item strong {
    font-size: 20px;
    color: #fff;
}

/* =====================================================
   CONTENT
===================================================== */

.case-content {
    display: grid;
    grid-template-columns: 1fr auto;

    gap: 30px;

    align-items: center;

    padding: 40px;

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.04),
            rgba(255,255,255,0.015)
        );

    border: 1px solid rgba(255,255,255,0.05);

    box-shadow:
        0 25px 70px rgba(0,0,0,0.45);
}

/* =====================================================
   DESCRIPTION
===================================================== */

.case-description h4 {
    font-size: 28px;

    margin-bottom: 16px;
}

.case-description p {
    max-width: 720px;

    font-size: 16px;
    line-height: 1.8;

    color: #ababab;
}

/* =====================================================
   FEATURES
===================================================== */

.case-features {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 24px;
}

.case-feature {
    padding: 12px 16px;

    border-radius: 14px;

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.05);

    color: #e4e4e4;

    font-size: 14px;
}

/* =====================================================
   ACTIONS
===================================================== */

.case-actions {
    display: flex;
    justify-content: flex-end;
}

.case-more-btn {
    min-width: 240px;
}

/* =====================================================
   NOTE
===================================================== */

.cases-note {
    margin-top: 42px;

    text-align: center;

    color: #FF6B00;

    font-size: 15px;
}

/* =====================================================
   POPUP
===================================================== */

.case-popup {
    position: fixed;
    inset: 0;

    display: none;
    align-items: center;
    justify-content: center;

    z-index: 3000;

    padding: 30px;
}

.case-popup.active {
    display: flex;
}

/* =====================================================
   OVERLAY
===================================================== */

.case-popup-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,0.82);

    backdrop-filter: blur(14px);
}

/* =====================================================
   POPUP BOX
===================================================== */

.case-popup-box {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1320px;

    max-height: 92vh;

    overflow-y: auto;

    padding: 50px;

    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            #111111,
            #0c0c0c
        );

    border: 1px solid rgba(255,255,255,0.06);

    box-shadow:
        0 40px 120px rgba(0,0,0,0.9);
}

/* =====================================================
   CLOSE
===================================================== */

.case-popup-close {
    position: absolute;

    top: 24px;
    right: 24px;

    width: 48px;
    height: 48px;

    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    font-size: 18px;

    background: rgba(255,255,255,0.06);

    box-shadow: none;
}

.case-popup-close:hover {
    transform: none;

    background: rgba(255,255,255,0.12);
}

/* =====================================================
   POPUP TOP
===================================================== */

.case-popup-top {
    max-width: 760px;

    margin-bottom: 40px;
}

.case-popup-label {
    display: inline-flex;

    padding: 10px 16px;

    margin-bottom: 22px;

    border-radius: 50px;

    background: rgba(255,107,0,0.08);

    border: 1px solid rgba(255,107,0,0.2);

    color: #FF6B00;

    font-size: 13px;
    font-weight: 700;
}

.case-popup-top h3 {
    font-size: 42px;

    margin-bottom: 18px;
}

.case-popup-top p {
    font-size: 16px;
    line-height: 1.8;
}

/* =====================================================
   POPUP INFO
===================================================== */

.case-popup-info {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;

    margin-bottom: 50px;
}

.popup-info-item {
    min-width: 220px;

    padding: 20px;

    border-radius: 20px;

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.05);
}

.popup-info-item span {
    display: block;

    margin-bottom: 8px;

    color: #999;

    font-size: 13px;
}

.popup-info-item strong {
    font-size: 20px;
}

/* =====================================================
   BEFORE / AFTER
===================================================== */

.before-after-grid {
    display: grid;
    grid-template-columns: 1fr;

    gap: 28px;
}

.before-after-item {
    padding: 24px;

    border-radius: 26px;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.05);
}

/* =====================================================
   HEAD
===================================================== */

.before-after-head {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 18px;

    margin-bottom: 18px;
}

.before-label,
.after-label {
    padding: 12px;

    border-radius: 14px;

    text-align: center;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;
}

.before-label {
    background: rgba(255,255,255,0.06);
    color: #cfcfcf;
}

.after-label {
    background: rgba(255,107,0,0.14);
    color: #FF6B00;
}

/* =====================================================
   IMAGES
===================================================== */

.before-after-images {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.before-img,
.after-img {
    width: 100%;
    height: 340px;

    object-fit: cover;

    border-radius: 20px;

    background: #111;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 992px) {

    .cases-title {
        font-size: 42px;
    }

    .case-hero {
        height: 560px;
    }

    .case-hero-content h3 {
        font-size: 42px;
    }

    .case-content {
        grid-template-columns: 1fr;
    }

    .case-actions {
        justify-content: flex-start;
    }

}

@media (max-width: 768px) {

    .cases {
        padding: 90px 0;
    }

    .cases-title {
        font-size: 34px;
    }

    .cases-sub {
        font-size: 16px;
    }

    .case-hero {
        height: 440px;

        border-radius: 24px;
    }

    .case-hero-overlay {
        padding: 26px;
    }

    .case-hero-content h3 {
        font-size: 30px;
    }

    .case-hero-info {
        flex-direction: column;
    }

    .hero-info-item {
        width: 100%;
    }

    .case-content {
        padding: 28px;
    }

    .case-description h4 {
        font-size: 24px;
    }

    .case-popup {
        padding: 14px;
    }

    .case-popup-box {
        padding: 28px 20px;
    }

    .case-popup-top h3 {
        font-size: 30px;
    }

    .before-after-images {
        grid-template-columns: 1fr;
    }

    .before-img,
    .after-img {
        height: 240px;
    }

}

@media (max-width: 576px) {

    .cases-title {
        font-size: 30px;
    }

    .case-hero {
        height: 380px;
    }

    .case-badge {
        font-size: 11px;
    }

    .case-hero-content h3 {
        font-size: 26px;
    }

    .case-content {
        padding: 22px;
    }

    .case-more-btn {
        width: 100%;
    }

}


/* =====================================================
   QUIZ
===================================================== */

.quiz-main {
    background:
        radial-gradient(
            circle at top,
            #141414 0%,
            #0a0a0a 70%
        );

    text-align: center;
}

/* =====================================================
   TITLE
===================================================== */

.quiz-main h2 {
    max-width: 860px;

    margin:
        0 auto
        50px;

    font-size: 48px;
    line-height: 1.15;
}

/* =====================================================
   PROGRESS
===================================================== */

.quiz-progress {
    width: 100%;
    max-width: 620px;

    height: 8px;

    margin:
        0 auto
        34px;

    border-radius: 50px;

    background: rgba(255,255,255,0.05);

    overflow: hidden;
}

.quiz-progress-bar {
    width: 0%;
    height: 100%;

    border-radius: 50px;

    background:
        linear-gradient(
            90deg,
            #FF6B00,
            #ff8c2a
        );

    transition: width 0.35s ease;
}

/* =====================================================
   BOX
===================================================== */

.quiz-box {
    width: 100%;
    max-width: 680px;

    margin: 0 auto;

    padding: 50px;

    border-radius: 32px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.04),
            rgba(255,255,255,0.015)
        );

    border: 1px solid rgba(255,255,255,0.05);

    backdrop-filter: blur(18px);

    box-shadow:
        0 30px 80px rgba(0,0,0,0.7),
        0 0 40px rgba(255,107,0,0.05);
}

/* =====================================================
   STEPS
===================================================== */

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;

    animation: quizFade 0.35s ease;
}

@keyframes quizFade {

    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* =====================================================
   STEP TITLE
===================================================== */

.quiz-step h3 {
    font-size: 30px;

    margin-bottom: 30px;
}

/* =====================================================
   OPTIONS
===================================================== */

.quiz-options {
    display: flex;
    flex-direction: column;

    gap: 16px;
}

/* =====================================================
   CARD
===================================================== */

.quiz-card {
    position: relative;

    padding: 22px;

    border-radius: 18px;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.06);

    color: #fff;

    font-size: 16px;
    font-weight: 500;

    cursor: pointer;

    overflow: hidden;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.quiz-card:hover {
    transform: translateY(-4px);

    background: rgba(255,107,0,0.08);

    border-color: rgba(255,107,0,0.35);

    box-shadow:
        0 15px 40px rgba(255,107,0,0.12);
}

/* =====================================================
   ACTIVE
===================================================== */

.quiz-card.selected {
    background:
        linear-gradient(
            135deg,
            #FF6B00,
            #ff8c2a
        );

    border-color: transparent;

    box-shadow:
        0 18px 45px rgba(255,107,0,0.35);
}

/* =====================================================
   INPUTS
===================================================== */

.quiz-step input {
    margin-bottom: 16px;
}

/* =====================================================
   BUTTON
===================================================== */

.quiz-step button {
    width: 100%;

    margin-top: 10px;

    padding: 18px;

    font-size: 16px;
    font-weight: 700;
}

/* =====================================================
   BACK
===================================================== */

.quiz-back {
    margin-top: 18px;

    font-size: 14px;
    font-weight: 500;

    color: #9c9c9c;

    cursor: pointer;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.quiz-back:hover {
    color: #FF6B00;
}

/* =====================================================
   FINAL
===================================================== */

.quiz-final p {
    margin-bottom: 26px;

    font-size: 15px;
    line-height: 1.6;

    color: #a9a9a9;
}

.quiz-final-note {
    margin-top: 18px;

    color: #FF6B00;

    font-size: 14px;
    font-weight: 600;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .quiz-main {
        padding: 90px 0;
    }

    .quiz-main h2 {
        font-size: 34px;
    }

    .quiz-box {
        padding: 34px 24px;

        border-radius: 26px;
    }

    .quiz-step h3 {
        font-size: 26px;
    }

}

@media (max-width: 576px) {

    .quiz-main h2 {
        font-size: 30px;
    }

    .quiz-box {
        padding: 28px 18px;

        border-radius: 22px;
    }

    .quiz-card {
        padding: 18px;
        font-size: 15px;
    }

    .quiz-step h3 {
        font-size: 24px;
    }

}


/* =====================================================
   PROCESS
===================================================== */

.process {
    background:
        linear-gradient(
            180deg,
            #0f0f0f 0%,
            #0a0a0a 100%
        );
}

/* =====================================================
   HEADER
===================================================== */

.process-head {
    max-width: 860px;

    margin:
        0 auto
        70px;

    text-align: center;
}

.process-label {
    display: inline-flex;
    align-items: center;

    padding: 12px 18px;

    margin-bottom: 24px;

    border-radius: 50px;

    background: rgba(255,107,0,0.08);

    border: 1px solid rgba(255,107,0,0.18);

    color: #FF6B00;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;
}

.process-title {
    font-size: 48px;
    line-height: 1.1;

    margin-bottom: 20px;
}

.process-sub {
    font-size: 18px;
    line-height: 1.7;

    color: #ababab;
}

/* =====================================================
   GRID
===================================================== */

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 24px;
}

/* =====================================================
   ITEM
===================================================== */

.process-item {
    position: relative;

    padding: 34px 28px;

    border-radius: 26px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.04),
            rgba(255,255,255,0.015)
        );

    border: 1px solid rgba(255,255,255,0.05);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.process-item:hover {
    transform: translateY(-6px);

    border-color: rgba(255,107,0,0.25);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.05),
            rgba(255,255,255,0.02)
        );

    box-shadow:
        0 25px 60px rgba(0,0,0,0.5),
        0 0 24px rgba(255,107,0,0.08);
}

/* =====================================================
   NUMBER
===================================================== */

.process-num {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #FF6B00,
            #ff8c2a
        );

    color: #fff;

    font-size: 18px;
    font-weight: 800;

    box-shadow:
        0 15px 35px rgba(255,107,0,0.3);
}

/* =====================================================
   TEXT
===================================================== */

.process-item h4 {
    font-size: 24px;
    line-height: 1.3;

    margin-bottom: 14px;
}

.process-item p {
    font-size: 15px;
    line-height: 1.7;

    color: #ababab;
}

/* =====================================================
   NOTE
===================================================== */

.process-note {
    margin-top: 50px;

    text-align: center;

    color: #FF6B00;

    font-size: 16px;
    font-weight: 600;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 992px) {

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-title {
        font-size: 42px;
    }

}

@media (max-width: 768px) {

    .process {
        padding: 90px 0;
    }

    .process-head {
        margin-bottom: 50px;
    }

    .process-title {
        font-size: 34px;
    }

    .process-sub {
        font-size: 16px;
    }

    .process-item {
        padding: 28px 24px;
    }

    .process-item h4 {
        font-size: 22px;
    }

}

@media (max-width: 576px) {

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-title {
        font-size: 30px;
    }

    .process-item h4 {
        font-size: 20px;
    }

    .process-item p {
        font-size: 14px;
    }

}


/* =====================================================
   REVIEWS
===================================================== */

.reviews {
    background:
        linear-gradient(
            180deg,
            #0a0a0a 0%,
            #0f0f0f 100%
        );
}

/* =====================================================
   HEADER
===================================================== */

.reviews-head {
    max-width: 860px;

    margin:
        0 auto
        70px;

    text-align: center;
}

.reviews-label {
    display: inline-flex;
    align-items: center;

    padding: 12px 18px;

    margin-bottom: 24px;

    border-radius: 50px;

    background: rgba(255,107,0,0.08);

    border: 1px solid rgba(255,107,0,0.18);

    color: #FF6B00;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;
}

.reviews-title {
    font-size: 48px;
    line-height: 1.1;

    margin-bottom: 20px;
}

.reviews-sub {
    font-size: 18px;
    line-height: 1.7;

    color: #ababab;
}

/* =====================================================
   GRID
===================================================== */

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

/* =====================================================
   CARD
===================================================== */

.review-card {
    padding: 30px;

    border-radius: 26px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.04),
            rgba(255,255,255,0.015)
        );

    border: 1px solid rgba(255,255,255,0.05);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-6px);

    border-color: rgba(255,107,0,0.24);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.05),
            rgba(255,255,255,0.02)
        );

    box-shadow:
        0 25px 60px rgba(0,0,0,0.5),
        0 0 24px rgba(255,107,0,0.08);
}

/* =====================================================
   TOP
===================================================== */

.review-top {
    display: flex;
    align-items: center;

    gap: 16px;

    margin-bottom: 22px;
}

/* =====================================================
   AVATAR
===================================================== */

.review-avatar {
    width: 58px;
    height: 58px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #FF6B00,
            #ff8c2a
        );

    color: #fff;

    font-size: 20px;
    font-weight: 800;

    box-shadow:
        0 15px 35px rgba(255,107,0,0.25);
}

/* =====================================================
   INFO
===================================================== */

.review-info h4 {
    font-size: 22px;

    margin-bottom: 4px;
}

.review-info span {
    font-size: 14px;

    color: #9d9d9d;
}

/* =====================================================
   HIGHLIGHT
===================================================== */

.review-highlight {
    display: inline-flex;

    padding: 10px 14px;

    margin-bottom: 18px;

    border-radius: 14px;

    background: rgba(255,107,0,0.08);

    border: 1px solid rgba(255,107,0,0.16);

    color: #FF6B00;

    font-size: 13px;
    font-weight: 700;
}

/* =====================================================
   TEXT
===================================================== */

.review-card p {
    font-size: 15px;
    line-height: 1.8;

    color: #c4c4c4;
}

/* =====================================================
   NOTE
===================================================== */

.reviews-note {
    margin-top: 50px;

    text-align: center;

    color: #FF6B00;

    font-size: 15px;
    font-weight: 600;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 992px) {

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .reviews-title {
        font-size: 42px;
    }

}

@media (max-width: 768px) {

    .reviews {
        padding: 90px 0;
    }

    .reviews-head {
        margin-bottom: 50px;
    }

    .reviews-title {
        font-size: 34px;
    }

    .reviews-sub {
        font-size: 16px;
    }

    .review-card {
        padding: 26px 22px;
    }

}

@media (max-width: 576px) {

    .reviews-title {
        font-size: 30px;
    }

    .review-avatar {
        width: 52px;
        height: 52px;

        border-radius: 16px;

        font-size: 18px;
    }

    .review-info h4 {
        font-size: 20px;
    }

    .review-card p {
        font-size: 14px;
    }

}


/* =====================================================
   FAQ
===================================================== */

.faq {
    background:
        linear-gradient(
            180deg,
            #0f0f0f 0%,
            #0a0a0a 100%
        );
}

/* =====================================================
   HEADER
===================================================== */

.faq-head {
    max-width: 860px;

    margin:
        0 auto
        70px;

    text-align: center;
}

.faq-label {
    display: inline-flex;
    align-items: center;

    padding: 12px 18px;

    margin-bottom: 24px;

    border-radius: 50px;

    background: rgba(255,107,0,0.08);

    border: 1px solid rgba(255,107,0,0.18);

    color: #FF6B00;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;
}

.faq-title {
    font-size: 48px;
    line-height: 1.1;

    margin-bottom: 20px;
}

.faq-sub {
    font-size: 18px;
    line-height: 1.7;

    color: #ababab;
}

/* =====================================================
   LIST
===================================================== */

.faq-list {
    display: flex;
    flex-direction: column;

    gap: 20px;

    max-width: 980px;

    margin: 0 auto;
}

/* =====================================================
   ITEM
===================================================== */

.faq-item {
    padding: 30px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.04),
            rgba(255,255,255,0.015)
        );

    border: 1px solid rgba(255,255,255,0.05);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);

    border-color: rgba(255,107,0,0.24);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.05),
            rgba(255,255,255,0.02)
        );

    box-shadow:
        0 25px 60px rgba(0,0,0,0.45),
        0 0 24px rgba(255,107,0,0.08);
}

/* =====================================================
   QUESTION
===================================================== */

.faq-item h4 {
    position: relative;

    padding-right: 40px;

    font-size: 24px;
    line-height: 1.4;

    margin-bottom: 14px;

    color: #fff;
}

/* =====================================================
   ANSWER
===================================================== */

.faq-item p {
    font-size: 15px;
    line-height: 1.8;

    color: #b5b5b5;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 992px) {

    .faq-title {
        font-size: 42px;
    }

}

@media (max-width: 768px) {

    .faq {
        padding: 90px 0;
    }

    .faq-head {
        margin-bottom: 50px;
    }

    .faq-title {
        font-size: 34px;
    }

    .faq-sub {
        font-size: 16px;
    }

    .faq-item {
        padding: 26px 22px;
    }

    .faq-item h4 {
        font-size: 22px;
    }

}

@media (max-width: 576px) {

    .faq-title {
        font-size: 30px;
    }

    .faq-item {
        padding: 22px 18px;

        border-radius: 20px;
    }

    .faq-item h4 {
        font-size: 19px;
    }

    .faq-item p {
        font-size: 14px;
    }

}


/* =====================================================
   FINAL CTA
===================================================== */

.final-cta {
    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at top,
            #1a1a1a 0%,
            #0a0a0a 70%
        );
}

/* =====================================================
   BOX
===================================================== */

.final-cta-box {
    position: relative;

    overflow: hidden;

    padding: 80px;

    border-radius: 40px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.05),
            rgba(255,255,255,0.015)
        );

    border: 1px solid rgba(255,255,255,0.06);

    box-shadow:
        0 40px 120px rgba(0,0,0,0.7);

    text-align: center;
}

/* =====================================================
   GLOW
===================================================== */

.final-cta-glow {
    position: absolute;

    top: -180px;
    left: 50%;

    transform: translateX(-50%);

    width: 520px;
    height: 520px;

    border-radius: 50%;

    background: rgba(255,107,0,0.18);

    filter: blur(120px);

    pointer-events: none;
}

/* =====================================================
   CONTENT
===================================================== */

.final-cta-content {
    position: relative;
    z-index: 2;

    max-width: 820px;

    margin: 0 auto;
}

/* =====================================================
   LABEL
===================================================== */

.final-cta-label {
    display: inline-flex;
    align-items: center;

    padding: 12px 18px;

    margin-bottom: 28px;

    border-radius: 50px;

    background: rgba(255,107,0,0.08);

    border: 1px solid rgba(255,107,0,0.18);

    color: #FF6B00;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;
}

/* =====================================================
   TITLE
===================================================== */

.final-cta-title {
    font-size: 58px;
    line-height: 1.08;

    margin-bottom: 24px;
}

/* =====================================================
   SUBTITLE
===================================================== */

.final-cta-sub {
    max-width: 700px;

    margin:
        0 auto
        34px;

    font-size: 18px;
    line-height: 1.8;

    color: #b3b3b3;
}

/* =====================================================
   BENEFITS
===================================================== */

.final-cta-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 38px;
}

.final-benefit {
    padding: 14px 18px;

    border-radius: 16px;

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.05);

    color: #e5e5e5;

    font-size: 14px;
    font-weight: 500;
}

/* =====================================================
   ACTIONS
===================================================== */

.final-cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    gap: 18px;

    margin-bottom: 24px;
}

/* PHONE */

.final-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 240px;

    padding: 18px 26px;

    border-radius: 18px;

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.06);

    color: #fff;

    font-size: 18px;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.final-phone:hover {
    transform: translateY(-3px);

    border-color: rgba(255,107,0,0.3);

    background: rgba(255,255,255,0.08);
}

/* BUTTON */

.final-cta-btn {
    min-width: 260px;
}

/* =====================================================
   NOTE
===================================================== */

.final-cta-note {
    color: #FF6B00;

    font-size: 14px;
    font-weight: 600;
}

/* =====================================================
   FOOTER
===================================================== */

.footer {
    padding:
        40px
        0;

    background: #070707;

    border-top: 1px solid rgba(255,255,255,0.05);
}

/* =====================================================
   INNER
===================================================== */

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    padding-bottom: 26px;

    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* =====================================================
   BRAND
===================================================== */

.footer-logo {
    font-size: 26px;
    font-weight: 900;

    color: #FF6B00;

    margin-bottom: 10px;
}

.footer-text {
    max-width: 340px;

    font-size: 14px;
    line-height: 1.7;

    color: #8e8e8e;
}

/* =====================================================
   CONTACT
===================================================== */

.footer-contact {
    text-align: center;
}

.footer-phone {
    display: inline-block;

    margin-bottom: 8px;

    font-size: 22px;
    font-weight: 800;

    color: #fff;

    transition: color 0.25s ease;
}

.footer-phone:hover {
    color: #FF6B00;
}

.footer-contact p {
    font-size: 14px;
    color: #8d8d8d;
}

/* =====================================================
   WORK
===================================================== */

.footer-work {
    text-align: right;
}

.footer-work p {
    margin-bottom: 6px;

    font-size: 14px;
    color: #8d8d8d;
}

.footer-work span {
    font-size: 18px;
    font-weight: 700;

    color: #fff;
}

/* =====================================================
   BOTTOM
===================================================== */

.footer-bottom {
    padding-top: 24px;

    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #666;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 992px) {

    .final-cta-title {
        font-size: 48px;
    }

    .footer-inner {
        flex-direction: column;

        text-align: center;
    }

    .footer-work {
        text-align: center;
    }

}

@media (max-width: 768px) {

    .final-cta {
        padding: 90px 0;
    }

    .final-cta-box {
        padding: 60px 30px;

        border-radius: 30px;
    }

    .final-cta-title {
        font-size: 38px;
    }

    .final-cta-sub {
        font-size: 16px;
    }

    .final-cta-actions {
        flex-direction: column;
    }

    .final-phone,
    .final-cta-btn {
        width: 100%;
    }

}

@media (max-width: 576px) {

    .final-cta-box {
        padding: 50px 22px;

        border-radius: 26px;
    }

    .final-cta-title {
        font-size: 30px;
    }

    .final-cta-sub {
        font-size: 15px;
    }

    .final-benefit {
        width: 100%;
    }

    .footer-logo {
        font-size: 22px;
    }

    .footer-phone {
        font-size: 18px;
    }

}


/* =====================================================
   BODY LOCK
===================================================== */

body.popup-open {
    overflow: hidden;
}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes fadeIn {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}

/* =====================================================
   CASE POPUP ANIMATION
===================================================== */

.case-popup.active .case-popup-overlay {
    animation: fadeIn 0.25s ease;
}

.case-popup.active .case-popup-box {
    animation: fadeUp 0.35s ease;
}

/* =====================================================
   HOVER GLOW
===================================================== */

.case-hero::after,
.review-card::after,
.adv-item::after,
.process-item::after,
.faq-item::after {
    content: "";

    position: absolute;
    inset: 0;

    border-radius: inherit;

    background:
        radial-gradient(
            circle at top,
            rgba(255,107,0,0.08),
            transparent 70%
        );

    opacity: 0;

    transition: opacity 0.35s ease;

    pointer-events: none;
}

.case-hero:hover::after,
.review-card:hover::after,
.adv-item:hover::after,
.process-item:hover::after,
.faq-item:hover::after {
    opacity: 1;
}

/* =====================================================
   SMOOTH IMAGE HOVER
===================================================== */

.before-img,
.after-img {
    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}

.before-after-item:hover .before-img,
.before-after-item:hover .after-img {
    transform: scale(1.03);

    filter: brightness(1.03);
}

/* =====================================================
   SECTION DIVIDER
===================================================== */

section::before {
    content: "";

    position: absolute;
    top: 0;
    left: 50%;

    transform: translateX(-50%);

    width: calc(100% - 48px);
    max-width: 1280px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.05),
            transparent
        );
}

/* =====================================================
   HERO EXCEPTION
===================================================== */

.hero::before {
    display: none;
}

/* =====================================================
   FOOTER EXCEPTION
===================================================== */

.footer::before {
    display: none;
}

/* =====================================================
   POPUP SCROLLBAR
===================================================== */

.case-popup-box::-webkit-scrollbar {
    width: 8px;
}

.case-popup-box::-webkit-scrollbar-track {
    background: transparent;
}

.case-popup-box::-webkit-scrollbar-thumb {
    background: rgba(255,107,0,0.4);

    border-radius: 20px;
}

/* =====================================================
   SELECTION FIX
===================================================== */

.case-popup-box img {
    user-select: none;
}

/* =====================================================
   MOBILE POLISH
===================================================== */

@media (max-width: 768px) {

    section {
        padding: 90px 0;
    }

    .container {
        padding: 0 18px;
    }

}

@media (max-width: 576px) {

    section {
        padding: 80px 0;
    }

}


/* =====================================================
   CALL POPUP
===================================================== */

.popup {
    position: fixed;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px;

    opacity: 0;
    visibility: hidden;

    z-index: 5000;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

    background: rgba(0,0,0,0.75);

    backdrop-filter: blur(14px);
}

/* ACTIVE */

.popup.active {
    opacity: 1;
    visibility: visible;
}

/* =====================================================
   POPUP BOX
===================================================== */

.popup-box {
    position: relative;

    width: 100%;
    max-width: 520px;

    padding: 42px;

    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            #141414,
            #0d0d0d
        );

    border: 1px solid rgba(255,255,255,0.06);

    box-shadow:
        0 40px 120px rgba(0,0,0,0.9),
        0 0 30px rgba(255,107,0,0.08);

    transform: translateY(30px);

    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}

/* ACTIVE */

.popup.active .popup-box {
    transform: translateY(0);
}

/* =====================================================
   CLOSE
===================================================== */

.popup-close {
    position: absolute;

    top: 18px;
    right: 18px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    cursor: pointer;

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.05);

    color: #fff;

    font-size: 18px;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.popup-close:hover {
    background: rgba(255,107,0,0.14);

    transform: rotate(90deg);
}

/* =====================================================
   TITLE
===================================================== */

.popup-box h2 {
    font-size: 38px;
    line-height: 1.1;

    margin-bottom: 14px;
}

/* =====================================================
   SUBTEXT
===================================================== */

.popup-note {
    margin-top: 16px;

    font-size: 13px;
    line-height: 1.6;

    color: #8f8f8f;

    text-align: center;
}

/* =====================================================
   INPUTS
===================================================== */

.popup-box input {
    margin-bottom: 14px;
}

/* =====================================================
   BUTTON
===================================================== */

.popup-box button {
    width: 100%;

    margin-top: 8px;

    padding: 18px;

    font-size: 16px;
    font-weight: 700;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 576px) {

    .popup {
        padding: 16px;
    }

    .popup-box {
        padding: 34px 22px;

        border-radius: 24px;
    }

    .popup-box h2 {
        font-size: 30px;
    }

}