:root {
    --navy: #050d2e;
    --blue: #0a1f6e;
    --accent: #00c8ff;
    --gold: #f5c842;
    --red: #ff3b3b;
    --green: #00e676;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
}

/* ── URGENCY BAR ── */
.urgency-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: linear-gradient(180deg, #01c4fa, #0a648f);
    background-size: 200% 100%;
    animation: barShift 3s linear infinite;
    padding: 9px 20px;
    text-align: center;
    font-family: 'Sora', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-sizing: border-box;
}

@keyframes barShift {
    0% {
        background-position: 0%
    }

    100% {
        background-position: 200%
    }
}

.urgency-bar .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    animation: pulse 1s infinite;
    flex-shrink: 0;
}

.urgency-slots {
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 10px;
    border-radius: 4px;
}

/* ── BG ── */
.bg-layer {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 60% at 10% 20%, rgba(0, 100, 255, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 90% 70%, rgba(0, 200, 255, 0.12) 0%, transparent 55%),
        linear-gradient(170deg, #050d2e 0%, #071540 50%, #040c28 100%);
}

.grid-overlay {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(0, 200, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 200, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 38px;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 6%;
    background: rgba(5, 13, 46, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    text-decoration: none;
}

.logo img {
    width: 40px;
}

.logo svg {
    width: 30px;
    height: 30px;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.86rem;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-cta {
    background: linear-gradient(180deg, #01c4fa, #128ac4);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.86rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 59, 59, 0.4);
    transition: transform 0.2s;
    letter-spacing: 0.02em;
    animation: navPulse 2.5s ease-in-out infinite;
}

@keyframes navPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(59, 150, 255, 0.4)
    }

    50% {
        box-shadow: 0 4px 32px rgba(59, 137, 255, 0.7)
    }
}

.nav-cta:hover {
    transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 6% 80px;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.scarcity-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 59, 59, 0.12);
    border: 1px solid rgba(59, 124, 255, 0.45);
    color: #ff8a8a;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 35px;
    animation: fadeUp 0.5s ease both;
}

.scarcity-badge .pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff3b3b;
    animation: pulse 1s ease-in-out infinite;
    box-shadow: 0 0 8px #ff3b3b;
    flex-shrink: 0;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5)
    }
}

h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.4rem, 4.8vw, 3.8rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 22px;
    animation: fadeUp 0.6s 0.1s ease both;
}

h1 .hl {
    color: var(--accent);
}

h1 .hl-gold {
    color: var(--gold);
}

.hero-hook {
    font-size: 1.12rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 12px;
    font-weight: 400;
    animation: fadeUp 0.6s 0.2s ease both;
}

.hero-hook strong {
    color: #fff;
    font-weight: 600;
}

.hero-subhook {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
    animation: fadeUp 0.6s 0.25s ease both;
}

.stats-row {
    display: flex;
    gap: 28px;
    margin-bottom: 36px;
    animation: fadeUp 0.6s 0.3s ease both;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-num {
    font-family: 'Sora', sans-serif;
    font-size: 1.9rem;
    font-weight: 900;
    line-height: 1;
}

.stat-num.green {
    color: var(--green);
}

.stat-num.gold {
    color: var(--gold);
}

.stat-num.accent {
    color: var(--accent);
}

.stat-label {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.45);
}

.stat-divider {
    width: 1px;
    background: var(--glass-border);
    align-self: stretch;
}

.countries {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 36px;
    animation: fadeUp 0.6s 0.32s ease both;
}

.countries-label {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.4);
    margin-right: 4px;
}

.flag {
    font-size: 1.35rem;
}

.cta-block {
    animation: fadeUp 0.6s 0.38s ease both;
}

