/* ===============================
   AKUENA — Landing styles (standalone)
   =============================== */

/* ---- Design tokens ---- */
:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --bg: #ffffff;
    --card: #ffffff;
    --text: #0f172a;
    --muted: #475569;
    --border: #e5e7eb;
    --radius: 10px;
    --maxw: 1200px;
    --nav-h: 64px;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    --gradient-hero: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    --gradient-card: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --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);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: .2s color;
}

a:hover {
    color: var(--primary-dark);
}

.btn {
    display: inline-block;
    padding: .65rem 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    border: 2px solid transparent;
    background: var(--primary);
    color: #fff;
    transition: .2s background, .2s color, .2s border-color;
}

.btn:hover {
    background: var(--primary-dark);
}

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

.btn.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: #fff;
    border-color: var(--primary-dark);
}

/* =========================================================
   HEADER (NAVBAR): logo | auth-link | burger  (mobile)
   header: logo | menu (incl. auth-inline)                 (desktop)
   ========================================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: #fff;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 .75rem;
    gap: .5rem;
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
}

/* mobile auth link: visible only <=768px */
.auth-link {
    display: inline-block;
    font-weight: 700;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 10px;
    padding: .4rem .7rem;
}

/* burger */
.nav-toggle {
    display: none;
    font-size: 1.7rem;
    line-height: 1;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: .25rem .5rem;
}

/* main nav */
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-links a {
    color: var(--text);
    font-weight: 600;
}

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

/* desktop-only inline auth button */
.nav-links .auth-inline {
    display: none;
}

/* ---------- Mobile layout ---------- */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .auth-link {
        display: inline-block;
    }

    /* show */
    .nav-links .auth-inline {
        display: none;
    }

    /* hide */
    .nav-links {
        position: fixed;
        right: 0;
        top: var(--nav-h);
        height: calc(100vh - var(--nav-h));
        width: 260px;
        background: #fff;
        border-left: 1px solid var(--border);
        box-shadow: -10px 0 25px rgba(0, 0, 0, .06);
        transform: translateX(100%);
        transition: .3s transform;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 1.25rem;
        gap: 1rem;
        z-index: 999;
    }

    .nav-links.open {
        transform: translateX(0);
    }
}

/* ---------- Desktop layout ---------- */
@media (min-width: 769px) {
    .auth-link {
        display: none;
    }

    /* hide mobile link */
    .nav-links .auth-inline {
        display: inline-block;
    }

    /* show inline */
}

