/* ========================================
   CSS Reset and Base Styles
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-color: #ff6e30;
    --primary-dark: #e65a1c;
    --primary-light: #ff8550;
    --secondary-color: #00B359;
    --accent-color: #ff6e30;
    --text-primary: #1A1A1A;
    --text-secondary: #666666;
    --text-light: #999999;
    --background: #FFFFFF;
    --background-light: #F8F9FA;
    --background-dark: #F0F2F5;
    --border-color: #E5E7EB;
    --success: #00B359;
    --warning: #FF9500;
    --purple: #8B5CF6;
    --color-gray: #8B95A1;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Borders */
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.08), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
    
    /* Container */
    --container-max-width: 1280px;
    
    /* Transitions */
    --transition-base: all 0.3s ease;
}

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background-color: #1e252b;
    line-height: var(--line-height-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: white;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--spacing-md);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: var(--spacing-sm);
}

h4 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: var(--spacing-sm);
    color: #8B95A1;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #8B95A1;
}

/* ========================================
   Layout Components
   ======================================== */

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

.section {
    padding: var(--spacing-3xl) 0;
    background-color: #1e252b;
}

.staking-section {
    background-color: #1a1f25;
}

/* Centered section header styling */
.staking-section .section-header.centered {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto var(--spacing-2xl);
}

.staking-section .section-header.centered h2 {
    font-size: clamp(2rem, 5vw, 3.75rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff6e30 0%, #ff8550 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.staking-section .section-header.centered p {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    max-width: 800px;
    margin: 0 auto;
}

/* Benefits Section Header */
.benefits-section .section-header.centered h2 {
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff6e30 0%, #ff8550 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-section .section-header.centered p {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    max-width: 800px;
    margin: 0 auto;
}

/* How It Works Section Header */
.how-it-works-section .section-header.centered h2 {
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff6e30 0%, #ff8550 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.how-it-works-section .section-header.centered p {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    max-width: 800px;
    margin: 0 auto;
}

.section-header {
    max-width: 800px;
    margin-bottom: var(--spacing-2xl);
}

.section-header.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    color: white;
}

.section-header p {
    font-size: 1.125rem;
    color: #8B95A1;
}

/* ========================================
   Navigation (Tailwind-based)
   ======================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: box-shadow 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background-color: #1e252b;
}

/* Dropdown positioning */
.dropdown-container {
    position: relative;
}

.dropdown-menu {
    left: 50%;
    transform: translateX(-50%);
    min-width: 400px;
}

.dropdown-menu .flex {
    transition: all 0.2s ease;
}

/* Smooth transitions for dropdowns */
.dropdown-menu.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.dropdown-menu:not(.hidden) {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.2s ease;
}

/* Mobile menu */
.mobile-menu {
    transition: all 0.3s ease;
}

/* Navbar hover effects */
.dropdown-trigger span,
.dropdown-trigger svg {
    transition: color 0.3s ease;
}

.dropdown-trigger:hover span,
.dropdown-trigger:hover svg {
    color: white !important;
}

/* Nav links hover (for Blog and other direct links) */
.nav-link {
    color: var(--color-gray) !important;
    transition: color 0.3s ease;
}

.nav-link span {
    color: var(--color-gray) !important;
    transition: color 0.3s ease;
}

nav a:hover,
nav a:hover span,
.nav-link:hover,
.nav-link:hover span {
    color: white !important;
}

.mobile-menu a:hover {
    color: white !important;
}

.dropdown-menu a:hover {
    color: white !important;
}

/* ========================================
   Hero Section
   ======================================== */

.hero-dark {
    background: linear-gradient(135deg, #0a0e14 0%, #1a1f25 50%, #0a0e14 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Hero Animated Particle Background */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(255, 110, 48, 0.4) 2px, transparent 2px),
        radial-gradient(circle, rgba(255, 110, 48, 0.3) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 110, 48, 0.2) 1px, transparent 1px);
    background-size: 200px 200px, 150px 150px, 100px 100px;
    background-position: 0 0, 50px 50px, 25px 25px;
    animation: particleFloat 60s linear infinite;
    pointer-events: none;
}

