/* ================================
   CSS VARIABLES & BRAND COLORS
   ================================ */
:root {
    /* Brand Colors */
    --primary: #ff914d;
    --primary-dark: #ff711a;
    --primary-light: #fff6ed;
    --brand-primary: #ff914d;
    --brand-dark: #1a1a1a;
    --success: #12b981;
    --error: #ef4444;
    --text-primary: #1a1a1a;
    --text-secondary: #343a40;
    --text-light: #6b7280;
    --white: #ffffff;
    --background: #fafafa;
    --border: #e5e7eb;

    /* Light mode theme colors */
    --bg-primary: #fafafa;
    --bg-secondary: #ffffff;
    --card-bg: #ffffff;
    --header-bg: rgba(255, 255, 255, 0.95);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ff914d 0%, #ff711a 100%);
    --gradient-hero: linear-gradient(135deg, #ff914d 0%, #ff711a 50%, #ff5500 100%);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
}

/* ================================
   DARK MODE
   ================================ */
[data-theme="dark"] {
    --primary: #ff914d;
    --primary-dark: #ff711a;
    --primary-light: rgba(255, 145, 77, 0.15);
    --text-primary: #e5e7eb;
    --text-secondary: #d1d5db;
    --text-light: #9ca3af;
    --white: #1a1f28;
    --background: #0f1419;
    --border: rgba(255, 255, 255, 0.1);

    /* Dark mode theme colors */
    --bg-primary: #0f1419;
    --bg-secondary: #1a1f28;
    --card-bg: #1a1f28;
    --header-bg: rgba(15, 20, 25, 0.98);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 300ms ease, color 300ms ease;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

/* ================================
   UTILITY CLASSES
   ================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-white {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================================
   BUTTONS
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9375rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 145, 77, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 145, 77, 0.4);
}

.btn-secondary {
    background: var(--card-bg);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: rgba(255, 145, 77, 0.15);
    transform: translateY(-2px);
}

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

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

/* ================================
   THEME TOGGLE BUTTON
   ================================ */
.theme-toggle {
    background: var(--card-bg);
    border: 1px solid var(--border);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    transform: scale(1.1);
    border-color: var(--primary);
}

.theme-icon {
    position: absolute;
    font-size: 18px;
    transition: all 0.3s ease;
}

.theme-icon-light {
    color: #f59e0b;
}

.theme-icon-dark {
    color: #60a5fa;
}

[data-theme="light"] .theme-icon-light {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

[data-theme="light"] .theme-icon-dark {
    opacity: 0;
    transform: rotate(180deg) scale(0);
}

[data-theme="dark"] .theme-icon-light {
    opacity: 0;
    transform: rotate(-180deg) scale(0);
}

[data-theme="dark"] .theme-icon-dark {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* ================================
   SCROLL PROGRESS BAR
   ================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #ff914d 0%, #4dbbfe 50%, #fee94d 100%);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* ================================
   HEADER NAVIGATION
   ================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.nav-brand {
    flex-shrink: 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff914d, #4dbbfe);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.logo-icon:hover {
    transform: scale(1.05) rotate(-5deg);
}

.logo-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff914d, #4dbbfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.logo-tagline {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-weight: 500;
    position: relative;
    padding: 8px 4px;
    transition: var(--transition-base);
}

.nav-link i {
    font-size: 16px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 4px;
    right: 4px;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

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

.nav-link:hover::after {
    transform: scaleX(1);
}

/* Tools Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-icon {
    font-size: 12px;
    transition: transform var(--transition-base);
}

.nav-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: -24px;
    min-width: 320px;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    z-index: 1001;
    border: 1px solid var(--border);
    padding: 8px;
}

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

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    color: var(--text-primary);
}

.dropdown-item i {
    font-size: 20px;
    color: var(--primary);
    width: 24px;
    text-align: center;
}

.dropdown-item-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-item-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.dropdown-item-desc {
    font-size: 12px;
    color: var(--text-light);
}

.dropdown-item:hover {
    background: var(--primary-light);
}

[data-theme="dark"] .dropdown-item:hover {
    background: rgba(255, 145, 77, 0.1);
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-base);
}

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

.btn-primary {
    background: #ff914d;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 2px 8px rgba(255, 145, 77, 0.3);
}

.btn-primary:hover {
    background: #ff711a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 145, 77, 0.4);
}

.btn-full-width {
    width: 100%;
    justify-content: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
    padding: 8px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--card-bg);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    color: var(--text-primary);
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    transition: var(--transition-base);
}

.mobile-menu-link i {
    font-size: 18px;
    color: var(--primary);
    width: 24px;
}

.mobile-menu-link:hover {
    background: var(--primary-light);
}

[data-theme="dark"] .mobile-menu-link:hover {
    background: rgba(255, 145, 77, 0.1);
}

.mobile-menu-dropdown {
    border-bottom: 1px solid var(--border);
}

.mobile-menu-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    color: var(--text-primary);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-base);
}

.mobile-menu-dropdown-toggle i:first-child {
    font-size: 18px;
    color: var(--primary);
    width: 24px;
}

.mobile-dropdown-icon {
    font-size: 14px;
    transition: transform var(--transition-base);
    margin-left: auto;
}

.mobile-menu-dropdown.active .mobile-dropdown-icon {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--bg-secondary);
}

.mobile-menu-dropdown.active .mobile-submenu {
    max-height: 600px;
}

.mobile-submenu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px 12px 56px;
    color: var(--text-secondary);
    font-size: 14px;
    transition: var(--transition-base);
}

.mobile-submenu-link i {
    font-size: 16px;
    color: var(--primary);
}

.mobile-submenu-link:hover {
    background: var(--primary-light);
    color: var(--primary);
}

[data-theme="dark"] .mobile-submenu-link:hover {
    background: rgba(255, 145, 77, 0.1);
}

.mobile-menu-auth {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Responsive Navigation */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .nav-actions .btn-outline,
    .nav-actions .btn-primary {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 var(--spacing-2xl);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: float 20s infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    top: 30%;
    right: 20%;
    animation-delay: 6s;
}

.shape-5 {
    width: 180px;
    height: 180px;
    bottom: 10%;
    right: 30%;
    animation-delay: 8s;
}

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

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 246, 237, 0.9) 0%,
        rgba(255, 255, 255, 0.95) 50%,
        rgba(255, 246, 237, 0.9) 100%
    );
}

[data-theme="dark"] .gradient-overlay {
    background: linear-gradient(135deg,
        rgba(15, 20, 25, 0.9) 0%,
        rgba(26, 31, 40, 0.95) 50%,
        rgba(15, 20, 25, 0.9) 100%
    );
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.5rem 1rem;
    background: rgba(255, 145, 77, 0.15);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    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-light);
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.main-image {
    width: 100%;
    border-radius: var(--radius-xl);
}

/* Hero Mockup Styles */
.hero-mockup {
    position: relative;
}

.mockup-container {
    position: relative;
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    padding: var(--spacing-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border);
}

.mockup-screen {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.mockup-toolbar {
    background: var(--bg-secondary);
    padding: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    border-bottom: 1px solid var(--border);
}

.mockup-buttons {
    display: flex;
    gap: 0.5rem;
}

.mockup-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.mockup-buttons span:nth-child(1) {
    background: #ff5f56;
}

.mockup-buttons span:nth-child(2) {
    background: #ffbd2e;
}

.mockup-buttons span:nth-child(3) {
    background: #27c93f;
}

.mockup-title {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.mockup-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
}

.mock-canvas {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-image-placeholder {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.mock-image-placeholder i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.mock-image-placeholder p {
    font-size: 0.875rem;
    font-weight: 600;
}

.mock-text-top,
.mock-text-bottom {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 1.25rem;
    text-transform: uppercase;
    white-space: nowrap;
    font-family: Impact, 'Arial Black', sans-serif;
    letter-spacing: 1px;
}

.mock-text-top {
    top: var(--spacing-md);
}

.mock-text-bottom {
    bottom: var(--spacing-md);
}

.mock-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.mock-tool {
    background: var(--card-bg);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    transition: var(--transition-base);
}

.mock-tool.active {
    background: rgba(255, 145, 77, 0.15);
    color: var(--primary);
    border-color: var(--primary);
}

.mock-tool i {
    color: var(--primary);
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.75rem 1rem;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    font-weight: 600;
    animation: floatCard 3s ease-in-out infinite;
    border: 1px solid var(--border);
}

.floating-card i {
    color: var(--primary);
    font-size: 1.25rem;
}

.card-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 30%;
    left: -20px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    right: -20px;
    animation-delay: 2s;
}

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

/* ================================
   SOCIAL PROOF
   ================================ */
.social-proof {
    padding: var(--spacing-xl) 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.social-proof-text {
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
}

.brands {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.brand-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--text-secondary);
    font-weight: 600;
    opacity: 0.6;
    transition: var(--transition-base);
}

.brand-item:hover {
    opacity: 1;
    color: var(--primary);
}

.brand-item i {
    font-size: 1.5rem;
}

/* ================================
   SECTION HEADERS
   ================================ */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-2xl);
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 145, 77, 0.15);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ================================
   FEATURES SECTION
   ================================ */
.features {
    padding: var(--spacing-2xl) 0;
}

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

.feature-card {
    background: var(--card-bg);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.feature-list i {
    color: var(--success);
    font-size: 0.875rem;
}

/* ================================
   HOW IT WORKS SECTION
   ================================ */
.how-it-works {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

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

.step-card {
    position: relative;
    background: var(--card-bg);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-base);
    border: 1px solid var(--border);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: rgba(255, 145, 77, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: var(--spacing-lg) auto var(--spacing-md);
}

.step-icon i {
    font-size: 2rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.step-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* ================================
   BENEFITS SECTION
   ================================ */
.benefits {
    padding: var(--spacing-2xl) 0;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.benefits-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.benefit-item {
    display: flex;
    gap: var(--spacing-md);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-lg);
    background: rgba(255, 145, 77, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.5rem;
}

.benefit-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.benefit-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.benefits-showcase {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.showcase-card {
    background: var(--primary-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

[data-theme="dark"] .showcase-card {
    background: rgba(255, 145, 77, 0.1);
    border-color: var(--border);
}

.showcase-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.showcase-card.highlight {
    background: var(--gradient-primary);
    color: var(--white);
    grid-column: span 2;
}

.showcase-card.highlight h3 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.showcase-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.showcase-card.highlight .showcase-icon {
    background: rgba(255, 255, 255, 0.2);
}

.showcase-icon i {
    font-size: 1.75rem;
    color: var(--primary);
}

.showcase-card.highlight .showcase-icon i {
    color: var(--white);
}

.showcase-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.showcase-card.highlight h4 {
    color: var(--white);
}

.showcase-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
}

.showcase-card.highlight p {
    color: rgba(255, 255, 255, 0.9);
}

.benefits-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.benefits-image-wrapper img {
    width: 100%;
    border-radius: var(--radius-xl);
}

.stats-overlay {
    position: absolute;
    bottom: var(--spacing-lg);
    left: var(--spacing-lg);
    right: var(--spacing-lg);
}

.stat-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.75rem 1.25rem;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    font-weight: 600;
    border: 1px solid var(--border);
}

.stat-badge i {
    color: var(--success);
    font-size: 1.25rem;
}

/* ================================
   TEMPLATES SECTION
   ================================ */
.templates {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

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

.template-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid var(--border);
}

.template-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.template-preview {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.template-icon-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.template-icon-wrapper i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.9);
}

.template-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.template-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.template-card:hover .template-image img,
.template-card:hover .template-icon-wrapper {
    transform: scale(1.1);
}

.template-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.template-card:hover .template-overlay {
    opacity: 1;
}

.template-name {
    padding: var(--spacing-md);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-primary);
}

.templates-cta {
    text-align: center;
}

/* ================================
   TESTIMONIALS SECTION
   ================================ */
.testimonials {
    padding: var(--spacing-2xl) 0;
}

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

.testimonial-card {
    background: var(--card-bg);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid var(--border);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: var(--spacing-md);
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1.125rem;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ================================
   CTA SECTION
   ================================ */
.cta-section {
    position: relative;
    padding: var(--spacing-2xl) 0;
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        #ff914d 0%,
        #4dbbfe 50%,
        #fee94d 100%);
    z-index: -1;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: white;
    line-height: 1.2;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
}

.gradient-text-light {
    background: linear-gradient(135deg, #ffffff, #fff6ed, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    font-family: inherit;
    line-height: 1;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.25s ease-out;
    text-decoration: none;
    white-space: nowrap;
}

.btn-white {
    background: white !important;
    color: #ff914d !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.btn-white:hover {
    background: #f9fafb !important;
    color: #ff914d !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
}

.btn-outline-white {
    background: transparent !important;
    color: white !important;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

[data-theme="dark"] .btn-white {
    background: #ff914d !important;
    color: white !important;
    border: 2px solid #ff914d !important;
    box-shadow: 0 8px 24px rgba(255, 145, 77, 0.4);
}

[data-theme="dark"] .btn-white:hover {
    background: #ff711a !important;
    color: white !important;
    border: 2px solid #ff711a !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 145, 77, 0.6);
}

[data-theme="dark"] .btn-outline-white {
    background: white !important;
    color: #ff914d !important;
    border: 2px solid white !important;
}

[data-theme="dark"] .btn-outline-white:hover {
    background: #f9fafb !important;
    color: #ff914d !important;
    border: 2px solid #f9fafb !important;
    transform: translateY(-2px);
}

/* Keep CTA background gradient in dark mode */
[data-theme="dark"] .cta-bg {
    background: linear-gradient(135deg,
        #ff914d 0%,
        #4dbbfe 50%,
        #fee94d 100%);
    opacity: 1;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.cta-stats .stat {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: none;
    transition: var(--transition-base);
    min-width: 140px;
}

.cta-stats .stat:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
}

.cta-stats .stat-number {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 4px;
    display: block;
}

.cta-stats .stat-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    display: block;
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--brand-dark);
    color: var(--white);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

[data-theme="dark"] .footer {
    background: #0a0f14;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 0.9fr 0.9fr 1.5fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    align-items: start;
}

/* Section 1: Branding */
.footer-brand {
    padding-right: var(--spacing-md);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--spacing-md);
}

.footer-logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff914d, #4dbbfe);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -4px rgba(0, 0, 0, 0.2);
}

.footer-logo-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff914d, #4dbbfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.footer-logo-tagline {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    font-size: 15px;
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    font-size: 18px;
    color: #ffffff !important;
}

.social-link i {
    color: #ffffff !important;
}

.social-link:hover {
    background: var(--brand-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 145, 77, 0.3);
}

.social-link:hover i {
    color: #ffffff !important;
}

/* Footer Columns */
.footer-column {
    min-width: 0;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: #ffffff !important;
}

[data-theme="dark"] .footer-title {
    color: #ffffff !important;
}

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

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.footer-list a i {
    font-size: 14px;
    color: var(--brand-primary);
    width: 18px;
    transition: var(--transition-base);
}

.footer-list a:hover {
    color: var(--brand-primary);
    padding-left: 6px;
}

.footer-list a:hover i {
    transform: translateX(3px);
}

/* Section 5: CTA Section */
.footer-cta {
    background: rgba(30, 41, 59, 0.5);
    padding: var(--spacing-lg) var(--spacing-md);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-base);
}

[data-theme="dark"] .footer-cta {
    background: rgba(20, 28, 40, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-cta:hover {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(255, 145, 77, 0.3);
}

[data-theme="dark"] .footer-cta:hover {
    background: rgba(20, 28, 40, 0.8);
}

.footer-cta-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: #ffffff !important;
}

[data-theme="dark"] .footer-cta-title {
    color: #ffffff !important;
}

.footer-cta-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-md);
    font-size: 14px;
    line-height: 1.6;
    max-width: 100%;
}

.footer-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 145, 77, 0.3);
    transition: var(--transition-base);
    width: 100%;
    max-width: 180px;
}

