/* ===== CSS VARIABLES ===== */
:root {
    --primary-color: #000000;
    --accent-color: #00d4ff;
    --secondary-accent: #ff007a;
    --background-color: #000000;
    --text-color: #ffffff;
    --card-background: rgba(255, 255, 255, 0.03);
    --gradient-sphere: radial-gradient(circle at 40% 40%, rgba(0, 212, 255, 0.1), transparent 70%);
    --shadow-color: rgba(0, 0, 0, 0.8);
    --grok-gradient: linear-gradient(135deg, #00d4ff, #ff007a, #00d4ff);
    --glass-background: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Force remove all subscription input styles - HIGHEST PRIORITY */
.subscription-section input,
.subscription-section .card-element,
.subscription-section .payment-form input,
.subscription-section .payment-form .card-element,
#subscribe input,
#subscribe .card-element,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="url"],
input[type="search"],
.card-element,
/* Global input override for subscription section - now with beautiful styles */
#subscribe * input,
#subscribe * .card-element,
.subscription-section * input,
.subscription-section * .card-element {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 1rem;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    box-sizing: border-box;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    min-height: 3.5rem;
    line-height: 1.5;
    cursor: text;
}

/* Focus and hover states for global subscription inputs */
#subscribe * input:focus,
#subscribe * .card-element:focus-within,
.subscription-section * input:focus,
.subscription-section * .card-element:focus-within {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.15);
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

#subscribe * input:hover,
#subscribe * .card-element:hover,
.subscription-section * input:hover,
.subscription-section * .card-element:hover {
    border-color: rgba(0, 212, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* Placeholder styles for global subscription inputs */
#subscribe * input::placeholder,
.subscription-section * input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    font-weight: 300;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}



.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--grok-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.logo-image {
    height: 40px;
    width: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

/* Responsive logo */
@media (max-width: 768px) {
    .logo-image {
        height: 32px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 28px;
    }
}

.logo-glow {
    position: absolute;
    inset: -10px;
    background: var(--grok-gradient);
    filter: blur(20px);
    opacity: 0.3;
    z-index: 1;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grok-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link.active {
    color: var(--accent-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-color);
    border-radius: 1px;
}

.subscribe-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    color: var(--accent-color) !important;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

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

.subscribe-btn:hover::before {
    left: 100%;
}

.subscribe-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.subscribe-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.15);
}

.subscribe-btn i {
    font-size: 0.8rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.subscribe-btn:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-toggle {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-toggle:hover {
    background: var(--glass-background);
    border-color: var(--accent-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1001;
    position: relative;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 2px;
    transform-origin: center;
}

/* Анімація гамбургер-кнопки */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

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

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.cosmic-particles {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(0, 212, 255, 0.6), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 0, 122, 0.6), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(0, 212, 255, 0.4), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: cosmicFloat 20s linear infinite;
}

.floating-orbs {
    position: absolute;
    inset: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    opacity: 0.1;
    animation: orbFloat 15s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3), transparent);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 0, 122, 0.3), transparent);
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2), transparent);
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 2;
}

.hero-title {
    margin-bottom: 2rem;
}

.title-line {
    display: block;
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(2rem);
    animation: titleReveal 0.8s ease forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.title-line:nth-child(3) {
    animation-delay: 0.4s;
}

.title-line.highlight {
    background: var(--grok-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(2rem);
    animation: titleReveal 0.8s ease forwards 0.6s;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(2rem);
    animation: titleReveal 0.8s ease forwards 0.8s;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.025em;
    border-radius: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grok-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn:hover::after {
    left: 100%;
}

.btn span,
.btn i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.btn:hover span,
.btn:hover i {
    transform: scale(1.05);
}

.btn-primary {
    background: var(--grok-gradient);
    color: var(--text-color);
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3), 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-0.375rem) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4), 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary:active {
    transform: translateY(-0.125rem) scale(0.98);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    border-color: var(--glass-border);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-0.375rem) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.25), 0 8px 20px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-secondary:active {
    transform: translateY(-0.125rem) scale(0.98);
}

.btn-large {
    padding: 1.375rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 1.25rem;
}

.btn-large:hover {
    transform: translateY(-0.5rem) scale(1.03);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-color);
    border-color: var(--glass-border);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.btn-outline:hover {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-0.375rem) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.25), 0 8px 20px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-outline:active {
    transform: translateY(-0.125rem) scale(0.98);
}