/* Hero Glowing Orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: orbFloat 10s ease-in-out infinite;
    pointer-events: none;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 110, 48, 0.6) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 140, 70, 0.5) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    animation-delay: 2s;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 180, 100, 0.4) 0%, transparent 70%);
    top: 50%;
    right: 20%;
    animation-delay: 4s;
}

/* Hero Floating Geometric Shapes */
.hero-shape {
    position: absolute;
    border: 2px solid rgba(255, 110, 48, 0.3);
    animation: shapeRotate 20s linear infinite;
    pointer-events: none;
}

.hero-shape-1 {
    width: 100px;
    height: 100px;
    top: 15%;
    left: 10%;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    top: 70%;
    right: 15%;
    animation-delay: 5s;
}

.hero-shape-3 {
    width: 120px;
    height: 120px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    top: 40%;
    left: 5%;
    animation-delay: 10s;
}

/* Hero Title with Orange Gradient Animation - Same as CTA */
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, #ff6e30 0%, #ff8550 50%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
    color: #ff6e30;
}

/* Hero Subtitle Animation */
.hero-subtitle-animated {
    animation: fadeInUp 1s ease 0.3s both;
}

/* Hero Buttons Animation */
.hero-buttons-animated {
    animation: fadeInUp 1s ease 0.6s both;
}

/* Hero Image Animation */
.hero-image-animated {
    animation: fadeInUp 1s ease 0.9s both, float 6s ease-in-out infinite;
}

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

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


.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
    padding-top: var(--spacing-2xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FF6B35;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--border-radius-md);
    transition: var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.125rem;
}

/* ========================================
   Feature Grid
   ======================================== */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.feature-card {
    background: rgba(255, 110, 48, 0.15);
    border: 1px solid rgba(255, 110, 48, 0.3);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    transition: var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    background: rgba(255, 110, 48, 0.25);
    border-color: rgba(255, 110, 48, 0.5);
}

.feature-icon {
    margin-bottom: var(--spacing-md);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: white;
}

.feature-card p {
    color: #8B95A1;
    line-height: 1.7;
}

/* ========================================
   Two Column Layout
   ======================================== */

.two-column-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: var(--spacing-2xl);
    align-items: center;
}

.content-column h2 {
    margin-bottom: var(--spacing-md);
    font-size: clamp(1.875rem, 4vw, 2.875rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ff6e30 0%, #ff8550 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-list {
    list-style: none;
    margin: var(--spacing-xl) 0;
}

.benefit-list li {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.benefit-list strong {
    display: block;
    color: white;
    margin-bottom: var(--spacing-xs);
    font-size: 1.125rem;
}

.benefit-list p {
    margin: 0;
    font-size: 0.95rem;
}

/* ========================================
   Comparison Card
   ======================================== */

.comparison-card {
    background: rgba(255, 110, 48, 0.15);
    border: 1px solid rgba(255, 110, 48, 0.3);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
}

.comparison-item {
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    margin-bottom: var(--spacing-md);
}

.comparison-item.traditional {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-item.rocket {
    background: rgba(255, 110, 48, 0.2);
    border: 1px solid rgba(255, 110, 48, 0.3);
}

.comparison-item h4 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    color: #8B95A1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.comparison-stat {
    margin-bottom: var(--spacing-md);
}

.comparison-stat.highlight .large-number {
    color: #ff6e30;
}

.large-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}

.small-label {
    display: block;
    font-size: 0.875rem;
    color: #8B95A1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-top: var(--spacing-xs);
}

.comparison-divider {
    text-align: center;
    font-weight: 800;
    font-size: 1.5rem;
    color: #8B95A1;
    margin: var(--spacing-md) 0;
}

/* ========================================
   Benefits Section
   ======================================== */

.benefits-section {
    background: #1a1f25;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.benefit-card {
    background: rgba(255, 110, 48, 0.15);
    border: 1px solid rgba(255, 110, 48, 0.3);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    transition: var(--transition-base);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 110, 48, 0.25);
    border-color: rgba(255, 110, 48, 0.5);
}

