:root {
    /* Основные цвета */
    --primary-color: #2563EB; /* Primary - кнопки/ссылки */
    --primary-hover: #1D4ED8; /* Primary hover */
    --accent-color: #22C55E; /* Accent - подсветка фич/бейджи (рост/ROI) */
    --bg-main: #0B1220; /* Background темный */
    --bg-light: #F8FAFC; /* Background светлый */
    --surface-dark: #111C33; /* Surface темный (карточки/блоки) */
    --surface-light: #FFFFFF; /* Surface светлый */
    --text-primary-dark: #E5E7EB; /* Text primary темный */
    --text-primary-light: #0F172A; /* Text primary светлый */
    --text-secondary: #94A3B8; /* Text secondary */
    --border-color: #22304D; /* Border */
    --error-color: #EF4444; /* Error */
    --warning-color: #F59E0B; /* Warning */
    --info-color: #38BDF8; /* Info */
    
    /* Градиенты */
    --primary-gradient: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    --hero-gradient: linear-gradient(135deg, #2563EB 0%, #22C55E 100%);
    --accent-gradient: linear-gradient(135deg, #2563EB 0%, #22C55E 100%);
    
    /* Цвета для элементов (legacy поддержка) */
    --secondary-color: #22C55E;
    --accent-secondary: #22C55E;
    --text-dark: #E5E7EB;
    --text-gray: #94A3B8;
    --text-light: #94A3B8;
    
    /* Фоны */
    --bg-dark: #0B1220;
    --bg-darker: #050810;
    --bg-card: #111C33;
    --bg-gradient: linear-gradient(180deg, #0B1220 0%, #050810 100%);
    
    /* Тени */
    --shadow-sm: 0 2px 8px rgba(37, 99, 235, 0.2);
    --shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
    --shadow-lg: 0 8px 30px rgba(37, 99, 235, 0.4);
    --shadow-hover: 0 12px 40px rgba(37, 99, 235, 0.5);
    
    /* Дополнительные */
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-bg: rgba(17, 28, 51, 0.9);
    --glass-border: rgba(37, 99, 235, 0.3);
}

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

body {
    font-family: 'Noto Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 20px; */
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(11, 18, 32, 0.95);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    cursor: pointer;
    z-index: 1;
}

.logo-image {
    height: 42px;
    width: auto;
    transition: var(--transition);
}

.logo-image:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.logo-svg {
    height: 42px;
    width: auto;
    transition: var(--transition);
    cursor: pointer;
}

.logo-svg:hover {
    transform: scale(1.05);
}

.logo-svg:hover defs stop {
    stop-opacity: 1.2;
}

.logo-icon {
    font-size: 2rem;
}

.nav {
    display: flex;
    gap: 2.25rem;
}

.nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.25rem 0;
}

.nav a:hover {
    color: white;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition);
}

.nav a:hover::after {
    width: 100%;
}

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

.balance-display {
    color: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.balance-amount {
    color: white;
    font-weight: 600;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-menu span {
    color: white;
    font-weight: 500;
}

.logout-btn {
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(37, 99, 235, 0.4);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.logout-btn:hover {
    background: rgba(37, 99, 235, 0.3);
    border-color: rgba(37, 99, 235, 0.5);
    transform: translateY(-1px);
}

.language-switch {
    display: flex;
    background: rgba(37, 99, 235, 0.2);
    border-radius: 20px;
    padding: 2px;
    border: 1px solid rgba(37, 99, 235, 0.3);
    backdrop-filter: blur(10px);
}

.lang-btn {
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 18px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.8);
}

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

.cta-btn {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

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

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

.cta-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.cta-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.cta-btn.large {
    padding: 1.2rem 2.5rem;
    font-size: 1.15rem;
}

.user-menu-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-name-header {
    color: white;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.user-name-header:hover {
    color: rgba(255, 255, 255, 0.8);
}

.logout-btn-header {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.logout-btn-header:hover {
    background: rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.4);
    transform: translateY(-1px);
}

.user-menu-mobile {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.user-name-mobile {
    cursor: pointer;
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.user-name-mobile:hover {
    color: var(--text-primary);
}

.logout-btn-mobile {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.logout-btn-mobile:hover {
    background: rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(11, 18, 32, 0.98);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    padding: 2rem;
    z-index: 999;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.15);
}

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

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mobile-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.language-switch.mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    background: rgba(17, 28, 51, 0.95);
    border-radius: 12px;
    padding: 4px;
    border: 1px solid rgba(37, 99, 235, 0.25);
    backdrop-filter: blur(10px);
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.language-switch.mobile .lang-btn {
    flex: 1;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    min-width: 60px;
    transition: all 0.3s ease;
}

.language-switch.mobile .lang-btn.active {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.4), 
                0 0 30px rgba(37, 99, 235, 0.2),
                0 0 0 1px rgba(37, 99, 235, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
}

.language-switch.mobile .lang-btn:not(.active) {
    color: var(--text-secondary);
    background: transparent;
}

.language-switch.mobile .lang-btn:not(.active):hover {
    color: rgba(156, 163, 175, 0.8);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 18, 32, 0.7) 0%, rgba(11, 18, 32, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(37, 99, 235, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(37, 99, 235, 0.4);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.3);
    animation: floatIcon 20s ease-in-out infinite;
}

.floating-icon .material-symbols-outlined {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
    filter: drop-shadow(0 2px 8px rgba(37, 99, 235, 0.5));
}

.floating-icon.icon-1 {
    top: 10%;
    left: 8%;
    animation-duration: 18s;
    background: rgba(37, 99, 235, 0.25);
}

.floating-icon.icon-2 {
    top: 65%;
    right: 12%;
    animation-duration: 22s;
    animation-delay: -3s;
    background: rgba(34, 197, 94, 0.25);
    border-color: rgba(34, 197, 94, 0.4);
}

.floating-icon.icon-3 {
    top: 35%;
    right: 18%;
    animation-duration: 16s;
    animation-delay: -2s;
    background: rgba(37, 99, 235, 0.22);
}

.floating-icon.icon-4 {
    bottom: 25%;
    left: 15%;
    animation-duration: 25s;
    animation-delay: -6s;
    background: rgba(34, 197, 94, 0.22);
    border-color: rgba(34, 197, 94, 0.4);
}

.floating-icon.icon-5 {
    top: 55%;
    left: 5%;
    animation-duration: 20s;
    animation-delay: -4s;
    background: rgba(37, 99, 235, 0.23);
}

.floating-icon.icon-6 {
    top: 20%;
    right: 8%;
    animation-duration: 17s;
    animation-delay: -7s;
    background: rgba(34, 197, 94, 0.24);
    border-color: rgba(34, 197, 94, 0.4);
}

.floating-icon.icon-7 {
    bottom: 15%;
    right: 25%;
    animation-duration: 19s;
    animation-delay: -5s;
    background: rgba(37, 99, 235, 0.21);
}

.floating-icon.icon-8 {
    top: 45%;
    left: 25%;
    animation-duration: 23s;
    animation-delay: -8s;
    background: rgba(34, 197, 94, 0.23);
    border-color: rgba(34, 197, 94, 0.4);
}

@keyframes floatIcon {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.7;
    }
    25% {
        transform: translate(60px, -50px) rotate(20deg) scale(1.15);
        opacity: 0.9;
    }
    50% {
        transform: translate(-40px, 70px) rotate(-20deg) scale(0.9);
        opacity: 0.75;
    }
    75% {
        transform: translate(50px, 40px) rotate(15deg) scale(1.1);
        opacity: 0.85;
    }
}

/* Decorative lines */
.hero-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.25;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    height: 2px;
    animation: lineMove 20s linear infinite;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.line-1 {
    width: 40%;
    top: 20%;
    left: -10%;
    transform: rotate(15deg);
    animation-duration: 25s;
}

.line-2 {
    width: 35%;
    top: 45%;
    right: -5%;
    transform: rotate(-20deg);
    animation-duration: 30s;
    animation-delay: -5s;
}

.line-3 {
    width: 50%;
    bottom: 30%;
    left: -15%;
    transform: rotate(10deg);
    animation-duration: 35s;
    animation-delay: -10s;
}

.line-4 {
    width: 30%;
    top: 60%;
    right: -8%;
    transform: rotate(-15deg);
    animation-duration: 28s;
    animation-delay: -8s;
}

.line-5 {
    width: 45%;
    bottom: 15%;
    right: -12%;
    transform: rotate(25deg);
    animation-duration: 32s;
    animation-delay: -15s;
}

/* Additional diagonal lines */

@keyframes verticalLine {
    0%, 100% {
        opacity: 0.15;
        transform: translateY(0) scaleY(1);
    }
    50% {
        opacity: 0.3;
        transform: translateY(30px) scaleY(1.1);
    }
}

@keyframes lineMove {
    0% {
        transform: translateX(-200px);
        opacity: 0;
    }
    10% {
        opacity: 0.2;
    }
    90% {
        opacity: 0.2;
    }
    100% {
        transform: translateX(calc(100vw + 200px));
        opacity: 0;
    }
}

/* Grid pattern */
.hero-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.4;
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(80px, 80px);
    }
}

/* Decorative circles */
.hero-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.circle {
    position: absolute;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: circlePulse 8s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.circle-1 {
    width: 280px;
    height: 280px;
    top: 10%;
    left: 5%;
    animation-duration: 12s;
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.3);
}

.circle-2 {
    width: 200px;
    height: 200px;
    top: 70%;
    right: 8%;
    animation-duration: 10s;
    animation-delay: -2s;
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 0 35px rgba(37, 99, 235, 0.25);
}

.circle-3 {
    width: 170px;
    height: 170px;
    bottom: 20%;
    left: 15%;
    animation-duration: 14s;
    animation-delay: -4s;
}

.circle-4 {
    width: 240px;
    height: 240px;
    top: 40%;
    right: 12%;
    animation-duration: 11s;
    animation-delay: -6s;
    border-color: rgba(37, 99, 235, 0.32);
    box-shadow: 0 0 35px rgba(37, 99, 235, 0.22);
}

@keyframes circlePulse {
    0%, 100% {
        transform: scale(1) translate(0, 0);
        opacity: 0.2;
    }
    33% {
        transform: scale(1.12) translate(20px, -20px);
        opacity: 0.35;
    }
    66% {
        transform: scale(1.08) translate(-15px, 15px);
        opacity: 0.28;
    }
}

.neural-network {
    position: absolute;
    width: 100%;
    height: 100%;
}

.neural-network::before,
.neural-network::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.neural-network::before {
    width: 500px;
    height: 500px;
    top: 10%;
    left: 15%;
    animation: float 25s ease-in-out infinite;
}

.neural-network::after {
    width: 400px;
    height: 400px;
    bottom: 15%;
    right: 10%;
    animation: float 30s ease-in-out infinite reverse;
}

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

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    animation: floatGlow 20s ease-in-out infinite;
}

@keyframes floatGlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(50px, -50px) scale(1.2);
        opacity: 0.5;
    }
}

.shape-1 {
    width: 350px;
    height: 350px;
    top: 20%;
    right: 20%;
    animation: float 18s ease-in-out infinite;
    animation-delay: -2s;
    opacity: 0.4;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: 25%;
    left: 25%;
    animation: float 22s ease-in-out infinite;
    animation-delay: -5s;
    opacity: 0.35;
}

.shape-3 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 28s ease-in-out infinite;
    animation-delay: -8s;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 2px 10px rgba(37, 99, 235, 0.3);
    letter-spacing: -0.5px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.15rem, 3vw, 1.65rem);
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    line-height: 1.5;
    animation: fadeInUp 1s ease-out 0.2s backwards;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-cta {
    background: var(--hero-gradient);
    color: white;
    border: none;
    padding: 1.2rem 2.8rem;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.4s backwards;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4), 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    transition: left 0.5s;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    background: var(--hero-gradient);
    opacity: 0.95;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.5), 0 6px 25px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-cta:active {
    transform: translateY(-1px) scale(0.98);
}

