/* ========================================
   UGC Studio Landing Page - Premium CSS
   ======================================== */

/* CSS Variables */
:root {
    /* Primary Colors - Neon Purple/Pink Theme */
    --primary-50: #fdf4ff;
    --primary-100: #fae8ff;
    --primary-200: #f5d0fe;
    --primary-300: #f0abfc;
    --primary-400: #e879f9;
    --primary-500: #d946ef;
    --primary-600: #c026d3;
    --primary-700: #a21caf;
    --primary-800: #86198f;
    --primary-900: #701a75;

    /* Accent Colors - Cyan/Blue */
    --accent-400: #22d3ee;
    --accent-500: #06b6d4;
    --accent-600: #0891b2;

    /* Background Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a25;
    --bg-card: rgba(26, 26, 37, 0.8);
    --bg-card-hover: rgba(36, 36, 50, 0.9);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-tertiary: #71717a;

    /* Border Colors */
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-hover: rgba(255, 255, 255, 0.15);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #d946ef 0%, #06b6d4 100%);
    --gradient-secondary: linear-gradient(135deg, #f0abfc 0%, #22d3ee 100%);
    --gradient-hero: linear-gradient(180deg, rgba(10, 10, 15, 0) 0%, rgba(10, 10, 15, 1) 100%);
    --gradient-card: linear-gradient(145deg, rgba(217, 70, 239, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);

    /* Glows */
    --glow-primary: 0 0 60px rgba(217, 70, 239, 0.3);
    --glow-secondary: 0 0 40px rgba(6, 182, 212, 0.2);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -2px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -4px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 8px 10px -6px rgba(0, 0, 0, 0.2);

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 24px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Font Family */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Outfit', 'Inter', sans-serif;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ========================================
   Animated Background
   ======================================== */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s infinite ease-in-out;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(217, 70, 239, 0.3) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.25) 0%, transparent 70%);
    top: 50%;
    right: -150px;
    animation-delay: -7s;
}

.glow-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(217, 70, 239, 0.2) 0%, transparent 70%);
    bottom: 10%;
    left: 20%;
    animation-delay: -14s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(50px, -30px) scale(1.1);
    }

    50% {
        transform: translate(-30px, 50px) scale(0.95);
    }

    75% {
        transform: translate(-50px, -20px) scale(1.05);
    }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-normal);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-nav-links a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.mobile-nav-links a:hover {
    color: var(--text-primary);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--glow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 80px rgba(217, 70, 239, 0.4);
}

.btn-primary::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: var(--transition-slow);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-color-hover);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-500);
}

.btn-outline:hover {
    background: var(--primary-500);
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--bg-primary);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* ========================================
   Section Styles
   ======================================== */
section {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(217, 70, 239, 0.1);
    border: 1px solid rgba(217, 70, 239, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-400);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(217, 70, 239, 0.1);
    border: 1px solid rgba(217, 70, 239, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--primary-300);
    margin-bottom: 24px;
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl), var(--glow-primary);
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-color);
}

.hero-card-dots {
    display: flex;
    gap: 6px;
}

.hero-card-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.hero-card-dots span:nth-child(1) {
    background: #ff5f57;
}

.hero-card-dots span:nth-child(2) {
    background: #ffbd2e;
}

.hero-card-dots span:nth-child(3) {
    background: #28c840;
}