.benefit-card h3 {
    font-size: 1.375rem;
    margin-bottom: var(--spacing-sm);
    color: white;
}

.benefit-card p {
    line-height: 1.7;
    color: #8B95A1;
}

/* ========================================
   Process Steps
   ======================================== */

.how-it-works-section {
    background: #1e252b;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.process-step {
    position: relative;
    padding: var(--spacing-xl);
    background: transparent;
    border: none;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-base);
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.02);
    transform: translateY(-2px);
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 110, 48, 0.3);
    line-height: 1;
    margin-bottom: var(--spacing-md);
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: white;
    font-weight: 600;
}

.process-step p {
    font-size: 1rem;
    line-height: 1.7;
    color: #9CA3AF;
}

/* ========================================
   Statistics Section - Unique Pattern with Animations
   ======================================== */

.statistics-section {
    background: #1a1f25;
    color: white;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff6e30, transparent);
    animation: shimmer 3s infinite;
}

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

.statistics-section .section-header h2 {
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff6e30 0%, #ff8550 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.statistics-section .section-header p {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    max-width: 800px;
    margin: 0 auto;
    color: #8B95A1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0;
    margin-top: var(--spacing-2xl);
    position: relative;
}

.stat-card {
    padding: var(--spacing-2xl) var(--spacing-xl);
    text-align: center;
    position: relative;
    border-right: 1px solid rgba(255, 110, 48, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { 
    animation-delay: 0.4s; 
    border-right: none;
}

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

.stat-card:hover {
    transform: scale(1.05);
    z-index: 1;
}

.stat-card:hover .stat-value {
    color: #ff6e30;
    transform: scale(1.1);
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6e30;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    opacity: 1;
    transform: rotateY(360deg);
}

.stat-icon.blue,
.stat-icon.green,
.stat-icon.purple,
.stat-icon.orange {
    background: transparent;
    color: #ff6e30;
}

.stat-card h3 {
    font-size: 0.95rem;
    color: #8B95A1;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-value {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: var(--spacing-sm);
    line-height: 1;
    transition: all 0.3s ease;
}

.stat-description {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
}

/* Responsive - stack on mobile */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 110, 48, 0.2);
    }
    
    .stat-card:nth-child(odd) {
        border-right: 1px solid rgba(255, 110, 48, 0.2);
    }
    
    .stat-card:last-child,
    .stat-card:nth-last-child(2) {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        border-right: none;
    }
    
    .stat-card:nth-child(odd) {
        border-right: none;
    }
}

/* ========================================
   Resources Section - Futuristic Design
   ======================================== */

.resources-section {
    background: #0a0e14;
    position: relative;
    overflow: hidden;
}

/* Animated background grid */
.resources-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 110, 48, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 110, 48, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

/* Glowing orbs in background */
.resources-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 110, 48, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 8s ease-in-out infinite;
}

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

.resources-section .section-header h2 {
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff6e30 0%, #ff8550 50%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 3s ease-in-out infinite;
}

@keyframes shimmerText {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.resources-section .section-header p {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    max-width: 800px;
    margin: 0 auto;
    color: #8B95A1;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
    position: relative;
    z-index: 1;
}

.resource-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 110, 48, 0.2);
    border-radius: 20px;
    padding: var(--spacing-2xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    text-decoration: none;
    min-height: 220px;
    opacity: 0;
    transform: translateY(30px) rotateX(10deg);
    transform-style: preserve-3d;
    perspective: 1000px;
    animation: fadeInUp3D 0.8s ease forwards;
    overflow: hidden;
}

/* Holographic effect */
.resource-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 110, 48, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: all 0.6s;
}