/* ======== Sections spacing ======== */
main {
    padding-top: calc(var(--nav-h) + 2rem);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
    display: block;
    padding: 0;
    margin: 0;
    margin-top: -64px;
    padding-top: 64px;
    background: 
        radial-gradient(ellipse at top left, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(147, 51, 234, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #fafbfc 0%, #f1f5f9 100%);
    border-radius: 0;
    box-shadow: none;
    border: none;
    width: 100%;
}

/* Hero Header */
.hero-header {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
    text-align: center;
}

.hero-header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.6;
}

/* Hero Image Full Width */
.hero-image-full {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-full .comparison-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.hero-image-full .comparison-image:hover {
    transform: scale(1.02);
}

/* Hero Footer */
.hero-footer {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem 1rem 4rem;
    text-align: center;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-size: 1rem;
    color: var(--muted);
    font-weight: 600;
}

.stat-item {
    display: inline-block;
}

.stat-divider {
    color: var(--border);
    font-weight: 400;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .hero {
        background: linear-gradient(135deg, #fafbfc 0%, #f1f5f9 100%);
        margin-top: -64px;
        padding-top: 64px;
    }
    
    .hero-header {
        padding: 0.5rem 1rem 1rem;
    }
    
    .hero-header h1 {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-image-full {
        padding: 1rem 0.5rem;
        max-width: 100%;
    }
    
    .hero-image-full .comparison-image {
        width: 100%;
    }
    
    .hero-footer {
        padding: 1rem 1rem 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .stat-divider {
        display: none;
    }
}

/* Дополнительные эффекты для премиальности */
.hero {
    position: relative;
    overflow: hidden;
}

/* Тонкая анимация свечения */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    animation: hero-pulse 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes hero-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* =========================================================
   TESTIMONIALS (modern responsive carousel)
   ========================================================= */
.testimonials {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 50%, #cbd5e1 100%);
    padding: 4rem 1rem;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 48%, rgba(16, 185, 129, 0.03) 49%, rgba(16, 185, 129, 0.03) 51%, transparent 52%),
                linear-gradient(-45deg, transparent 48%, rgba(59, 130, 246, 0.03) 49%, rgba(59, 130, 246, 0.03) 51%, transparent 52%);
    background-size: 60px 60px, 80px 80px;
    background-position: 0 0, 30px 30px;
    pointer-events: none;
    opacity: 0.6;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--text);
    position: relative;
    z-index: 1;
}

.testimonial-carousel {
    position: relative;
    max-width: var(--maxw);
    margin: 0 auto;
    overflow: visible;
    padding: 0 2rem;
}

.testimonial-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: #fff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

/* Enhanced visibility for desktop */
@media (min-width: 768px) {
    .testimonial-btn {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
        border-width: 3px;
    }
}

.testimonial-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.3);
}

.testimonial-btn:focus {
    outline: 3px solid rgba(37, 99, 235, 0.3);
    outline-offset: 2px;
}

.testimonial-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.testimonial-carousel .prev {
    left: -50px;
}

.testimonial-carousel .next {
    right: -50px;
}

.testimonial-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin: 0 2rem;
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    flex: 0 0 100%;
    max-width: 380px;
    min-width: 320px;
    scroll-snap-align: center;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-avatar {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.avatar-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.testimonial-card:hover .avatar-circle {
    transform: scale(1.1);
}

.testimonial-content {
    position: relative;
}

.testimonial-content .stars {
    color: #fbbf24;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.2rem;
}

.testimonial-content .quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.author {
    font-weight: 700;
    color: var(--text);
    font-size: 1.1rem;
}

.author-role {
    font-size: 0.9rem;
    color: var(--muted);
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.read-more:hover {
    color: var(--primary-dark);
    transform: translateX(3px);
}

/* Desktop: Show 3 cards */
@media (min-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(33.333% - 1rem);
        max-width: 350px;
    }
    
    .testimonial-carousel {
        padding: 0 4rem;
    }
    
    .testimonial-track {
        margin: 0 3rem;
    }
    
    .testimonial-carousel .prev {
        left: -60px;
    }
    
    .testimonial-carousel .next {
        right: -60px;
    }
}

/* Tablet: Show 2 cards */
@media (min-width: 768px) and (max-width: 1023px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 0.75rem);
        max-width: 400px;
    }
    
    .testimonial-carousel {
        padding: 0 3rem;
    }
    
    .testimonial-track {
        margin: 0 2rem;
    }
    
    .testimonial-carousel .prev {
        left: -45px;
    }
    
    .testimonial-carousel .next {
        right: -45px;
    }
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .testimonials {
        padding: 3rem 1rem;
    }
    
    .testimonials h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        min-width: 280px;
    }
    
    .testimonial-carousel {
        padding: 0 2rem;
    }
    
    .testimonial-track {
        margin: 0 0.5rem;
    }
    
    .testimonial-carousel .prev {
        left: -10px;
        top: 50%;
    }
    
    .testimonial-carousel .next {
        right: -10px;
        top: 50%;
    }
    
    .testimonial-btn {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
        box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
    }
    
    .avatar-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .testimonial-content .quote {
        font-size: 1rem;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .testimonial-card {
        min-width: 260px;
        padding: 1.2rem;
    }
    
    .testimonial-content .quote {
        font-size: 0.95rem;
    }
    
    .testimonial-carousel {
        padding: 0 1.5rem;
    }
    
    .testimonial-track {
        margin: 0 0.2rem;
    }
    
    .testimonial-carousel .prev {
        left: -5px;
        top: 50%;
    }
    
    .testimonial-carousel .next {
        right: -5px;
        top: 50%;
    }
    
    .testimonial-btn {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
}

/* =========================================================
   SERVICES HERO - Beautiful Cards with Gradients
   ========================================================= */
.services-hero {
    padding: 4rem 1rem;
    background: linear-gradient(180deg, #c5d5f5 0%, #dac5f5 100%);
    position: relative;
    overflow: hidden;
}

/* Sparkles effect layer 1 */
.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Мелкие звездочки */
        radial-gradient(circle, rgba(255, 255, 255, 0.8) 0.3px, transparent 0.3px),
        radial-gradient(circle, rgba(255, 255, 255, 0.6) 0.5px, transparent 0.5px),
        radial-gradient(circle, rgba(255, 255, 255, 0.9) 0.2px, transparent 0.2px),
        radial-gradient(circle, rgba(255, 255, 255, 0.7) 0.4px, transparent 0.4px),
        radial-gradient(circle, rgba(255, 255, 255, 0.5) 0.3px, transparent 0.3px),
        radial-gradient(circle, rgba(255, 255, 255, 0.8) 0.2px, transparent 0.2px),
        radial-gradient(circle, rgba(255, 255, 255, 0.6) 0.4px, transparent 0.4px),
        radial-gradient(circle, rgba(255, 255, 255, 0.9) 0.3px, transparent 0.3px),
        /* Световые пятна */
        radial-gradient(ellipse, rgba(255, 255, 255, 0.2) 8px, transparent 8px),
        radial-gradient(ellipse, rgba(255, 255, 255, 0.15) 6px, transparent 6px),
        radial-gradient(ellipse, rgba(255, 255, 255, 0.25) 10px, transparent 10px);
    background-size: 80px 80px, 100px 100px, 60px 60px, 90px 90px, 70px 70px, 50px 50px, 85px 85px, 75px 75px, 200px 200px, 150px 150px, 250px 250px;
    background-position: 20px 30px, 80px 100px, 150px 50px, 200px 150px, 50px 200px, 120px 80px, 180px 120px, 250px 180px, 100px 250px, 300px 100px, 50px 300px;
    animation: sparkle-twinkle 3s ease-in-out infinite;
    pointer-events: none;
    opacity: 0.6;
    z-index: 0;
}

/* Sparkles effect layer 2 */
.services-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Мелкие звездочки */
        radial-gradient(circle, rgba(255, 255, 255, 0.5) 0.2px, transparent 0.2px),
        radial-gradient(circle, rgba(255, 255, 255, 0.7) 0.3px, transparent 0.3px),
        radial-gradient(circle, rgba(255, 255, 255, 0.4) 0.25px, transparent 0.25px),
        radial-gradient(circle, rgba(255, 255, 255, 0.6) 0.35px, transparent 0.35px),
        radial-gradient(circle, rgba(255, 255, 255, 0.8) 0.2px, transparent 0.2px),
        radial-gradient(circle, rgba(255, 255, 255, 0.3) 0.4px, transparent 0.4px),
        radial-gradient(circle, rgba(255, 255, 255, 0.9) 0.15px, transparent 0.15px),
        radial-gradient(circle, rgba(255, 255, 255, 0.6) 0.3px, transparent 0.3px),
        /* Световые элементы */
        radial-gradient(ellipse, rgba(255, 255, 255, 0.1) 12px, transparent 12px),
        radial-gradient(ellipse, rgba(255, 255, 255, 0.15) 8px, transparent 8px),
        /* Декоративные линии */
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.05) 49%, rgba(255, 255, 255, 0.05) 51%, transparent 52%);
    background-size: 60px 60px, 80px 80px, 70px 70px, 90px 90px, 50px 50px, 100px 100px, 40px 40px, 75px 75px, 180px 180px, 120px 120px, 150px 1px;
    background-position: 30px 70px, 100px 20px, 170px 100px, 240px 50px, 50px 150px, 200px 200px, 120px 250px, 280px 120px, 80px 200px, 250px 80px, 150px 150px;
    animation: sparkle-twinkle 4s ease-in-out infinite reverse;
    pointer-events: none;
    opacity: 0.5;
    z-index: 0;
}

