:root {
    --bg: #040d14;
    --panel: #071825;
    --blue: #00b4d8;
    --blue2: #0077a8;
    --ice: #caf0f8;
    --frost: rgba(0, 180, 216, 0.12);
    --red: #ff4d2e;
    --white: #f0f8ff;
    --gray: #4a6070;
    --metal: #b8cdd8
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    box-sizing: border-box
}

*,
::after,
::before {
    box-sizing: inherit
}

* {
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: Outfit, sans-serif;
    background: var(--bg);
    color: var(--white);
    overflow-x: hidden
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 60px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(4, 13, 20, .85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 180, 216, .15)
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 3px;
    color: var(--white);
    text-decoration: none
}

.logo span {
    color: var(--blue)
}

.nav-links {
    display: flex;
    gap: 4px;
    list-style: none
}

.nav-links a {
    color: rgba(240, 248, 255, .55);
    text-decoration: none;
    font-size: .85rem;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 6px;
    letter-spacing: .5px;
    transition: all .25s;
    position: relative
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    right: 50%;
    height: 1.5px;
    background: var(--blue);
    transition: left .3s, right .3s
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--white)
}

.nav-links a.active::after,
.nav-links a:hover::after {
    left: 18px;
    right: 18px
}

.nav-cta {
    background: var(--red) !important;
    color: #fff !important;
    border-radius: 8px !important
}

.nav-cta::after {
    display: none !important
}

.nav-cta:hover {
    background: #e03a1e !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 77, 46, .4)
}

.page-wrapper {
    min-height: 100vh;
    padding-top: 68px
}

.page-enter {
    animation: pageEnter .5s cubic-bezier(.16, 1, .3, 1) forwards
}

@keyframes pageEnter {
    from {
        opacity: 0;
        transform: translateY(30px) scale(.98)
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

.hero {
    min-height: calc(100vh - 68px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 60px 80px;
    position: relative;
    overflow: hidden
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 180, 216, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 180, 216, .04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite
}

@keyframes gridMove {
    from {
        transform: translateY(0)
    }

    to {
        transform: translateY(60px)
    }
}

.hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 180, 216, .12) 0, transparent 65%);
    top: -200px;
    right: -100px;
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
    will-change: transform, opacity
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: .6;
        transform: scale(1)
    }

    50% {
        opacity: 1;
        transform: scale(1.05)
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-left: 70px
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 180, 216, .1);
    border: 1px solid rgba(0, 180, 216, .3);
    color: var(--blue);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 28px
}

.tag-dot {
    width: 6px;
    height: 6px;
    background: var(--blue);
    border-radius: 50%;
    animation: blink 1.5s infinite
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 6vw, 6rem);
    line-height: .95;
    letter-spacing: 2px;
    margin-bottom: 28px
}

.hero h1 .line1 {
    color: var(--white);
    display: block
}

.hero h1 .line2 {
    color: var(--blue);
    display: block
}

.hero h1 .line3 {
    color: rgba(240, 248, 255, .3);
    display: block;
    font-size: .55em;
    letter-spacing: 8px;
    margin-top: 8px
}

.hero-desc {
    font-size: 1rem;
    color: rgba(240, 248, 255, .55);
    line-height: 1.8;
    max-width: 440px;
    margin-bottom: 40px
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 60px
}

.btn-glow {
    background: var(--blue);
    color: var(--bg);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .5px;
    border: none;
    cursor: pointer;
    transition: all .3s;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
    transform: translateX(-100%);
    transition: transform .4s
}

.btn-glow:hover::before {
    transform: translateX(100%)
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(0, 180, 216, .5), 0 0 60px rgba(0, 180, 216, .2);
    transform: translateY(-2px)
}

.btn-outline {
    background: 0 0;
    color: var(--white);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: .9rem;
    border: 1px solid rgba(240, 248, 255, .2);
    cursor: pointer;
    transition: all .3s;
    text-decoration: none;
    display: inline-block
}

.btn-outline:hover {
    border-color: var(--blue);
    color: var(--blue)
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(0, 180, 216, .15);
    border-radius: 16px;
    overflow: hidden
}

.stat-item {
    padding: 20px 24px;
    border-right: 1px solid rgba(0, 180, 216, .15);
    position: relative
}

.stat-item:last-child {
    border-right: none
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s
}

.stat-item:hover::before {
    transform: scaleX(1)
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--blue);
    letter-spacing: 2px;
    line-height: 1
}

.stat-label {
    font-size: .75rem;
    color: var(--gray);
    margin-top: 4px;
    font-weight: 500
}

.hero-fridge {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px
}

.fridge-scene {
    position: relative;
    width: 300px;
    height: 480px;
    transform-style: preserve-3d;
    animation: fridgeFloat 3s ease-in-out infinite;
    will-change: transform
}

@keyframes fridgeFloat {

    0%,
    100% {
        transform: rotateY(-8deg) rotateX(2deg) translateY(0)
    }

    50% {
        transform: rotateY(-5deg) rotateX(2deg) translateY(-12px)
    }
}

.fridge-body {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #2b3238 0, #171b1e 40%, #0d1012 100%);
    border-radius: 22px 22px 18px 18px;
    box-shadow: inset -8px 0 20px rgba(0, 0, 0, .8), inset 4px 0 12px rgba(255, 255, 255, .1), 0 40px 100px rgba(0, 0, 0, .8), 0 0 0 1px rgba(255, 255, 255, .05);
    transform-style: preserve-3d
}

.fridge-side {
    position: absolute;
    top: 10px;
    right: -28px;
    width: 28px;
    height: calc(100% - 20px);
    background: linear-gradient(180deg, #1f2529, #0a0c0e);
    border-radius: 0 8px 8px 0;
    transform: rotateY(90deg);
    transform-origin: left center
}

.door-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 38%;
    background: linear-gradient(160deg, #323a42 0, #1e2429 45%, #15191c 55%, #050607 100%);
    border-radius: 22px 22px 4px 4px;
    transform-style: preserve-3d;
    transform-origin: left center;
    transition: transform .8s cubic-bezier(.34, 1.56, .64, 1);
    cursor: pointer;
    box-shadow: inset -4px 0 16px rgba(0, 0, 0, .6), inset 3px 0 8px rgba(255, 255, 255, .1);
    border-bottom: 2px solid rgba(0, 0, 0, .7);
    overflow: hidden
}

.door-top.open {
    transform: rotateY(-110deg)
}

.door-top .handle {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 65px;
    background: linear-gradient(180deg, #444a50, #15191c);
    border-radius: 4px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, .6), -1px -1px 3px rgba(255, 255, 255, .1);
    z-index: 5
}

.door-main {
    position: absolute;
    top: 39%;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(160deg, #2d343b 0, #1b2025 50%, #0d0f11 100%);
    border-radius: 4px 4px 18px 18px;
    transform-style: preserve-3d;
    transform-origin: left center;
    transition: transform .9s cubic-bezier(.34, 1.56, .64, 1);
    cursor: pointer;
    box-shadow: inset -4px 0 16px rgba(0, 0, 0, .6), inset 3px 0 8px rgba(255, 255, 255, .1);
    overflow: hidden
}

.door-main.open {
    transform: rotateY(-115deg)
}

.door-main .handle {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 90px;
    background: linear-gradient(180deg, #444a50, #15191c);
    border-radius: 4px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, .6), -1px -1px 3px rgba(255, 255, 255, .1);
    z-index: 5
}

.smart-hub {
    position: absolute;
    top: 25px;
    right: 35px;
    width: 65px;
    height: 120px;
    background: #020202;
    border-radius: 8px;
    border: 1px solid #222;
    box-shadow: inset 0 0 15px #000, 0 0 15px rgba(0, 180, 216, .2);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 4px;
    transform: translateZ(2px);
    z-index: 10
}

.smart-hub::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .1) 0, transparent 50%);
    border-radius: 8px;
    pointer-events: none
}

.hub-time {
    font-family: 'Courier New', Courier, monospace;
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px
}

.hub-weather {
    font-size: .55rem;
    color: #a0c0d0;
    margin-bottom: 15px
}