.btn-primary {
    background: linear-gradient(180deg, #01c4fa, #128ac4);
    color: #fff;
    border: none;
    padding: 18px 44px;
    border-radius: 50px;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    letter-spacing: 0.01em;
    box-shadow: 0 8px 36px rgba(59, 124, 255, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    animation: ctaPulse 2.2s ease-in-out infinite;
}

@keyframes ctaPulse {

    0%,
    100% {
        box-shadow: 0 8px 36px rgba(59, 124, 255, 0.45)
    }

    50% {
        box-shadow: 0 12px 56px rgba(59, 114, 255, 0.7)
    }
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.cta-sub {
    margin-top: 14px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-sub span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cta-sub .check {
    color: var(--green);
}

.timer-block {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeUp 0.6s 0.42s ease both;
}

.timer-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
}

.timer-digits {
    display: flex;
    gap: 6px;
    align-items: center;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--gold);
}

.t-sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1rem;
}

/* ── HERO VISUAL ── */
.hero-visual {
    flex: 0 0 400px;
    position: relative;
    animation: fadeLeft 0.9s 0.2s ease both;
}

.card-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse, rgba(0, 200, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 28px;
    backdrop-filter: blur(16px);
    position: relative;
    z-index: 1;
}

.dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.dash-title {
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    color: #4ade80;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 1.2s infinite;
}

.income-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.income-num {
    font-family: 'Sora', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
}

.income-num span {
    color: var(--accent);
}

.income-growth {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #4ade80;
    font-size: 0.84rem;
    font-weight: 700;
    margin-top: 8px;
    margin-bottom: 18px;
}

.chart-area {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 60px;
    margin-bottom: 20px;
}

.bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, var(--accent), rgba(0, 200, 255, 0.3));
    animation: growUp 1s ease both;
}

@keyframes growUp {
    from {
        transform: scaleY(0);
        transform-origin: bottom
    }
}

.dash-footer {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
}

.dash-metric {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dash-metric-val {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.dash-metric-label {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.4);
}

.notif {
    position: absolute;
    right: -16px;
    bottom: 24px;
    background: rgba(5, 13, 46, 0.95);
    border: 1px solid rgba(0, 230, 118, 0.3);
    border-radius: 14px;
    padding: 12px 16px;
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 210px;
    z-index: 2;
    animation: floatIn 1.2s 0.8s ease both;
}

.notif-icon {
    font-size: 1.4rem;
}

.notif-text {
    font-size: 0.74rem;
}

.notif-text strong {
    display: block;
    color: #4ade80;
    font-size: 0.84rem;
}

/* ── TICKER ── */
.ticker-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
}

.ticker-inner {
    display: flex;
    width: max-content;
    animation: tickerMove 28s linear infinite;
}

@keyframes tickerMove {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    white-space: nowrap;
    font-size: 0.82rem;
    border-right: 1px solid var(--glass-border);
    color: rgba(255, 255, 255, 0.65);
}

.ticker-item .t-flag {
    font-size: 1.1rem;
}

.ticker-item .t-amount {
    color: var(--green);
    font-weight: 700;
    font-family: 'Sora', sans-serif;
}

.ticker-item .t-time {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.74rem;
}

/* ── PAIN ── */
.pain-section {
    position: relative;
    z-index: 1;
    padding: 80px 6%;
    text-align: center;
}

.pain-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ff6b6b;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pain-label::before,
.pain-label::after {
    content: '';
    flex: 0 0 24px;
    height: 1px;
    background: #ff6b6b;
}

.pain-section h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

.pain-section p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 540px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 860px;
    margin: 0 auto;
}

.pain-card {
    background: rgba(255, 59, 59, 0.06);
    border: 1px solid rgba(255, 59, 59, 0.18);
    border-radius: 18px;
    padding: 28px 24px;
    text-align: left;
}

.pain-card .p-icon {
    font-size: 1.8rem;
    margin-bottom: 14px;
}

.pain-card .p-title {
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ff8a8a;
}

.pain-card .p-text {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.pain-arrow {
    margin: 36px auto 0;
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* ── STEPS ── */
.section {
    position: relative;
    z-index: 1;
    padding: 20px 6%;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label::before {
    content: '';
    flex: 0 0 24px;
    height: 1px;
    background: var(--accent);
}

.section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 48px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
}

.step-card:hover {
    border-color: rgba(0, 200, 255, 0.35);
    transform: translateY(-4px);
}

.step-num {
    font-family: 'Sora', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(0, 200, 255, 0.07);
    position: absolute;
    top: 12px;
    right: 20px;
    line-height: 1;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.step-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
}

.step-result {
    margin-top: 14px;
    font-size: 0.82rem;
    color: var(--green);
    font-weight: 600;
}

/* ── FORM ── */
.form-section {
    position: relative;
    z-index: 1;
    padding: 80px 6%;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-left {
    flex: 1;
}

.form-left .section-title {
    margin-bottom: 16px;
}

.form-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 28px;
}

.form-urgency {
    background: rgba(255, 59, 59, 0.1);
    border: 1px solid rgba(255, 59, 59, 0.3);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-urgency-icon {
    font-size: 1.3rem;
}

.form-urgency-text {
    font-size: 0.84rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
}

.form-urgency-text strong {
    color: #ff8a8a;
    font-family: 'Sora', sans-serif;
}

.trust-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
}

.trust-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0, 230, 118, 0.12);
    border: 1px solid rgba(0, 230, 118, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--green);
    flex-shrink: 0;
}

