/* Modern Easymaz Styles */
:root {
    /* Colors */
    --primary: #FF6B35;
    --primary-dark: #E55A30;
    --primary-light: #FF8A65;
    --secondary: #2E86AB;
    --accent: #A23B72;
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;

    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --black: #000000;

    /* Typography */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Borders */
    --radius-sm: 0.25rem;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

    /* Transitions */
    --transition-fast: all 0.15s ease;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;

    /* Layout */
    --container-max: 1200px;
    --container-padding: var(--space-6);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-hero: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--secondary) 100%);
    --gradient-overlay: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Stable Animation System - Fixed to show content by default */
.feature-card,
.step,
.pricing-card,
.contact-card {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease-out;
}

/* Animation enhancement (optional) */
.feature-card.animate-in,
.step.animate-in,
.pricing-card.animate-in,
.contact-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Language System - Improved Display Handling */
.lang-am,
.lang-en {
    transition: all 0.2s ease-in-out;
}

/* IMPORTANT: Show English by default - inherit display from parent */
.lang-en {
    display: inherit !important;
}

.lang-am {
    display: none !important;
}

/* Special cases for specific layouts */
.section-title .lang-en,
.section-description .lang-en,
.feature-card .lang-en {
    display: block !important;
}

.nav-link .lang-en,
.btn .lang-en,
.card-text .lang-en {
    display: inline !important;
}

/* Only when explicitly set to Amharic */
html[data-lang="am"] .lang-am {
    display: inherit !important;
}

html[data-lang="am"] .lang-en {
    display: none !important;
}

/* Special cases for Amharic */
html[data-lang="am"] .section-title .lang-am,
html[data-lang="am"] .section-description .lang-am,
html[data-lang="am"] .feature-card .lang-am {
    display: block !important;
}

html[data-lang="am"] .nav-link .lang-am,
html[data-lang="am"] .btn .lang-am,
html[data-lang="am"] .card-text .lang-am {
    display: inline !important;
}

/* Containers */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-weight: 500;
    font-size: var(--text-base);
    border-radius: var(--radius-xl);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

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

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

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

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gray-800);
    border: 2px solid var(--gray-200);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--white);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}

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

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

.btn-hero {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
    font-weight: 600;
}

.btn-nav {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
}

.btn-icon {
    transition: var(--transition-fast);
}

.btn:hover .btn-icon {
    transform: translateX(2px);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) var(--container-padding);
    max-width: var(--container-max);
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-lg);
}

.nav-logo-link {
    display: inline-block;
    transition: var(--transition);
    border-radius: var(--radius-lg);
}

.nav-logo-link:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.nav-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--gray-800);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-link {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

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

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

.nav-link:hover::after {
    width: 100%;
}

.lang-toggle {
    background: var(--gray-100);
    color: var(--gray-600);
    border: none;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius);
    font-size: var(--text-sm);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lang-toggle:hover {
    background: var(--primary);
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

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

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

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    opacity: 0.05;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(46, 134, 171, 0.1) 0%, transparent 50%);
    /* Removed problematic float animation */
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    padding: var(--space-32) var(--container-padding);
    max-width: var(--container-max);
    margin: 0 auto;
}

.hero-content {
    /* Removed animation for stability */
}

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

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: var(--space-6);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.hero-title {
    font-size: var(--text-6xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-6);
    color: var(--gray-900);
}

.hero-accent {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Simplified: static gradient without animation */
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-description {
    font-size: var(--text-xl);
    color: var(--gray-600);
    margin-bottom: var(--space-8);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-12);
}

.hero-stats {
    display: flex;
    gap: var(--space-8);
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--gray-600);
    margin-top: var(--space-1);
}

.hero-visual {
    position: relative;
    /* Removed animation for stability */
}

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

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.phone-frame {
    width: 300px;
    height: 600px;
    background: var(--gray-900);
    border-radius: 40px;
    padding: 20px;
    box-shadow: var(--shadow-2xl);
    position: relative;
    margin: 0 auto;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    background-image: url('assets/cafe-menu-screen.png');
    background-size: 90%;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.qr-demo {
    position: relative;
    opacity: 0;
    pointer-events: none;
}

.qr-code {
    width: 150px;
    height: 150px;
    background: var(--gray-900);
    border-radius: var(--radius-lg);
    position: relative;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 10px, var(--white) 10px, var(--white) 20px),
        repeating-linear-gradient(90deg, transparent, transparent 10px, var(--white) 10px, var(--white) 20px);
}

.qr-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.5;
    }
}

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

.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-4);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    border: 1px solid var(--gray-200);
    backdrop-filter: blur(10px);
}

.card-1 {
    top: 10%;
    left: -10%;
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    top: 60%;
    right: -15%;
    animation: float 6s ease-in-out infinite 2s;
}

.card-3 {
    bottom: 20%;
    left: -20%;
    animation: float 6s ease-in-out infinite 4s;
}

.card-icon {
    font-size: var(--text-2xl);
}

.card-text {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--gray-700);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: var(--white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-6);
    line-height: 1.2;
}

.section-description {
    font-size: var(--text-xl);
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Features Section */
.features {
    padding: var(--space-32) 0;
    background: var(--gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
    /* Keep forced visibility */
    transform: none !important;
    /* Keep no transforms */
}

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

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

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

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: var(--space-6);
}

.feature-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
}

.feature-description {
    color: var(--gray-600);
    line-height: 1.7;
}

/* How it Works Section */
.how-it-works {
    padding: var(--space-32) 0;
}

.steps-container {
    display: grid;
    gap: var(--space-20);
}