@keyframes sparkle-twinkle {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
}

.services-hero-container {
    max-width: var(--maxw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

/* Дополнительный слой частиц - только в левой части */
.services-hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    bottom: 0;
    background-image: 
        /* Мелкие световые точки */
        radial-gradient(circle, rgba(255, 255, 255, 0.6) 0.15px, transparent 0.15px),
        radial-gradient(circle, rgba(255, 255, 255, 0.4) 0.1px, transparent 0.1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.8) 0.2px, transparent 0.2px),
        radial-gradient(circle, rgba(255, 255, 255, 0.5) 0.12px, transparent 0.12px),
        radial-gradient(circle, rgba(255, 255, 255, 0.7) 0.18px, transparent 0.18px),
        radial-gradient(circle, rgba(255, 255, 255, 0.3) 0.25px, transparent 0.25px),
        radial-gradient(circle, rgba(255, 255, 255, 0.9) 0.08px, transparent 0.08px),
        radial-gradient(circle, rgba(255, 255, 255, 0.6) 0.16px, transparent 0.16px),
        radial-gradient(circle, rgba(255, 255, 255, 0.4) 0.14px, transparent 0.14px),
        radial-gradient(circle, rgba(255, 255, 255, 0.8) 0.11px, transparent 0.11px),
        /* Световые пятна */
        radial-gradient(ellipse, rgba(255, 255, 255, 0.08) 15px, transparent 15px),
        radial-gradient(ellipse, rgba(255, 255, 255, 0.12) 10px, transparent 10px),
        /* Дополнительные линии */
        linear-gradient(135deg, transparent 47%, rgba(255, 255, 255, 0.04) 48%, rgba(255, 255, 255, 0.04) 52%, transparent 53%);
    background-size: 40px 40px, 30px 30px, 50px 50px, 35px 35px, 45px 45px, 60px 60px, 25px 25px, 42px 42px, 38px 38px, 28px 28px, 120px 120px, 80px 80px, 100px 1px;
    background-position: 10px 20px, 40px 60px, 80px 30px, 120px 80px, 20px 100px, 90px 20px, 50px 50px, 110px 70px, 30px 90px, 70px 40px, 15px 120px, 85px 50px, 60px 60px;
    animation: sparkle-twinkle 5s ease-in-out infinite;
    pointer-events: none;
    opacity: 0.7;
    z-index: 0;
}

