﻿*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --bg: #080808;
    --bg2: #0f0f0f;
    --bg3: #141414;
    --border: rgba(255,255,255,0.08);
    --border2: rgba(255,255,255,0.15);
    --white: #ffffff;
    --gray1: #e8e8e8;
    --gray2: #888888;
    --gray3: #444444;
    --font: 'Inter',system-ui,sans-serif;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--gray1);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 68px;
    background: rgba(8,8,8,0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    text-decoration: none;
    font-family: 'Pacifico',cursive;
    font-size: 22px;
    color: var(--white);
    letter-spacing: -0.5px
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none
}

    .nav-links a {
        font-size: 14px;
        font-weight: 400;
        color: var(--gray2);
        text-decoration: none;
        transition: color 0.2s;
        display: flex;
        align-items: center;
        gap: 5px
    }

        .nav-links a:hover {
            color: var(--white)
        }

    .nav-links .has-drop {
        position: relative;
        cursor: pointer;
        font-size: 14px;
        color: var(--gray2)
    }

.has-drop:hover {
    color: var(--white)
}

    .has-drop:hover .drop {
        display: block
    }

.drop {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: -12px;
    background: var(--bg3);
    border: 1px solid var(--border2);
    border-radius: 10px;
    padding: 6px;
    min-width: 190px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6)
}

    .drop a {
        display: block;
        padding: 9px 14px;
        border-radius: 7px;
        font-size: 13px;
        color: var(--gray2);
        text-decoration: none
    }

        .drop a:hover {
            background: rgba(255,255,255,0.05);
            color: var(--white)
        }

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: 6px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
    border: none
}

.btn-white {
    background: var(--white);
    color: #000;
    border: 1.5px solid var(--white)
}

    .btn-white:hover {
        background: var(--gray1);
        transform: translateY(-1px)
    }

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--border2)
}

    .btn-outline:hover {
        border-color: var(--white);
        background: rgba(255,255,255,0.04);
        transform: translateY(-1px)
    }

.arrow {
    font-size: 16px;
    line-height: 1
}

/* HERO */
.hero {
    min-height: 100vh;
    padding: 120px 48px 80px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border2);
    border-radius: 999px;
    padding: 6px 16px;
    margin-bottom: 28px;
    width: fit-content;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    background: var(--white);
    border-radius: 50%
}

.hero-badge span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--gray2);
    text-transform: uppercase
}

h1 {
    font-size: clamp(52px,5.5vw,80px);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -3px;
    color: var(--white);
    margin-bottom: 20px
}

    h1 .dim {
        color: var(--gray3);
        font-weight: 800
    }

.hero-sub {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray2);
    max-width: 480px;
    margin-bottom: 36px
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

/* Hero A mark — SVG illustration */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.hero-a-wrap {
    position: relative;
    width: 420px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center
}

.hero-a-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 60%,rgba(255,255,255,0.06) 0%,transparent 65%);
    pointer-events: none
}

/* LOGOS STRIP */
.logos-strip {
    padding: 36px 48px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg)
}

.logos-strip-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap
}

.logos-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray3);
    white-space: nowrap
}

.logos-list {
    display: flex;
    align-items: center;
    gap: 44px;
    flex: 1;
    flex-wrap: wrap
}

.logo-name {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,0.18);
    letter-spacing: 0.05em;
    transition: color 0.3s;
    cursor: default;
    text-transform: uppercase
}

    .logo-name:hover {
        color: rgba(255,255,255,0.5)
    }

/* SECTIONS */
section {
    padding: 100px 48px
}

.container {
    max-width: 1280px;
    margin: 0 auto
}

.sec-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray3);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px
}

    .sec-label::before {
        content: '';
        width: 20px;
        height: 1px;
        background: var(--gray3)
    }

h2 {
    font-size: clamp(32px,3.5vw,48px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.5px;
    color: var(--white);
    margin-bottom: 16px
}

    h2 .dim {
        color: var(--gray3);
        font-weight: 700
    }

.sec-intro {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--gray2);
    max-width: 520px;
    margin-bottom: 52px
}

/* SERVICES */
.svc-sec {
    background: var(--bg)
}

.svc-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    background: var(--border);
    border-radius: 14px;
    overflow: hidden
}

.svc-card {
    background: var(--bg2);
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s
}

    .svc-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: var(--white);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s
    }

    .svc-card:hover {
        background: var(--bg3)
    }

        .svc-card:hover::after {
            transform: scaleX(1)
        }