.hub-ring {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #00f0ff;
    border-right-color: #00f0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spinRing 4s linear infinite;
    margin-bottom: 12px;
    box-shadow: 0 0 10px rgba(0, 240, 255, .3), inset 0 0 5px rgba(0, 240, 255, .3)
}

.hub-temp {
    font-family: 'Courier New', Courier, monospace;
    font-size: .65rem;
    font-weight: 700;
    color: #e0ffff;
    animation: counterSpin 4s linear infinite
}

@keyframes spinRing {
    100% {
        transform: rotate(360deg)
    }
}

@keyframes counterSpin {
    100% {
        transform: rotate(-360deg)
    }
}

.hub-lines {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.hub-line {
    height: 2px;
    background: rgba(0, 240, 255, .5);
    border-radius: 2px;
    width: 100%
}

.hub-line.short {
    width: 60%;
    margin: 0 auto
}

.light-sweep {
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, .08), transparent);
    transform: skewX(-25deg);
    animation: sweep 6s infinite;
    pointer-events: none;
    z-index: 4
}

@keyframes sweep {

    0%,
    60% {
        left: -150%
    }

    100% {
        left: 200%
    }
}

.led-display {
    position: absolute;
    top: 15px;
    right: 25px;
    background: #0a0a0a;
    border-radius: 4px;
    padding: 4px 6px;
    border: 1px solid #333;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .9), 0 0 10px rgba(0, 180, 216, .4);
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: center;
    transform: translateZ(1px)
}

.led-temp,
.led-temp-bottom {
    font-family: 'Courier New', Courier, monospace;
    font-size: .65rem;
    font-weight: 700;
    color: #00f0ff;
    text-shadow: 0 0 4px #00f0ff, 0 0 8px #00f0ff;
    line-height: 1
}

.led-temp-bottom {
    color: #0fc;
    text-shadow: 0 0 4px #0fc, 0 0 8px #0fc
}

.fridge-interior-top {
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    height: 37%;
    background: linear-gradient(180deg, #d8f4ff, #b8eeff);
    border-radius: 20px 20px 2px 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    opacity: 0;
    transition: opacity .15s
}

.fridge-interior-top.visible {
    opacity: 1;
    transition: opacity .4s .3s
}

.shelf {
    width: 90%;
    height: 2px;
    background: rgba(0, 100, 150, .2);
    border-radius: 2px
}

.frost-items {
    display: flex;
    gap: 8px;
    align-items: flex-end
}

.frost-item {
    border-radius: 4px;
    animation: frostGlow 2s ease-in-out infinite
}

@keyframes frostGlow {

    0%,
    100% {
        opacity: .7
    }

    50% {
        opacity: 1
    }
}

.fridge-interior-main {
    position: absolute;
    top: 41%;
    left: 2px;
    right: 2px;
    height: 57%;
    background: linear-gradient(180deg, #c8ecff, #a8e0f8);
    border-radius: 2px 2px 16px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    opacity: 0;
    transition: opacity .15s
}

.fridge-interior-main.visible {
    opacity: 1;
    transition: opacity .4s .4s
}

.cold-mist-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    border-radius: 2px 2px 14px 14px;
    z-index: 10
}

.mist {
    position: absolute;
    bottom: -30px;
    width: 130%;
    height: 80px;
    background: radial-gradient(ellipse at center, rgba(220, 245, 255, .6) 0, transparent 60%);
    filter: blur(10px);
    opacity: 0;
    transform: translateY(0) scale(1)
}

.fridge-interior-main.visible .mist.m1 {
    animation: mistFlow 3.5s cubic-bezier(.25, 1, .5, 1) forwards;
    animation-delay: .1s;
    left: -15%
}

.fridge-interior-main.visible .mist.m2 {
    animation: mistFlow 4s cubic-bezier(.25, 1, .5, 1) forwards;
    left: -5%;
    animation-delay: .25s
}

.fridge-interior-main.visible .mist.m3 {
    animation: mistFlow 4.5s cubic-bezier(.25, 1, .5, 1) forwards;
    left: 15%;
    animation-delay: .4s
}

@keyframes mistFlow {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(.8)
    }

    15% {
        opacity: .9;
        transform: translateY(10px) scale(1.3)
    }

    50% {
        opacity: .7;
        transform: translateY(50px) scale(1.8) rotate(5deg)
    }

    100% {
        opacity: 0;
        transform: translateY(110px) scale(2.4) rotate(-5deg)
    }
}

.int-service {
    width: 100%;
    background: rgba(0, 120, 180, .1);
    border: 1px solid rgba(0, 180, 216, .25);
    border-radius: 6px;
    padding: 4px 8px;
    font-size: .78rem;
    color: #0ad;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    transform: translateX(-20px);
    opacity: 0;
    transition: all .3s
}

.int-service.show {
    transform: translateX(0);
    opacity: 1
}

.int-dot {
    width: 5px;
    height: 5px;
    background: var(--blue2);
    border-radius: 50%;
    flex-shrink: 0
}

.int-light {
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 8px;
    background: #fff;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 0 30px 10px rgba(180, 240, 255, .9), 0 0 60px 20px rgba(180, 240, 255, .6)
}

.click-hint {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(0, 180, 216, .6);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    animation: hintBounce 2s ease-in-out infinite;
    white-space: nowrap
}

@keyframes hintBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: .6
    }

    50% {
        transform: translateX(-50%) translateY(-6px);
        opacity: 1
    }
}

.fridge-glow {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 40px;
    background: radial-gradient(ellipse, rgba(0, 180, 216, .3) 0, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
    will-change: transform, opacity
}

.snowflakes {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0
}

.sf {
    position: absolute;
    color: rgba(0, 180, 216, .15);
    font-size: 1.5rem;
    animation: sfFall linear infinite;
    will-change: transform, opacity
}

@keyframes sfFall {
    from {
        transform: translateY(-50px) rotate(0);
        opacity: 0
    }

    10% {
        opacity: 1
    }

    90% {
        opacity: .5
    }

    to {
        transform: translateY(calc(100vh + 50px)) rotate(360deg);
        opacity: 0
    }
}

.section {
    padding: 90px 80px
}

.s-tag {
    display: inline-block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: .85rem;
    letter-spacing: 3px;
    color: var(--blue);
    margin-bottom: 12px
}

.s-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    letter-spacing: 2px;
    line-height: .95;
    margin-bottom: 16px
}

.s-sub {
    font-size: .95rem;
    color: rgba(240, 248, 255, .5);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 60px
}

.services-intro {
    padding: 80px 80px 0
}

.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: rgba(0, 180, 216, .08);
    border: 1px solid rgba(0, 180, 216, .1);
    margin: 0 80px 80px;
    border-radius: 20px;
    overflow: hidden
}

.srv-card {
    background: var(--panel);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: background-color .35s, box-shadow .35s;
    cursor: pointer;
    contain: layout style
}

.srv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--blue), transparent);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .35s
}

.srv-card:hover {
    background: #0a2030
}

.srv-card:hover::before {
    transform: scaleY(1)
}

.srv-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: rgba(0, 180, 216, .12);
    line-height: 1;
    margin-bottom: 12px;
    transition: color .3s
}

.srv-card:hover .srv-num {
    color: rgba(0, 180, 216, .25)
}

.srv-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 10px
}

.srv-desc {
    font-size: .88rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 16px
}

.srv-price {
    display: inline-block;
    background: rgba(0, 180, 216, .1);
    border: 1px solid rgba(0, 180, 216, .2);
    color: var(--blue);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 600
}

.srv-arrow {
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    color: var(--blue);
    font-size: 1.4rem;
    opacity: 0;
    transition: all .3s
}

.srv-card:hover .srv-arrow {
    opacity: 1;
    transform: translateY(-50%) translateX(0)
}

.free-banner {
    margin: 0 80px 80px;
    background: linear-gradient(135deg, #001824, #002a40);
    border: 1px solid rgba(0, 180, 216, .2);
    border-radius: 20px;
    padding: 50px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden
}

.free-banner::before {
    content: 'FREE';
    position: absolute;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14rem;
    color: rgba(0, 180, 216, .03);
    right: -20px;
    top: -20px;
    letter-spacing: -5px;
    pointer-events: none
}

.free-banner h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 8px
}