.services-hero-text {
    flex: 1;
}

/* Title with decoration */
.title-wrapper {
    margin-bottom: 2.5rem;
}

.title-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.title-decoration {
    width: 90%;
    height: 4px;
    background: linear-gradient(90deg, #2563eb 0%, #7c3aed 100%);
    border-radius: 2px;
}

/* Grid of service cards */
.services-hero-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

/* Уменьшенные карточки для веб-версии */
@media (min-width: 769px) {
    .service-card {
        padding: 0.6rem 0.8rem;
        gap: 0.6rem;
    }
    
    .service-icon {
        font-size: 1.2rem;
        width: 32px;
        height: 32px;
    }
    
    .service-text {
        font-size: 0.85rem;
        line-height: 1.2;
    }
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
    border-color: #e0e7ff;
}

.service-icon {
    font-size: 1.75rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dbeafe 0%, #e9d5ff 100%);
    border-radius: 10px;
    flex-shrink: 0;
}

.service-text {
    font-size: 1.05rem;
    color: var(--text);
    font-weight: 600;
    line-height: 1.4;
}

/* Компактная карточка для длинного текста */
.service-card-compact {
    padding: 0.8rem 1rem;
}

.service-card-compact .service-text {
    font-size: 0.9rem;
    line-height: 1.3;
}

/* Дополнительное уменьшение для компактной карточки на веб */
@media (min-width: 769px) {
    .service-card-compact {
        padding: 0.5rem 0.6rem;
    }
    
    .service-card-compact .service-text {
        font-size: 0.75rem;
        line-height: 1.1;
    }
}

/* Highlighted keywords */
.highlight {
    color: #2563eb;
    font-weight: 700;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* Responsive Design */
@media (max-width: 968px) {
    .services-hero-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .title-wrapper {
        text-align: center;
    }
    
    .title-wrapper h2 {
        font-size: 2rem;
    }
    
    .title-decoration {
        width: 100%;
        margin: 0 auto;
    }
    
    .services-hero-grid {
        grid-template-columns: 1fr;
    }
    
    /* Pricing responsive */
    .trial-banner {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .trial-banner h3 {
        font-size: 1.5rem;
    }
    
    .pricing-plans {
        flex-direction: column;
        align-items: center;
    }
    
    .plan {
        max-width: 100%;
        width: 100%;
    }
    
    .plan.featured {
        transform: none;
    }
    
    /* Pricing responsive */
    .features-container {
        padding: 1.5rem 1.2rem;
        margin: 0 1rem;
    }
    
    .features-container h3 {
        font-size: 1.1rem;
    }
    
    .pricing-features {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .feature-item {
        font-size: 0.85rem;
        padding: 0.6rem 0.8rem;
    }
    
    .pricing-plans {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 0 1rem;
        justify-content: flex-start;
    }
    
    .pricing-plans::-webkit-scrollbar {
        height: 4px;
    }
    
    .pricing-plans::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.1);
        border-radius: 2px;
    }
    
    .pricing-plans::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 2px;
    }
    
    .plan {
        flex: 0 0 280px;
        scroll-snap-align: center;
        padding: 0.8rem 1rem;
    }
    
    .plan h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .plan .price {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .price-period {
        font-size: 0.9rem;
    }
    
    .plan-note {
        font-size: 0.75rem;
        margin-top: 0.3rem;
    }
    
    .plan.featured {
        transform: none;
    }
    
    .trial-cta {
        margin-top: 2rem;
    }
    
    .services-hero-image {
        order: -1;
    }
    
    .services-hero-image img {
        max-width: 400px;
    }
}

@media (max-width: 640px) {
    .services-hero {
        padding: 2.5rem 1rem;
    }
    
    .title-wrapper {
        margin-bottom: 1.5rem;
    }
    
    .title-wrapper h2 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .services-hero-grid {
        gap: 0.6rem;
    }
    
    .service-card {
        padding: 0.65rem 0.85rem;
        gap: 0.65rem;
    }
    
    .service-icon {
        font-size: 1.35rem;
        width: 38px;
        height: 38px;
    }
    
    .service-text {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .services-hero-image img {
        max-width: 100%;
    }
}

/* =========================================================
   PRICING
   ========================================================= */
.pricing {
    background: linear-gradient(135deg, #e0e7ff 0%, #f0f4ff 100%);
    padding: 4rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Beautiful gradient overlay for pricing section */
.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
    z-index: 0;
}

/* Animated sparkles effect */
.pricing::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle, rgba(59, 130, 246, 0.3) 0.5px, transparent 0.5px),
        radial-gradient(circle, rgba(16, 185, 129, 0.2) 0.3px, transparent 0.3px),
        radial-gradient(circle, rgba(139, 92, 246, 0.25) 0.2px, transparent 0.2px);
    background-size: 120px 120px, 80px 80px, 60px 60px;
    background-position: 0 0, 40px 40px, 80px 80px;
    animation: sparkle-float 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes sparkle-float {
    0%, 100% { 
        opacity: 0.3;
        transform: translateY(0px);
    }
    50% { 
        opacity: 0.8;
        transform: translateY(-10px);
    }
}

.pricing h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    color: var(--text);
    font-weight: 800;
}

/* Pricing Description */
.pricing-description {
    margin: 3rem 0;
    position: relative;
    z-index: 1;
}

.features-container {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    padding: 1.8rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    max-width: 550px;
    margin: 0 auto;
    border: 2px solid rgba(37, 99, 235, 0.2);
    position: relative;
    overflow: hidden;
}

.features-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #3b82f6, #8b5cf6, #f59e0b);
}

.features-container h3 {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 800;
    position: relative;
}

.pricing-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    max-width: 400px;
    margin: 0 auto;
}

