/* ============================================
   Hosting-Hytale - Hytale Game Server Hosting
   Premium Landing Page Styles
   ============================================ */

:root {
    --color-bg-primary: #0d1117;
    --color-bg-secondary: #161b22;
    --color-bg-tertiary: #1c2128;
    --color-bg-card: #21262d;
    --color-bg-elevated: #2d333b;
    --color-accent-gold: #d4a853;
    --color-accent-gold-light: #f0c96a;
    --color-accent-gold-dark: #b8923f;
    --color-accent-cyan: #58a6ff;
    --color-accent-teal: #3fb9a8;
    --color-accent-green: #7ee787;
    --color-accent-purple: #a371f7;
    --color-text-primary: #f0f6fc;
    --color-text-secondary: #8b949e;
    --color-text-tertiary: #6e7681;
    --color-border: #30363d;
    --color-border-light: #3d444d;
    --color-border-accent: var(--color-accent-gold);
    --gradient-gold: linear-gradient(135deg, var(--color-accent-gold) 0%, var(--color-accent-gold-light) 100%);
    --gradient-hero: linear-gradient(180deg, rgba(13, 17, 23, 0) 0%, rgba(13, 17, 23, 0.8) 50%, var(--color-bg-primary) 100%);
    --gradient-card: linear-gradient(145deg, var(--color-bg-card) 0%, var(--color-bg-tertiary) 100%);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 30px rgba(212, 168, 83, 0.3);
    --shadow-glow-intense: 0 0 60px rgba(212, 168, 83, 0.5);
    --font-primary: 'Exo 2', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Orbitron', var(--font-primary);
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: var(--font-primary); font-size: 16px; line-height: 1.6; color: var(--color-text-primary); background-color: var(--color-bg-primary); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 var(--space-lg); }
.pricing .container { max-width: 1500px; }
.accent { color: var(--color-accent-gold); }

.section-header { text-align: center; max-width: 700px; margin: 0 auto var(--space-3xl); }
.section-badge { display: inline-block; padding: var(--space-xs) var(--space-md); background: rgba(212, 168, 83, 0.1); border: 1px solid rgba(212, 168, 83, 0.3); border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-accent-gold); margin-bottom: var(--space-md); }
.section-title { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; line-height: 1.2; margin-bottom: var(--space-md); text-transform: uppercase; letter-spacing: 0.02em; }
.section-subtitle { font-size: 1.125rem; color: var(--color-text-secondary); max-width: 600px; margin: 0 auto; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: var(--space-sm); padding: 0.75rem 1.5rem; font-family: var(--font-primary); font-size: 0.9375rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; border-radius: var(--radius-md); transition: all var(--transition-base); position: relative; overflow: hidden; }
.btn__icon { width: 18px; height: 18px; flex-shrink: 0; }
.btn--primary { background: var(--gradient-gold); color: var(--color-bg-primary); box-shadow: var(--shadow-md), 0 0 20px rgba(212, 168, 83, 0.2); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg), var(--shadow-glow); }
.btn--outline { background: transparent; color: var(--color-text-primary); border: 2px solid var(--color-border-light); }
.btn--outline:hover { border-color: var(--color-accent-gold); color: var(--color-accent-gold); background: rgba(212, 168, 83, 0.05); }
.btn--ghost { background: transparent; color: var(--color-text-secondary); }
.btn--ghost:hover { color: var(--color-text-primary); background: rgba(255, 255, 255, 0.05); }
.btn--glow { background: var(--gradient-gold); color: var(--color-bg-primary); box-shadow: var(--shadow-md), var(--shadow-glow); animation: glow-pulse 3s ease-in-out infinite; }
.btn--glow:hover { transform: translateY(-2px) scale(1.02); box-shadow: var(--shadow-lg), var(--shadow-glow-intense); animation: none; }
.btn--large { padding: 0.9rem 1.8rem; font-size: 0.9rem; }
.btn--block { width: 100%; }
@keyframes glow-pulse { 0%, 100% { box-shadow: var(--shadow-md), 0 0 15px rgba(212, 168, 83, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.1); } 50% { box-shadow: var(--shadow-md), 0 0 25px rgba(212, 168, 83, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.2); } }

.btn--pulse { position: relative; }
.btn--pulse::before { content: ''; position: absolute; inset: -8px; border-radius: calc(var(--radius-md) + 4px); border: 2px solid rgba(212, 168, 83, 0.8); pointer-events: none; animation: border-glow 3s ease-in-out infinite; }
.btn--pulse:hover::before { border-color: var(--color-accent-gold); box-shadow: 0 0 15px rgba(212, 168, 83, 0.4); }
@keyframes border-glow { 0%, 100% { border-color: rgba(212, 168, 83, 0.6); } 50% { border-color: rgba(212, 168, 83, 1); } }

/* ========== MEGA BUTTON - Premium Animated CTA ========== */
.btn-mega {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.8rem;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #0d1117;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
}