.free-banner p {
    color: rgba(240, 248, 255, .5);
    max-width: 480px
}

.brands-carousel-wrap {
    padding: 70px 0 60px;
    background: linear-gradient(180deg, var(--bg) 0, var(--panel) 50%, var(--bg) 100%);
    overflow: hidden;
    position: relative
}

.brands-carousel-header {
    text-align: center;
    margin-bottom: 36px;
    padding: 0 20px
}

.brands-carousel-tag {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    display: block;
    margin-bottom: 10px
}

.brands-carousel-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    letter-spacing: 2px;
    color: var(--white);
    line-height: 1.1
}

.brands-carousel-title span {
    color: var(--blue);
    position: relative
}

.carousel-track-wrap {
    position: relative;
    overflow: hidden
}

.fade-left,
.fade-right {
    position: absolute;
    top: 0;
    width: 160px;
    height: 100%;
    z-index: 2;
    pointer-events: none
}

.fade-left {
    left: 0;
    background: linear-gradient(90deg, var(--bg) 0, transparent 100%)
}

.fade-right {
    right: 0;
    background: linear-gradient(270deg, var(--bg) 0, transparent 100%)
}

.carousel-track {
    display: flex;
    width: max-content
}

.track-left {
    animation: scrollLeft 32s linear infinite;
    will-change: transform
}

.track-right {
    animation: scrollRight 38s linear infinite;
    will-change: transform
}

.carousel-track:hover {
    animation-play-state: paused
}

.carousel-slide {
    display: flex;
    gap: 14px;
    padding: 8px 7px;
    flex-shrink: 0
}

.cbrand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 22px;
    background: rgba(0, 180, 216, .05);
    border: 1px solid rgba(0, 180, 216, .15);
    border-radius: 100px;
    font-size: .92rem;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    cursor: default;
    transition: background-color .3s ease, border-color .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease;
    letter-spacing: .3px
}

.cbrand:hover {
    background: rgba(0, 180, 216, .18);
    border-color: rgba(0, 180, 216, .5);
    color: var(--ice);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 180, 216, .2)
}

.cbrand-alt {
    background: rgba(255, 255, 255, .03);
    border-color: rgba(255, 255, 255, .08)
}

.cbrand-alt:hover {
    background: rgba(0, 180, 216, .12);
    border-color: rgba(0, 180, 216, .4)
}

.cbrand-icon {
    font-size: 1rem;
    line-height: 1;
    filter: saturate(.7);
    transition: filter .3s
}

.cbrand:hover .cbrand-icon {
    filter: saturate(1.3)
}

.cbrand img {
    height: 22px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
    opacity: .85;
    transition: opacity .3s
}

.cbrand:hover img {
    opacity: 1
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%)
    }

    100% {
        transform: translateX(0)
    }
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .65s cubic-bezier(.22, 1, .36, 1), transform .65s cubic-bezier(.22, 1, .36, 1)
}

.reveal.reveal-left {
    transform: translateX(-48px) translateY(16px)
}

.reveal.reveal-right {
    transform: translateX(48px) translateY(16px)
}

.reveal.visible {
    opacity: 1;
    transform: none
}

.reveal[data-delay="1"] {
    transition-delay: 0.1s
}

.reveal[data-delay="2"] {
    transition-delay: 0.22s
}

.reveal[data-delay="3"] {
    transition-delay: 0.34s
}

.reveal[data-delay="4"] {
    transition-delay: 0.46s
}

.sa-card {
    background: rgba(4, 13, 20, .4);
    border: 1px solid rgba(0, 180, 216, .12);
    border-radius: 24px;
    backdrop-filter: blur(16px);
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color .4s;
    align-self: center;
    margin: auto 0
}

.sa-card:hover {
    border-color: rgba(0, 180, 216, .25)
}

.sa-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 180, 216, .12) 0, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
    pointer-events: none
}

.sa-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px
}

.sa-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 180, 216, .15), rgba(0, 180, 216, .05));
    border: 1px solid rgba(0, 180, 216, .25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--blue);
    flex-shrink: 0
}

.sa-header-text span {
    font-size: .75rem;
    color: var(--blue);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px
}

.sa-header-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 1px;
    line-height: 1.1;
    color: var(--white)
}

.sa-body p {
    font-size: .95rem;
    color: rgba(240, 248, 255, .6);
    line-height: 1.7;
    margin-bottom: 20px
}

.sa-body strong {
    color: var(--white)
}

.sa-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
    margin-bottom: 0
}

.sa-tags span {
    font-size: .72rem;
    padding: 6px 14px;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 30px;
    color: var(--gray);
    transition: color .3s, border-color .3s
}

.sa-tags span:hover {
    color: var(--blue);
    border-color: rgba(0, 180, 216, .3)
}

.sa-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .05)
}

.sa-f-text {
    font-size: .75rem;
    color: var(--gray);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px
}

.sa-phone {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--blue);
    text-decoration: none;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 6px;
    transition: box-shadow .3s, background-color .3s;
    width: fit-content;
    border: 1.5px solid rgba(0, 180, 216, .4);
    border-radius: 10px;
    padding: 8px 22px;
    background: rgba(0, 180, 216, .06);
    text-align: center
}

.sa-phone:hover {
    background: rgba(0, 180, 216, .12);
    box-shadow: 0 0 18px rgba(0, 180, 216, .3)
}

.sa-sub {
    font-size: .82rem;
    color: rgba(240, 248, 255, .4)
}

@media (max-width:768px) {
    .sa-card {
        padding: 28px 24px;
        margin-top: 24px
    }
}

.gallery-intro {
    padding: 80px 80px 0
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 40px 80px 0
}

.g-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: var(--panel);
    border: 1px solid rgba(0, 180, 216, .1);
    transition: border-color .4s, transform .4s;
    cursor: pointer;
    contain: layout style
}

.g-item:hover {
    border-color: rgba(0, 180, 216, .4);
    transform: scale(1.02);
    z-index: 2
}

.g-item:first-child {
    grid-column: span 2;
    grid-row: span 2
}

.g-visual {
    width: 100%;
    height: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--panel), #0a2030);
    position: relative;
    overflow: hidden
}

.g-item:first-child .g-visual {
    min-height: 380px
}

.g-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(0, 180, 216, .08), transparent 60%)
}

.g-icon-big {
    font-size: 4rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 1
}

.g-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 1px;
    color: var(--white);
    position: relative;
    z-index: 1;
    text-align: center
}

.g-sub {
    font-size: .8rem;
    color: var(--gray);
    margin-top: 5px;
    position: relative;
    z-index: 1
}

.g-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 180, 216, .88);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
    padding: 24px
}

.g-item:hover .g-overlay {
    opacity: 1
}

.g-overlay-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 1px;
    color: var(--bg);
    text-align: center
}

.g-overlay-sub {
    font-size: .82rem;
    color: rgba(4, 13, 20, .7);
    margin-top: 6px
}

.testi-wrap {
    padding: 70px 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.t-card {
    background: var(--panel);
    border: 1px solid rgba(0, 180, 216, .08);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: border-color .3s, transform .3s;
    contain: layout style
}

.t-card:hover {
    border-color: rgba(0, 180, 216, .25);
    transform: translateY(-4px)
}

.t-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: rgba(0, 180, 216, .08);
    line-height: 1
}

.t-stars {
    color: gold;
    font-size: .85rem;
    margin-bottom: 14px
}

.t-text {
    font-size: .9rem;
    color: rgba(240, 248, 255, .65);
    line-height: 1.75;
    margin-bottom: 20px
}

.t-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.t-av {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--blue2), #004060);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem
}

.t-name {
    font-weight: 600;
    font-size: .88rem
}

.t-loc {
    font-size: .76rem;
    color: var(--gray)
}

.about-hero {
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    border-bottom: 1px solid rgba(0, 180, 216, .08)
}

.about-visual {
    position: relative;
    background: var(--panel);
    border: 1px solid rgba(0, 180, 216, .1);
    border-radius: 24px;
    padding: 50px 40px;
    overflow: hidden
}