.resource-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 110, 48, 0.5), rgba(255, 110, 48, 0.1), rgba(255, 110, 48, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

@keyframes fadeInUp3D {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

.resource-card:nth-child(1) { animation-delay: 0.1s; }
.resource-card:nth-child(2) { animation-delay: 0.2s; }
.resource-card:nth-child(3) { animation-delay: 0.3s; }
.resource-card:nth-child(4) { animation-delay: 0.4s; }
.resource-card:nth-child(5) { animation-delay: 0.5s; }
.resource-card:nth-child(6) { animation-delay: 0.6s; }

.resource-card:hover {
    transform: translateY(-10px) rotateX(5deg) scale(1.02);
    border-color: rgba(255, 110, 48, 0.6);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 20px 60px rgba(255, 110, 48, 0.3),
        0 0 40px rgba(255, 110, 48, 0.2),
        inset 0 0 20px rgba(255, 110, 48, 0.05);
}

.resource-card:hover::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.resource-card:hover::after {
    opacity: 1;
}

.resource-card:hover .link-arrow {
    transform: translateX(8px) scale(1.2);
    text-shadow: 0 0 20px rgba(255, 110, 48, 0.8);
}

.resource-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: white;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.resource-card p {
    flex: 1;
    margin-bottom: var(--spacing-lg);
    color: #B0B8C4;
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.link-arrow {
    font-size: 2rem;
    color: #ff6e30;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(255, 110, 48, 0.3));
}

/* ========================================
   CTA Section - Ultra Futuristic
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, #0a0e14 0%, #1a1f25 50%, #0a0e14 100%);
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* Animated Particle Background */
.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(255, 110, 48, 0.4) 2px, transparent 2px),
        radial-gradient(circle, rgba(255, 110, 48, 0.3) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 110, 48, 0.2) 1px, transparent 1px);
    background-size: 200px 200px, 150px 150px, 100px 100px;
    background-position: 0 0, 50px 50px, 25px 25px;
    animation: particleFloat 60s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-200px) translateX(100px); }
}

/* Glowing Orbs */
.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: orbFloat 10s ease-in-out infinite;
}

.cta-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 110, 48, 0.6) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.cta-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 140, 70, 0.5) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    animation-delay: 2s;
}

.cta-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 180, 100, 0.4) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-30px, 30px) scale(0.9); }
    75% { transform: translate(30px, 30px) scale(1.05); }
}

/* Floating Geometric Shapes */
.cta-shape {
    position: absolute;
    border: 2px solid rgba(255, 110, 48, 0.3);
    animation: shapeRotate 20s linear infinite;
}

.cta-shape-1 {
    width: 100px;
    height: 100px;
    top: 15%;
    left: 10%;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.cta-shape-2 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    top: 70%;
    left: 80%;
    animation-delay: 5s;
}

.cta-shape-3 {
    width: 120px;
    height: 120px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    top: 40%;
    right: 15%;
    animation-delay: 10s;
}

@keyframes shapeRotate {
    0% { transform: rotate(0deg) translateY(0); opacity: 0.3; }
    50% { transform: rotate(180deg) translateY(-20px); opacity: 0.6; }
    100% { transform: rotate(360deg) translateY(0); opacity: 0.3; }
}

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

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, #ffffff 0%, #ff6e30 50%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
    text-shadow: 0 0 80px rgba(255, 110, 48, 0.5);
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    color: rgba(255, 255, 255, 0.8);
    animation: fadeInUp 1s ease 0.3s both;
}

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

.cta-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

