/* ===================================
   Modern Design 2026 - Venue Landing
   =================================== */

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

:root {
    /* Modern Color Palette 2026 */
    --color-primary: #6366F1;
    --color-primary-hover: #818CF8;
    --color-secondary: #8B5CF6;
    --color-accent: #EC4899;
    --color-success: #10B981;
    --color-warning: #F59E0B;
    --color-danger: #EF4444;
    
    /* Light theme - Modern minimal */
    --color-bg-primary: #FFFFFF;
    --color-bg-secondary: #FAFAFA;
    --color-bg-tertiary: #F5F5F5;
    --color-text-primary: #0F172A;
    --color-text-secondary: #64748B;
    --color-text-tertiary: #94A3B8;
    --color-border: #E2E8F0;
    --color-border-light: #F1F5F9;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #EC4899 100%);
    --gradient-secondary: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    --gradient-accent: linear-gradient(135deg, #EC4899 0%, #F59E0B 100%);
    --gradient-soft: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    
    /* Shadows - Modern soft */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 24px rgba(99, 102, 241, 0.3);
    
    /* Fonts */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: -0.01em;
    color: var(--color-text-primary);
    background: var(--color-bg-primary);
    min-height: 100vh;
    padding-top: 72px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

body:has(.hero-section) {
    padding-top: 72px;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
   Navigation
   =================================== */

.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    padding: 0;
    height: 72px;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
}

.nav-logo {
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

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

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
    letter-spacing: -0.01em;
}

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

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

.nav-cta {
    padding: 10px 20px;
    background: var(--gradient-primary);
    color: white !important;
    border-radius: var(--radius-full);
    font-weight: 600;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

.hero-section {
    position: relative;
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
    background: var(--color-bg-primary);
    overflow: hidden;
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
}
    33% {
        transform: translate(30px, -30px) scale(1.1);
}
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--gradient-soft);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.01em;
}

.badge-icon {
    font-size: 16px;
}

.hero-title {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.04em;
    font-family: var(--font-display);
}

.title-line {
    display: block;
    animation: fadeInUp 0.6s ease-out backwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.1s;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.title-line:nth-child(3) {
    animation-delay: 0.3s;
}

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

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

.hero-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.01em;
    font-weight: 400;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.01em;
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
}

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

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

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-primary);
    text-decoration: none;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.01em;
}

.btn-secondary:hover {
    background: var(--color-bg-tertiary);
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero-trust {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text-secondary);
}

.trust-item i {
    color: var(--color-success);
    font-size: 18px;
}

/* ===================================
   Stats Section
   =================================== */

.stats-section {
    padding: var(--spacing-3xl) 0;
    background: var(--color-bg-secondary);
}

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

.stat-card {
    background: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.stat-number {
    font-size: 64px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
    font-family: var(--font-display);
    letter-spacing: -0.03em;
    display: inline-block;
}

.stat-suffix {
    font-size: 32px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-left: 4px;
}

.stat-label {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.stat-desc {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* ===================================
   Features Section
   =================================== */

.features-section {
    padding: var(--spacing-3xl) 0;
    background: var(--color-bg-primary);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-2xl);
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--gradient-soft);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.03em;
    line-height: 1.2;
    font-family: var(--font-display);
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    letter-spacing: -0.01em;
}

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

.feature-card {
    background: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

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

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    transition: all 0.3s ease;
}

.feature-icon.ai {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(99, 102, 241, 0.2) 100%);
    color: var(--color-primary);
}

.feature-icon.assistant {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.2) 100%);
    color: var(--color-secondary);
}

.feature-icon.security {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.2) 100%);
    color: var(--color-success);
}

.feature-icon.automation {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(236, 72, 153, 0.2) 100%);
    color: var(--color-accent);
}

.feature-icon.booking {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.2) 100%);
    color: var(--color-warning);
}

.feature-icon.analytics {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.2) 100%);
    color: var(--color-primary);
}

.feature-icon.telegram {
    background: linear-gradient(135deg, rgba(37, 150, 190, 0.1) 0%, rgba(37, 150, 190, 0.2) 100%);
    color: #2596BE;
}

.feature-icon.library {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.2) 100%);
    color: var(--color-secondary);
}

.feature-icon.goals {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.2) 100%);
    color: var(--color-warning);
}

.feature-icon.warehouse {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.2) 100%);
    color: var(--color-success);
}