.about-visual::before {
    content: '12';
    font-family: 'Bebas Neue', sans-serif;
    font-size: 15rem;
    position: absolute;
    color: rgba(0, 180, 216, .04);
    bottom: -40px;
    right: -20px;
    line-height: 1;
    pointer-events: none
}

.av-stat {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(0, 180, 216, .08)
}

.av-stat:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0
}

.av-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: var(--blue);
    letter-spacing: 2px;
    line-height: 1
}

.av-label {
    font-size: .82rem;
    color: var(--gray);
    margin-top: 3px
}

.about-text h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: 2px;
    line-height: .95;
    margin-bottom: 24px
}

.about-text p {
    font-size: .95rem;
    color: rgba(240, 248, 255, .55);
    line-height: 1.8;
    margin-bottom: 18px
}

.team-section {
    padding: 0 80px 80px
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px
}

.team-card {
    background: var(--panel);
    border: 1px solid rgba(0, 180, 216, .08);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all .35s;
    position: relative;
    overflow: hidden
}

.team-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
    transform: scaleX(0);
    transition: transform .4s
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 180, 216, .25)
}

.team-card:hover::after {
    transform: scaleX(1)
}

.team-av {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--blue2), #002030);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 18px;
    border: 2px solid rgba(0, 180, 216, .2)
}

.team-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 5px
}

.team-role {
    font-size: .8rem;
    color: var(--gray)
}

.team-exp {
    font-size: .75rem;
    color: var(--blue);
    margin-top: 8px;
    font-weight: 600
}

.contact-wrap {
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 70px;
    align-items: start
}

.c-info h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 2px;
    line-height: .95;
    margin-bottom: 20px
}

.c-info>p {
    font-size: .92rem;
    color: rgba(240, 248, 255, .5);
    line-height: 1.8;
    margin-bottom: 40px
}

.c-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 26px;
    padding: 18px;
    background: var(--panel);
    border: 1px solid rgba(0, 180, 216, .08);
    border-radius: 12px;
    transition: all .3s
}

.c-item:hover {
    border-color: rgba(0, 180, 216, .25)
}

.c-ico {
    width: 44px;
    height: 44px;
    background: rgba(0, 180, 216, .1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0
}

.c-item h4 {
    font-size: .72rem;
    color: var(--gray);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 3px
}

.c-item p {
    font-size: .9rem;
    color: var(--white);
    font-weight: 500
}

.c-form {
    background: var(--panel);
    border: 1px solid rgba(0, 180, 216, .12);
    border-radius: 24px;
    padding: 48px;
    position: relative;
    overflow: hidden
}

.c-form::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 180, 216, .08), transparent 70%);
    border-radius: 50%
}

.c-form h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: 28px;
    position: relative
}

.f-group {
    margin-bottom: 18px
}

.f-group label {
    display: block;
    font-size: .78rem;
    font-weight: 600;
    color: rgba(240, 248, 255, .5);
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 7px
}

.f-group input,
.f-group select,
.f-group textarea {
    width: 100%;
    padding: 13px 18px;
    background: #060f18;
    border: 1px solid rgba(0, 180, 216, .15);
    border-radius: 10px;
    color: var(--white);
    font-family: Outfit, sans-serif;
    font-size: .92rem;
    outline: 0;
    transition: all .3s;
    appearance: none
}

.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, .1)
}

.f-group textarea {
    resize: vertical;
    min-height: 90px
}

.f-group select option {
    background: #060f18
}

.f-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.f-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--blue), var(--blue2));
    color: var(--bg);
    padding: 15px;
    border-radius: 10px;
    font-family: Outfit, sans-serif;
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .5px;
    cursor: pointer;
    border: none;
    transition: all .3s;
    margin-top: 8px;
    position: relative;
    overflow: hidden
}

.f-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
    transform: translateX(-100%);
    transition: transform .5s
}

.f-submit:hover::before {
    transform: translateX(100%)
}

.f-submit:hover {
    box-shadow: 0 0 30px rgba(0, 180, 216, .4);
    transform: translateY(-2px)
}

.f-success {
    display: none;
    background: rgba(0, 180, 216, .1);
    border: 1px solid rgba(0, 180, 216, .3);
    color: var(--blue);
    padding: 14px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    margin-top: 14px;
    font-size: .9rem
}

footer {
    background: #020a10;
    border-top: 1px solid rgba(0, 180, 216, .08);
    padding: 50px 80px 28px
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px
}

.f-brand .logo {
    display: block;
    margin-bottom: 18px
}

.f-brand p {
    font-size: .95rem;
    color: var(--gray);
    line-height: 1.8;
    max-width: 350px
}

.f-col h5 {
    font-size: .9rem;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 26px;
    position: relative;
    display: inline-block
}

.f-col h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 24px;
    height: 3px;
    background: var(--blue);
    border-radius: 2px;
    transition: width .3s ease
}

.f-col:hover h5::after {
    width: 40px
}

.f-col ul {
    list-style: none
}

.f-col ul li {
    margin-bottom: 14px
}

.f-col ul li a {
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    font-size: .95rem;
    transition: all .3s ease;
    display: inline-block;
    position: relative
}

.f-col ul li a::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%) scale(1);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 10px rgba(0, 180, 216, .6);
    transition: transform .3s ease, background .3s ease
}

.f-col ul li a:hover {
    color: var(--white);
    transform: translateX(14px)
}

.f-col ul li a:hover::before {
    background: var(--white);
    box-shadow: 0 0 10px rgba(255, 255, 255, .8)
}

.f-col-contact-item {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(0, 180, 216, .04);
    border: 1px solid rgba(0, 180, 216, .1);
    border-radius: 10px;
    margin-bottom: 12px;
    transition: background .3s, transform .3s, border-color .3s;
    text-decoration: none !important;
    color: var(--white) !important;
    font-size: .9rem !important
}

.f-col-contact-item:hover {
    background: rgba(0, 180, 216, .1);
    transform: translateY(-2px);
    border-color: rgba(0, 180, 216, .3)
}

.f-col-contact-item span {
    font-size: 1.2rem
}

.footer-bottom {
    border-top: 1px solid rgba(0, 180, 216, .06);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 8px
}

.footer-bottom p {
    font-size: .8rem;
    color: rgba(240, 248, 255, .2)
}

.float-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: var(--red);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 0 rgba(255, 77, 46, .4);
    animation: ripple 2s infinite;
    z-index: 990;
    text-decoration: none;
    transition: transform .3s;
    will-change: transform, box-shadow
}

.float-btn img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
    margin-top: -2px;
    margin-left: -2px
}

.float-btn:hover {
    transform: scale(1.1)
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 77, 46, .4)
    }

    70% {
        box-shadow: 0 0 0 18px rgba(255, 77, 46, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 77, 46, 0)
    }
}

.brands-strip {
    background: rgba(7, 24, 37, .8);
    border-top: 1px solid rgba(0, 180, 216, .08);
    border-bottom: 1px solid rgba(0, 180, 216, .08);
    padding: 22px 80px;
    display: flex;
    align-items: center;
    gap: 20px;
    overflow: hidden
}

.brands-label {
    font-size: .72rem;
    color: var(--gray);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0
}

.brands-scroll {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.brand-pill {
    background: rgba(0, 180, 216, .06);
    border: 1px solid rgba(0, 180, 216, .12);
    color: rgba(240, 248, 255, .6);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .5px;
    transition: all .25s;
    white-space: nowrap
}

.brand-pill:hover {
    background: rgba(0, 180, 216, .15);
    color: var(--blue);
    border-color: rgba(0, 180, 216, .3)
}

.how-section {
    padding: 90px 80px;
    background: var(--bg)
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 60px;
    position: relative
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(12.5%);
    right: calc(12.5%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 180, 216, .3), rgba(0, 180, 216, .3), transparent)
}

.step-card {
    text-align: center;
    padding: 0 20px;
    position: relative
}

