/* ============================================
   Pixaland - Main CSS
   Professional Design System
   ============================================ */

/* CSS Variables */
:root {
    --primary: #0066FF;
    --primary-dark: #0052CC;
    --primary-light: #4D8CFF;
    --primary-bg: rgba(0, 102, 255, 0.1);
    --secondary: #FF6B4A;
    --secondary-dark: #E54E2E;
    --accent: #7C3AED;
    --dark: #0A0A0A;
    --dark-light: #1A1A1A;
    --gray-dark: #2A2A2A;
    --gray: #6C757D;
    --gray-light: #9CA3AF;
    --light: #F8F9FA;
    --white: #FFFFFF;
    --success: #00C851;
    --warning: #FFB444;
    --danger: #FF4444;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 20px rgba(0, 102, 255, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--light);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--dark);
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    border: 2px solid var(--gray-light);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 14px 32px;
    font-size: 16px;
}

/* Header */
.main-header {
    position: sticky;
    top: 0;
    background: var(--white);
    border-bottom: 1px solid rgba(42, 42, 42, 0.1);
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
    font-weight: 500;
    font-size: 14px;
    color: var(--dark);
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary);
}

.dropdown-toggle svg {
    transition: transform var(--transition-fast);
}

.nav-item:hover .dropdown-toggle svg {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
    z-index: 100;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content {
    padding: 12px 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    transition: background var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--light);
}

.dropdown-item i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg);
    border-radius: var(--radius-sm);
    color: var(--primary);
    font-size: 16px;
}

.dropdown-item strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}

.dropdown-item span {
    font-size: 12px;
    color: var(--gray);
}

/* Mega Menu */
.mega-menu {
    min-width: 800px;
    left: -200px;
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 24px;
}

.mega-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

.mega-column ul {
    list-style: none;
}

.mega-column ul li {
    margin-bottom: 8px;
}

.mega-column ul li a {
    font-size: 13px;
    color: var(--gray);
    transition: color var(--transition-fast);
}

.mega-column ul li a:hover {
    color: var(--primary);
}

.badge {
    font-size: 10px;
    padding: 2px 6px;
    background: var(--primary-bg);
    color: var(--primary);
    border-radius: var(--radius-full);
    margin-left: 8px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-signin {
    padding: 8px 16px;
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
    transition: color var(--transition-fast);
}

.btn-signin:hover {
    color: var(--primary);
}

.btn-start-creating {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.btn-start-creating:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 28px;
    height: 28px;
    background: transparent;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--dark);
    transition: all var(--transition-fast);
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light) 100%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.6s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: var(--primary-bg);
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.badge-icon {
    font-size: 14px;
}

.hero-badge span {
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
}

/* Hero Section - Centered Design */
.hero-centered {
    padding: 60px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
}

.hero-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Animated Badge */
.animated-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 100px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.badge-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.2), transparent);
    border-radius: 100px;
    transform: translate(-50%, -50%) scale(1);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

/* Hero Title */
.hero-centered .hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark) 50%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-centered .hero-description {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 32px;
}

/* Hero Buttons */
.hero-centered .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 48px;
}

.btn-large {
    padding: 14px 32px;
    font-size: 16px;
}

/* Hero Stats */
.hero-centered .hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    margin-bottom: 48px;
    padding: 24px 32px;
    background: var(--white);
    border-radius: 80px;
    box-shadow: var(--shadow-md);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    font-size: 28px;
}

.stat-item div {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

.stat-label {
    font-size: 13px;
    color: var(--gray);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--gray-light), transparent);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(0, 102, 255, 0.05);
    border-radius: 100px;
    font-size: 13px;
    color: var(--gray);
    transition: all 0.3s ease;
}

.trust-badge svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.trust-badge:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.trust-badge:hover svg {
    color: var(--white);
}

/* Floating Elements */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(124, 58, 237, 0.05));
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    left: 10%;
    animation-delay: -10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: 15%;
    animation-delay: -15s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 60px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.floating-card-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.floating-card-2 {
    top: 40%;
    right: 3%;
    animation-delay: -2s;
}

.floating-card-3 {
    bottom: 20%;
    left: 8%;
    animation-delay: -4s;
}

.floating-card-4 {
    bottom: 35%;
    right: 8%;
    animation-delay: -6s;
}

.card-icon {
    font-size: 24px;
}

.card-text {
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
}