.btn-mega__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ffd700 0%, #f0a500 25%, #d4a853 50%, #ffd700 75%, #f0a500 100%);
    background-size: 300% 300%;
    border-radius: 10px;
    animation: mega-gradient 4s ease infinite;
    z-index: 1;
}

.btn-mega__border {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #fff 0%, #ffd700 25%, #f0a500 50%, #ffd700 75%, #fff 100%);
    background-size: 400% 400%;
    border-radius: 12px;
    animation: mega-border-rotate 3s linear infinite;
    z-index: 0;
}

.btn-mega__border::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: linear-gradient(135deg, #ffd700 0%, #f0a500 25%, #d4a853 50%, #ffd700 75%, #f0a500 100%);
    background-size: 300% 300%;
    border-radius: 10px;
    animation: mega-gradient 4s ease infinite;
}

.btn-mega__glow {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.35) 0%, rgba(212, 168, 83, 0.15) 50%, transparent 70%);
    border-radius: 20px;
    z-index: -1;
    animation: mega-glow-pulse 2.5s ease-in-out infinite;
    filter: blur(10px);
}

.btn-mega__content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-mega__icon {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.btn-mega__shine {
    position: absolute;
    top: 0;
    left: -50%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
    transform: skewX(-20deg);
    z-index: 3;
    animation: mega-shine 4s ease-in-out infinite;
    border-radius: 10px;
}

/* Outer pulsating rings */
.btn-mega::before,
.btn-mega::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 1.5px solid rgba(255, 215, 0, 0.5);
    border-radius: 14px;
    animation: mega-ring-pulse 2.5s ease-out infinite;
    pointer-events: none;
}

.btn-mega::after {
    inset: -10px;
    border-radius: 18px;
    animation-delay: 0.5s;
    border-color: rgba(255, 215, 0, 0.25);
}

/* Animations */
@keyframes mega-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes mega-border-rotate {
    0% { background-position: 0% 50%; }
    100% { background-position: 400% 50%; }
}

@keyframes mega-glow-pulse {
    0%, 100% { 
        opacity: 0.5;
        transform: scale(0.98);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.02);
    }
}

@keyframes mega-shine {
    0%, 100% { left: -50%; }
    50%, 55% { left: 110%; }
}

@keyframes mega-ring-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.02);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

/* Hover Effects */
.btn-mega:hover {
    transform: translateY(-3px) scale(1.02);
    filter: brightness(1.08);
}

.btn-mega:hover .btn-mega__icon {
    transform: rotate(-8deg) scale(1.1);
}

.btn-mega:hover .btn-mega__glow {
    animation: mega-glow-pulse-fast 1s ease-in-out infinite;
}

.btn-mega:hover::before,
.btn-mega:hover::after {
    animation: mega-ring-pulse-fast 1.5s ease-out infinite;
}

.btn-mega:hover::after {
    animation-delay: 0.3s;
}

@keyframes mega-glow-pulse-fast {
    0%, 100% { 
        opacity: 0.6;
        transform: scale(1);
    }
    50% { 
        opacity: 0.9;
        transform: scale(1.05);
    }
}

@keyframes mega-ring-pulse-fast {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.15);
        opacity: 0;
    }
}

/* Active state */
.btn-mega:active {
    transform: translateY(-2px) scale(1.01);
}

.header { position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-fixed); padding: var(--space-md) 0; transition: all var(--transition-base); }
.header.scrolled { background: rgba(13, 17, 23, 0.95); backdrop-filter: blur(20px); border-bottom: 1px solid var(--color-border); padding: var(--space-sm) 0; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: var(--space-xl); }
.nav__logo { display: flex; align-items: center; gap: var(--space-sm); font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--color-text-primary); }
.logo-icon { 
    width: 32px; 
    height: 32px; 
    fill: var(--color-accent-gold); 
    filter: drop-shadow(0 0 8px rgba(212, 168, 83, 0.5));
    animation: rotate-slow 15s linear infinite; 
}
@keyframes rotate-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.logo-text .accent { background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav__menu { display: flex; align-items: center; gap: var(--space-xl); }
.nav__link { position: relative; font-size: 0.9375rem; font-weight: 500; color: var(--color-text-secondary); padding: var(--space-sm) 0; transition: color var(--transition-fast); }
.nav__link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gradient-gold); transition: width var(--transition-base); }
.nav__link:hover, .nav__link.active { color: var(--color-text-primary); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__auth { display: flex; align-items: center; gap: var(--space-sm); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: var(--space-sm); }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--color-text-primary); transition: all var(--transition-fast); }