.step-num-wrap {
    width: 72px;
    height: 72px;
    background: var(--panel);
    border: 1px solid rgba(0, 180, 216, .2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
    transition: all .3s
}

.step-card:hover .step-num-wrap {
    border-color: var(--blue);
    box-shadow: 0 0 20px rgba(0, 180, 216, .2);
    background: #0a2030
}

.step-icon {
    font-size: 1.5rem
}

.step-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 10px
}

.step-desc {
    font-size: .85rem;
    color: var(--gray);
    line-height: 1.7
}

.why-section {
    padding: 90px 80px;
    background: var(--panel);
    border-top: 1px solid rgba(0, 180, 216, .06);
    border-bottom: 1px solid rgba(0, 180, 216, .06)
}

.why-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.why-card-home {
    background: var(--bg);
    border: 1px solid rgba(0, 180, 216, .08);
    border-radius: 18px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: all .35s
}

.why-card-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s
}

.why-card-home:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 180, 216, .2)
}

.why-card-home:hover::before {
    transform: scaleX(1)
}

.why-ico {
    font-size: 2rem;
    margin-bottom: 18px;
    display: block
}

.why-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 10px
}

.why-desc {
    font-size: .88rem;
    color: var(--gray);
    line-height: 1.7
}

.problems-section {
    padding: 90px 80px;
    background: var(--bg);
    text-align: center
}

.problems-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px
}

.problems-text {
    max-width: 900px;
    margin: 0 auto
}

.problems-text p {
    margin: 0 auto 30px
}

.problems-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: left
}

.prob-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    background: var(--panel);
    border: 1px solid rgba(0, 180, 216, .08);
    border-radius: 12px;
    transition: border-color .3s, transform .3s;
    cursor: default;
    contain: layout style
}

.prob-item:hover {
    border-color: rgba(0, 180, 216, .25);
    transform: translateY(-4px)
}

.prob-check {
    color: var(--blue);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0
}

.prob-item h4,
.prob-item-h {
    font-weight: 600;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 6px
}

.prob-item p {
    font-size: .85rem;
    color: var(--gray);
    line-height: 1.6
}

.problems-visual {
    width: 100%;
    background: linear-gradient(135deg, #001824 0, #002a40 50%, #001824 100%);
    border: 1px solid rgba(0, 180, 216, .15);
    border-radius: 24px;
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    position: relative;
    overflow: hidden
}

.problems-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 180, 216, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 180, 216, .03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0
}

.pv-content-left,
.pv-content-right {
    position: relative;
    z-index: 1
}

.pv-content-left {
    display: flex;
    align-items: center;
    gap: 24px
}

.pv-icon {
    font-size: 3.5rem
}

.pv-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 4px
}

.pv-desc {
    font-size: .9rem;
    color: var(--gray);
    max-width: 450px
}

.pv-content-right {
    display: flex;
    flex-direction: column;
    align-items: center
}

.pv-phone {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem;
    letter-spacing: 2px;
    color: var(--blue);
    line-height: 1;
    text-decoration: none;
    transition: box-shadow .3s, background-color .3s;
    border: 1.5px solid rgba(0, 180, 216, .4);
    border-radius: 10px;
    padding: 8px 22px;
    background: rgba(0, 180, 216, .06);
    display: inline-block;
    text-align: center
}

.pv-phone:hover {
    background: rgba(0, 180, 216, .14);
    box-shadow: 0 0 20px rgba(0, 180, 216, .3)
}

.home-testi {
    padding: 90px 80px;
    background: var(--panel);
    border-top: 1px solid rgba(0, 180, 216, .06);
    text-align: center
}

.home-testi .s-sub {
    margin-left: auto;
    margin-right: auto
}

.home-testi-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    margin-top: 50px;
    padding-bottom: 20px
}

.home-testi-grid::-webkit-scrollbar {
    height: 8px
}

.home-testi-grid::-webkit-scrollbar-track {
    background: rgba(0, 180, 216, .05);
    border-radius: 4px
}

.home-testi-grid::-webkit-scrollbar-thumb {
    background: rgba(0, 180, 216, .4);
    border-radius: 4px
}

.home-testi-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 180, 216, .6)
}

.ht-card {
    flex: 0 0 calc(33.333% - 13.33px);
    scroll-snap-align: start;
    text-align: left;
    background: var(--bg);
    border: 1px solid rgba(0, 180, 216, .07);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: border-color .3s, transform .3s;
    contain: layout style
}

.ht-card:hover {
    border-color: rgba(0, 180, 216, .2);
    transform: translateY(-4px)
}

.ht-card::after {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: rgba(0, 180, 216, .06);
    line-height: 1
}

.ht-stars {
    color: gold;
    font-size: .85rem;
    margin-bottom: 12px
}

.ht-text {
    font-size: .88rem;
    color: rgba(240, 248, 255, .6);
    line-height: 1.75;
    margin-bottom: 18px
}

.ht-author {
    display: flex;
    align-items: center;
    gap: 10px
}

.ht-av {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--blue2), #002030);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem
}

.ht-name {
    font-weight: 600;
    font-size: .85rem;
    color: var(--white)
}

.ht-loc {
    font-size: .74rem;
    color: var(--gray)
}

.faq-section {
    padding: 90px 80px;
    background: var(--bg)
}

.faq-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 70px;
    align-items: center
}

.faq-list {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.faq-item {
    background: var(--panel);
    border: 1px solid rgba(0, 180, 216, .08);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .3s
}

.faq-item.open {
    border-color: rgba(0, 180, 216, .25)
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: .92rem;
    color: var(--white);
    transition: color .25s;
    user-select: none
}

.faq-q:hover {
    color: var(--blue)
}

.faq-arrow {
    font-size: 1.1rem;
    color: var(--blue);
    transition: transform .35s;
    flex-shrink: 0
}

.faq-item.open .faq-arrow {
    transform: rotate(45deg)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    font-size: .88rem;
    color: var(--gray);
    line-height: 1.75;
    transition: max-height .4s ease, padding .3s
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 24px 20px
}

.faq-aside {
    background: linear-gradient(135deg, var(--panel), #0a2030);
    border: 1px solid rgba(0, 180, 216, .1);
    border-radius: 22px;
    padding: 44px 38px;
    position: sticky;
    top: 90px
}

.faq-aside h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 14px
}

.faq-aside p {
    font-size: .88rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 28px
}

.faq-aside-phone {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--blue);
    display: block;
    margin-bottom: 8px
}

.faq-aside-sub {
    font-size: .78rem;
    color: var(--gray);
    margin-bottom: 28px
}

.cta-final {
    padding: 90px 80px;
    background: linear-gradient(135deg, #001824 0, #002a40 50%, #001824 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 180, 216, .1)
}

.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 180, 216, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 180, 216, .03) 1px, transparent 1px);
    background-size: 40px 40px
}

.cta-final-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto
}

.cta-final h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 5rem);
    letter-spacing: 2px;
    line-height: .95;
    margin-bottom: 20px
}

.cta-final h2 span {
    color: var(--blue)
}

.cta-final p {
    font-size: 1rem;
    color: rgba(240, 248, 255, .55);
    line-height: 1.8;
    margin-bottom: 40px
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap
}

.cta-phone-big {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 3px;
    color: var(--blue);
    display: block;
    margin-bottom: 8px
}

.cta-phone-sub {
    font-size: .8rem;
    color: var(--gray);
    margin-bottom: 32px
}

.zone-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px
}

.zone-pill {
    background: rgba(0, 180, 216, .06);
    border: 1px solid rgba(0, 180, 216, .1);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: .74rem;
    color: rgba(240, 248, 255, .5)
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: 0 0;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background .2s;
    -webkit-tap-highlight-color: transparent;
    z-index: 1100
}

.hamburger:hover {
    background: rgba(0, 180, 216, .08)
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform .3s, opacity .3s, width .3s;
    transform-origin: center
}

.hamburger.open span:first-child {
    transform: translateY(7px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    width: 0
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: rgba(4, 13, 20, .98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 80px 30px 40px;
    overflow-y: auto
}

.nav-overlay.open {
    display: flex
}

.nav-overlay .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 320px
}

.nav-overlay .nav-links a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.5rem, 7vw, 2.2rem);
    font-weight: 400;
    letter-spacing: 1.5px;
    line-height: 1.1;
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    padding: 14px 15px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .03);
    background: rgba(255, 255, 255, .02);
    transition: all .3s cubic-bezier(.16, 1, .3, 1)
}