.feature-icon i {
    font-size: 28px;
}

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

.feature-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.3;
    font-family: var(--font-display);
}

.feature-desc {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    letter-spacing: -0.01em;
    margin-bottom: var(--spacing-md);
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--gradient-soft);
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-primary);
}

.feature-highlight i {
    font-size: 16px;
}

/* ===================================
   CTA Section
   =================================== */

.cta-section {
    position: relative;
    padding: var(--spacing-3xl) 0;
    background: var(--color-bg-secondary);
    overflow: hidden;
    }

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.cta-gradient {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    filter: blur(100px);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
}
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
}
}

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

.cta-title {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.03em;
    line-height: 1.2;
    font-family: var(--font-display);
}

.cta-subtitle {
    font-size: 18px;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
    letter-spacing: -0.01em;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.01em;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    margin-bottom: var(--spacing-md);
}

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

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text-secondary);
    letter-spacing: -0.01em;
}

.cta-note i {
    color: var(--color-success);
}

/* ===================================
   Footer
   =================================== */

.main-footer {
    background: var(--color-bg-primary);
    border-top: 1px solid var(--color-border);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: var(--font-display);
}

.footer-tagline {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-heading {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0 0 16px 0;
    letter-spacing: -0.01em;
}

.footer-link {
    font-size: 14px;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1.6;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer-copyright {
    font-size: 14px;
    color: var(--color-text-tertiary);
    margin: 0 0 8px 0;
}

.footer-legal {
    font-size: 12px;
    color: #999;
    margin: 12px 0 0 0;
    line-height: 1.8;
}

.footer-legal a {
    color: #999;
    text-decoration: none;
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
}

.footer-legal a:hover {
    color: var(--color-text-secondary);
    border-bottom-color: var(--color-text-secondary);
}

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

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
}

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 64px;
}

    .top-nav {
        height: 64px;
    }
    
    .nav-wrapper {
        padding: 0 16px;
}

    .nav-links {
        gap: 20px;
}

    .nav-link {
    font-size: 14px;
}

    .nav-cta {
        padding: 8px 16px;
    font-size: 14px;
}

    .hero-section {
        padding: var(--spacing-2xl) 0;
        min-height: auto;
    }

    .hero-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-trust {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .stats-section,
    .features-section,
    .cta-section {
        padding: var(--spacing-2xl) 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-card {
        padding: var(--spacing-lg);
    }

    .stat-number {
        font-size: 48px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: var(--spacing-lg);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title,
    .cta-title {
        font-size: 32px;
    }

    .stat-number {
        font-size: 40px;
    }

    .feature-title {
        font-size: 20px;
    }
}

/* ===================================
   Animations & Effects
   =================================== */

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

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

.feature-card {
    animation: fadeInUp 0.6s ease-out backwards;
    }

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

/* Ripple effect for buttons */
.btn-primary,
.btn-cta {
    position: relative;
    overflow: hidden;
    }

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
    }

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ===================================
   About Page Styles
   =================================== */

body:has(.about-hero-section) {
    display: block;
    padding-top: 72px;
}

/* About Hero Section */
.about-hero-section {
    position: relative;
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
    background: var(--color-bg-primary);
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

/* For Whom Section */
.for-whom-section {
    padding: var(--spacing-3xl) 0;
    background: var(--color-bg-secondary);
}

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

.profession-card {
    background: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.profession-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

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

.profession-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    transition: all 0.3s ease;
}

.profession-icon.barber {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(99, 102, 241, 0.2) 100%);
    color: var(--color-primary);
}

.profession-icon.nails {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(236, 72, 153, 0.2) 100%);
    color: var(--color-accent);
}

.profession-icon.cosmetologist {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.2) 100%);
    color: var(--color-success);
}

.profession-icon.stylist {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.2) 100%);
    color: var(--color-warning);
}

.profession-icon.massage {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.2) 100%);
    color: var(--color-secondary);
}

.profession-icon.lash {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(236, 72, 153, 0.2) 100%);
    color: var(--color-accent);
}

.profession-icon i {
    font-size: 32px;
}

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

.profession-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    font-family: var(--font-display);
}

.profession-desc {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    letter-spacing: -0.01em;
}

/* Features Detailed Section */
.features-detailed-section {
    padding: var(--spacing-3xl) 0;
    background: var(--color-bg-primary);
}

