:root {
    --black: #080809;
    --dark: #0e0f11;
    --card: #131517;
    --card2: #171a1c;
    --border: #1f2224;
    --border2: #2a2d30;
    --accent: #E6B345;
    --accent-dim: rgba(230, 179, 69, 0.1);
    --accent-glow: rgba(230, 179, 69, 0.22);
    --white: #f0ede8;
    --muted: #9a9a9a;
    --display: 'Unbounded', sans-serif;
    --body: 'Onest', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    word-break: break-word;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* CURSOR GLOW */
.cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 179, 69, 0.055) 0%, transparent 65%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9998;
    transition: left 0.12s ease, top 0.12s ease;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 64px;
    background: rgba(8, 8, 9, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    transition: padding 0.35s, background 0.35s;
}

nav.scrolled {
    padding: 15px 64px;
    background: rgba(8, 8, 9, 0.96);
}

.nav-logo {
    font-family: var(--display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-sep {
    width: 1px;
    height: 14px;
    background: var(--border2);
    margin: 0 13px;
}

.nav-logo .lab {
    color: var(--accent);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 13px;
    color: #888;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link.active {
    color: var(--accent);
}

.nav-cta {
    background: var(--accent);
    color: var(--black);
    font-family: var(--body);
    font-weight: 700;
    font-size: 11px;
    padding: 11px 26px;
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.nav-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.18);
    transform: translateX(-110%);
    transition: transform 0.35s;
}

.nav-cta:hover::after {
    transform: translateX(0);
}

/* ===================== HERO ===================== */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: center;
    padding: 130px 64px 90px;
    position: relative;
    overflow: hidden;
    gap: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 80% 40%, rgba(230, 179, 69, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 35% 50% at 5% 75%, rgba(230, 179, 69, 0.035) 0%, transparent 55%),
    radial-gradient(ellipse 100% 40% at 50% 105%, rgba(230, 179, 69, 0.025) 0%, transparent 60%);
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px);
    background-size: 72px 72px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
}

.hero-left {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(230, 179, 69, 0.08);
    border: 1px solid rgba(230, 179, 69, 0.18);
    padding: 8px 16px 8px 12px;
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeUp 0.7s 0.1s ease forwards;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(230, 179, 69, 0.4);
    }
    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 5px rgba(230, 179, 69, 0);
    }
}

.hero-badge span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
}

.hero h1 {
    font-family: var(--display);
    font-size: clamp(32px, 4vw, 66px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 26px;
    opacity: 0;
    animation: fadeUp 0.7s 0.2s ease forwards;
}

.hero h1 span {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    opacity: 0.35;
    transform: scaleX(0);
    transform-origin: left;
    animation: growLine 0.5s 1.1s ease forwards;
}

@keyframes growLine {
    to {
        transform: scaleX(1);
    }
}

.hero-sub {
    font-size: 16px;
    color: #999;
    max-width: 490px;
    line-height: 1.78;
    margin-bottom: 44px;
    opacity: 0;
    animation: fadeUp 0.7s 0.3s ease forwards;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.7s 0.4s ease forwards;
}

.btn-main {
    background: var(--accent);
    color: var(--black);
    font-family: var(--body);
    font-weight: 700;
    font-size: 13px;
    padding: 17px 42px;
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-main .arr {
    transition: transform 0.3s;
}

.btn-main:hover {
    background: #f0c458;
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(230, 179, 69, 0.28);
}

.btn-main:hover .arr {
    transform: translateX(5px);
}

.hero-note {
    font-size: 13px;
    color: #777;
    line-height: 1.55;
}

.hero-note b {
    color: #999;
}

.hero-stats {
    display: flex;
    gap: 0;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    opacity: 0;
    animation: fadeUp 0.7s 0.5s ease forwards;
}

.hstat {
    flex: 1;
    padding-right: 28px;
    position: relative;
}

.hstat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border);
}