.nav-overlay .nav-links a.active,
.nav-overlay .nav-links a:hover {
    color: var(--blue);
    background: rgba(0, 180, 216, .1);
    border-color: rgba(0, 180, 216, .2);
    transform: translateY(-2px)
}

.nav-overlay .nav-links a.nav-cta {
    background: var(--red) !important;
    border-color: var(--red) !important;
    color: #fff !important;
    font-size: 1.8rem;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(255, 77, 46, .35)
}

.nav-overlay .nav-links a.nav-cta:hover {
    transform: translateY(-3px) scale(1.02);
    background: #e03a1e !important
}

.nav-overlay-phones {
    margin-top: 40px;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    text-align: center;
    width: 100%;
    max-width: 300px
}

.nav-overlay-phones a {
    display: inline-block;
    color: var(--blue);
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
    border: 1.5px solid rgba(0, 180, 216, .3);
    border-radius: 12px;
    padding: 10px 24px;
    background: rgba(0, 180, 216, .08);
    transition: all .25s;
    text-align: center;
    width: 100%
}

.nav-overlay-phones a:hover {
    background: rgba(0, 180, 216, .14);
    border-color: var(--blue);
    box-shadow: 0 8px 24px rgba(0, 180, 216, .25);
    transform: translateY(-2px)
}

.nav-overlay-phones small {
    color: var(--gray);
    font-size: .85rem;
    opacity: .7;
    display: block;
    margin-top: 5px
}

@media (max-width:900px) {
    body {
        cursor: auto
    }

    .cursor,
    .cursor-ring {
        display: none
    }

    nav {
        padding: 0 16px;
        height: 60px
    }

    .page-wrapper {
        padding-top: 60px
    }

    .hamburger {
        display: flex
    }

    nav .nav-links {
        display: none
    }

    .logo {
        font-size: 1.6rem
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 40px 20px 60px
    }

    .hero-content {
        padding-left: 0
    }

    .hero-fridge {
        display: none
    }

    .hero h1 {
        font-size: clamp(3rem, 12vw, 5.5rem)
    }

    .hero-desc {
        font-size: .92rem;
        max-width: 100%
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        margin-bottom: 36px
    }

    .btn-glow,
    .btn-outline {
        width: 100%;
        text-align: center;
        padding: 16px;
        font-size: 1rem
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr)
    }

    .stat-num {
        font-size: 1.6rem
    }

    .stat-label {
        font-size: .68rem
    }

    .cta-final,
    .faq-section,
    .home-testi,
    .how-section,
    .problems-section,
    .why-section {
        padding: 50px 20px
    }

    .brands-strip {
        padding: 16px 16px;
        gap: 14px;
        flex-wrap: wrap
    }

    .brands-scroll {
        flex-wrap: wrap
    }

    .s-title {
        font-size: clamp(2rem, 7vw, 3rem)
    }

    .s-sub {
        margin-bottom: 36px
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
        margin-top: 36px
    }

    .steps-grid::before {
        display: none
    }

    .why-grid-home {
        grid-template-columns: 1fr 1fr;
        gap: 14px
    }

    .why-card-home {
        padding: 24px 18px
    }

    .problems-list {
        grid-template-columns: 1fr
    }

    .problems-visual {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 20px
    }

    .pv-content-left {
        flex-direction: column;
        gap: 12px
    }

    .pv-content-right {
        align-items: center
    }

    .home-testi-grid {
        gap: 14px
    }

    .ht-card {
        flex: 0 0 calc(50% - 7px)
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .faq-aside {
        position: static
    }

    .services-intro {
        padding: 50px 20px 0
    }

    .services-list {
        grid-template-columns: 1fr;
        margin: 0 20px 40px;
        gap: 2px
    }

    .free-banner {
        margin: 0 20px 40px;
        padding: 32px 24px;
        flex-direction: column;
        align-items: flex-start
    }

    .free-banner h3 {
        font-size: 1.8rem
    }

    .gallery-intro {
        padding: 50px 20px 0
    }

    .gallery-masonry {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 24px 20px 0
    }

    .g-item:first-child {
        grid-column: span 2;
        grid-row: span 1
    }

    .testi-wrap {
        padding: 40px 20px;
        grid-template-columns: 1fr 1fr;
        gap: 14px
    }

    .about-hero {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 50px 20px
    }

    .about-text h2 {
        font-size: clamp(1.8rem, 6vw, 3rem)
    }

    .team-section {
        padding: 0 20px 50px
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px
    }

    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 50px 20px
    }

    .c-form {
        padding: 32px 24px
    }

    footer {
        padding: 40px 20px 20px
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px
    }

    .footer-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center
    }

    .float-btn {
        width: 64px;
        height: 64px;
        font-size: 1.6rem;
        bottom: 20px;
        right: 16px
    }
}