.hero-card-title {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.hero-card-content {
    padding: 24px;
}

.demo-prompt {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 20px;
}

.demo-label {
    font-size: 0.75rem;
    color: var(--primary-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.demo-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
}

.demo-result {
    position: relative;
}

.demo-loading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.loading-ring {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(217, 70, 239, 0.2);
    border-top-color: var(--primary-500);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.demo-loading span {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.demo-video-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.demo-video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    to {
        left: 100%;
    }
}

.play-btn-demo {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--glow-primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.play-btn-demo svg {
    margin-left: 4px;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    animation: float-badge 3s ease-in-out infinite;
    box-shadow: var(--shadow-lg);
}

.floating-icon {
    font-size: 1.2rem;
}

.badge-1 {
    top: 10%;
    left: -80px;
    animation-delay: 0s;
}

.badge-2 {
    top: 40%;
    right: -60px;
    animation-delay: -1s;
}

.badge-3 {
    bottom: 15%;
    left: -40px;
    animation-delay: -2s;
}

@keyframes float-badge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ========================================
   Features Section
   ======================================== */
.features {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-xl), var(--glow-primary);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-gradient-1 {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.2) 0%, rgba(217, 70, 239, 0.05) 100%);
    color: var(--primary-400);
}

.icon-gradient-2 {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(6, 182, 212, 0.05) 100%);
    color: var(--accent-400);
}

.icon-gradient-3 {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(249, 115, 22, 0.05) 100%);
    color: #fb923c;
}

.icon-gradient-4 {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.05) 100%);
    color: #4ade80;
}

.icon-gradient-5 {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(99, 102, 241, 0.05) 100%);
    color: #818cf8;
}

.icon-gradient-6 {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.2) 0%, rgba(244, 63, 94, 0.05) 100%);
    color: #fb7185;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.feature-list .check {
    color: var(--primary-400);
    font-weight: 700;
}

/* ========================================
   How It Works Section
   ======================================== */
.how-it-works {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.steps-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.steps-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-500) 0%, var(--accent-500) 100%);
    transform: translateX(-50%);
}

.step {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
    position: relative;
}

.step:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: var(--glow-primary);
    z-index: 1;
}

.step-content {
    flex: 1;
    max-width: 300px;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--primary-400);
}

.step:nth-child(even) .step-icon {
    margin-left: auto;
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   Credit Promo Section
   ======================================== */
.credit-promo {
    padding: 60px 0;
    background: var(--bg-primary);
}

.promo-card {
    background: var(--gradient-card);
    border: 2px solid rgba(217, 70, 239, 0.3);
    border-radius: var(--radius-xl);
    padding: 48px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: auto auto auto;
    align-items: center;
    gap: 40px;
}

.promo-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
}

.promo-badge-text {
    background: var(--gradient-primary);
    padding: 8px 24px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.promo-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.promo-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
}

.promo-price {
    text-align: center;
}