.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: var(--space-4xl) 0; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__bg::before { content: ''; position: absolute; inset: 0; background-image: url('../img/hero-bg.jpg'); background-size: cover; background-position: center; background-repeat: no-repeat; filter: brightness(0.4); }
.hero__overlay { position: absolute; inset: 0; background: var(--gradient-hero); }
.hero__particles { position: absolute; inset: 0; overflow: hidden; }
.particle { position: absolute; width: 4px; height: 4px; background: var(--color-accent-gold); border-radius: 50%; opacity: 0.6; animation: float-particle 15s infinite ease-in-out; }
@keyframes float-particle { 0%, 100% { transform: translateY(100vh) scale(0); opacity: 0; } 10% { opacity: 0.6; } 90% { opacity: 0.6; } 100% { transform: translateY(-100px) scale(1); opacity: 0; } }
.hero__content { text-align: center; max-width: 900px; position: relative; z-index: 1; }
.hero__badge { display: inline-flex; align-items: center; gap: var(--space-sm); padding: var(--space-sm) var(--space-lg); background: rgba(212, 168, 83, 0.1); border: 1px solid rgba(212, 168, 83, 0.3); border-radius: var(--radius-full); font-size: 0.875rem; font-weight: 500; color: var(--color-accent-gold); margin-bottom: var(--space-xl); }
.pulse-dot { width: 8px; height: 8px; background: var(--color-accent-green); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.2); } }
.hero__title { font-family: var(--font-display); font-size: clamp(2rem, 6vw, 4rem); font-weight: 800; line-height: 1.1; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: var(--space-lg); }
.hero__title-accent { display: block; background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-size: 1.2em; text-shadow: 0 0 40px rgba(212, 168, 83, 0.3); }
.hero__subtitle { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--color-text-secondary); max-width: 700px; margin: 0 auto var(--space-2xl); line-height: 1.7; }
.hero__stats { display: flex; justify-content: center; gap: var(--space-3xl); margin-bottom: var(--space-2xl); }
.stat { text-align: center; }
.stat__number { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--color-accent-gold); }
.stat__suffix { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--color-accent-gold); }
.stat__label { display: block; font-size: 0.875rem; color: var(--color-text-secondary); text-transform: uppercase; letter-spacing: 0.1em; margin-top: var(--space-xs); }
.hero__buttons { display: flex; justify-content: center; gap: var(--space-xl); flex-wrap: wrap; margin-bottom: var(--space-2xl); }
.hero__features { display: flex; justify-content: center; gap: var(--space-xl); flex-wrap: wrap; }
.hero__feature { display: flex; align-items: center; gap: var(--space-sm); font-size: 0.9375rem; color: var(--color-text-secondary); }
.hero__feature svg { width: 20px; height: 20px; color: var(--color-accent-teal); }
.hero__scroll { position: absolute; bottom: var(--space-2xl); left: 50%; transform: translateX(-50%); }
.scroll-indicator { display: flex; flex-direction: column; align-items: center; gap: var(--space-sm); color: var(--color-text-tertiary); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; animation: bounce-down 2s ease-in-out infinite; }
.scroll-indicator svg { width: 24px; height: 24px; }
@keyframes bounce-down { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(10px); } }

.animate-fade-in { opacity: 0; animation: fadeIn 0.8s ease forwards; }
.animate-fade-in-up { opacity: 0; transform: translateY(30px); animation: fadeInUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

.features { 
    padding: var(--space-4xl) 0; 
    background: 
        radial-gradient(ellipse 80% 50% at 10% 20%, rgba(212, 168, 83, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 60% at 90% 80%, rgba(63, 185, 168, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 50% 80% at 50% 0%, rgba(88, 166, 255, 0.08) 0%, transparent 40%),
        linear-gradient(180deg, 
            rgba(13, 17, 23, 1) 0%, 
            rgba(18, 24, 32, 1) 30%,
            rgba(20, 28, 38, 1) 50%,
            rgba(18, 24, 32, 1) 70%,
            rgba(13, 17, 23, 1) 100%
        );
    position: relative; 
}
.features::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent 10%, rgba(212, 168, 83, 0.5) 50%, transparent 90%); }
.features::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent 10%, rgba(63, 185, 168, 0.4) 50%, transparent 90%); }
.features__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: var(--space-lg); }
.feature-card { background: var(--gradient-card); border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: var(--space-xl); transition: all var(--transition-base); position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient-gold); transform: scaleX(0); transform-origin: left; transition: transform var(--transition-base); }
.feature-card:hover { transform: translateY(-8px); border-color: var(--color-border-accent); box-shadow: var(--shadow-lg), 0 0 30px rgba(212, 168, 83, 0.1); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card__icon { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; background: rgba(212, 168, 83, 0.1); border: 1px solid rgba(212, 168, 83, 0.2); border-radius: var(--radius-lg); margin-bottom: var(--space-lg); }
.feature-card__icon svg { width: 28px; height: 28px; color: var(--color-accent-gold); }
.feature-card__title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; margin-bottom: var(--space-sm); text-transform: uppercase; letter-spacing: 0.02em; }
.feature-card__text { color: var(--color-text-secondary); font-size: 0.9375rem; line-height: 1.7; margin-bottom: var(--space-md); }
.feature-card__tag { display: inline-block; padding: var(--space-xs) var(--space-sm); background: rgba(63, 185, 168, 0.1); border: 1px solid rgba(63, 185, 168, 0.3); border-radius: var(--radius-sm); font-size: 0.75rem; font-weight: 600; color: var(--color-accent-teal); text-transform: uppercase; letter-spacing: 0.05em; }