@media (max-width:600px) {
    .hero {
        padding: 32px 16px 48px
    }

    .hero-tag {
        font-size: .68rem;
        letter-spacing: 1px;
        padding: 5px 12px
    }

    .hero h1 {
        font-size: clamp(2.8rem, 14vw, 4.5rem);
        margin-bottom: 18px
    }

    .hero h1 .line3 {
        letter-spacing: 4px
    }

    .hero-desc {
        font-size: .9rem;
        margin-bottom: 24px
    }

    .hero-actions {
        gap: 12px;
        margin-bottom: 28px
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr)
    }

    .stat-item {
        padding: 14px 10px
    }

    .stat-num {
        font-size: 1.4rem
    }

    .stat-label {
        font-size: .62rem
    }

    .cta-final,
    .faq-section,
    .home-testi,
    .how-section,
    .problems-section,
    .why-section {
        padding: 40px 16px
    }

    .brands-strip {
        padding: 14px 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px
    }

    .why-grid-home {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .why-card-home {
        padding: 22px 16px
    }

    .problems-list {
        gap: 10px
    }

    .prob-item {
        padding: 14px 16px
    }

    .home-testi-grid {
        scroll-padding: 0
    }

    .ht-card {
        flex: 0 0 85%;
        padding: 22px 18px;
        scroll-snap-align: center
    }

    .faq-q {
        padding: 16px 16px;
        font-size: .88rem
    }

    .faq-a {
        padding: 0 16px
    }

    .faq-item.open .faq-a {
        padding: 0 16px 16px
    }

    .faq-aside {
        padding: 28px 20px
    }

    .cta-phone-big {
        font-size: 2rem;
        letter-spacing: 2px
    }

    .cta-btns {
        flex-direction: column
    }

    .cta-btns .btn-glow,
    .cta-btns .btn-outline {
        width: 100%;
        text-align: center
    }

    .services-intro {
        padding: 40px 16px 0
    }

    .services-list {
        margin: 16px 16px 32px
    }

    .srv-card {
        padding: 28px 20px
    }

    .srv-num {
        font-size: 2.5rem
    }

    .free-banner {
        margin: 0 16px 32px;
        padding: 28px 20px
    }

    .free-banner h3 {
        font-size: 1.5rem
    }

    .free-banner .btn-glow {
        width: 100%;
        text-align: center
    }

    .gallery-intro {
        padding: 40px 16px 0
    }

    .gallery-masonry {
        grid-template-columns: 1fr;
        padding: 20px 16px 0;
        gap: 10px
    }

    .g-item:first-child {
        grid-column: span 1
    }

    .testi-wrap {
        padding: 32px 16px;
        grid-template-columns: 1fr;
        gap: 12px
    }

    .t-card {
        padding: 24px 18px
    }

    .about-hero {
        padding: 40px 16px;
        gap: 24px
    }

    .about-visual {
        padding: 32px 24px
    }

    .av-num {
        font-size: 2.2rem
    }

    .team-section {
        padding: 0 16px 40px
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .team-card {
        padding: 24px 16px
    }

    .contact-wrap {
        padding: 40px 16px
    }

    .c-form {
        padding: 24px 16px;
        border-radius: 16px
    }

    .c-form h3 {
        font-size: 1.4rem
    }

    .f-row {
        grid-template-columns: 1fr;
        gap: 0
    }

    .c-info h2 {
        font-size: 2.2rem
    }

    .c-item {
        padding: 14px;
        gap: 12px
    }

    footer {
        padding: 75px 15px 50px;
        background: radial-gradient(circle at top, #061a29 0%, #020a10 100%);
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 60px;
    }

    /* PREMIUM CARD WITH DYNAMIC SHINE */
    .f-brand,
    .f-col {
        background: rgba(255, 255, 255, 0.02);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 28px;
        padding: 45px 25px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* CENTER FOOTER ICONS */
    .f-brand div[style*="display:flex"] {
        justify-content: center;
        width: 100%;
    }

    .f-brand::after,
    .f-col::after {
        content: '';
        position: absolute;
        top: -150%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(0, 180, 216, 0.05), transparent);
        transform: rotate(45deg);
        animation: cardShine 6s infinite;
        pointer-events: none;
    }

    @keyframes cardShine {
        0% {
            transform: translateX(-100%) rotate(45deg);
        }

        30%,
        100% {
            transform: translateX(100%) rotate(45deg);
        }
    }

    .f-brand::before,
    .f-col::before {
        content: '';
        position: absolute;
        top: 0;
        left: 25%;
        right: 25%;
        height: 2px;
        background: var(--blue);
        box-shadow: 0 0 20px rgba(0, 180, 216, 0.6);
    }

    /* TYPOGRAPHY OVERHAUL */
    .f-col h5 {
        font-family: 'Bebas Neue', sans-serif !important;
        font-size: 1.5rem !important;
        letter-spacing: 5px !important;
        margin-bottom: 30px !important;
        background: linear-gradient(135deg, #00b4d8 0%, #ffffff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 400 !important;
        text-shadow: 0 10px 20px rgba(0, 180, 216, 0.1);
    }

    /* BOUTIQUE LIST STYLE */
    .f-col ul {
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding: 0;
    }

    .f-col ul li a {
        background: rgba(255, 255, 255, 0.03);
        /* subtle pill background */
        border: 1px solid rgba(255, 255, 255, 0.04);
        border-radius: 100px;
        /* pill shape */
        padding: 16px 20px;
        color: rgba(255, 255, 255, 0.85);
        font-size: 1.05rem;
        font-family: 'Outfit', sans-serif;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        letter-spacing: 0.5px;
    }

    /* Subtle touch/hover state */
    .f-col ul li a:active,
    .f-col ul li a:hover {
        background: rgba(0, 180, 216, 0.12);
        border-color: rgba(0, 180, 216, 0.3);
        color: var(--blue);
        transform: scale(0.98);
        /* push-button effect */
        box-shadow: inset 0 0 20px rgba(0, 180, 216, 0.05);
    }

    /* Clean branding text */
    .f-brand p {
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.55);
        line-height: 1.8;
        max-width: 280px;
        margin: 0 auto;
    }

    .f-col-contact-item {
        background: rgba(0, 180, 216, 0.08);
        border: 1.5px solid rgba(0, 180, 216, 0.2);
        padding: 22px;
        border-radius: 20px;
        font-weight: 800;
        font-size: 1.25rem !important;
        color: #fff !important;
        box-shadow: inset 0 0 20px rgba(0, 180, 216, 0.05);
    }

    .footer-bottom {
        padding-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .footer-bottom p {
        font-size: 0.8rem !important;
        opacity: 0.5 !important;
        color: var(--white) !important;
    }

    .f-group input,
    .f-group select,
    .f-group textarea {
        font-size: 16px
    }
}

@media (max-width:380px) {
    .hero h1 {
        font-size: 2.6rem
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr
    }

    .stat-item:last-child {
        grid-column: span 2;
        border-right: none;
        border-top: 1px solid rgba(0, 180, 216, .15)
    }

    .steps-grid {
        grid-template-columns: 1fr
    }

    .logo {
        font-size: 1.4rem;
        letter-spacing: 2px
    }
}

@media (hover:none) {
    .srv-card:hover {
        background: var(--panel)
    }

    .g-item:hover {
        transform: none
    }

    .why-card-home:hover {
        transform: none
    }

    .prob-item:hover {
        transform: none
    }

    .ht-card:hover {
        transform: none
    }

    .t-card:hover {
        transform: none
    }

    .g-overlay {
        opacity: .92
    }

    .faq-q,
    .srv-card,
    a,
    button {
        -webkit-tap-highlight-color: rgba(0, 180, 216, 0.15)
    }

    .btn-glow,
    .btn-outline,
    .f-submit,
    .faq-q,
    .float-btn,
    .nav-links a,
    nav a {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .float-btn {
        min-height: auto;
        min-width: auto
    }
}

.how-section {
    padding: 100px 80px;
    position: relative
}

.how-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px
}

.steps-new {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0
}

.steps-new::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    transform: translateX(-50%);
    width: 2px;
    background: linear-gradient(180deg, transparent 0, var(--blue) 15%, var(--blue) 85%, transparent 100%);
    opacity: .25
}

.step-new {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative
}

.step-new.step-new-alt {
    flex-direction: row-reverse
}

.step-new-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 7rem;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 180, 216, 0.18);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    letter-spacing: -2px;
    width: 100px;
    text-align: center
}

.step-new-card {
    width: calc(50% - 60px);
    background: var(--panel);
    border: 1px solid rgba(0, 180, 216, .12);
    border-radius: 20px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color .4s ease, transform .4s ease, box-shadow .4s ease;
    position: relative;
    z-index: 1;
    margin: 20px 0
}

.step-new-card:hover {
    border-color: rgba(0, 180, 216, .4);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 180, 216, .1)
}

.step-new-card-final {
    border-color: rgba(0, 180, 216, .3);
    background: linear-gradient(135deg, var(--panel) 0, rgba(0, 180, 216, .06) 100%)
}

.step-connector {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--blue);
    z-index: 3;
    box-shadow: 0 0 0 4px rgba(0, 180, 216, .2), 0 0 12px rgba(0, 180, 216, .4)
}

.step-new-icon-wrap {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    background: rgba(0, 180, 216, .08);
    border: 1px solid rgba(0, 180, 216, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.step-new-icon {
    font-size: 1.8rem;
    line-height: 1
}

.step-new-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue)
}

.step-new-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1.5px;
    color: var(--white);
    margin: 0
}

.step-new-desc {
    color: rgba(240, 248, 255, .55);
    font-size: .88rem;
    line-height: 1.7;
    margin: 0
}

.step-new-desc strong {
    color: var(--white);
    font-weight: 600
}

.step-link {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 180, 216, .4);
    transition: border-color .2s
}

.step-link:hover {
    border-color: var(--blue)
}

.step-new-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .5px;
    background: rgba(0, 180, 216, .1);
    border: 1px solid rgba(0, 180, 216, .25);
    color: var(--blue);
    width: fit-content;
    margin-top: 10px
}

@media (max-width:768px) {
    .how-section {
        padding: 50px 16px 60px
    }

    .how-header {
        margin-bottom: 40px;
        text-align: left
    }

    .steps-new::before {
        left: 22px;
        top: 0;
        bottom: 0;
        transform: none
    }

    .step-new,
    .step-new.step-new-alt {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 54px;
        position: relative
    }

    .step-new-num {
        position: absolute;
        left: -4px;
        top: 16px;
        transform: none;
        font-size: 2.6rem;
        -webkit-text-stroke: 1px rgba(0, 180, 216, 0.35);
        width: 44px;
        text-align: center;
        line-height: 1
    }

    .step-connector {
        position: absolute;
        left: 22px;
        top: 28px;
        transform: translateX(-50%);
        width: 12px;
        height: 12px
    }

    .step-new-card {
        width: 100%;
        padding: 22px 18px;
        border-radius: 16px;
        margin: 8px 0 24px;
        gap: 10px
    }

    .step-new-icon-wrap {
        width: 50px;
        height: 50px;
        border-radius: 12px
    }

    .step-new-icon {
        font-size: 1.4rem
    }

    .step-new-title {
        font-size: 1.25rem
    }

    .step-new-desc {
        font-size: .84rem;
        line-height: 1.65
    }

    .step-new-tag {
        font-size: .7rem;
        padding: 4px 12px;
        margin-top: 6px
    }
}