.hstat + .hstat {
    padding-left: 28px;
}

.hstat-n {
    font-family: var(--display);
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
}

.hstat-n em {
    font-style: normal;
    color: var(--accent);
}

.hstat-l {
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.4;
}

/* HERO RIGHT — VISUAL */
.hero-right {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 1.2s 0.7s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.visual-wrap {
    position: relative;
    width: 460px;
    height: 460px;
}

/* orbit rings */
.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(230, 179, 69, 0.07);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 320px;
    height: 320px;
    border-style: dashed;
    animation: rotCW 28s linear infinite;
}

.ring-2 {
    width: 420px;
    height: 420px;
    animation: rotCCW 40s linear infinite;
}

.ring-3 {
    width: 520px;
    height: 520px;
    border-color: rgba(230, 179, 69, 0.03);
    animation: rotCW 60s linear infinite;
}

@keyframes rotCW {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes rotCCW {
    to {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

/* ring node dots */
.ring::before {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    top: -3.5px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 12px 2px var(--accent-glow);
}

.ring-2::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background: rgba(230, 179, 69, 0.45);
    border-radius: 50%;
    bottom: -2.5px;
    left: 25%;
}

/* center card */
.vcenter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--card);
    border: 1px solid var(--border2);
    padding: 30px 28px;
    width: 260px;
    z-index: 5;
}

.vcenter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
    opacity: 0.55;
}

.vc-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.vc-label::before {
    content: '';
    width: 14px;
    height: 1px;
    background: var(--accent);
}

.vc-title {
    font-family: var(--display);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.015em;
    margin-bottom: 20px;
}

.vc-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vc-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--black);
    border: 1px solid var(--border);
    padding: 9px 12px;
    font-size: 13px;
    color: #999;
    opacity: 0;
    animation: slideIn 0.45s ease forwards;
    transition: border-color 0.25s, color 0.25s;
}

.vc-row:nth-child(1) {
    animation-delay: 1.2s
}

.vc-row:nth-child(2) {
    animation-delay: 1.35s
}

.vc-row:nth-child(3) {
    animation-delay: 1.5s
}

.vc-row:nth-child(4) {
    animation-delay: 1.65s
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(12px)
    }
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.vc-row:hover {
    border-color: rgba(230, 179, 69, 0.3);
    color: var(--white);
}

.vc-ic {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: var(--accent-dim);
    border: 1px solid rgba(230, 179, 69, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.vc-row span {
    flex: 1;
}

.vc-chk {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1px solid #2a2d30;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    color: var(--accent);
}

/* floating chips */
.fchip {
    position: absolute;
    z-index: 6;
    background: var(--card2);
    border: 1px solid var(--border2);
    padding: 12px 16px;
}

.fchip-1 {
    top: -10px;
    right: -10px;
    animation: float1 4s ease-in-out infinite;
}

.fchip-2 {
    bottom: 40px;
    left: 0px;
    animation: float2 5s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-11px)
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-8px)
    }
}

.fchip-v {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 2px;
}

.fchip-l {
    font-size: 9px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===================== SECTIONS COMMON ===================== */
section {
    padding: 110px 64px;
}

.stag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}

.stag::before {
    content: '';
    width: 22px;
    height: 1px;
    background: var(--accent);
    opacity: 0.55;
}