/* Futuristic Buttons */
.cta-btn {
    position: relative;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.cta-btn span {
    position: relative;
    z-index: 2;
}

.cta-btn-glow {
    position: absolute;
    inset: -2px;
    border-radius: 50px;
    background: linear-gradient(45deg, #ff6e30, #ffb347, #ff6e30);
    background-size: 300% 300%;
    opacity: 0;
    transition: opacity 0.4s;
    animation: gradientShift 3s ease infinite;
    filter: blur(8px);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cta-btn-primary {
    background: linear-gradient(135deg, #ff6e30 0%, #ff8550 100%);
    color: white;
    box-shadow: 
        0 10px 40px rgba(255, 110, 48, 0.4),
        0 0 20px rgba(255, 110, 48, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.cta-btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 60px rgba(255, 110, 48, 0.6),
        0 0 40px rgba(255, 110, 48, 0.5),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
}

.cta-btn-primary:hover .cta-btn-glow {
    opacity: 0.8;
}

.cta-btn-secondary {
    background: transparent;
    border-color: #ff6e30;
    color: white;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(255, 110, 48, 0.2);
}

.cta-btn-secondary:hover {
    background: rgba(255, 110, 48, 0.1);
    border-color: #ffb347;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 60px rgba(255, 110, 48, 0.4),
        0 0 40px rgba(255, 110, 48, 0.3);
}

.cta-btn-secondary:hover .cta-btn-glow {
    opacity: 0.5;
}

/* Button Press Effect */
.cta-btn:active {
    transform: translateY(-2px) scale(0.98);
}

/* Ripple Effect on Click */
.cta-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s, opacity 0.6s;
    opacity: 0;
}

.cta-btn:active::after {
    width: 300px;
    height: 300px;
    opacity: 0;
}

/* ========================================
   Footer - EPIC FUTURISTIC DESIGN
   ======================================== */

.footer {
    background: #0a0e14;
    color: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

/* Animated Top Border */
.footer-border-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6e30, #ffb347, #ff6e30, transparent);
    background-size: 200% 100%;
    animation: borderFlow 4s linear infinite;
}

@keyframes borderFlow {
    0% { background-position: 0% 0; }
    100% { background-position: 200% 0; }
}

/* Footer Particle Background */
.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 110, 48, 0.2) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: particleFloat 40s linear infinite;
    opacity: 0.3;
}

/* Glowing Orbs in Footer */
.footer-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    animation: orbFloat 12s ease-in-out infinite;
}

.footer-glow-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 110, 48, 0.4) 0%, transparent 70%);
    top: -200px;
    left: 10%;
    animation-delay: 0s;
}

.footer-glow-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 140, 70, 0.4) 0%, transparent 70%);
    bottom: -150px;
    right: 10%;
    animation-delay: 3s;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
    position: relative;
    z-index: 1;
}

.footer-column {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }
.footer-column:nth-child(5) { animation-delay: 0.5s; }

.footer-heading {
    color: white;
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    background: linear-gradient(135deg, #ff6e30 0%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #ff6e30, transparent);
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

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

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #ff6e30, #ffb347);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 100%;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 110, 48, 0.1);
    border: 1px solid rgba(255, 110, 48, 0.3);
    color: #ff6e30;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 110, 48, 0.4), rgba(255, 180, 100, 0.4));
    opacity: 0;
    transition: opacity 0.4s;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 
        0 10px 30px rgba(255, 110, 48, 0.4),
        0 0 20px rgba(255, 110, 48, 0.3);
    border-color: #ff6e30;
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon svg {
    position: relative;
    z-index: 1;
}

.social-icon:hover svg {
    color: white;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 110, 48, 0.2);
    flex-wrap: wrap;
    gap: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ff6e30;
    transition: width 0.3s ease;
}

.footer-legal a:hover {
    color: #ff6e30;
}

.footer-legal a:hover::after {
    width: 100%;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
    .two-column-layout {
        grid-template-columns: 1fr;
    }
    
    .feature-grid,
    .benefits-grid,
    .stats-grid,
    .resources-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
        --spacing-3xl: 4rem;
    }
    
    .hero {
        min-height: auto;
        padding: var(--spacing-2xl) 0;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .feature-grid,
    .benefits-grid,
    .process-grid,
    .stats-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .two-column-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .footer-column-brand {
        grid-column: 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-lg);
    }
    
    .footer-legal {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .btn {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Accessibility
   ======================================== */

/* Focus Styles */
a:focus,
button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

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

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #0052CC;
        --text-secondary: #333333;
        --border-color: #999999;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .cta-section {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
    }
}