.price-comparison {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.old-price {
    font-size: 1.5rem;
    color: var(--text-tertiary);
    text-decoration: line-through;
}

.arrow {
    color: var(--primary-400);
    font-size: 1.5rem;
}

.new-price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-label {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.promo-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    font-size: 1.5rem;
    animation: sparkle 2s infinite;
}

.sparkle-1 {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 60%;
    left: 15%;
    animation-delay: 0.5s;
}

.sparkle-3 {
    top: 25%;
    right: 10%;
    animation-delay: 1s;
}

.sparkle-4 {
    bottom: 20%;
    right: 5%;
    animation-delay: 1.5s;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.popular {
    border-color: var(--primary-500);
    box-shadow: var(--glow-primary);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    padding: 8px 20px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-header {
    padding: 40px 32px 32px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.pricing-tier {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-400);
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.pricing-price .currency {
    font-size: 1.25rem;
    color: var(--text-tertiary);
}

.pricing-price .amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.pricing-credit {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.pricing-body {
    padding: 32px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.pricing-features li.disabled {
    color: var(--text-tertiary);
}

.feature-check {
    color: var(--primary-400);
    font-weight: 700;
    font-size: 1.1rem;
}

.feature-x {
    color: var(--text-tertiary);
    font-size: 1.1rem;
}

.pricing-note {
    text-align: center;
    margin-top: 48px;
    padding: 24px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-color-hover);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-rating span {
    font-size: 1.1rem;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.author-role {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--border-color-hover);
}

.faq-item.active {
    border-color: var(--primary-500);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-question svg {
    flex-shrink: 0;
    color: var(--text-tertiary);
    transition: var(--transition-normal);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--primary-400);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.cta-card {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 80px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.cta-circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.cta-circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: 10%;
}

.cta-circle-3 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: -50px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: 80px 0 24px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--primary-500);
    border-color: var(--primary-500);
    color: white;
}

.footer-links h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-tertiary);
    font-size: 0.875rem;
}

/* ========================================
   Animations
   ======================================== */
.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-fade-in-up {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.animate-fade-in-left {
    opacity: 0;
    animation: fadeInLeft 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* AOS-like data attribute animations */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="zoom-in"] {
    transform: scale(0.95);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .floating-badge {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card.popular {
        transform: none;
        order: -1;
    }

    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .promo-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
        padding: 60px 32px 48px;
    }

    .promo-cta {
        width: 100%;
    }

    .promo-cta .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps-line {
        display: none;
    }

    .step {
        flex-direction: column !important;
        text-align: center !important;
        padding: 30px 0;
    }

    .step:nth-child(even) .step-icon {
        margin: 0 auto 16px;
    }

    .step-icon {
        margin: 0 auto 16px !important;
    }

    .step-content {
        max-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
        text-align: center;
    }

    .footer-description {
        margin: 0 auto 24px;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .pricing-header {
        padding: 32px 24px 24px;
    }

    .pricing-price .amount {
        font-size: 2.5rem;
    }

    .cta-card {
        padding: 48px 24px;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .promo-card {
        padding: 48px 20px 32px;
    }

    .promo-title {
        font-size: 1.5rem;
    }

    .new-price {
        font-size: 2rem;
    }
}

/* Typing effect for demo */
.typing-effect {
    overflow: hidden;
    white-space: nowrap;
    animation: typing 3s steps(60) infinite alternate;
}

@keyframes typing {
    0% {
        width: 0;
    }

    50%,
    100% {
        width: 100%;
    }
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-700);
}

/* Selection */
::selection {
    background: var(--primary-500);
    color: white;
}

/* ========================================
   Products Overview Section
   ======================================== */
.products-overview {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.product-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--glow-primary);
    border-color: var(--border-color-hover);
}

.product-card.popular {
    border-color: var(--primary-500);
    box-shadow: var(--glow-primary);
}

.product-card-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.product-card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.product-card-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-card-price {
    margin-bottom: 20px;
    padding: 16px;
    background: rgba(217, 70, 239, 0.1);
    border-radius: var(--radius-md);
}

.product-card-price .old-price {
    font-size: 1.25rem;
    color: var(--text-tertiary);
    text-decoration: line-through;
    display: block;
    margin-bottom: 4px;
}

.product-card-price .new-price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-card-price .price-period {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.product-card-features {
    text-align: left;
    margin-bottom: 24px;
}

.product-card-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-color);
}

.product-card-features li:last-child {
    border-bottom: none;
}

.product-card-features li strong {
    color: var(--primary-400);
}

/* ========================================
   UGC Studio Section
   ======================================== */
.ugc-studio-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.ugc-pricing-section {
    margin-top: 60px;
}

.subsection-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   Monthly Apps Section
   ======================================== */
.monthly-apps-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.monthly-promo {
    margin-bottom: 60px;
}

/* Bot Section Title */
.bot-section-title {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
}

.bot-section-title:first-of-type {
    margin-top: 0;
}

.bot-section-title h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin: 16px 0 8px;
}

.bot-section-title p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.vip-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a1a25;
    letter-spacing: 1px;
}

.tools-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

/* Bot Cards Grid */
.bot-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.bot-cards-small {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* Bot Card */
.bot-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.bot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-normal);
}

.bot-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(217, 70, 239, 0.15);
}

.bot-card:hover::before {
    opacity: 1;
}

/* VIP Bot Card */
.bot-card.vip {
    border-color: rgba(255, 215, 0, 0.3);
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 140, 0, 0.02) 100%);
}