.video-section { 
    padding: var(--space-4xl) 0; 
    position: relative;
    overflow: hidden;
}
.video-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/bg-video.jpg') center center / cover no-repeat;
    filter: blur(1px);
    transform: scale(1.02);
    z-index: 0;
}
.video-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(13, 17, 23, 0.92) 0%,
        rgba(13, 17, 23, 0.8) 50%,
        rgba(13, 17, 23, 0.92) 100%
    );
    z-index: 1;
}
.video-section > .container {
    position: relative;
    z-index: 2;
}
.video-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3xl); align-items: center; }
.video-content .section-title { text-align: left; }
.video-text { color: var(--color-text-secondary); font-size: 1.0625rem; line-height: 1.8; margin-bottom: var(--space-xl); }
.video-features { display: flex; flex-direction: column; gap: var(--space-md); }
.video-features li { display: flex; align-items: center; gap: var(--space-md); font-size: 1rem; color: var(--color-text-primary); }
.video-features svg { width: 20px; height: 20px; color: var(--color-accent-green); flex-shrink: 0; }
.video-player { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.video-placeholder { position: relative; aspect-ratio: 16/9; background: var(--color-bg-tertiary); }
.video-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.play-button { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; background: var(--gradient-gold); border-radius: 50%; color: var(--color-bg-primary); box-shadow: var(--shadow-lg), var(--shadow-glow); transition: all var(--transition-base); cursor: pointer; }
.play-button svg { width: 28px; height: 28px; margin-left: 4px; }
.play-button:hover { transform: translate(-50%, -50%) scale(1.1); box-shadow: var(--shadow-xl), var(--shadow-glow-intense); }

.article-section { 
    padding: var(--space-4xl) 0; 
    background: 
        radial-gradient(ellipse 100% 80% at 0% 0%, rgba(88, 166, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 80% 100% at 100% 100%, rgba(88, 166, 255, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 70% 20%, rgba(63, 185, 168, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse 50% 60% at 20% 80%, rgba(212, 168, 83, 0.08) 0%, transparent 40%),
        linear-gradient(180deg, 
            rgba(13, 17, 23, 1) 0%, 
            rgba(16, 22, 30, 1) 25%,
            rgba(18, 26, 36, 1) 50%,
            rgba(16, 22, 30, 1) 75%,
            rgba(13, 17, 23, 1) 100%
        );
    position: relative;
    overflow: hidden;
}
.article-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(88, 166, 255, 0.4) 30%, rgba(63, 185, 168, 0.4) 70%, transparent 100%);
}
.article-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(63, 185, 168, 0.3) 50%, transparent 100%);
}
.article-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: var(--space-3xl); 
    align-items: center;
    margin-bottom: var(--space-4xl);
}
.article-grid:last-child { margin-bottom: 0; }
.article-grid--reverse { direction: rtl; }
.article-grid--reverse > * { direction: ltr; }
.article-image { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.article-image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.article-image__badge { position: absolute; bottom: var(--space-lg); left: var(--space-lg); padding: var(--space-md) var(--space-lg); background: rgba(13, 17, 23, 0.9); backdrop-filter: blur(10px); border: 1px solid var(--color-border-accent); border-radius: var(--radius-lg); }
.article-image__badge span { display: block; font-size: 0.75rem; color: var(--color-text-secondary); text-transform: uppercase; letter-spacing: 0.1em; }
.article-image__badge strong { font-family: var(--font-display); font-size: 1.25rem; color: var(--color-accent-gold); }
.article-content .section-title { text-align: left; }
.article-content p { color: var(--color-text-secondary); font-size: 1.0625rem; line-height: 1.8; margin-bottom: var(--space-lg); }
.article-stats { display: flex; gap: var(--space-xl); margin-bottom: var(--space-xl); padding: var(--space-lg) 0; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.article-stat { text-align: center; }
.article-stat strong { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--color-accent-gold); }
.article-stat span { font-size: 0.875rem; color: var(--color-text-secondary); }

.pricing { 
    padding: var(--space-4xl) 0; 
    position: relative; 
    overflow: hidden;
}
.pricing__bg {
    position: absolute;
    inset: 0;
    background: url('../img/bg-tarrif2.jpg') center center / cover no-repeat;
    z-index: 0;
}
.pricing__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(13, 17, 23, 0.9) 0%,
        rgba(13, 17, 23, 0.7) 20%,
        rgba(13, 17, 23, 0.6) 50%,
        rgba(13, 17, 23, 0.7) 80%,
        rgba(13, 17, 23, 0.9) 100%
    );
}
.pricing__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(13, 17, 23, 0.4) 100%);
}
.pricing > .container {
    position: relative;
    z-index: 1;
}
.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 100%;
    background: radial-gradient(ellipse at top center, rgba(212, 168, 83, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}
.pricing::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 168, 83, 0.3) 50%, transparent 100%);
    z-index: 1;
}
/* Period Selection Buttons */
.pricing__periods {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    width: fit-content;
    margin: 0 auto var(--space-3xl);
    background: linear-gradient(135deg, rgba(13, 17, 23, 0.9) 0%, rgba(22, 27, 34, 0.9) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-2xl);
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.period-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 18px 32px;
    background: transparent;
    border: none;
    border-right: 1px solid var(--color-border);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 140px;
}
.period-btn:last-child {
    border-right: none;
}
.period-btn__name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}
.period-btn__badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, rgba(126, 231, 135, 0.15) 0%, rgba(63, 185, 168, 0.1) 100%);
    border: 1px solid rgba(126, 231, 135, 0.4);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent-green);
    text-shadow: 0 0 10px rgba(126, 231, 135, 0.5);
}
.period-btn:hover {
    background: rgba(255, 255, 255, 0.03);
}
.period-btn:hover .period-btn__name {
    color: var(--color-text-primary);
}
.period-btn.active {
    background: linear-gradient(180deg, rgba(212, 168, 83, 0.2) 0%, rgba(212, 168, 83, 0.05) 100%);
    box-shadow: inset 0 0 30px rgba(212, 168, 83, 0.1);
}
.period-btn.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent-gold), var(--color-accent-gold-light), var(--color-accent-gold));
    box-shadow: 0 0 15px rgba(212, 168, 83, 0.6);
}
.period-btn.active .period-btn__name {
    color: var(--color-accent-gold);
    text-shadow: 0 0 20px rgba(212, 168, 83, 0.4);
}
.period-btn.active .period-btn__badge {
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.25) 0%, rgba(240, 201, 106, 0.15) 100%);
    border-color: var(--color-accent-gold);
    color: var(--color-accent-gold);
    text-shadow: 0 0 10px rgba(212, 168, 83, 0.5);
}
.period-btn__badge--gold {
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.3) 0%, rgba(240, 201, 106, 0.2) 100%) !important;
    border-color: var(--color-accent-gold) !important;
    color: var(--color-accent-gold) !important;
    font-size: 1rem !important;
    text-shadow: 0 0 15px rgba(212, 168, 83, 0.6);
}
.pricing__grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: var(--space-lg); 
    margin-bottom: var(--space-2xl);
    position: relative;
    z-index: 1;
}
.pricing-card { 
    background: linear-gradient(165deg, rgba(33, 38, 45, 0.95) 0%, rgba(22, 27, 34, 0.98) 100%);
    border: 1px solid var(--color-border); 
    border-radius: var(--radius-xl); 
    padding: var(--space-xl) var(--space-lg); 
    position: relative; 
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); 
    display: flex; 
    flex-direction: column;
    overflow: hidden;
    min-width: 0;
}
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--color-border-light) 50%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}
.pricing-card:hover::before { opacity: 1; }
.pricing-card:hover { transform: translateY(-8px); border-color: var(--color-border-light); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 168, 83, 0.08); }
.pricing-card--popular, .pricing-card--featured { 
    border-color: rgba(212, 168, 83, 0.5); 
    box-shadow: 0 0 40px rgba(212, 168, 83, 0.12), inset 0 1px 0 rgba(212, 168, 83, 0.1);
    background: linear-gradient(165deg, rgba(40, 35, 30, 0.95) 0%, rgba(22, 27, 34, 0.98) 100%);
    padding-top: var(--space-2xl);
}
.pricing-card--popular::before, .pricing-card--featured::before {
    background: linear-gradient(90deg, transparent 0%, var(--color-accent-gold) 50%, transparent 100%);
    opacity: 0.6;
}
.pricing-card--popular:hover, .pricing-card--featured:hover { box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), var(--shadow-glow); }
.pricing-card--enterprise { border-color: rgba(163, 113, 247, 0.5); box-shadow: 0 0 40px rgba(163, 113, 247, 0.12); padding-top: var(--space-2xl); }
.pricing-card--enterprise::before { background: linear-gradient(90deg, transparent 0%, var(--color-accent-purple) 50%, transparent 100%); opacity: 0.6; }