.svc-num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(255,255,255,0.03);
    line-height: 1
}

.svc-icon {
    width: 42px;
    height: 42px;
    border-radius: 9px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px
}

    .svc-icon svg {
        width: 20px;
        height: 20px;
        stroke: #fff;
        fill: none;
        stroke-width: 1.6;
        stroke-linecap: round;
        stroke-linejoin: round
    }

.svc-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -0.3px
}

.svc-txt {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray2);
    margin-bottom: 20px
}

.svc-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s
}

    .svc-link:hover {
        color: var(--white);
        gap: 9px
    }

    .svc-link::after {
        content: '→'
    }

/* NUMBERS */
.nums-sec {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.nums-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr)
}

.num-item {
    padding: 52px 40px;
    border-right: 1px solid var(--border)
}

    .num-item:last-child {
        border-right: none
    }

.num-val {
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 8px
}

    .num-val .pre {
        font-size: 24px;
        color: var(--gray2)
    }

    .num-val .suf {
        font-size: 24px;
        color: var(--gray2)
    }

.num-lbl {
    font-size: 13px;
    color: var(--gray3);
    line-height: 1.5
}

/* PROCESS */
.proc-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1px;
    background: var(--border);
    border-radius: 14px;
    overflow: hidden;
    margin-top: 52px
}

.proc-step {
    background: var(--bg2);
    padding: 36px 28px;
    position: relative;
    transition: background 0.3s
}

    .proc-step:hover {
        background: var(--bg3)
    }

        .proc-step:hover .p-accent {
            transform: scaleX(1)
        }

.p-num {
    font-size: 56px;
    font-weight: 800;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -3px
}

.p-dot {
    width: 7px;
    height: 7px;
    background: var(--white);
    border-radius: 50%;
    margin-bottom: 14px;
    opacity: 0.6
}

.p-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px
}

.p-txt {
    font-size: 13px;
    line-height: 1.75;
    color: var(--gray2)
}

.p-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
    opacity: 0.3
}

/* CASES */
.cases-sec {
    background: var(--bg3)
}

.cases-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 16px;
    margin-top: 52px
}

.case-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s;
    cursor: pointer
}

    .case-card:hover {
        border-color: var(--border2);
        transform: translateY(-4px);
        box-shadow: 0 16px 48px rgba(0,0,0,0.5)
    }

    .case-card.feat {
        background: rgba(255,255,255,0.03);
        border-color: var(--border2)
    }

.case-tag {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--gray2);
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border2);
    border-radius: 999px;
    padding: 4px 12px;
    width: fit-content
}

.case-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    letter-spacing: -0.3px
}

.case-mets {
    display: flex;
    gap: 20px
}

.cm-val {
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 3px;
    letter-spacing: -1px
}

.cm-lbl {
    font-size: 11px;
    color: var(--gray3)
}

.case-read {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray3);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
    transition: all 0.2s
}

    .case-read:hover {
        color: var(--white);
        gap: 9px
    }

    .case-read::after {
        content: '→'
    }

/* TESTIMONIALS */
.testi-sec {
    background: var(--bg)
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    margin-top: 52px
}

.testi {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    transition: border-color 0.3s
}

    .testi:hover {
        border-color: var(--border2)
    }

.t-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 14px
}

.star {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 0.8;
    clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%)
}

.t-quote-mark {
    font-size: 40px;
    line-height: 0.8;
    color: rgba(255,255,255,0.15);
    margin-bottom: 14px;
    font-family: Georgia,serif
}

.t-quote {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray2);
    margin-bottom: 20px;
    font-style: italic
}

.t-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 16px
}

.t-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.t-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    background: rgba(255,255,255,0.1);
    border: 1px solid var(--border2)
}

.t-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px
}

.t-role {
    font-size: 11px;
    color: var(--gray3)
}

/* PRICING */
.price-sec {
    background: var(--bg3)
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    margin-top: 52px
}

.price-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 36px;
    position: relative;
    transition: all 0.3s
}

    .price-card:hover:not(.popu) {
        border-color: var(--border2);
        transform: translateY(-3px)
    }

    .price-card.popu {
        border-color: rgba(255,255,255,0.3);
        background: rgba(255,255,255,0.04);
        box-shadow: 0 0 60px rgba(255,255,255,0.03)
    }

.pop-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 999px;
    white-space: nowrap
}

.p-tier {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray3);
    margin-bottom: 14px
}

