/* ===== CSS VARIABLES ===== */
:root {
    --gold-primary: #D4AF37;
    --gold-light: #F4D03F;
    --gold-dark: #B8860B;
    --gold-gradient: linear-gradient(135deg, #D4AF37, #F4D03F, #B8860B);
    --black-primary: #0A0A0A;
    --black-secondary: #111111;
    --black-tertiary: #1A1A1A;
    --gray-dark: #2A2A2A;
    --gray-medium: #3A3A3A;
    --gray-light: #888888;
    --white: #FFFFFF;
    --white-soft: #F5F5F5;
    --success: #00C853;
    --danger: #FF1744;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-tech: 'Orbitron', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.3);
    --shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    animation: pulse-gold 1.5s ease-in-out infinite;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: var(--gray-dark);
    margin-top: 30px;
    border-radius: 3px;
    overflow: hidden;
}

.preloader-fill {
    width: 0%;
    height: 100%;
    background: var(--gold-gradient);
    animation: load 2s ease-in-out forwards;
}

@keyframes load {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes pulse-gold {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5)); }
    50% { transform: scale(1.08); filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.9)); }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text {
    font-family: var(--font-tech);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

.logo-text em {
    font-style: normal;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--gold-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-gold {
    padding: 10px 25px;
    background: var(--gold-gradient);
    color: var(--black-primary);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 1px;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===== HERO LOGO - LARGE & CENTERED ===== */
.hero-logo-container {
    position: relative;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
}

.hero-logo {
    width: 280px;
    height: 280px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.6)) drop-shadow(0 0 60px rgba(212, 175, 55, 0.3));
    transition: var(--transition);
}

.hero-logo:hover {
    filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.8)) drop-shadow(0 0 80px rgba(212, 175, 55, 0.4));
    transform: scale(1.05);
}

.hero-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--gold-primary);
    margin-bottom: 25px;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-family: var(--font-display);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.title-line {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 15px;
    color: var(--white);
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

.title-gold {
    display: block;
    font-size: 5rem;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 10px;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.4));
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gold-light);
    margin-bottom: 15px;
    font-weight: 300;
    animation: fadeInUp 1.2s ease;
}

.hero-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 650px;
    margin: 0 auto 40px;
    animation: fadeInUp 1.4s ease;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    animation: fadeInUp 1.6s ease;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--gold-gradient);
    color: var(--black-primary);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: transparent;
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid var(--gold-primary);
    transition: var(--transition);
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--gold-primary);
    color: var(--black-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    animation: fadeInUp 1.8s ease;
}

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