/* Нова кнопка з неоновим ефектом */
.btn-neon {
    background: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3), inset 0 0 20px rgba(0, 212, 255, 0.1);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.btn-neon:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6), inset 0 0 30px rgba(0, 212, 255, 0.2);
    transform: translateY(-0.375rem) scale(1.02);
}

/* Кнопка з 3D ефектом */
.btn-3d {
    background: linear-gradient(145deg, var(--accent-color), #00b4d8);
    color: var(--text-color);
    border: none;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(0);
}

.btn-3d:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-3d:active {
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Маленька кнопка */
.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    border-radius: 0.75rem;
}

/* Кнопка з завантаженням */
.btn-loading {
    position: relative;
    pointer-events: none;
}

.btn-loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 3;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Анімація появи кнопок */
.btn {
    animation: buttonAppear 0.6s ease-out;
}

@keyframes buttonAppeal {
    from {
        opacity: 0;
        transform: translateY(1rem) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(2rem);
    animation: titleReveal 0.8s ease forwards 1s;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--grok-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.2s;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--grok-gradient);
    position: relative;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--accent-color);
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 6rem 0;
    background: linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.02));
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--grok-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--glass-background);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-sphere);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 0.1;
}

.feature-card:hover {
    transform: translateY(-0.5rem);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 1rem 3rem rgba(0, 212, 255, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--grok-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-color);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
    padding: 6rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-preview-card {
    background: var(--glass-background);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-preview-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-sphere);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-preview-card:hover::before {
    opacity: 0.1;
}

.service-preview-card:hover {
    transform: translateY(-0.5rem);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 1rem 3rem rgba(0, 212, 255, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--grok-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--text-color);
}

.service-preview-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-preview-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--secondary-accent);
    transform: translateX(0.5rem);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(255, 0, 122, 0.05));
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--grok-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-color);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-section h3 {
    font-size: 1.5rem;
    background: var(--grok-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--glass-background);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--grok-gradient);
    border-color: transparent;
    transform: translateY(-0.25rem);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* ===== ANIMATIONS ===== */
@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes cosmicFloat {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100px);
    }
}

@keyframes orbFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .subscription-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-actions {
        display: none;
    }
    
    /* Приховуємо кнопку Subscribe тільки в десктопному меню, але вона буде видна в мобільному */
    .nav-menu > .subscribe-btn {
        display: none;
    }
    
    /* Переконаємося, що кнопка Subscribe видна в мобільному меню */
    .nav-menu.active .subscribe-btn {
        display: block !important;
    }
    
    /* Показуємо гамбургер-меню на мобільних */
    .nav-toggle {
        display: flex !important;
        z-index: 1001;
        position: relative;
    }
    
    /* Приховуємо звичайне меню на мобільних */
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border-top: 1px solid var(--glass-border);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        z-index: 999;
        min-height: 100vh;
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu .nav-link {
        padding: 1rem 0;
        font-size: 1.1rem;
        font-weight: 600;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        transition: all 0.3s ease;
        display: block;
        margin: 0;
    }
    
    /* Спеціальні стилі для кнопки Subscribe в мобільному меню */
    .nav-menu .subscribe-btn {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(0, 212, 255, 0.3);
        color: var(--accent-color);
        padding: 1rem 2rem;
        margin: 1rem 0;
        border-radius: 8px;
        font-weight: 500;
        font-size: 0.9rem;
        text-align: center;
        display: block !important;
        text-decoration: none;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        letter-spacing: 0.02em;
    }
    
    .nav-menu .subscribe-btn:hover {
        background: rgba(255, 255, 255, 0.12);
        border-color: var(--accent-color);
        transform: translateY(-1px);
        box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
    }
    
    .nav-menu .subscribe-btn:active {
        transform: translateY(0);
        box-shadow: 0 2px 8px rgba(0, 212, 255, 0.15);
    }
    
    .nav-menu .subscribe-btn i {
        font-size: 0.8rem;
        opacity: 0.8;
        transition: all 0.3s ease;
    }
    
    .nav-menu .subscribe-btn:hover i {
        opacity: 1;
        transform: scale(1.1);
    }

    .nav-menu .nav-link:last-child {
        border-bottom: none;
    }

    .nav-menu .nav-link:hover {
        background: rgba(0, 212, 255, 0.1);
        padding-left: 1rem;
        padding-right: 1rem;
        border-radius: 8px;
        color: var(--accent-color);
    }

    .nav-menu .nav-link::after {
        display: none;
    }
    
    /* Покращуємо стилі для гамбургер-кнопки на мобільних */
    .nav-toggle span {
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    /* Додаємо стилі для активного стану гамбургер-кнопки */
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0.75rem 1rem;
    }

    .nav-menu {
        padding: 1.5rem;
    }

    .nav-menu .nav-link {
        padding: 0.875rem 0;
        font-size: 1rem;
    }
    
    .nav-toggle {
        padding: 6px;
    }
    
    .nav-toggle span {
        width: 22px;
        height: 2.5px;
    }
}

