/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Luxury Palette */
    --primary-gold: #D4AF37;
    --secondary-gold: #FFD700;
    --accent-gold: #F4E5C2;
    --dark-bg: #0a0a0a;
    --dark-secondary: #1a1a1a;
    --dark-tertiary: #2a2a2a;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --text-gray: #b0b0b0;
    --text-light: #e0e0e0;

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px 20px;
    --container-max: 1400px;

    /* Effects */
    --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.3);
    --shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.3);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0a0a0a 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(212,175,55,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInLeft 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(255, 215, 0, 0.1));
    border: 1px solid var(--primary-gold);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-gold);
    backdrop-filter: blur(10px);
}

.icon-crown {
    width: 20px;
    height: 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--white);
    letter-spacing: -1px;
}

.highlight-gold {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-subtitle strong {
    color: var(--white);
    font-weight: 600;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 800;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--primary-gold), transparent);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-gray);
}

.icon-check {
    width: 20px;
    height: 20px;
    color: var(--primary-gold);
    flex-shrink: 0;
}

/* Hero Image */
.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.image-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    border: 3px solid var(--primary-gold);
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}

.image-frame:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.5);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.image-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

/* ========================================
   CTA BUTTONS
   ======================================== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 40px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: none;
}

.cta-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    color: var(--dark-bg);
    box-shadow: var(--shadow-gold);
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.6);
}

.cta-secondary {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
}

.cta-secondary:hover {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    color: var(--dark-bg);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.cta-large {
    padding: 24px 50px;
    font-size: 18px;
}

.icon-telegram {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-gold);
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 12px;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.section-header.center .section-label::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 800;
    line-height: 1.3;
    color: var(--white);
    max-width: 900px;
}

.section-header.center .section-title {
    margin: 0 auto;
}

/* ========================================
   AUTHORITY SECTION
   ======================================== */
.authority-section {
    padding: var(--section-padding);
    background: var(--dark-secondary);
    position: relative;
}

.authority-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 60px;
}

.text-lead {
    font-size: clamp(18px, 2.5vw, 22px);
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.text-lead strong {
    color: var(--primary-gold);
    font-weight: 700;
}

.quote-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 215, 0, 0.05));
    border-left: 4px solid var(--primary-gold);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 50px;
    position: relative;
}

.quote-icon {
    width: 50px;
    height: 50px;
    color: var(--primary-gold);
    opacity: 0.3;
    margin-bottom: 20px;
}

blockquote {
    font-family: var(--font-display);
    font-size: clamp(18px, 2vw, 22px);
    font-style: italic;
    line-height: 1.7;
    color: var(--white);
    margin-bottom: 20px;
}

cite {
    display: block;
    font-family: var(--font-body);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    color: var(--primary-gold);
    margin-top: 20px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(255, 215, 0, 0.1));
    border: 1px solid var(--primary-gold);
    border-radius: 15px;
    color: var(--primary-gold);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-content h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
}

/* Authority Images */
.authority-images {
    position: relative;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.grid-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.grid-image:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-large {
    grid-row: span 1;
    min-height: 400px;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.8), transparent);
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.benefits-section {
    padding: var(--section-padding);
    background: var(--dark-bg);
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(42, 42, 42, 0.5));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 30px;
    padding: 50px 35px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    background: linear-gradient(135deg, rgba(26, 26, 26, 1), rgba(42, 42, 42, 0.8));
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.benefit-number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 20px;
    margin-bottom: 30px;
    color: var(--dark-bg);
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
}

.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.3;
}

.benefit-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-it-works-section {
    padding: var(--section-padding);
    background: var(--dark-secondary);
    position: relative;
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    margin: 60px 0;
}

.step-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(42, 42, 42, 0.5));
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.step-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.step-icon-wrapper {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: var(--dark-bg);
}

.step-icon {
    width: 50px;
    height: 50px;
    color: var(--primary-gold);
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
}

.step-arrow {
    width: 40px;
    height: 40px;
    color: var(--primary-gold);
    opacity: 0.5;
}

.step-arrow svg {
    width: 100%;
    height: 100%;
}

.cta-center {
    text-align: center;
    margin-top: 60px;
}

/* ========================================
   URGENCY SECTION
   ======================================== */
.urgency-section {
    padding: var(--section-padding);
    background: var(--dark-bg);
    position: relative;
}

.urgency-box {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(42, 42, 42, 0.7));
    border: 3px solid var(--primary-gold);
    border-radius: 30px;
    padding: 60px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}

.urgency-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

.urgency-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    color: var(--primary-gold);
    animation: pulse 2s ease-in-out infinite;
}

.urgency-icon svg {
    width: 100%;
    height: 100%;
}

.urgency-box h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.urgency-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.urgency-text strong {
    color: var(--primary-gold);
    font-weight: 700;
}

.urgency-highlight {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.urgency-highlight strong {
    color: var(--primary-gold);
}

.urgency-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.urgency-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--primary-gold);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-gold);
    backdrop-filter: blur(10px);
}

.urgency-badge svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.final-cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-cta-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 24px;
}

.final-cta-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 50px;
}

.final-trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-gray);
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary-gold);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 60px 20px 40px;
    background: var(--dark-bg);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-text {
    text-align: center;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.footer-disclaimer {
    text-align: center;
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-gray);
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.7;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 20px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .authority-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 0 auto;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 20px;
    }

    .hero-section {
        padding: 80px 20px 60px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
    }

    .stat-divider {
        width: 80px;
        height: 1px;
    }

    .image-grid {
        gap: 15px;
    }

    .grid-large {
        min-height: 300px;
    }

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

    .urgency-box {
        padding: 40px 25px;
    }

    .urgency-badges {
        flex-direction: column;
        align-items: stretch;
    }

    .final-trust-badges {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        padding: 10px 20px;
        font-size: 10px;
    }

    .cta-button {
        padding: 18px 30px;
        font-size: 14px;
    }

    .cta-large {
        padding: 20px 35px;
        font-size: 16px;
    }

    .benefit-card {
        padding: 40px 25px;
    }

    .step-card {
        padding: 30px 20px;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
.cta-button:focus {
    outline: 3px solid var(--primary-gold);
    outline-offset: 4px;
}

a:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .hero-section,
    .benefits-section,
    .final-cta-section {
        page-break-inside: avoid;
    }
}