.feature-item {
    color: var(--text);
    font-weight: 700;
    font-size: 0.9rem;
    background: white;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* Trial CTA */
.trial-cta {
    margin-top: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.trial-note {
    color: var(--muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* White button for trial CTA */
.btn-white {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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


/* Pricing Plans */
.pricing-plans {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: var(--maxw);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.plan {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.2rem 1.4rem;
    max-width: 320px;
    flex: 1 1 280px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
    transition: all 0.3s ease;
}

.plan:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
}

.plan.featured {
    transform: scale(1.05);
}

/* Colored stripes */
.plan-green {
    border-top: 4px solid #10b981;
}

.plan-orange {
    border-top: 4px solid #f59e0b;
}

.plan-red {
    border-top: 4px solid #ef4444;
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.plan h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.plan .price {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.4rem;
}

.price-period {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--muted);
    margin-left: 0.4rem;
}

.plan-note {
    font-size: 0.9rem;
    color: var(--muted);
    margin-top: 0.4rem;
    text-align: center;
}

/* =========================================================
   TRIAL
   ========================================================= */
.trial {
    padding: 4rem 1rem;
    background: #f9fafb;
}

.trial-inner {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .04);
}

.trial-content {
    flex: 1 1 55%;
}

.trial-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.trial-content p {
    color: var(--muted);
    margin-bottom: 1rem;
}

.trial-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.trial-list li {
    color: var(--muted);
}

.trial-list .check {
    color: #10b981;
    font-weight: 800;
    margin-right: .4rem;
}

.trial-cta {
    flex: 1 1 30%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
}

.trial-price {
    font-size: 2.3rem;
    color: var(--primary);
    font-weight: 800;
}


/* =========================================================
   FAQ (accordion; JS toggles .open) - Enhanced Premium Styling
   ========================================================= */
.faq {
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 50%, #cbd5e1 100%);
    padding: 4rem 1rem;
    max-width: 100%;
    margin: 0 auto;
    scroll-margin-top: calc(var(--nav-h) + 1rem);
    position: relative;
    overflow: hidden;
}

/* Decorative sparkle effects layer 1 */
.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Decorative sparkle effects layer 2 */
.faq::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle, rgba(59, 130, 246, 0.3) 0.5px, transparent 0.5px),
        radial-gradient(circle, rgba(16, 185, 129, 0.2) 0.3px, transparent 0.3px),
        radial-gradient(circle, rgba(139, 92, 246, 0.25) 0.2px, transparent 0.2px);
    background-size: 120px 120px, 80px 80px, 60px 60px;
    background-position: 0 0, 40px 40px, 80px 80px;
    animation: sparkle-float 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes sparkle-float {
    0%, 100% { 
        opacity: 0.3;
        transform: translateY(0px);
    }
    50% { 
        opacity: 0.8;
        transform: translateY(-10px);
    }
}

.faq-content {
    max-width: var(--maxw);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    position: relative;
    z-index: 1;
}

/* Decorative underline for FAQ heading */
.faq h2::after {
    content: '';
    display: block;
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb 0%, #7c3aed 100%);
    border-radius: 2px;
    margin: 1rem auto 0;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

/* Gradient top border for FAQ items */
.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #3b82f6, #8b5cf6, #f59e0b);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item button.question {
    width: 100%;
    text-align: left;
    border: none;
    background: transparent;
    padding: 1.25rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-item button.question:hover {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: var(--primary);
}

.faq-item button.question:focus {
    outline: 3px solid rgba(37, 99, 235, 0.3);
    outline-offset: -3px;
}

.faq-item button.question::after {
    content: '+';
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 300;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
}

.faq-item button.question:hover::after {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.faq-item.open button.question::after {
    transform: rotate(45deg);
    background: var(--primary);
    color: white;
}

.faq-item .answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.faq-item.open .answer {
    max-height: 500px;
    padding: 1.5rem;
}

.faq-item .answer p {
    color: var(--muted);
    line-height: 1.6;
    font-size: 1rem;
}

.faq-item .answer a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-item .answer a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* =========================================================
   FAQ RESPONSIVE DESIGN
   ========================================================= */
@media (max-width: 768px) {
    .faq {
        padding: 2.5rem 1rem;
    }
    
    .faq h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .faq h2::after {
        width: 60px;
        height: 3px;
    }
    
    .faq-item {
        margin-bottom: 0.8rem;
        border-radius: 12px;
    }
    
    .faq-item button.question {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
    
    .faq-item button.question::after {
        width: 28px;
        height: 28px;
        font-size: 1.5rem;
    }
    
    .faq-item .answer {
        padding: 0 1.25rem;
    }
    
    .faq-item.open .answer {
        padding: 1.25rem;
    }
    
    .faq-item .answer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 640px) {
    .faq {
        padding: 2.25rem 0.875rem;
    }
    
    .faq h2 {
        font-size: 1.6rem;
        margin-bottom: 1.35rem;
    }
    
    .faq h2::after {
        width: 55px;
        height: 2.5px;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 2rem 0.75rem;
    }
    
    .faq h2 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .faq h2::after {
        width: 50px;
        height: 2px;
    }
    
    .faq-item button.question {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .faq-item button.question::after {
        width: 26px;
        height: 26px;
        font-size: 1.3rem;
    }
    
    .faq-item .answer {
        padding: 0 1rem;
    }
    
    .faq-item.open .answer {
        padding: 1rem;
    }
    
    .faq-item .answer p {
        font-size: 0.9rem;
    }
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 3rem 1rem;
    color: var(--muted);
    font-size: .95rem;
}

.footer-container {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    gap: 2rem;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
}

.footer-brand strong {
    color: var(--primary);
    font-size: 1.1rem;
}

.footer-links h3, .footer-info h3 {
    color: var(--text);
    margin-bottom: .5rem;
    font-size: 1rem;
}

.footer-links ul, .footer-info ul {
    list-style: none;
}

.footer-links li, .footer-info li {
    margin-bottom: .45rem;
}

.footer-links a, .footer-info a {
    color: var(--muted);
}

.footer-links a:hover, .footer-info a:hover {
    color: var(--primary);
}

/* =========================================================
   MOBILE BOTTOM NAV (optional)
   ========================================================= */
.mobile-nav {
    display: none;
}

@media (max-width: 767px) {
    .mobile-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1000;
        background: #fff;
        border-top: 1px solid var(--border);
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: .5rem 0;
    }

    .mobile-nav a {
        color: var(--muted);
        font-size: .8rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: .2rem;
    }

    .mobile-nav a .icon {
        font-size: 1.3rem;
    }
}

/* =========================================================
   Anchor offset so sections aren't hidden behind fixed header
   ========================================================= */
.hero, .testimonials, .services-hero, .pricing, .trial, .faq {
    scroll-margin-top: calc(var(--nav-h) + 12px);
}

/* =========================================================
   NEW SECTIONS STYLES
   ========================================================= */

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
    position: relative;
    z-index: 2;
}

.badge-icon {
    font-size: 1rem;
}

/* Button Large */
.btn-large {
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Анимированный glow эффект для кнопки */
.btn-glow {
  position: relative;
  background: linear-gradient(135deg, #007bff 0%, #00d4ff 50%, #007bff 100%);
  background-size: 200% 200%;
  border: 2px solid rgba(52, 131, 229, 0.6);
  box-shadow: 
    0 4px 15px rgba(0, 123, 255, 0.4),
    0 0 20px rgba(0, 123, 255, 0.6),
    0 0 40px rgba(0, 123, 255, 0.3);
  animation: 
    pulse-glow 2s infinite,
    gradient-shift 3s ease-in-out infinite;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: -0.25px;
  left: -0.25px;
  right: -0.25px;
  bottom: -0.25px;
  background: linear-gradient(135deg, #60a5fa, #93c5fd, #60a5fa, #3b82f6);
  border-radius: inherit;
  z-index: -1;
  animation: rotate-glow 4s linear infinite;
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 6px 25px rgba(0, 123, 255, 0.7),
    0 0 40px rgba(0, 123, 255, 1),
    0 0 80px rgba(0, 123, 255, 0.6);
  background: linear-gradient(135deg, #0056b3 0%, #007bff 50%, #00d4ff 100%);
}

@keyframes pulse-glow {
  0% {
    box-shadow: 
      0 4px 15px rgba(0, 123, 255, 0.4),
      0 0 20px rgba(0, 123, 255, 0.6),
      0 0 40px rgba(0, 123, 255, 0.3);
  }
  50% {
    box-shadow: 
      0 4px 20px rgba(0, 123, 255, 0.6),
      0 0 30px rgba(0, 123, 255, 0.8),
      0 0 60px rgba(0, 123, 255, 0.5);
  }
  100% {
    box-shadow: 
      0 4px 15px rgba(0, 123, 255, 0.4),
      0 0 20px rgba(0, 123, 255, 0.6),
      0 0 40px rgba(0, 123, 255, 0.3);
  }
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

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

/* Подпись под кнопкой */
.hero-cta-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #64748b;
  text-align: center;
  font-weight: 400;
  opacity: 0.8;
  display: block;
  width: 100%;
}

@media (max-width: 768px) {
  /* Улучшенная кнопка для мобильных */
  .btn-glow {
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
  
  .hero-cta-note {
    font-size: 0.8rem;
    margin-top: 0.5rem;
  }
}







/* Testimonials Updates */
.testimonial-avatar {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.author {
    font-weight: 700;
    color: var(--text);
}

.author-location {
    font-size: 0.875rem;
    color: var(--muted);
}


/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .comparison-image {
        max-width: 90%;
    }
    
    
}