.made-in-ukraine {
    font-size: 1rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.6s backwards;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Sections */
.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 3rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    letter-spacing: -0.5px;
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: var(--bg-main);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    position: relative;
    padding: 2rem;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* How It Works */
.how-it-works {
    padding: 5rem 0;
    background: var(--bg-darker);
}

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

.step {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.step:hover::before {
    transform: scaleX(1);
}

.step:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.step-icon {
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.step-icon .material-symbols-outlined {
    font-size: 6rem;
    color: var(--primary-color);
    font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 48;
    filter: drop-shadow(0 4px 12px rgba(37, 99, 235, 0.3));
}

.step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.step p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Products */
.products {
    padding: 5rem 0;
    background: var(--bg-dark);
}

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

.product-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.product-card:hover::after {
    width: 300px;
    height: 300px;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.product-icon {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.product-icon .material-symbols-outlined {
    font-size: 6rem;
    color: var(--primary-color);
    font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 48;
    filter: drop-shadow(0 4px 12px rgba(37, 99, 235, 0.3));
}

.product-card:hover .product-icon {
    transform: scale(1.15) rotate(-5deg);
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff !important;
    position: relative;
    z-index: 1;
    letter-spacing: -0.3px;
}

.product-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

/* Document Templates */
.document-templates {
    padding: 5rem 0;
    background: var(--bg-darker);
    position: relative;
}

.templates-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
    align-items: stretch;
}

.template-card {
    background: var(--bg-card);
    padding: 2rem;
    padding-bottom: 2.5rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.template-card:nth-child(1) {
    animation-delay: 0.1s;
}

.template-card:nth-child(2) {
    animation-delay: 0.2s;
}

.template-card:nth-child(3) {
    animation-delay: 0.3s;
}

.template-card:nth-child(4) {
    animation-delay: 0.4s;
}

.template-card:nth-child(5) {
    animation-delay: 0.5s;
}

.template-card:nth-child(6) {
    animation-delay: 0.6s;
}

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

.template-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

/* Color themes for cards */
.template-theme-yellow {
    border-top: 3px solid #ffb84d;
}

.template-theme-blue {
    border-top: 3px solid #6b9fff;
}

.template-theme-green {
    border-top: 3px solid #4ade80;
}

.template-theme-purple {
    border-top: 3px solid #a78bfa;
}

.template-theme-pink {
    border-top: 3px solid #f472b6;
}

.template-theme-cyan {
    border-top: 3px solid #22d3ee;
}

.template-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.template-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.template-category-icon {
    font-size: 1.2rem;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    color: var(--text-secondary);
}

.template-category-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.template-badge {
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.2);
    white-space: nowrap;
}

.template-badge.popular {
    background: var(--primary-gradient);
    color: white;
}

.template-badge.new {
    background: linear-gradient(135deg, #22C55E 0%, #2563EB 100%);
    color: white;
}

.template-headline {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.3;
    letter-spacing: -0.5px;
    flex-grow: 0;
}

.template-description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.template-preview-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.preview-document {
    background: #ffffff;
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
}

.document-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
}

.document-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    padding-right: 0.5rem;
}

.document-badge {
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.document-badge.status-in-progress {
    background: #fef3c7;
    color: #92400e;
}

.document-badge.status-ready {
    background: #d1fae5;
    color: #065f46;
}

.document-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.document-content .template-description {
    margin-top: 0.5rem;
}

.document-line {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    width: 100%;
}

.document-line.short {
    width: 60%;
}

.template-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    margin-bottom: 0;
    flex-shrink: 0;
}

.template-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    flex: 1;
}

.template-cta-link .material-symbols-outlined {
    font-size: 1.2rem;
    transition: var(--transition);
}

.template-cta-link:hover {
    color: var(--secondary-color);
    gap: 0.75rem;
}

.template-cta-link:hover .material-symbols-outlined {
    transform: translateX(4px);
}

.template-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    padding: 0;
}

.template-download-btn .material-symbols-outlined {
    font-size: 1.5rem;
    font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

.template-download-btn:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
}

.template-download-btn:active {
    transform: translateY(0);
}

.template-download-btn:disabled {
    opacity: 0.6 !important;
    cursor: wait !important;
    pointer-events: none;
}

/* Pricing */
/* Templates */
.templates {
    padding: 5rem 0;
    background: var(--bg-main);
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.template-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.template-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.template-icon .material-symbols-outlined {
    font-size: 2.5rem;
    color: white;
}

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

.template-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex: 1;
}

.template-download-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
}