.footer-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 145, 77, 0.4);
}

.footer-cta-button i {
    font-size: 14px;
    transition: var(--transition-base);
}

.footer-cta-button:hover i {
    transform: translateX(3px);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-bottom i {
    color: var(--brand-primary);
    margin: 0 4px;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
    }
}

/* ================================
   SCROLL TO TOP BUTTON
   ================================ */
.scroll-to-top {
    position: fixed;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 145, 77, 0.4);
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 1024px) {
    .hero-content,
    .benefits-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .hero-image,
    .benefits-image {
        order: -1;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        padding-bottom: var(--spacing-lg);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: var(--spacing-lg);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-cta {
        grid-column: 1 / -1;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mockup-content {
        grid-template-columns: 1fr;
    }

    .mock-sidebar {
        flex-direction: row;
        overflow-x: auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: calc(var(--spacing-2xl) + 80px) 0 var(--spacing-2xl);
        min-height: auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .hero-cta,
    .cta-buttons {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .features-grid,
    .templates-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-brand,
    .footer-column,
    .footer-cta {
        grid-column: 1;
        text-align: center;
    }

    .footer-brand {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: var(--spacing-lg);
        margin-bottom: var(--spacing-lg);
    }

    .footer-list a {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }

    .mockup-content {
        padding: var(--spacing-sm);
    }

    .mock-canvas {
        min-height: 300px;
    }

    .mock-text-top,
    .mock-text-bottom {
        font-size: 1rem;
        padding: 0.375rem 0.75rem;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-card.highlight {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .brands {
        gap: var(--spacing-md);
    }
    
    .brand-item span {
        display: none;
    }
}

/* ================================
   ANIMATIONS
   ================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}