/* Corner decorations */
.pricing-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at bottom right, rgba(212, 168, 83, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.pricing-card--popular::after, .pricing-card--featured::after {
    background: radial-gradient(circle at bottom right, rgba(212, 168, 83, 0.15) 0%, transparent 70%);
}

.pricing-card__badge { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); padding: 6px 16px; background: var(--gradient-gold); border-radius: var(--radius-full); font-size: 0.7rem; font-weight: 700; color: var(--color-bg-primary); text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap; box-shadow: 0 4px 15px rgba(212, 168, 83, 0.4); animation: badge-glow 2s ease-in-out infinite; z-index: 10; }
@keyframes badge-glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(212, 168, 83, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(212, 168, 83, 0.6); }
}
.pricing-card__header { text-align: center; padding-bottom: var(--space-md); margin-bottom: var(--space-md); border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.pricing-card__name { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-accent-gold); margin-bottom: var(--space-sm); text-shadow: 0 0 20px rgba(212, 168, 83, 0.3); }
.pricing-card__price { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.pricing-card__price .currency { font-size: 1.25rem; font-weight: 600; color: var(--color-text-primary); }
.pricing-card__price .amount { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: #fff; text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1); }
.pricing-card__price .period { font-size: 0.875rem; color: var(--color-text-secondary); transition: opacity 0.15s ease; }
.pricing-card__features { flex: 1; margin-bottom: var(--space-md); }
.pricing-card__features li { 
    display: flex; 
    align-items: flex-start; 
    gap: 8px; 
    padding: 7px 0; 
    font-size: 0.8rem; 
    color: rgba(255, 255, 255, 0.9); 
    line-height: 1.4;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: all var(--transition-fast);
    word-break: normal;
    hyphens: none;
}
.pricing-card__features li:last-child { border-bottom: none; }
.pricing-card__features li:hover { 
    background: rgba(255, 255, 255, 0.03);
    padding-left: 6px;
    margin-left: -6px;
    margin-right: -6px;
    padding-right: 6px;
    border-radius: 4px;
}
.pricing-card__features svg { width: 16px; height: 16px; color: var(--color-accent-teal); flex-shrink: 0; margin-top: 2px; fill: none; stroke: currentColor; stroke-width: 3; }
.pricing-card__features .emoji { font-size: 1rem; flex-shrink: 0; line-height: 1.2; }
.pricing-card__features strong {
    color: var(--color-accent-gold);
    font-weight: 700;
}

/* Pricing Card Premium Button - White Style */
.pricing-card .btn--block {
    position: relative;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.875rem 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}
.pricing-card .btn--block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}
.pricing-card .btn--block:hover::before { left: 100%; }
.pricing-card .btn--block:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.15), inset 0 0 15px rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.pricing-card .btn--primary.btn--block,
.pricing-card .btn--glow.btn--block {
    background: linear-gradient(135deg, #ffd700 0%, #d4a853 50%, #f0a500 100%);
    background-size: 200% 200%;
    border: none;
    color: #0d1117;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(212, 168, 83, 0.4);
    animation: pricing-btn-gradient 3s ease infinite;
}
.pricing-card .btn--primary.btn--block:hover,
.pricing-card .btn--glow.btn--block:hover {
    box-shadow: 0 6px 30px rgba(212, 168, 83, 0.5), 0 0 40px rgba(212, 168, 83, 0.3);
    transform: translateY(-3px) scale(1.02);
}
@keyframes pricing-btn-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.faq { 
    padding: var(--space-4xl) 0; 
    background: 
        radial-gradient(ellipse 100% 80% at 0% 0%, rgba(88, 166, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 80% 100% at 100% 100%, rgba(88, 166, 255, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 70% 20%, rgba(63, 185, 168, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse 50% 60% at 20% 80%, rgba(212, 168, 83, 0.08) 0%, transparent 40%),
        linear-gradient(180deg, 
            rgba(13, 17, 23, 1) 0%, 
            rgba(16, 22, 30, 1) 25%,
            rgba(18, 26, 36, 1) 50%,
            rgba(16, 22, 30, 1) 75%,
            rgba(13, 17, 23, 1) 100%
        );
    position: relative;
    overflow: hidden;
}
.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(88, 166, 255, 0.4) 30%, rgba(63, 185, 168, 0.4) 70%, transparent 100%);
}
.faq::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(63, 185, 168, 0.3) 50%, transparent 100%);
}
.faq__grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: var(--space-xl); 
    max-width: 1200px; 
    margin: 0 auto; 
}
.faq__column { 
    display: flex; 
    flex-direction: column; 
    gap: var(--space-md); 
}
@media (max-width: 900px) {
    .faq__grid { grid-template-columns: 1fr; }
}
.faq-item { 
    background: var(--gradient-card); 
    border: 2px solid var(--color-border); 
    border-radius: var(--radius-lg); 
    overflow: hidden; 
    transition: all 0.4s ease;
    position: relative;
}
.faq-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    background: linear-gradient(90deg, var(--color-accent-gold), rgba(212, 168, 83, 0.3), var(--color-accent-gold)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.faq-item:hover { 
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 25px rgba(212, 168, 83, 0.15);
}
.faq-item:hover::after {
    opacity: 1;
    animation: faq-border-run 4s linear infinite;
}
@keyframes faq-border-run {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.faq-item[open] { 
    border-color: var(--color-accent-gold); 
    box-shadow: 0 0 25px rgba(212, 168, 83, 0.15); 
}
.faq-item[open]::after {
    opacity: 1;
    background: var(--color-accent-gold);
    animation: none;
}
.faq-item__question { display: flex; align-items: center; justify-content: space-between; gap: var(--space-md); padding: var(--space-lg); cursor: pointer; list-style: none; }
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item__question span { font-size: 1rem; font-weight: 600; color: var(--color-text-primary); }
.faq-item__question svg { width: 20px; height: 20px; color: var(--color-text-secondary); flex-shrink: 0; transition: transform var(--transition-base); }
.faq-item[open] .faq-item__question svg { transform: rotate(180deg); color: var(--color-accent-gold); }
.faq-item__answer { padding: 0 var(--space-lg) var(--space-lg); }
.faq-item__answer p { color: var(--color-text-secondary); font-size: 0.9375rem; line-height: 1.7; }

.cta { padding: var(--space-4xl) 0; position: relative; overflow: hidden; }
.cta__bg { 
    position: absolute; 
    inset: 0; 
    background: url('../img/bg-order.jpg') center center / cover no-repeat;
    filter: blur(0.5px);
    transform: scale(1.01);
    z-index: 0; 
}
.cta__bg::before { 
    content: ''; 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(
        180deg,
        rgba(13, 17, 23, 0.85) 0%,
        rgba(13, 17, 23, 0.78) 50%,
        rgba(13, 17, 23, 0.85) 100%
    );
}
.cta__bg::after { 
    content: ''; 
    position: absolute; 
    inset: 0; 
    background: radial-gradient(circle at 30% 50%, rgba(212, 168, 83, 0.08) 0%, transparent 60%); 
}
.cta > .container { position: relative; z-index: 1; }
.cta__content { text-align: center; max-width: 700px; margin: 0 auto; }
.cta__title { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: var(--space-md); }
.cta__text { font-size: 1.125rem; color: var(--color-text-secondary); margin-bottom: var(--space-2xl); line-height: 1.7; }
.cta__buttons { display: flex; justify-content: center; gap: var(--space-md); flex-wrap: wrap; }

.contact { padding: var(--space-4xl) 0; background: var(--color-bg-primary); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3xl); align-items: start; }
.contact__info .section-title { text-align: left; }
.contact__info > p { color: var(--color-text-secondary); font-size: 1.0625rem; line-height: 1.7; margin-bottom: var(--space-2xl); }
.contact__methods { display: flex; flex-direction: column; gap: var(--space-md); }
.contact-method { display: flex; align-items: center; gap: var(--space-md); padding: var(--space-md) var(--space-lg); background: var(--color-bg-secondary); border: 1px solid var(--color-border); border-radius: var(--radius-lg); transition: all var(--transition-base); }
.contact-method:hover { border-color: var(--color-accent-gold); background: var(--color-bg-tertiary); transform: translateX(8px); }
.contact-method__icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(212, 168, 83, 0.1); border-radius: var(--radius-md); }
.contact-method__icon svg { width: 24px; height: 24px; color: var(--color-accent-gold); }
.contact-method__label { display: block; font-size: 0.75rem; color: var(--color-text-tertiary); text-transform: uppercase; letter-spacing: 0.1em; }
.contact-method__value { font-size: 1rem; font-weight: 600; color: var(--color-text-primary); }
.contact__form-wrapper { background: var(--gradient-card); border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: var(--space-2xl); }
.contact__form { display: flex; flex-direction: column; gap: var(--space-lg); }
.form-group { display: flex; flex-direction: column; gap: var(--space-sm); }
.form-group label { font-size: 0.875rem; font-weight: 500; color: var(--color-text-secondary); }
.form-group input, .form-group select, .form-group textarea { padding: var(--space-md); background: var(--color-bg-secondary); border: 1px solid var(--color-border); border-radius: var(--radius-md); color: var(--color-text-primary); transition: all var(--transition-fast); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--color-accent-gold); box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--color-text-tertiary); }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238b949e' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right var(--space-md) center; background-size: 20px; padding-right: var(--space-3xl); }
.form-group textarea { resize: vertical; min-height: 120px; }