.form-card {
    /* flex: 0 0 460px; */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 40px;
    backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff3b3b, #ff7043, var(--gold));
}

.form-card-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.form-card-sub {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.slots-bar {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(245, 200, 66, 0.2);
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.slots-progress-wrap {
    flex: 1;
}

.slots-left {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
}

.slots-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.slots-fill {
    height: 100%;
    width: 78%;
    background: linear-gradient(90deg, var(--gold), #ff9800);
    border-radius: 2px;
}

.slots-count {
    font-family: 'Sora', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full {
    grid-column: 1/-1;
}

.form-group label {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    letter-spacing: 0.03em;
}

.form-group input,
.form-group select {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 13px 16px;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    width: 100%;
    -webkit-appearance: none;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.28);
}

.form-group input:focus {
    border-color: var(--accent);
    background: rgba(0, 200, 255, 0.06);
}

.form-group select {
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.form-group select option {
    background: #0a1f6e;
}

.phone-wrap {
    display: flex;
    gap: 10px;
}

.phone-prefix {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 13px 14px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(180deg, #01c4fa, #128ac4);
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 14px;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    margin-top: 18px;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 32px rgba(59, 150, 255, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    animation: ctaPulse 2.2s ease-in-out infinite;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(59, 150, 255, 0.6);
}

.form-privacy {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.28);
    text-align: center;
    margin-top: 12px;
    line-height: 1.5;
}

.form-privacy a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: underline;
}

footer {
    position: relative;
    z-index: 1;
    padding: 28px 6%;
    border-top: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.28);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(32px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(12px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.circle-video-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 200px;
    height: 200px;
    z-index: 1000;
    animation: slideInRight 0.3s ease-out;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.circle-video-container:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.circle-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

/* Скрываем стандартные контролы */
.circle-video-container video::-webkit-media-controls {
    display: none !important;
}
.circle-video-container video::-webkit-media-controls-enclosure {
    display: none !important;
}

/* Кнопка воспроизведения */
.circle-video-container .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    pointer-events: auto;
}

/* Треугольник play */
.circle-video-container .play-button::after {
    content: "";
    display: inline-block;
    width: 28px;
    height: 28px;
    margin-left: 4px;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Кнопка при наведении */
.circle-video-container .play-button:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Скрытая кнопка */
.circle-video-container .play-button.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Адаптив для мобилок */
@media (max-width: 768px) {
    .circle-video-container {
        width: 150px;
        height: 150px;
        top: 90px;
        bottom: unset;
        right: 20px;
    }
    
    .circle-video-container .play-button {
        width: 50px;
        height: 50px;
    }
    
    .circle-video-container .play-button::after {
        font-size: 24px;
    }
}

@media (max-width:900px) {
    .hero {
        flex-direction: column;
        padding: 140px 5% 60px;
    }

    .hero-visual {
        flex: unset;
        width: 100%;
        max-width: 400px;
    }

    .steps,
    .pain-grid {
        grid-template-columns: 1fr;
    }

    .form-section {
        flex-direction: column;
    }

    .form-card {
        flex: unset;
        width: 100%;
    }

    .nav-links {
        display: none;
    }

    .form-card {
        padding: 20px;
    }

    .stat-num {
        font-size: 1.7rem;
    }
}

@media (max-width: 645px) {
    .urgency-bar {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .form-card {
        padding: 15px;
    }

    .stat-num {
        font-size: 1.5rem;
    }

    .urgency-bar {
        font-size: 0.6rem;
        padding: 8px;
        gap: 5px;
        letter-spacing: unset;
        height: 35px;
    }

    .urgency-bar .dot,
    .scarcity-badge .pulse-dot {
        width: 5px;
        height: 5px;
    }

    nav {
        padding: 15px;
        top: 35px;
    }

    .logo img {
        width: 30px;
    }

    .nav-cta {
        font-size: 0.7rem;
        margin-right: 10px;
    }
}