@media (max-width: 360px) {
    .nav-container {
        padding: 0.5rem 0.75rem;
    }
    
    .nav-menu {
        padding: 1rem;
    }
    
    .nav-menu .nav-link {
        font-size: 0.95rem;
        padding: 0.75rem 0;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-color);
}

::-webkit-scrollbar-thumb {
    background: var(--grok-gradient);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* ===== SELECTION STYLING ===== */
::selection {
    background: var(--accent-color);
    color: var(--background-color);
}

::-moz-selection {
    background: var(--accent-color);
    color: var(--background-color);
}

/* ===== SUBSCRIPTION SECTION ===== */
.subscription-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.08) 0%, 
        rgba(255, 0, 122, 0.08) 50%, 
        rgba(0, 212, 255, 0.08) 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(255, 0, 122, 0.1);
}

.subscription-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 122, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(0,212,255,0.08)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.subscription-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.03) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

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

.subscription-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

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

/* Section Header Styles */
.section-header {
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(255, 0, 122, 0.2));
    border-radius: 50%;
    margin-bottom: 2rem;
    border: 2px solid rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: bounceIn 1s ease-out 0.4s both;
}

.header-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 122, 0.1));
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.header-icon i {
    font-size: 2rem;
    color: var(--accent-color);
    position: relative;
    z-index: 2;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.subscription-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00d4ff 0%, #ff007a 50%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3)); }
    to { filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.5)); }
}

.subscription-content p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.subscription-form {
    max-width: 550px;
    margin: 0 auto 4rem;
    transform: translateY(0);
    transition: transform 0.3s ease;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.subscription-form:hover {
    transform: translateY(-5px);
}

.payment-form {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.03) 100%);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(25px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 212, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.payment-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 212, 255, 0.1), 
        transparent);
    transition: left 0.6s ease;
}

.payment-form:hover::before {
    left: 100%;
}

/* Form Header Styles */
.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.form-header h3 i {
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

.form-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
    animation: fadeInUp 0.6s ease-out both;
}

.form-group:nth-child(1) { animation-delay: 0.8s; }
.form-group:nth-child(2) { animation-delay: 0.9s; }
.form-group:nth-child(3) { animation-delay: 1.0s; }
.form-group:nth-child(4) { animation-delay: 1.1s; }

/* Label Styles */
.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.form-group label i {
    color: var(--accent-color);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-group:hover label {
    color: var(--accent-color);
}

.form-group:hover label i {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* Beautiful input styles for subscription form */
.subscription-section .payment-form .form-group input[type="text"],
.subscription-section .payment-form .form-group input[type="email"],
.subscription-section .payment-form .form-group input[type="password"],
.subscription-section .payment-form .form-group input[type="tel"],
.subscription-section .payment-form .form-group input[type="url"],
.subscription-section .payment-form .form-group input[type="search"] {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 1rem;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    box-sizing: border-box;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    min-height: 3.5rem;
    line-height: 1.5;
    cursor: text;
}

.subscription-section .payment-form .form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.15);
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.subscription-section .payment-form .form-group input::placeholder,
.subscription-section .payment-form .form-group input::-webkit-input-placeholder,
.subscription-section .payment-form .form-group input::-moz-placeholder,
.subscription-section .payment-form .form-group input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    font-weight: 300;
}

/* Beautiful card element styles for Stripe */
.subscription-section .payment-form .form-group .card-element {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 1rem;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    box-sizing: border-box;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    min-height: 3.5rem;
    line-height: 1.5;
    cursor: text;
}

.subscription-section .payment-form .form-group .card-element:focus-within {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.15);
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