h2 {
    font-family: var(--display);
    font-size: clamp(25px, 3vw, 44px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-bottom: 14px;
}

h2 em {
    font-style: normal;
    color: var(--accent);
}

.sdesc {
    font-size: 15px;
    color: #999;
    max-width: 500px;
    line-height: 1.78;
    margin-bottom: 56px;
}

/* SCROLL REVEAL */
.rv {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.rv.on {
    opacity: 1;
    transform: translateY(0);
    word-break: break-word;
}

.rv.d1 {
    transition-delay: .08s
}

.rv.d2 {
    transition-delay: .16s
}

.rv.d3 {
    transition-delay: .24s
}

.rv.d4 {
    transition-delay: .32s
}

/* ===================== FOR WHO ===================== */
.forwho {
    background: var(--dark);
}

.cards3 {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
}

.fwcard {
    background: var(--card);
    padding: 44px 38px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.fwcard:hover {
    background: #161a1c;
}

.fwcard-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent) 0%, transparent 80%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.fwcard:hover .fwcard-line {
    transform: scaleX(1);
}

.fwcard-shine {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(230, 179, 69, 0.065) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.fwcard:hover .fwcard-shine {
    opacity: 1;
}

.fwcard-ic {
    width: 50px;
    height: 50px;
    background: var(--accent-dim);
    border: 1px solid rgba(230, 179, 69, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 26px;
    transition: transform 0.3s;
}

.fwcard:hover .fwcard-ic {
    transform: scale(1.08);
}

.fwcard h3 {
    font-family: var(--display);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.fwcard p {
    font-size: 15px;
    color: #888;
    line-height: 1.72;
    transition: color 0.3s;
}

.fwcard:hover p {
    color: #aaa;
}

/* ===================== OFFER ===================== */
.offer {
    background: var(--black);
}

.cards2 {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
}

.ofcard {
    background: var(--card);
    padding: 50px 46px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: background 0.3s;
}

.ofcard:hover {
    background: #161a1c;
}

.ofcard-num {
    position: absolute;
    bottom: -28px;
    right: 16px;
    font-family: var(--display);
    font-size: 130px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.018);
    line-height: 1;
    pointer-events: none;
    transition: color 0.4s, transform 0.5s;
}

.ofcard:hover .ofcard-num {
    color: rgba(230, 179, 69, 0.038);
    transform: scale(1.04);
}

.ofpill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-dim);
    border: 1px solid rgba(230, 179, 69, 0.14);
    padding: 5px 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
    width: fit-content;
}

.ofpill-dot {
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
}

.ofcard h3 {
    font-family: var(--display);
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.015em;
    line-height: 1.2;
}

.ofcard p {
    font-size: 15px;
    color: #888;
    line-height: 1.72;
    transition: color 0.3s;
    margin-bottom: 16px;
}

.ofcard:hover p {
    color: #aaa;
}

.of-arrow {
    margin-top: auto;
    padding-top: 28px;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 15px;
    transition: all 0.3s;
}

.ofcard:hover .of-arrow {
    background: var(--accent);
    color: var(--black);
    border-color: var(--accent);
    transform: translate(4px, -4px);
}

/* ===================== HOW IT WORKS ===================== */
.hiw {
    background: var(--dark);
}

.steps4 {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.steps-ruler {
    position: absolute;
    top: 31px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: var(--border);
    overflow: hidden;
}

.steps-ruler-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), rgba(230, 179, 69, 0.15));
    transition: width 1.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.steps-ruler-fill.go {
    width: 100%;
}

.step4 {
    padding: 0 24px 0 0;
    position: relative;
    z-index: 1;
}

.step4-n {
    width: 62px;
    height: 62px;
    border: 1px solid var(--border);
    background: var(--card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-size: 17px;
    font-weight: 900;
    color: var(--muted);
    margin-bottom: 28px;
    transition: all 0.4s;
}

.step4:hover .step4-n {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 28px rgba(230, 179, 69, 0.18);
}

.step4 h3 {
    font-family: var(--display);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.step4 p {
    font-size: 14px;
    color: #888;
    line-height: 1.65;
}

/* ===================== WHY ===================== */
.why2 {
    background: var(--black);
}

.why2-in {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why2-text p {
    font-size: 15px;
    color: #999;
    line-height: 1.82;
    margin-bottom: 18px;
}

.why2-text p strong {
    color: var(--white);
}

.etags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 32px;
}

.etag {
    border: 1px solid var(--border2);
    padding: 7px 15px;
    font-size: 12px;
    font-weight: 500;
    color: #888;
    letter-spacing: 0.03em;
    transition: all 0.22s;
    cursor: default;
}

.etag:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-dim);
}

.wfacts {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
}

.wfact {
    background: var(--card);
    padding: 26px 34px;
    display: flex;
    align-items: center;
    gap: 26px;
    transition: background 0.3s;
}

.wfact:hover {
    background: var(--card2);
}

.wfact-n {
    font-family: var(--display);
    font-size: 34px;
    font-weight: 900;
    color: var(--accent);
    min-width: 140px;
    line-height: 1;
}

.wfact-t strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.wfact-t span {
    font-size: 13px;
    color: #888;
}

/* ===================== FORM ===================== */
.formsec {
    background: #111316;
    position: relative;
    overflow: hidden;
}

.formsec::before {
    content: '';
    position: absolute;
    top: -250px;
    right: -250px;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(230, 179, 69, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.form-in {
    display: grid;
    grid-template-columns:1fr 1.45fr;
    gap: 76px;
    align-items: start;
}

.fl p {
    font-size: 15px;
    color: #999;
    line-height: 1.78;
    margin: 14px 0 32px;
}

.fguars {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: #2a2d30;
}

.fguar {
    background: #1c1f22;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 14px;
    color: #aaa;
    transition: background 0.25s;
}

.fguar:hover {
    background: #222528;
}

.fguar strong {
    color: var(--white);
}

.fg-ic {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    background: var(--accent-dim);
    border: 1px solid rgba(230, 179, 69, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.frow {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 13px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #888;
}

label .req {
    color: var(--accent);
    margin-left: 2px;
}

input, select, textarea {
    background: #1c1f22;
    border: 1px solid #2e3236;
    color: var(--white);
    font-family: var(--body);
    font-size: 14px;
    padding: 13px 16px;
    outline: none;
    width: 100%;
    -webkit-appearance: none;
    border-radius: 0;
    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--accent);
    background: #212528;
    box-shadow: 0 0 0 3px rgba(230, 179, 69, 0.07);
}

input::placeholder, textarea::placeholder {
    color: #888;
}

select {
    cursor: pointer;
    color: #888;
}

select:valid {
    color: var(--white);
}

select option {
    background: #1c1f22;
    color: var(--white);
}

select option:first-child {
    color: #888;
}

textarea {
    resize: vertical;
    min-height: 88px;
}

.fdiv {
    height: 1px;
    background: #2e3236;
    margin: 2px 0;
}

.fsub {
    background: var(--accent);
    color: var(--black);
    font-family: var(--body);
    font-weight: 700;
    font-size: 13px;
    padding: 18px 40px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    margin-top: 4px;
    position: relative;
    overflow: hidden;
}

.fsub::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.14);
    transform: translateX(-110%) skewX(-14deg);
    transition: transform 0.45s;
}

.fsub:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(230, 179, 69, 0.22);
}

.fsub:hover::before {
    transform: translateX(120%) skewX(-14deg);
}

.fsub .ar {
    transition: transform 0.3s;
}

.fsub:hover .ar {
    transform: translateX(6px);
}

.fleg {
    font-size: 11px;
    color: #666;
    text-align: center;
    margin-top: 6px;
}

/* ===================== FOOTER ===================== */
footer {
    background: var(--black);
    border-top: 1px solid var(--border);
    padding: 34px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}

.flogo {
    font-family: var(--display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.flogo .lab {
    color: var(--accent);
}

.fsep {
    width: 1px;
    height: 13px;
    background: var(--border2);
    margin: 0 12px;
}

footer p {
    font-size: 12px;
    color: #2e2e2e;
}

footer a {
    font-size: 12px;
    color: #383838;
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: var(--accent);
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ===================== BURGER MENU ===================== */
.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
}

.burger-menu span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    display: block;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(3px, 3px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: calc(61px + 22px);
    left: 0;
    right: 0;
    background: var(--dark);
    border-bottom: 1px solid var(--border);
    padding: 20px 32px;
    flex-direction: column;
    gap: 16px;
    z-index: 99;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

nav.scrolled .mobile-menu {
    top: calc(48px + 15px);
}

.mobile-menu.active {
    display: flex;
}

.mobile-link {
    font-size: 14px;
    color: #888;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s;
    padding: 8px 0;
}

.mobile-link:hover {
    color: var(--white);
}

.mobile-link.active {
    color: var(--accent);
}

.mobile-cta {
    background: var(--accent);
    color: var(--black);
    font-family: var(--body);
    font-weight: 700;
    font-size: 11px;
    padding: 11px 26px;
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-align: center;
}

.mobile-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.18);
    transform: translateX(-110%);
    transition: transform 0.35s;
}

.mobile-cta:hover::after {
    transform: translateX(0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
    .hero-sub {
        max-width: 100%;
    }

    .burger-menu {
        display: flex;
    }

    .hero {
        grid-template-columns:1fr;
        padding: 120px 24px 80px;
    }

    .hero-right {
        display: none;
    }

    nav {
        padding: 18px 16px 18px 24px;
    }

    nav.scrolled {
        padding: 18px 16px 18px 24px
    }

    .nav-right {
        display: none;
    }

    section {
        padding: 80px 24px;
    }

    .cards3, .cards2, .steps4, .why2-in, .form-in {
        grid-template-columns:1fr;
    }

    .steps-ruler {
        display: none;
    }

    footer {
        padding: 28px 24px;
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 1100px) and (min-width: 767px) {
    .hero {
        align-items: flex-start;
        min-height: auto;
    }

    .hero h1 {
        max-width: 480px;
    }
}

@media (max-width: 767px) {
    .hero-badge {
        padding: 8px;
    }

    .hstat {
        padding-right: 8px;
        text-align: center;
    }

    .hstat + .hstat {
        padding-left: 8px;
    }

    .fwcard {
        padding: 32px;
    }

    .ofcard {
        padding: 32px;
    }

    .wfact {
        padding: 24px;
        gap: 10px;
    }

    .wfact-n {
        font-size: 26px;
    }

    .step4 {
        padding: 0 0 24px 0;
    }

    [data-val="1000"] {
        font-size: 20px;
    }
}

/* ===== MODAL STYLES ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    display: flex;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 48px 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: modalSlideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin: 0 auto 20px;
    animation: iconScale 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s backwards;
}

@keyframes iconScale {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.modal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
}

.modal-content p {
    font-size: 16px;
    color: #666;
    margin: 0 0 16px 0;
}

/* ===== VALIDATION STYLES ===== */
.error-msg {
    display: block;
    color: #ef4444;
    font-size: 12px;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    animation: slideInError 0.2s ease-out;
    position: absolute;
    top: 100%;
    width: 100%;
    text-align: right;
}

@keyframes slideInError {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.field.error input,
.field.error textarea,
.field.error select {
    border-color: #ef4444 !important;
    background-color: rgba(239, 68, 68, 0.03);
}

.field.error input:focus,
.field.error textarea:focus,
.field.error select:focus {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

@media (max-width: 640px) {
    .modal-content {
        padding: 32px 24px;
    }

    .modal-content h2 {
        font-size: 24px;
    }

    .modal-content p {
        font-size: 14px;
    }
}
input:-internal-autofill-selected {
    appearance: menulist-button;
    background-image: none !important;
    background-color: rgb(46, 50, 54) !important;
    color: fieldtext !important;
}
input:-webkit-autofill {
    background-color: rgb(46, 50, 54) !important;
    -webkit-text-fill-color: #fff !important;
    transition: background-color 5000s ease-in-out 0s;
}