.footer { 
    background: 
        radial-gradient(ellipse 80% 50% at 20% 100%, rgba(212, 168, 83, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(63, 185, 168, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 100% 60% at 50% 0%, rgba(88, 166, 255, 0.06) 0%, transparent 40%),
        linear-gradient(180deg, 
            rgba(22, 27, 34, 1) 0%, 
            rgba(16, 20, 26, 1) 50%,
            rgba(13, 17, 23, 1) 100%
        );
    border-top: 1px solid transparent;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 168, 83, 0.4) 25%, rgba(88, 166, 255, 0.3) 50%, rgba(63, 185, 168, 0.4) 75%, transparent 100%);
}
.footer__top { padding: var(--space-3xl) 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-3xl); }
.footer__logo { display: flex; align-items: center; gap: var(--space-sm); font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: var(--space-lg); }
.footer__desc { color: var(--color-text-secondary); font-size: 0.9375rem; line-height: 1.7; margin-bottom: var(--space-lg); }
.footer__social { display: flex; gap: var(--space-sm); }
.social-link { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--color-bg-tertiary); border: 1px solid var(--color-border); border-radius: var(--radius-md); color: var(--color-text-secondary); transition: all var(--transition-fast); }
.social-link:hover { background: var(--color-accent-gold); border-color: var(--color-accent-gold); color: var(--color-bg-primary); transform: translateY(-2px); }
.social-link svg { width: 18px; height: 18px; }
.footer__links h4 { font-family: var(--font-display); font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-text-primary); margin-bottom: var(--space-lg); }
.footer__links ul { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer__links a { font-size: 0.9375rem; color: var(--color-text-secondary); transition: all var(--transition-fast); }
.footer__links a:hover { color: var(--color-accent-gold); padding-left: var(--space-sm); }
.footer__bottom { padding: var(--space-lg) 0; border-top: 1px solid var(--color-border); }
.footer__bottom-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--space-md); }
.footer__bottom p { font-size: 0.875rem; color: var(--color-text-tertiary); }
.footer__disclaimer { font-size: 0.75rem !important; }