.p-price {
    font-size: 44px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 6px
}

    .p-price sup {
        font-size: 20px;
        font-weight: 600;
        color: var(--gray2)
    }

    .p-price sub {
        font-size: 14px;
        font-weight: 400;
        color: var(--gray3);
        letter-spacing: 0
    }

.p-desc {
    font-size: 13px;
    color: var(--gray3);
    margin-bottom: 24px;
    line-height: 1.6
}

.p-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px
}

    .p-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 13px;
        color: var(--gray2)
    }

.chk {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 1px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center
}

    .chk::after {
        content: '';
        width: 5px;
        height: 3px;
        border-left: 1.5px solid var(--white);
        border-bottom: 1.5px solid var(--white);
        transform: rotate(-45deg) translateY(-1px)
    }

/* TICKER */
.ticker {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    overflow: hidden;
    background: var(--bg2)
}

.ticker-inner {
    display: flex;
    animation: tickmove 35s linear infinite;
    white-space: nowrap
}

@keyframes tickmove {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.ti {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray3);
    padding: 0 32px;
    border-right: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    gap: 8px
}

    .ti strong {
        color: var(--gray1);
        font-weight: 700
    }

/* CTA */
.cta-sec {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    text-align: center;
    padding: 100px 48px
}

    .cta-sec h2 {
        letter-spacing: -1.5px;
        margin-bottom: 14px
    }

.cta-note {
    font-size: 16px;
    color: var(--gray2);
    max-width: 440px;
    margin: 0 auto 36px;
    line-height: 1.7
}

.cta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 420px;
    margin: 0 auto;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border2);
    border-radius: 8px;
    padding: 6px 6px 6px 20px
}

    .cta-row input {
        flex: 1;
        background: transparent;
        border: none;
        outline: none;
        font-family: var(--font);
        font-size: 14px;
        color: var(--white)
    }

        .cta-row input::placeholder {
            color: var(--gray3)
        }

.cta-small {
    font-size: 12px;
    color: var(--gray3);
    margin-top: 12px
}

/* FOOTER */
footer {
    background: var(--bg);
    color: var(--gray3);
    padding: 64px 48px 32px;
    border-top: 1px solid var(--border)
}

.foot-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px
}

.foot-brand-name {
    font-family: 'Pacifico',cursive;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
    display: block
}

.foot-desc {
    font-size: 13px;
    line-height: 1.75;
    max-width: 240px;
    margin-bottom: 22px
}

.foot-col-h {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray2);
    margin-bottom: 14px
}

.foot-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px
}

    .foot-links a {
        font-size: 13px;
        color: var(--gray3);
        text-decoration: none;
        transition: color 0.2s
    }

        .foot-links a:hover {
            color: var(--white)
        }

.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    flex-wrap: wrap;
    gap: 12px
}

.socials {
    display: flex;
    gap: 8px
}

.soc {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--gray3);
    font-size: 12px;
    font-weight: 700;
    transition: all 0.2s
}

    .soc:hover {
        border-color: var(--white);
        color: var(--white)
    }

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease,transform 0.55s ease
}

    .reveal.in {
        opacity: 1;
        transform: translateY(0)
    }

    .reveal.d1 {
        transition-delay: .1s
    }

    .reveal.d2 {
        transition-delay: .2s
    }

    .reveal.d3 {
        transition-delay: .3s
    }

    .reveal.d4 {
        transition-delay: .4s
    }

@media(max-width:1024px) {
    nav {
        padding: 0 20px
    }

    .nav-links {
        display: none
    }

    section {
        padding: 64px 20px
    }

    .hero {
        padding: 100px 20px 60px;
        grid-template-columns: 1fr
    }

    .hero-visual {
        display: none
    }

    .svc-grid {
        grid-template-columns: 1fr 1fr
    }

    .nums-grid {
        grid-template-columns: 1fr 1fr
    }

    .proc-grid {
        grid-template-columns: 1fr 1fr
    }

    .cases-grid {
        grid-template-columns: 1fr 1fr
    }

    .testi-grid {
        grid-template-columns: 1fr
    }

    .price-grid {
        grid-template-columns: 1fr
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr
    }

    .logos-strip {
        padding: 32px 20px
    }
}

.ac-sec-label {
    color: var(--gray2)!important;
}

.loading-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
}

.loading-content {
    padding: 20px 40px;
    font-size: 40px;
    font-weight: 600;
    color: #fff;
}

.errMsg {

}