.template-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
    background: var(--primary-hover);
}

.template-download-btn .material-symbols-outlined {
    font-size: 1.2rem;
}

@media (max-width: 968px) {
    .templates-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.pricing {
    padding: 6rem 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    align-items: stretch;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--bg-card);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--primary-gradient);
    border-radius: var(--border-radius-lg);
    z-index: -1;
    opacity: 0.3;
    filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.pricing-card.featured:hover {
    transform: translateY(-10px);
}

.pricing-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(34, 197, 94, 0.15);
    color: var(--accent-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.pricing-badge.popular {
    background: var(--primary-gradient);
    color: white;
}

.pricing-icon {
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.pricing-icon .material-symbols-outlined {
    font-size: 7rem;
    color: var(--primary-color);
    font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 48;
    filter: drop-shadow(0 4px 12px rgba(37, 99, 235, 0.3));
}

.pricing-card:hover .pricing-icon {
    transform: scale(1.1) rotate(-5deg);
}

.pricing-price {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.price-from {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.price-value {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
}

.price-currency {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.price-amount {
    font-size: 4.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    letter-spacing: -2px;
}

.price-period {
    font-size: 1.1rem;
    color: var(--text-secondary);
    align-self: flex-end;
    margin-bottom: 0.8rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-btn {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

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

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

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

.pricing-btn.featured {
    background: var(--secondary-gradient);
}

.payment-methods-info {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
    border: 1px solid var(--border-color);
}

.payment-methods-info p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.payment-icons-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.payment-icons-row span {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50px;
    transition: var(--transition);
    border: 1px solid rgba(37, 99, 235, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-icons-row span .material-symbols-outlined {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.payment-icons-row span:hover {
    transform: translateY(-3px);
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow);
}

.payment-icons-row span:hover .material-symbols-outlined {
    color: white;
}

.payment-cards-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.payment-card-icon-inline {
    width: 40px;
    height: 55px;
    object-fit: contain;
}

.payment-cards-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.payment-card-icon {
    width: 50px;
    height: 32px;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.payment-card-icon:hover {
    transform: translateY(-3px) scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* Why Us */
.why-us {
    padding: 5rem 0;
    background: var(--bg-dark);
}

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

.feature {
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature:hover::before {
    opacity: 0.03;
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.feature-icon .material-symbols-outlined {
    font-size: 6rem;
    color: var(--accent-color);
    font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 48;
    filter: drop-shadow(0 4px 12px rgba(34, 197, 94, 0.4));
}

.feature:hover .feature-icon {
    transform: scale(1.15) rotate(10deg);
}

.feature h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
    letter-spacing: -0.3px;
}

.feature p {
    color: var(--text-light);
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Testimonials / Success Stories */
.testimonials {
    padding: 6rem 0;
    background: var(--bg-darker);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating .material-symbols-outlined {
    font-size: 1.2rem;
    color: #FBBF24;
    font-variation-settings: 'FILL' 1;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--bg-main);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.faq-question .material-symbols-outlined {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    padding-left: 3rem;
}

/* Step Numbers */
.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    z-index: 2;
}

.step {
    position: relative;
}

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    background: var(--primary-gradient);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

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

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

.cta-content h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.final-cta .cta-btn {
    background: white;
    color: var(--primary-color);
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-weight: 600;
}

.final-cta .cta-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 3rem 0 1rem;
    border-top: none;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section:first-child {
    padding-top: 0;
}

.footer-section:not(:first-child) {
    padding-top: 0;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    
    margin-top: 0;
    color: var(--accent-color);
    min-height: 1.5rem;
    line-height: 1.5;
}

.footer-section:first-child .logo {
    margin-bottom: 0rem;
}

.footer-section:first-child p {
    margin-top: 0;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.8;
    transition: var(--transition);
}

.footer-section a:hover {
    color: white;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-payment-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    
}

.footer-payment-icon {
    width: 60px;
    height: 38px;
    object-fit: contain;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-payment-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav,
    .header-actions .language-switch,
    .header-actions .cta-btn {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding-top: 80px;
        min-height: 80vh;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .steps,
    .product-grid,
    .features-grid,
    .templates-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: stretch;
    }
    
    .price-amount {
        font-size: 3.5rem;
    }
    
    .price-currency {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section .logo {
        display: flex;
        justify-content: center;
        /* margin-left: 74px; */
    }
    
    .social-links,
    .legal-links {
        justify-content: center;
    }
    
    .payment-icons-row {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .step,
    .product-card,
    .feature,
    .template-card {
        padding: 1.5rem;
    }
    
    .templates-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .template-headline {
        font-size: 1.5rem;
    }
    
    .template-preview-card {
        padding: 1.25rem;
    }
    
    .template-badge {
        padding: 0.15rem 0.45rem;
        font-size: 0.55rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .payment-icons-row {
        flex-direction: column;
        gap: 0.75rem;
    }
}

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

.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
a:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Loading state */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}