@media (max-width: 1200px) { .footer__grid { grid-template-columns: 1fr 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }
@media (max-width: 992px) { .nav__menu, .nav__auth { display: none; } .nav__toggle { display: flex; } .hero__stats { gap: var(--space-xl); } .stat__number { font-size: 2rem; } .video-wrapper, .article-grid, .contact__grid { grid-template-columns: 1fr; gap: var(--space-2xl); } .article-image { order: -1; } .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 1500px) { .pricing__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 1100px) { .pricing__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 1100px) { .pricing__periods { flex-wrap: wrap; border-radius: var(--radius-xl); } .period-btn { min-width: calc(33.333% - 1px); padding: 14px 16px; border-right: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); } .period-btn:nth-child(3n) { border-right: none; } .period-btn:nth-child(4), .period-btn:nth-child(5), .period-btn:nth-child(6) { border-bottom: none; } }
@media (max-width: 700px) { .period-btn { min-width: calc(50% - 1px); } .period-btn:nth-child(3n) { border-right: 1px solid var(--color-border); } .period-btn:nth-child(2n) { border-right: none; } .period-btn:nth-child(5), .period-btn:nth-child(6) { border-bottom: none; } }
@media (max-width: 768px) { :root { --space-4xl: 4rem; } .hero__buttons { flex-direction: column; align-items: center; } .hero__buttons .btn, .hero__buttons .btn-mega { width: 100%; max-width: 300px; } .hero__features { flex-direction: column; align-items: center; gap: var(--space-md); } .hero__stats { flex-direction: column; gap: var(--space-lg); } .features__grid { grid-template-columns: 1fr; } .pricing__grid { grid-template-columns: 1fr; } .pricing__periods { display: grid; grid-template-columns: 1fr 1fr; } .period-btn { min-width: auto; padding: 12px 16px; } .period-btn__name { font-size: 0.875rem; } .cta__buttons { flex-direction: column; align-items: center; } .cta__buttons .btn { width: 100%; max-width: 300px; } .footer__grid { grid-template-columns: 1fr; text-align: center; } .footer__social { justify-content: center; } .footer__links a:hover { padding-left: 0; } .footer__bottom-content { flex-direction: column; text-align: center; } }
@media (max-width: 480px) { .container { padding: 0 var(--space-md); } .hero__title { font-size: 1.75rem; } .hero__title-accent { font-size: 1.1em; } .btn--large { padding: 0.875rem 1.5rem; font-size: 0.9375rem; } .article-stats { flex-direction: column; gap: var(--space-md); } }

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-accent-gold) 0%, var(--color-accent-gold-dark) 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(212, 168, 83, 0.4);
}
.scroll-top svg {
    width: 24px;
    height: 24px;
    color: var(--color-bg-primary);
    stroke-width: 2.5;
}
.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(212, 168, 83, 0.5);
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
@media (max-width: 768px) {
    .scroll-top { bottom: 20px; right: 20px; width: 45px; height: 45px; }
    .scroll-top svg { width: 20px; height: 20px; }
}

[data-aos] { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos-delay="50"] { transition-delay: 50ms; }
[data-aos-delay="100"] { transition-delay: 100ms; }
[data-aos-delay="150"] { transition-delay: 150ms; }
[data-aos-delay="200"] { transition-delay: 200ms; }
[data-aos-delay="250"] { transition-delay: 250ms; }
[data-aos-delay="300"] { transition-delay: 300ms; }
[data-aos-delay="400"] { transition-delay: 400ms; }
[data-aos-delay="500"] { transition-delay: 500ms; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--color-bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--color-bg-elevated); border-radius: var(--radius-full); border: 2px solid var(--color-bg-secondary); }
::-webkit-scrollbar-thumb:hover { background: var(--color-border-light); }
::selection { background: rgba(212, 168, 83, 0.3); color: var(--color-text-primary); }
:focus-visible { outline: 2px solid var(--color-accent-gold); outline-offset: 2px; }
button:focus:not(:focus-visible), a:focus:not(:focus-visible) { outline: none; }