/* Consistent input field styles for all subscription inputs */
.subscription-section .payment-form .form-group input,
.subscription-section .payment-form .form-group .card-element,
#subscribe .subscription-form .payment-form .form-group input,
#subscribe .subscription-form .payment-form .form-group .card-element,
.subscription-section input,
.subscription-section .card-element {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 1rem;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    box-sizing: border-box;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    min-height: 3.5rem;
    line-height: 1.5;
    cursor: text;
}

.subscription-section .payment-form .form-group input:focus,
.subscription-section .payment-form .form-group .card-element:focus-within,
.subscription-section input:focus,
.subscription-section .card-element:focus-within {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.15);
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.subscription-section .payment-form .form-group input::placeholder,
.subscription-section input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    font-weight: 300;
}

/* Hover effects for input fields */
.subscription-section .payment-form .form-group input:hover,
.subscription-section .payment-form .form-group .card-element:hover,
.subscription-section input:hover,
.subscription-section .card-element:hover {
    border-color: rgba(0, 212, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* Input field animations */
.subscription-section .payment-form .form-group input,
.subscription-section .payment-form .form-group .card-element,
.subscription-section input,
.subscription-section .card-element {
    animation: inputFadeIn 0.6s ease-out both;
    position: relative;
}

/* Glow effect on focus */
.subscription-section .payment-form .form-group input:focus::after,
.subscription-section .payment-form .form-group .card-element:focus-within::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00d4ff, #ff007a);
    border-radius: 1.1rem;
    z-index: -1;
    opacity: 0.3;
    animation: glowPulse 2s ease-in-out infinite;
}

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

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.02);
    }
}

/* Staggered animation for form groups */
.subscription-section .payment-form .form-group:nth-child(1) { animation-delay: 0.1s; }
.subscription-section .payment-form .form-group:nth-child(2) { animation-delay: 0.2s; }
.subscription-section .payment-form .form-group:nth-child(3) { animation-delay: 0.3s; }
.subscription-section .payment-form .form-group:nth-child(4) { animation-delay: 0.4s; }

/* Form Header Styles */
.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 1.5rem;
    border: 1px solid rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(10px);
}

.form-header h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
}

/* Form Row Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Form Note Styles */
.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 0, 122, 0.05);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 0, 122, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.form-note i {
    color: var(--accent-color);
}

/* Button Styles */
.btn-large {
    padding: 1.3rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 15px;
    background: linear-gradient(135deg, #00d4ff 0%, #ff007a 100%);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 
        0 10px 30px rgba(0, 212, 255, 0.3),
        0 0 0 1px rgba(0, 212, 255, 0.2);
    animation: fadeInUp 0.6s ease-out 1.2s both;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
}

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

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(0, 212, 255, 0.4),
        0 0 0 1px rgba(0, 212, 255, 0.3);
}

.btn-large:hover::before {
    left: 100%;
}

.btn-large:active {
    transform: translateY(-1px);
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-shine {
    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.6s ease;
}

.btn-large:hover .btn-shine {
    left: 100%;
}

/* Form Note Styles */
.form-note {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-weight: 500;
    padding: 1rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    animation: fadeInUp 0.6s ease-out 1.3s both;
}

.form-note i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.subscription-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    animation: fadeInUp 1s ease-out 1.4s both;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.benefit-item:nth-child(1) { animation: fadeInUp 0.6s ease-out 1.5s both; }
.benefit-item:nth-child(2) { animation: fadeInUp 0.6s ease-out 1.6s both; }
.benefit-item:nth-child(3) { animation: fadeInUp 0.6s ease-out 1.7s both; }

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.05) 0%, 
        rgba(255, 0, 122, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 212, 255, 0.2);
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(255, 0, 122, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.benefit-icon i {
    color: var(--accent-color);
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.benefit-content {
    flex: 1;
}

.benefit-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.benefit-content span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 1s ease-out 1.8s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.trust-item:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.trust-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .subscription-section {
        padding: 4rem 0;
    }
    
    .subscription-content h2 {
        font-size: 2.5rem;
    }
    
    .subscription-content p {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }
    
    .header-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .header-icon i {
        font-size: 1.5rem;
    }
    
    .payment-form {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .subscription-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 0 1rem 2rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .trust-indicators {
        gap: 2rem;
        margin: 0 1rem;
    }
}