.step {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--space-8);
    align-items: center;
    opacity: 1 !important;
    /* Ensure visibility */
    transform: translateY(0) !important;
    /* Reset any transforms */
}

.step-reverse {
    grid-template-columns: auto 1fr auto;
}

.step-reverse .step-content {
    order: 1;
    text-align: right;
}

.step-reverse .step-number {
    order: 2;
}

.step-reverse .step-visual {
    order: 0;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    font-weight: 800;
    box-shadow: var(--shadow-lg);
}

.step-content {
    max-width: 400px;
}

.step-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
}

.step-description {
    color: var(--gray-600);
    line-height: 1.7;
}

.step-visual {
    width: 200px;
    height: 200px;
    background: var(--gray-100);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.qr-animation,
.order-animation,
.payment-animation {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Pricing Section */
.pricing {
    padding: var(--space-32) 0;
    background: var(--gray-50);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow);
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
    /* Ensure visibility */
    transform: translateY(0) !important;
    /* Reset any transforms */
}

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

.pricing-featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.pricing-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
}

.pricing-badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: var(--primary);
    color: var(--white);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-full);
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    z-index: 10;
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.pricing-name {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--space-1);
    margin-bottom: var(--space-2);
}

.price-amount {
    font-size: var(--text-5xl);
    font-weight: 800;
    color: var(--primary);
}

.price-currency {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--gray-700);
}

.price-period {
    font-size: var(--text-base);
    color: var(--gray-600);
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--space-8);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--gray-100);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-check {
    color: var(--success);
    flex-shrink: 0;
}

.pricing-btn {
    width: 100%;
}

/* Contact Section */
.contact {
    padding: var(--space-32) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: start;
}

.contact-info {
    display: grid;
    gap: var(--space-6);
}

.contact-card {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-6);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    opacity: 1 !important;
    /* Ensure visibility */
    transform: translateY(0) !important;
    /* Reset any transforms */
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-1);
}

.contact-text {
    color: var(--gray-600);
    font-weight: 500;
}

.telegram-widget {
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.telegram-chat {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.telegram-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-6);
    background: linear-gradient(135deg, #0088cc, #229ED9);
    color: var(--white);
}

.telegram-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.telegram-title {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.telegram-subtitle {
    font-size: var(--text-sm);
    opacity: 0.9;
}

.telegram-body {
    padding: var(--space-6);
    flex: 1;
    background: var(--gray-50);
}

.telegram-message {
    margin-bottom: var(--space-6);
}

.message-bubble {
    background: var(--white);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
    font-size: var(--text-sm);
    line-height: 1.5;
    color: var(--gray-700);
}

.message-bubble::before {
    content: '';
    position: absolute;
    top: 10px;
    left: -8px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid var(--white);
}

.telegram-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
}

.telegram-features .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-3);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.telegram-features .feature-icon {
    font-size: var(--text-xl);
    margin-bottom: var(--space-2);
}

.telegram-features .feature-text {
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--gray-600);
}

.telegram-footer {
    padding: var(--space-6);
    background: var(--white);
    border-top: 1px solid var(--gray-200);
}

.telegram-btn {
    width: 100%;
    justify-content: center;
    gap: var(--space-2);
    background: linear-gradient(135deg, #0088cc, #229ED9);
    border: none;
    transition: var(--transition);
}

.telegram-btn:hover {
    background: linear-gradient(135deg, #0077b3, #1e8bc3);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-16);
    margin-bottom: var(--space-12);
}

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

.footer-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.footer-description {
    color: var(--gray-400);
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
}

.footer-heading {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--white);
}

.footer-list {
    list-style: none;
    display: grid;
    gap: var(--space-2);
}

.footer-link {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: var(--space-8);
    text-align: center;
}

.footer-copyright {
    color: var(--gray-400);
    font-size: var(--text-sm);
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --text-6xl: 2.5rem;
        --text-5xl: 2rem;
        --text-4xl: 1.75rem;
        --container-padding: var(--space-4);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        transition: left 0.3s ease-in-out;
        z-index: 1000;
        padding: var(--space-20) var(--space-6) var(--space-6);
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu .nav-link {
        font-size: var(--text-base);
        font-weight: 500;
        padding: var(--space-4) var(--space-3);
        width: 100%;
        text-align: left;
        border-radius: var(--radius-lg);
        transition: var(--transition);
        margin-bottom: var(--space-2);
        display: block;
    }

    .nav-menu .nav-link:hover {
        background: var(--gray-100);
        color: var(--primary);
    }

    .nav-menu .lang-toggle {
        padding: var(--space-3) var(--space-4);
        font-size: var(--text-sm);
        margin: var(--space-4) 0;
        width: fit-content;
        align-self: flex-start;
    }

    .nav-menu .btn-nav {
        margin-top: var(--space-6);
        width: 100%;
        padding: var(--space-4);
        justify-content: center;
    }

    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-12);
        text-align: center;
        padding: var(--space-20) var(--container-padding);
    }

    .hero-visual {
        order: -1;
    }

    .hero-cards {
        display: none;
    }

    .floating-card {
        position: static;
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
    }

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

    .step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-6);
    }

    .step-reverse .step-content {
        text-align: center;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }

    .telegram-features {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }

    .telegram-header {
        padding: var(--space-4);
    }

    .telegram-body {
        padding: var(--space-4);
    }

    .telegram-footer {
        padding: var(--space-4);
    }

    .pricing-badge {
        top: var(--space-2);
        right: var(--space-2);
        padding: 0.125rem var(--space-1);
        font-size: 0.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
}