.bot-card.vip::before {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    opacity: 1;
}

.bot-card.vip:hover {
    box-shadow: var(--shadow-lg), 0 0 40px rgba(255, 215, 0, 0.2);
}

.bot-card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.bot-cards-small .bot-card-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.bot-card-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.bot-cards-small .bot-card-title {
    font-size: 0.95rem;
}

.bot-card-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
}

.bot-cards-small .bot-card-desc {
    font-size: 0.8rem;
}

.bot-cards-small .bot-card {
    padding: 20px 16px;
}

/* Monthly CTA */
.monthly-cta {
    text-align: center;
    margin-top: 60px;
}

.cta-box {
    background: var(--gradient-card);
    border: 2px solid rgba(217, 70, 239, 0.3);
    border-radius: var(--radius-xl);
    padding: 48px;
    display: inline-block;
    max-width: 600px;
}

.cta-box h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-box p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* ========================================
   Responsive for Bot Cards
   ======================================== */
@media (max-width: 1200px) {
    .bot-cards-small {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .bot-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bot-cards-small {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .bot-cards-grid {
        grid-template-columns: 1fr;
    }

    .bot-cards-small {
        grid-template-columns: 1fr;
    }

    .bot-card {
        padding: 20px;
    }

    .cta-box {
        padding: 32px 24px;
    }
}

/* ========================================
   Floating WhatsApp Button
   ======================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition-normal);
}

.floating-whatsapp:hover {
    transform: scale(1.05);
}

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #25D366;
    border-radius: var(--radius-full);
    animation: whatsapp-pulse 2s infinite;
    z-index: -1;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.3);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.whatsapp-content {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 14px 20px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-normal);
}

.floating-whatsapp:hover .whatsapp-content {
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-content svg {
    flex-shrink: 0;
}

.whatsapp-text {
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-content {
        padding: 12px 16px;
    }

    .whatsapp-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-text {
        display: none;
    }

    .whatsapp-content {
        padding: 14px;
        border-radius: 50%;
    }
}

/* ========================================
   Mobile Performance Optimizations
   ======================================== */

/* Improve touch scrolling */
html {
    -webkit-overflow-scrolling: touch;
}

body {
    touch-action: pan-y;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Mobile-specific optimizations */
@media (max-width: 768px) {

    /* Disable background glow animations on mobile */
    .glow {
        animation: none;
        opacity: 0.3;
    }

    .glow-1,
    .glow-2,
    .glow-3 {
        animation: none;
    }

    /* Disable floating badge animations */
    .floating-badge {
        animation: none;
        display: none;
    }

    /* Reduce blur for better performance */
    .navbar.scrolled {
        backdrop-filter: blur(10px);
    }

    /* Disable shimmer animation */
    .demo-video-placeholder::before {
        animation: none;
        display: none;
    }

    /* Simplify pulse animation */
    .play-btn-demo {
        animation: none;
    }

    /* Disable loading ring animation */
    .loading-ring {
        animation: none;
        border-top-color: var(--primary-500);
    }

    /* Disable sparkle animations */
    .sparkle {
        animation: none;
    }

    /* Simplify hover effects */
    .feature-card:hover {
        transform: none;
    }

    .pricing-card:hover {
        transform: none;
    }

    .btn-primary:hover {
        transform: none;
    }

    .btn-outline:hover {
        transform: none;
    }

    /* Hide particles container completely on mobile */
    .particles {
        display: none;
    }

    /* Disable AOS animations delay on mobile for faster perception */
    [data-aos] {
        transition-delay: 0s !important;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {

    /* Remove all hover transforms on touch devices */
    .feature-card:hover,
    .pricing-card:hover,
    .testimonial-card:hover,
    .btn:hover {
        transform: none !important;
    }

    /* Simplify transitions */
    * {
        transition-duration: 0.1s !important;
    }
}