.features-detailed-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.feature-detailed-item {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: var(--spacing-xl);
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-detailed-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-detailed-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-detailed-icon.ai {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(99, 102, 241, 0.2) 100%);
    color: var(--color-primary);
}

.feature-detailed-icon.security {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.2) 100%);
    color: var(--color-success);
}

.feature-detailed-icon.analytics {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.2) 100%);
    color: var(--color-primary);
}

.feature-detailed-icon.automation {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(236, 72, 153, 0.2) 100%);
    color: var(--color-accent);
}

.feature-detailed-icon.booking {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.2) 100%);
    color: var(--color-warning);
}

.feature-detailed-icon.mobile {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.2) 100%);
    color: var(--color-secondary);
}

.feature-detailed-icon.telegram {
    background: linear-gradient(135deg, rgba(37, 150, 190, 0.1) 0%, rgba(37, 150, 190, 0.2) 100%);
    color: #2596BE;
}

.feature-detailed-icon.library {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.2) 100%);
    color: var(--color-secondary);
}

.feature-detailed-icon.goals {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.2) 100%);
    color: var(--color-warning);
}

.feature-detailed-icon.warehouse {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.2) 100%);
    color: var(--color-success);
}

.feature-detailed-icon i {
    font-size: 36px;
}

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

.feature-detailed-content {
    flex: 1;
}

.feature-detailed-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.3;
    font-family: var(--font-display);
}

.feature-detailed-desc {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    letter-spacing: -0.01em;
}

.feature-point {
    margin-bottom: 20px;
}

.feature-point:last-child {
    margin-bottom: 0;
}

.feature-point strong {
    color: var(--color-text-primary);
    font-weight: 600;
}

/* Benefits Section */
.benefits-section {
    padding: var(--spacing-3xl) 0;
    background: var(--color-bg-secondary);
}

.benefits-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-content {
    text-align: left;
}

.benefits-title {
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-xl);
    letter-spacing: -0.03em;
    line-height: 1.2;
    font-family: var(--font-display);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.benefit-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 24px;
    color: var(--color-success);
}

.benefit-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-primary);
    letter-spacing: -0.01em;
}

.benefit-text strong {
    color: var(--color-text-primary);
    font-weight: 600;
}

.benefits-visual {
    display: flex;
    justify-content: center;
}

.stats-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.stat-preview-item {
    background: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-preview-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.stat-preview-item:nth-child(3) {
    grid-column: 1 / -1;
}

.stat-preview-value {
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
    font-family: var(--font-display);
    letter-spacing: -0.03em;
}

.stat-preview-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-secondary);
}

/* Responsive for About Page */
@media (max-width: 1024px) {
    .professions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .about-hero-section {
        padding: var(--spacing-2xl) 0;
        min-height: auto;
    }
    
    .for-whom-section,
    .features-detailed-section,
    .benefits-section {
        padding: var(--spacing-2xl) 0;
    }
    
    .professions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .profession-card {
        padding: var(--spacing-lg);
    }
    
    .features-detailed-list {
        gap: 32px;
    }
    
    .feature-detailed-item {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-lg);
    }

    .feature-detailed-icon {
        margin: 0 auto;
    }

    .stats-preview {
        grid-template-columns: 1fr;
    }

    .stat-preview-item:nth-child(3) {
        grid-column: 1;
    }
}

@media (max-width: 480px) {
    .feature-detailed-title {
        font-size: 22px;
    }
    
    .benefits-title {
        font-size: 32px;
    }
    
    .stat-preview-value {
        font-size: 40px;
    }
}

/* ===================================
   Bootstrap Overrides for Legal Pages
   =================================== */

.shadow-apple {
    box-shadow: none;
}

/* Ensure Bootstrap cards work with our color scheme */
.card {
    border: 1px solid var(--color-border);
}

.card-body {
    color: var(--color-text-primary);
}

.card-body h1 {
    color: var(--color-text-primary);
    font-weight: 700;
}

.card-body h2.h4 {
    color: var(--color-text-primary);
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.card-body p {
    color: var(--color-text-primary);
    line-height: 1.7;
}

.card-body ul, .card-body ol {
    color: var(--color-text-primary);
    line-height: 1.8;
}

.card-body a {
    color: var(--color-primary);
    text-decoration: none;
}

.card-body a:hover {
    color: var(--color-primary-hover);
    text-decoration: underline;
}

.privacy-content, .oferta-content {
    color: var(--color-text-primary);
}