.stat-number {
    display: block;
    font-family: var(--font-tech);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-top: 5px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: var(--gray-light);
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 4px;
    background: var(--gold-primary);
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes scrollDown {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
}

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

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

/* ===== SECTION STYLES ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-tech);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.text-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 120px 0;
    background: var(--black-secondary);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    opacity: 0.3;
}

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

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.overlay-number {
    font-family: var(--font-tech);
    font-size: 3rem;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.overlay-text {
    font-size: 0.9rem;
    color: var(--gold-light);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.about-item:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateX(10px);
}

.about-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: var(--gold-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--black-primary);
}

.about-text h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--white);
}

.about-text p {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.7;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 120px 0;
    background: var(--black-primary);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    position: relative;
    padding: 40px 30px;
    background: var(--black-secondary);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: var(--shadow-gold);
}

.feature-card.featured {
    border-color: rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), var(--black-secondary));
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold-primary);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gold-gradient);
    color: var(--black-primary);
    transform: scale(1.1);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--white);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.7;
}

.feature-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover .feature-glow {
    opacity: 1;
}

/* ===== STATS SECTION ===== */
.stats {
    padding: 80px 0;
    background: var(--black-tertiary);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('stats-bg.jpg') center/cover;
    opacity: 0.15;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stats-card {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

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

.stats-card i {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.stats-number {
    display: block;
    font-family: var(--font-tech);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stats-label {
    font-size: 0.9rem;
    color: var(--gray-light);
}

/* ===== PRICING SECTION ===== */
.pricing {
    padding: 120px 0;
    background: var(--black-primary);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('pricing-bg.jpg') center/cover;
    opacity: 0.1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.pricing-card {
    position: relative;
    padding: 40px 30px;
    background: var(--black-secondary);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 25px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: var(--shadow-gold);
}

.pricing-card.popular {
    border-color: var(--gold-primary);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.08), var(--black-secondary));
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gold-gradient);
    color: var(--black-primary);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 20px;
}

.pricing-header {
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 25px;
}

.plan-name {
    display: block;
    font-family: var(--font-tech);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.price-amount {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
}

.price-period {
    font-size: 0.9rem;
    color: var(--gray-light);
}

.save-badge {
    display: inline-block;
    margin-top: 10px;
    padding: 4px 12px;
    background: rgba(0, 200, 83, 0.1);
    color: var(--success);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid rgba(0, 200, 83, 0.3);
}

.pricing-body {
    flex: 1;
    margin-bottom: 25px;
}

.pricing-features {
    list-style: none;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: var(--white-soft);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li i {
    color: var(--gold-primary);
    font-size: 0.8rem;
}

.btn-pricing {
    display: block;
    padding: 15px;
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    letter-spacing: 1px;
}

.btn-pricing:hover {
    background: var(--gold-gradient);
    color: var(--black-primary);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.btn-pricing.btn-gold {
    background: var(--gold-gradient);
    color: var(--black-primary);
    border-color: transparent;
}

.btn-pricing.btn-gold:hover {
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

/* ===== TRIAL SECTION ===== */
.trial {
    padding: 100px 0;
    background: var(--black-secondary);
    position: relative;
    overflow: hidden;
}

.trial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    opacity: 0.3;
}

.trial-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.trial-info .section-tag {
    color: var(--gold-light);
}

.trial-info h2 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.trial-info p {
    color: var(--gray-light);
    font-size: 1rem;
    margin-bottom: 30px;
}

.countdown {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.countdown-item {
    text-align: center;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    min-width: 80px;
}

.countdown-number {
    display: block;
    font-family: var(--font-tech);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-primary);
}

.countdown-label {
    font-size: 0.75rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-separator {
    font-family: var(--font-tech);
    font-size: 2rem;
    color: var(--gold-primary);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.trial-form {
    background: var(--black-primary);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 25px;
    padding: 40px;
}

.trial-form h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--gold-primary);
}

/* ===== FORMS ===== */
.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px 15px 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    color: var(--white);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-light);
}

.form-group i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-primary);
    font-size: 1rem;
}

.form-group textarea {
    padding: 15px 20px;
    resize: vertical;
    min-height: 120px;
}

.form-group textarea + i {
    top: 20px;
}

.btn-full {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
}

/* ===== RESULTS SECTION ===== */
.results {
    padding: 120px 0;
    background: var(--black-primary);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.result-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

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

.result-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.result-card:hover .result-image img {
    transform: scale(1.05);
}

.result-info {
    padding: 25px 30px;
    background: var(--black-secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.result-profit {
    font-family: var(--font-tech);
    font-size: 2rem;
    font-weight: 800;
    color: var(--success);
}

.result-label {
    font-size: 0.9rem;
    color: var(--gray-light);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 120px 0;
    background: var(--black-secondary);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('testimonial-bg.jpg') center/cover;
    opacity: 0.08;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    padding: 35px;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
}

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: var(--gold-primary);
    font-size: 0.9rem;
    margin-right: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--white-soft);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--black-primary);
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}

.author-role {
    font-size: 0.8rem;
    color: var(--gold-primary);
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: 120px 0;
    background: var(--black-primary);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover,
.faq-item.active {
    border-color: rgba(212, 175, 55, 0.4);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 25px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.faq-question i {
    color: var(--gold-primary);
    transition: var(--transition);
    font-size: 0.9rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 25px 22px;
    color: var(--gray-light);
    font-size: 0.9rem;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 120px 0;
    background: var(--black-secondary);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    opacity: 0.3;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--black-primary);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 15px;
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--gold-primary);
    transform: translateX(5px);
}

.contact-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: var(--gold-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--black-primary);
}

.contact-text h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--white);
}

.contact-text a,
.contact-text span {
    color: var(--gold-primary);
    text-decoration: none;
    font-size: 0.9rem;
}

.contact-text a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    background: var(--black-primary);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 25px;
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ===== FOOTER ===== */
.footer {
    padding: 80px 0 30px;
    background: var(--black-primary);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer-logo span {
    font-family: var(--font-tech);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-logo span em {
    font-style: normal;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--gray-light);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold-gradient);
    color: var(--black-primary);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-light);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.footer-bottom .disclaimer {
    font-size: 0.75rem;
    color: rgba(136, 136, 136, 0.6);
}

/* ===== FLOATING BUTTON ===== */
.floating-telegram {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0088cc, #006699);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    z-index: 999;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 136, 204, 0.4);
    animation: float 3s ease-in-out infinite;
}

.floating-telegram:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 136, 204, 0.6);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .title-line { font-size: 3rem; }
    .title-gold { font-size: 3.5rem; }
    
    .hero-logo {
        width: 200px;
        height: 200px;
    }
    
    .hero-logo-glow {
        width: 260px;
        height: 260px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .trial-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .btn-gold {
        display: none;
    }
    
    .hero-logo {
        width: 170px;
        height: 170px;
    }
    
    .hero-logo-glow {
        width: 220px;
        height: 220px;
    }
    
    .title-line { font-size: 2.2rem; letter-spacing: 8px; }
    .title-gold { font-size: 2.8rem; letter-spacing: 5px; }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .about, .features, .pricing, .results, .testimonials, .faq, .contact {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .title-line { font-size: 1.8rem; letter-spacing: 5px; }
    .title-gold { font-size: 2.2rem; letter-spacing: 3px; }
    
    .hero-logo {
        width: 130px;
        height: 130px;
    }
    
    .hero-logo-glow {
        width: 180px;
        height: 180px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .countdown {
        gap: 8px;
    }
    
    .countdown-item {
        padding: 12px;
        min-width: 60px;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
}