.card-badge {
    font-size: 10px;
    padding: 2px 8px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 20px;
    margin-left: 8px;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-centered .hero-title {
        font-size: 48px;
    }
    
    .hero-centered .hero-description {
        font-size: 16px;
    }
    
    .hero-centered .hero-stats {
        gap: 24px;
        padding: 16px 24px;
        border-radius: 60px;
    }
    
    .stat-icon {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-centered {
        padding: 40px 0 60px;
    }
    
    .hero-centered .hero-title {
        font-size: 36px;
    }
    
    .hero-centered .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .hero-centered .hero-stats {
        flex-direction: column;
        border-radius: 32px;
        gap: 16px;
    }
    
    .stat-item {
        width: 100%;
        justify-content: center;
    }
    
    .stat-divider {
        display: none;
    }
    
    .trust-badges {
        gap: 16px;
    }
    
    .trust-badge {
        font-size: 11px;
        padding: 4px 12px;
    }
}

@media (max-width: 576px) {
    .hero-centered .hero-title {
        font-size: 28px;
    }
    
    .hero-centered .hero-description {
        font-size: 14px;
    }
    
    .animated-badge {
        padding: 6px 16px;
        font-size: 12px;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.section-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-bg);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.5;
}

.section-footer {
    text-align: center;
    margin-top: 48px;
}

/* Assets Grid */
.assets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.asset-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.asset-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.asset-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.asset-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.asset-card p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.5;
}

.asset-stats {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.asset-stats span {
    font-size: 12px;
    color: var(--gray-light);
}

.asset-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    transition: color var(--transition-fast);
}

.asset-link:hover {
    color: var(--primary-dark);
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tool-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.tool-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-bg) 0%, rgba(0, 102, 255, 0.05) 100%);
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.tool-icon {
    font-size: 40px;
}

.tool-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.tool-card p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 16px;
}

.tool-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.tool-features span {
    font-size: 11px;
    padding: 4px 8px;
    background: var(--light);
    border-radius: var(--radius-full);
    color: var(--gray);
}

.tool-btn {
    width: 100%;
    padding: 10px;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.tool-btn:hover {
    background: var(--primary-dark);
}

/* Product Categories */
.product-categories {
    margin-bottom: 60px;
}

.category-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.category-item {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.category-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.category-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.category-item p {
    font-size: 12px;
    color: var(--gray);
}

/* Product Preview */
.product-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark) 100%);
    border-radius: var(--radius-xl);
    padding: 48px;
    color: var(--white);
}

.preview-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.preview-info p {
    color: var(--gray-light);
    margin-bottom: 24px;
}

.mockup-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
    border: 2px dashed rgba(255, 255, 255, 0.2);
}

.mockup-rotation {
    font-size: 14px;
    color: var(--gray-light);
}

/* AI Studio Section */
.ai-studio-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    color: var(--white);
}

.ai-studio-section .section-description {
    color: var(--gray-light);
}

.ai-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.ai-cat-btn {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.ai-cat-btn:hover,
.ai-cat-btn.active {
    background: var(--primary);
    transform: translateY(-2px);
}

.ai-tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ai-tool-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.ai-tool-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.ai-tool-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.ai-tool-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.ai-tool-card p {
    font-size: 13px;
    color: var(--gray-light);
    margin-bottom: 12px;
}

.ai-tag {
    display: inline-block;
    font-size: 10px;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--gray-light);
}

/* Pricing Section */
.pricing-section {
    background: var(--light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    position: relative;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.pricing-price {
    margin: 24px 0;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    vertical-align: top;
}

.amount {
    font-size: 48px;
    font-weight: 800;
}

.period {
    font-size: 14px;
    color: var(--gray);
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    margin: 24px 0;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.cta-section .btn-primary:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.cta-section .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.cta-section .btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

/* Footer */
.main-footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-description {
    font-size: 14px;
    color: var(--gray-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    font-size: 13px;
    color: var(--gray-light);
    transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 12px;
    color: var(--gray-light);
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--primary);
}

.footer-copyright p {
    font-size: 12px;
    color: var(--gray-light);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* --- SHARED BRANDING (Header & Footer) --- */
.gradient-brand-text {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: -0.8px;
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block; /* Essential for the gradient to render */
    -webkit-font-smoothing: antialiased;
}

/* --- HEADER LOGO --- */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.site-logo-img {
    height: 38px;
    width: auto;
    display: block;
}

.logo-text {
    font-size: 26px;
}

/* --- FOOTER LOGO & TAGLINE --- */
.footer-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    margin-bottom: 6px; /* PULLS TAGLINE CLOSER: Changed from 10px to 6px */
}

.footer-logo-img {
    height: 32px;
    width: auto;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.footer-logo-link:hover .footer-logo-img {
    filter: grayscale(0%);
}

.footer-logo-text {
    font-size: 22px;
}

.footer-tagline {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    max-width: 300px;
    margin-top: 0;
    margin-bottom: 35px; /* PUSHES SOCIALS AWAY: Changed from 25px to 35px */
}
/* Responsive Styles - See responsive.css */