:root {
    --gold: #F0C228;
    --green: #1A8C3C;
    --green-light: #22A84A;
    --dark: #050D0A;
    --dark2: #0A1A12;
    --white: #FFFFFF;
    --gray: #8A9E94;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-align: center;
    padding: 0 20px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 80%, rgba(26, 140, 60, 0.25) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 50% 0%, rgba(240, 194, 40, 0.08) 0%, transparent 60%),
        linear-gradient(180deg, #050D0A 0%, #0A1A12 50%, #050D0A 100%);
}

.stadium-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.stadium-lines::before {
    content: '';
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 160%;
    height: 80%;
    background: repeating-linear-gradient(0deg, transparent, transparent 38px, rgba(26, 140, 60, 0.07) 38px, rgba(26, 140, 60, 0.07) 40px);
    border-radius: 50% 50% 0 0 / 30% 30% 0 0;
    animation: pulse-lines 4s ease-in-out infinite;
}

@keyframes pulse-lines {

    0%,
    100% {
        opacity: 0.5
    }

    50% {
        opacity: 1
    }
}

.particle {
    position: absolute;
    background: var(--gold);
    border-radius: 50%;
    animation: float-up linear infinite;
    opacity: 0;
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0
    }

    10% {
        opacity: 1
    }

    90% {
        opacity: 0.6
    }

    100% {
        transform: translateY(-20vh) scale(1.5);
        opacity: 0
    }
}

/* ── NAV ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, rgba(5, 13, 10, 0.95) 0%, transparent 100%);
    backdrop-filter: blur(8px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gold);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    color: var(--dark);
}

.logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.logo-text span {
    display: block;
    font-size: 0.55rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    color: var(--gold);
}

.nav-cta {
    background: var(--gold);
    color: var(--dark);
    padding: 10px 24px;
    border: none;
    border-radius: 2px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
}

.nav-cta:hover {
    background: var(--white);
    transform: translateY(-1px);
}

/* ── HERO CONTENT ── */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 140, 60, 0.2);
    border: 1px solid rgba(26, 140, 60, 0.5);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 32px;
    animation: fade-in 0.8s ease both;
}

.badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--green-light);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

.hero-discount {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(5rem, 18vw, 12rem);
    font-weight: 900;
    line-height: 0.85;
    color: var(--gold);
    letter-spacing: -0.02em;
    text-shadow: 0 0 80px rgba(240, 194, 40, 0.4);
    animation: slide-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    animation: slide-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

.hero-sub {
    margin-top: 12px;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.03em;
    animation: slide-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.hero-highlight {
    color: var(--gold);
    font-weight: 600;
}

.hero-tagline {
    margin-top: 28px;
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    font-weight: 500;
    animation: slide-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.cta-group {
    margin-top: 40px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slide-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.75s both;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark);
    padding: 16px 40px;
    border: none;
    border-radius: 2px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.btn-primary:hover::after {
    transform: translateX(100%);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(240, 194, 40, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fade-in 1s 1.5s both;
    cursor: pointer;
}

.scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.3);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    transform: rotate(45deg);
    animation: bounce 1.5s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: rotate(45deg) translateY(0)
    }

    50% {
        transform: rotate(45deg) translateY(6px)
    }
}

@keyframes slide-up {
    from {
        transform: translateY(40px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes fade-in {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

/* ── SHARED ── */
.section {
    padding: 100px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.section-title em {
    font-style: normal;
    color: var(--gold);
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--gold));
    margin: 20px 0;
}

/* ── STEPS ── */
.steps {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2px;
}

.step {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 32px;
    position: relative;
    transition: background 0.3s;
}

.step:hover {
    background: rgba(26, 140, 60, 0.06);
    border-color: rgba(26, 140, 60, 0.3);
}

.step-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(240, 194, 40, 0.12);
    line-height: 1;
    position: absolute;
    top: 16px;
    right: 24px;
    letter-spacing: -0.05em;
}

.step-icon {
    width: 52px;
    height: 52px;
    background: rgba(26, 140, 60, 0.15);
    border: 1px solid rgba(26, 140, 60, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.step h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.step p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
}

/* ── OFFER BLOCK ── */
.offer-wrap {
    padding: 0 20px 80px;
}

.offer-block {
    background: linear-gradient(135deg, var(--green) 0%, #0F5C28 100%);
    border-radius: 8px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
}

.offer-block::before {
    content: '2026';
    position: absolute;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.1);
    right: -40px;
    bottom: -40px;
    line-height: 1;
    pointer-events: none;
    letter-spacing: -0.05em;
}

.offer-block .section-label {
    color: rgba(255, 255, 255, 0.6);
}

.offer-block .big-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(5rem, 15vw, 10rem);
    font-weight: 900;
    line-height: 0.85;
    color: var(--gold);
    text-shadow: 0 0 60px rgba(240, 194, 40, 0.5);
}

.offer-block .offer-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.offer-block p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

/* ── TESTIMONIALS ── */
.testimonials {
    padding: 100px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.testi-grid {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.testi-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    padding: 32px;
}

.stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testi-card blockquote {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    font-style: italic;
    margin-bottom: 20px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--green), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark);
}

.author-info strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}

.author-info span {
    font-size: 0.75rem;
    color: var(--gray);
}

/* ── IFRAME FORM ── */
.form-section {
    background: var(--dark2);
    padding: 100px 20px;
}

.form-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.iframe-wrapper {
    margin-top: 48px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    min-height: 700px;
    position: relative;
}

.iframe-wrapper iframe {
    width: 100%;
    min-height: 700px;
    border: none;
    display: block;
}

.iframe-loader {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(5, 13, 10, 0.85);
    transition: opacity 0.4s;
    pointer-events: none;
}

.iframe-loader.hidden {
    opacity: 0;
}

.loader-ring {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(240, 194, 40, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.iframe-loader span {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

/* ── FOOTER ── */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 48px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

footer p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.6;
    max-width: 600px;
}

.footer-permit {
    font-size: 0.72rem;
    color: var(--gold);
    opacity: 0.7;
}

/* ── REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width:640px) {
    .nav {
        padding: 14px 20px;
    }

    footer {
        padding: 32px 20px;
    }

    .offer-block {
        padding: 60px 24px;
    }

    .iframe-wrapper,
    .iframe-wrapper iframe {
        min-height: 550px;
    }
}