@media (max-width:900px) and (orientation:landscape) {
    .hero {
        min-height: auto;
        padding: 36px 30px
    }

    .nav-overlay {
        padding-top: 60px;
        overflow-y: auto
    }
}

@media (max-width:900px) {
    nav {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(4, 13, 20, .97)
    }

    .nav-overlay {
        backdrop-filter: none;
        -webkit-backdrop-filter: none
    }

    .sa-card {
        backdrop-filter: none;
        -webkit-backdrop-filter: none
    }
}

@media (prefers-reduced-motion:reduce) {

    *,
    ::after,
    ::before {
        animation-duration: 0s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0s !important;
        scroll-behavior: auto !important
    }

    .fridge-scene {
        animation: none;
        transform: rotateY(-8deg) rotateX(2deg)
    }

    .fridge-glow,
    .hero-glow {
        animation: none;
        opacity: .7
    }

    .float-btn {
        animation: none
    }

    .track-left,
    .track-right {
        animation: none
    }

    .snowflakes {
        display: none
    }

    .hero::before {
        animation: none
    }

    .tag-dot {
        animation: none;
        opacity: 1
    }

    .frost-item {
        animation: none;
        opacity: .9
    }

    .click-hint {
        animation: none;
        opacity: .6
    }
}

.fridge-body {
    background: linear-gradient(160deg, #2e3c44 0, #1d2830 12%, #111820 35%, #0c1014 58%, #141c23 82%, #1d2932 100%);
    box-shadow: inset -12px 0 35px rgba(0, 0, 0, .95), inset 6px 0 18px rgba(255, 255, 255, .09), inset 0 4px 18px rgba(255, 255, 255, .06), 0 70px 140px rgba(0, 0, 0, .95), 0 0 0 1px rgba(255, 255, 255, .055), 0 0 80px rgba(0, 180, 216, .08)
}

.fridge-neon-edge {
    position: absolute;
    inset: 0;
    border-radius: 22px 22px 18px 18px;
    border: 1.5px solid rgba(0, 210, 255, .4);
    box-shadow: 0 0 30px rgba(0, 200, 255, .25), 0 0 90px rgba(0, 180, 216, .14), inset 0 0 25px rgba(0, 200, 255, .05);
    animation: neonPulse 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 20;
    will-change: opacity
}

@keyframes neonPulse {

    0%,
    100% {
        opacity: .5
    }

    50% {
        opacity: 1
    }
}

.fridge-scene:hover .fridge-neon-edge {
    animation: neonPulseHover 2s ease-in-out infinite
}

@keyframes neonPulseHover {

    0%,
    100% {
        opacity: .82
    }

    50% {
        opacity: 1
    }
}

.fridge-corner {
    position: absolute;
    width: 18px;
    height: 18px;
    z-index: 21;
    opacity: 0;
    animation: cornerFadeIn 1s ease forwards;
    will-change: opacity
}

.fridge-corner-tl {
    top: 6px;
    left: 6px;
    border-top: 2px solid rgba(0, 230, 255, .7);
    border-left: 2px solid rgba(0, 230, 255, .7);
    border-radius: 5px 0 0 0;
    animation-delay: .2s
}

.fridge-corner-tr {
    top: 6px;
    right: 6px;
    border-top: 2px solid rgba(0, 230, 255, .7);
    border-right: 2px solid rgba(0, 230, 255, .7);
    border-radius: 0 5px 0 0;
    animation-delay: .35s
}

.fridge-corner-bl {
    bottom: 6px;
    left: 6px;
    border-bottom: 2px solid rgba(0, 230, 255, .7);
    border-left: 2px solid rgba(0, 230, 255, .7);
    border-radius: 0 0 0 5px;
    animation-delay: .5s
}

.fridge-corner-br {
    bottom: 6px;
    right: 6px;
    border-bottom: 2px solid rgba(0, 230, 255, .7);
    border-right: 2px solid rgba(0, 230, 255, .7);
    border-radius: 0 0 5px 0;
    animation-delay: .65s
}

@keyframes cornerFadeIn {
    to {
        opacity: 1
    }
}

.fridge-glow {
    width: 300px;
    height: 65px;
    background: radial-gradient(ellipse at center, rgba(0, 215, 255, .5) 0, rgba(0, 165, 230, .28) 40%, transparent 70%);
    filter: blur(18px);
    animation: floorGlowWow 4s ease-in-out infinite;
    will-change: transform, opacity
}

@keyframes floorGlowWow {

    0%,
    100% {
        opacity: .48;
        transform: translateX(-50%) scaleX(.82)
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) scaleX(1.15)
    }
}

.cold-flash {
    position: absolute;
    inset: -50px;
    background: radial-gradient(ellipse at 50% 50%, rgba(190, 248, 255, .75) 0, rgba(0, 215, 255, .4) 35%, rgba(0, 165, 225, .18) 60%, transparent 78%);
    opacity: 0;
    pointer-events: none;
    z-index: 50;
    animation: coldBurst .7s ease-out forwards;
    border-radius: 50%;
    will-change: transform, opacity
}

@keyframes coldBurst {
    0% {
        opacity: 0;
        transform: scale(.3)
    }

    18% {
        opacity: .85;
        transform: scale(.88)
    }

    50% {
        opacity: .42;
        transform: scale(1.2)
    }

    100% {
        opacity: 0;
        transform: scale(1.8)
    }
}

.smart-hub {
    background: #010406;
    border: 1px solid rgba(0, 215, 255, .38);
    box-shadow: inset 0 0 25px #000, 0 0 24px rgba(0, 195, 255, .55), 0 0 60px rgba(0, 175, 255, .28);
    animation: hubPulse 3.2s ease-in-out infinite;
    will-change: opacity
}

@keyframes hubPulse {

    0%,
    100% {
        opacity: .82
    }

    50% {
        opacity: 1
    }
}

.hub-ring {
    border-top-color: #00f5ff;
    border-right-color: #00f5ff;
    box-shadow: 0 0 16px rgba(0, 245, 255, .55), 0 0 34px rgba(0, 220, 255, .28), inset 0 0 8px rgba(0, 245, 255, .2)
}

.hub-temp {
    color: #0ff;
    text-shadow: 0 0 6px #0ff, 0 0 18px #00d8ff, 0 0 34px #0af;
    animation: counterSpin 4s linear infinite
}

.hub-line {
    background: rgba(0, 255, 255, .65);
    box-shadow: 0 0 5px rgba(0, 255, 255, .9)
}

.hub-time {
    text-shadow: 0 0 8px rgba(255, 255, 255, .45)
}

.door-main .handle,
.door-top .handle {
    background: linear-gradient(180deg, #566270 0, #3b4b56 20%, #26303a 50%, #191f28 80%, #2e3e4a 100%);
    box-shadow: 3px 0 14px rgba(0, 0, 0, .88), -1px 0 4px rgba(255, 255, 255, .12), inset 1px 0 4px rgba(255, 255, 255, .18), inset -2px 0 8px rgba(0, 0, 0, .72)
}

.door-main.open,
.door-top.open {
    box-shadow: inset -4px 0 16px rgba(0, 0, 0, .6), inset 3px 0 8px rgba(255, 255, 255, .1), -28px 0 55px rgba(120, 232, 255, .38), -55px 0 110px rgba(0, 192, 255, .18)
}

.click-hint {
    color: rgba(0, 228, 255, .82);
    text-shadow: 0 0 12px rgba(0, 210, 255, .6);
    letter-spacing: 2px
}

.fridge-side {
    background: linear-gradient(180deg, #1e2830 0, #101820 50%, #0a0c0e 100%);
    box-shadow: inset -3px 0 10px rgba(0, 0, 0, .65), inset 0 0 18px rgba(0, 180, 216, .05)
}