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

:root {
    --primary-gradient: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    --primary-color: #6366F1;
    --primary-dark: #4F46E5;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --text-light: #9CA3AF;
    --bg-primary: #FFF;
    --bg-secondary: #F9FAFB;
    --bg-tertiary: #F3F4F6;
    --border-color: #E5E7EB;
    --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

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

.btn-primary, .btn-secondary, .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 15px;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 12px rgba(99,102,241,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99,102,241,0.4);
}

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

.btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--text-light);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

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

/* Coming Soon Badges */
.coming-soon-badge {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    letter-spacing: 0.05em;
    vertical-align: middle;
}

.coming-soon-badge-btn {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #F59E0B;
    color: white;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 6px;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.has-badge {
    position: relative;
}

.has-badge-btn {
    position: relative;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 16px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.logo span {
    text-decoration: none;
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

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

.language-switcher {
    display: flex;
    gap: 4px;
    background: var(--bg-secondary);
    padding: 4px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.lang-btn {
    padding: 6px 12px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s;
}

.lang-btn:hover {
    color: var(--text-primary);
}

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

.mobile-nav-right {
    display: none;
}

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

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, #FAFBFF 0%, #F9FAFB 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

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

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

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

.hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    text-align: center;
}

.stat-icon {
    margin-bottom: 16px;
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    height: 56px;
}

.stat-icon svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.platform-icon {
    font-size: 40px;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
}

.phone-mockup {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 640px;
    background: white;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    border: 12px solid #1F2937;
    overflow: hidden;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #F9FAFB 0%, #FFFFFF 100%);
    padding: 40px 24px;
}

.demo-link-flow {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.flow-step {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    width: 100%;
    text-align: center;
    transition: all 0.6s ease;
    opacity: 0.3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flow-step.active {
    opacity: 1;
    border-color: var(--primary-color);
    box-shadow: 0 8px 16px rgba(99, 102, 241, 0.1);
}

.step-icon {
    width: 36px;
    height: 36px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.step-icon svg {
    width: 32px;
    height: 32px;
}

.step-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.5;
    text-align: center;
}

.flow-arrow {
    font-size: 24px;
    color: var(--primary-color);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

.floating-card {
    position: absolute;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    transform: translateY(-16px);
    animation: float 4.5s ease-in-out infinite;
}

.card-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
}

.card-icon svg {
    width: 24px;
    height: 24px;
}

.card-1 {
    top: 5%;
    left: -5%;
    animation-delay: 0s;
}

.card-2 {
    top: calc(50% - 60px);
    right: -5%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 5%;
    left: -5%;
    animation-delay: 2s;
}

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

/* Features Section */
.features {
    padding: 120px 0;
    background: white;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.feature-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: var(--bg-secondary);
    border-radius: 20px;
    transition: transform 0.4s;
}

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

.feature-icon svg {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.3;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
}

/* Comparison Section */
.comparison {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--border-color);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 16px;
    padding: 32px;
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
    border-bottom: 2px solid var(--border-color);
}

.service-name {
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    color: var(--text-primary);
}

.comparison-header .highlight .service-name {
    color: var(--primary-color);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 16px;
    padding: 28px 32px;
    border-bottom: 1px solid var(--bg-tertiary);
    transition: background 0.3s;
}

.comparison-row:hover {
    background: var(--bg-secondary);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-col {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
    font-size: 15px;
    padding: 0;
    padding-left: 0 !important;
}

.comparison-col.feature-name {
    font-weight: 600;
    color: var(--text-primary);
    padding: 0;
    padding-left: 0 !important;
    text-align: left;
    gap: 0;
}

.comparison-col.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.comparison-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.comparison-icon.success {
    color: #10B981;
}

.comparison-icon.error {
    color: #EF4444;
}

.comparison-icon.warning {
    color: #F59E0B;
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: white;
}

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

.pricing-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 24px;
    padding: 32px 28px;
    transition: all 0.15s;
    position: relative;
}

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

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

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0;
}

.price-currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin: 0 4px;
}

.price-period {
    font-size: 18px;
    color: var(--text-secondary);
}

.pricing-description {
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 0;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--bg-tertiary);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

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

.check-icon {
    width: 18px;
    height: 18px;
    color: #10B981;
    flex-shrink: 0;
}

/* Roadmap Section */
.roadmap {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.roadmap-timeline {
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    width: 3px;
    background: linear-gradient(180deg, #10B981 0%, #6366F1 50%, #E5E7EB 100%);
}

.roadmap-item {
    position: relative;
    padding-left: 48px;
    margin-bottom: 40px;
}

.roadmap-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 28px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--border-color);
}

.roadmap-item.completed::before {
    background: #10B981;
    box-shadow: 0 0 0 2px #10B981;
}

.roadmap-item.in-progress::before {
    background: #6366F1;
    box-shadow: 0 0 0 2px #6366F1;
    animation: pulse 2s infinite;
}

.roadmap-item.planned::before {
    background: white;
    box-shadow: 0 0 0 2px var(--border-color);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 2px #6366F1, 0 0 0 4px rgba(99, 102, 241, 0.2);
    }
    50% {
        box-shadow: 0 0 0 2px #6366F1, 0 0 0 8px rgba(99, 102, 241, 0);
    }
}

.roadmap-status {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    opacity: 0.8;
}

.roadmap-card {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
}

.roadmap-item:hover .roadmap-card {
    transform: translateX(4px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 16px rgba(99, 102, 241, 0.1);
}

.roadmap-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.roadmap-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
    font-size: 15px;
}

.roadmap-date {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
}

.roadmap-cta {
    text-align: center;
    margin-top: 60px;
}

.roadmap-cta-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: white;
}

.contact-content {
    display: flex;
    justify-content: center;
    gap: 0px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.contact-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
}

.contact-details a:hover {
    opacity: 0.8;
}

.contact-details p {
    color: var(--text-secondary);
    font-size: 16px;
    margin: 0;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: var(--primary-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.cta-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-description {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

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

.cta .btn-primary:hover {
    background: var(--bg-secondary);
}

/* Footer */
.footer {
    background: #1F2937;
    color: #D1D5DB;
    padding: 80px 0 32px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.footer-description {
    margin-bottom: 24px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #D1D5DB;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.footer-title {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: #D1D5DB;
    text-decoration: none;
    font-size: 14px;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Mobile Menu Common Styles */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 16px;
    z-index: 100;
    overflow: hidden;
    margin-top: 8px;
}

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

.mobile-menu-links {
    padding: 20px 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-links a {
    padding: 12px 16px;
    border-radius: 8px;
    transition: background 0.2s;
    font-size: 16px;
    color: var(--text-primary);
    text-decoration: none;
}

.mobile-menu-links a:hover {
    background: var(--bg-secondary);
}

.mobile-menu-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0 24px;
}

.mobile-menu-actions {
    padding: 16px 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.mobile-menu-actions a {
    padding: 12px 24px;
    width: 100%;
    max-width: 300px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Responsive Design */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 40px;
    }

    .nav-links, .nav-actions {
        display: none !important;
    }

    .mobile-nav-right {
        display: flex !important;
        align-items: center;
        gap: 16px;
    }

    .mobile-menu-toggle {
        display: flex !important;
        z-index: 101;
    }

    /* Hero Section */
    .hero {
        padding: 100px 0 80px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-content {
        max-width: 700px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 48px;
        line-height: 1.1;
    }

    .hero-description {
        font-size: 18px;
    }

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

    .hero-stats {
        justify-content: center;
        gap: 40px;
    }

    .hero-visual {
        height: 500px;
    }

    .phone-mockup {
        width: 280px;
        height: 560px;
    }

    .floating-card {
        padding: 12px 16px;
        font-size: 13px;
    }

    /* Features */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .feature-card {
        padding: 32px 24px;
    }

    /* Pricing */
    .pricing-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .pricing-card {
        padding: 28px 20px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-name {
        font-size: 18px;
    }

    .price-amount {
        font-size: 36px;
    }

    /* Comparison Table */
    .comparison-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-header,
    .comparison-row {
        min-width: 700px;
    }

    /* Roadmap */
    .roadmap-timeline {
        padding: 0 20px;
    }

    .roadmap-item {
        padding-left: 40px;
    }

    .roadmap-card {
        padding: 24px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-links {
        gap: 32px;
    }

    /* Contact */
    .contact-content {
        gap: 40px;
    }

    .contact-item {
        padding: 28px 20px;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
    }

    /* Sections */
    section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 40px;
    }

    .section-description {
        font-size: 18px;
    }
}

@media (min-width: 600px) and (max-width: 768px) {
    .container {
        padding: 0 32px;
    }

    .nav-links, .nav-actions {
        display: none !important;
    }

    .mobile-nav-right {
        display: flex !important;
        align-items: center;
        gap: 16px;
    }

    .mobile-menu-toggle {
        display: flex !important;
        z-index: 101;
    }

    .hero .container {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

    .contact-content {
        gap: 32px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    * {
        max-width: 100%;
    }

    .container {
        padding: 0 24px;
        max-width: 100vw;
    }

    section {
        overflow-x: hidden;
    }

    .nav-links, .nav-actions {
        display: none !important;
    }

    .mobile-nav-right {
        display: flex !important;
        align-items: center;
        gap: 16px;
    }

    .mobile-menu-toggle {
        display: flex !important;
        z-index: 101;
    }

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

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .comparison {
        overflow: hidden;
    }

    .comparison .container {
        padding: 0 16px;
    }

    .comparison-table {
        margin: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }

    .comparison-header, .comparison-row {
        display: grid;
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
        gap: 8px;
        padding: 14px 12px;
        font-size: 13px;
        align-items: center;
    }

    .comparison-col {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 0;
        min-width: 0;
        word-wrap: break-word;
        justify-content: flex-start;
    }

    .comparison-col.feature-name {
        font-size: 13px;
        font-weight: 600;
        text-align: left;
        padding: 0;
        gap: 0;
        justify-content: flex-start;
    }

    .service-name {
        font-size: 12px;
        font-weight: 600;
        text-align: center;
        width: 100%;
    }

    .comparison-icon {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .comparison-col span {
        font-size: 12px;
        line-height: 1.3;
    }

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

    .contact {
        padding: 60px 0;
    }

    .contact-content {
        flex-direction: column;
        gap: 16px;
    }

    .contact-item {
        padding: 20px 12px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .contact-icon svg {
        width: 24px;
        height: 24px;
    }

    .contact-details h3 {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .contact-details p, .contact-details a {
        font-size: 12px;
    }

    /* Hero Section */
    .hero {
        padding: 80px 0 60px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

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

    .hero-description {
        font-size: 16px;
        margin: 20px 0 28px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        justify-content: center;
        align-items: center;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 36px;
    }

    .stat-item {
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .floating-card {
        display: none;
    }

    /* Sections */
    section {
        padding: 60px 0;
        text-align: center;
    }

    .section-title {
        font-size: 32px;
        text-align: center;
    }

    .section-description {
        font-size: 16px;
        text-align: center;
    }

    /* Features */
    .feature-card {
        padding: 28px 20px;
        text-align: center;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        margin: 0 auto;
    }

    /* Pricing */
    .pricing-card {
        padding: 28px 24px;
        text-align: center;
    }

    /* Roadmap */
    .roadmap-timeline::before {
        left: 0;
    }

    .roadmap-item {
        padding-left: 40px;
    }

    .roadmap-card {
        padding: 20px;
        text-align: center;
    }

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

    .roadmap-cta .btn-primary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    /* Contact */
    .contact {
        padding: 50px 0;
    }

    .contact-content {
        flex-direction: column;
        gap: 12px;
    }

    .contact-item {
        padding: 16px 8px;
    }

    .contact-icon {
        width: 36px;
        height: 36px;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-details h3 {
        font-size: 12px;
    }

    .contact-details p,
    .contact-details a {
        font-size: 11px;
    }

    /* Footer */
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }

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

    .cta-title {
        font-size: 36px;
        text-align: center;
    }

    .cta-description {
        font-size: 18px;
        text-align: center;
    }

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

    .cta-actions .btn-primary,
    .cta-actions .btn-secondary,
    .cta-actions .btn-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

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

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

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .section-title {
        font-size: 28px;
    }

    /* Еще более компактная таблица */
    .comparison .container {
        padding: 0 12px;
    }

    .comparison-table {
        margin: 0;
        width: 100%;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1.3fr 1fr 1fr 1fr;
        gap: 6px;
        padding: 12px 8px;
        font-size: 12px;
    }

    .comparison-col {
        gap: 4px;
    }

    .comparison-col.feature-name {
        font-size: 12px;
    }

    .service-name {
        font-size: 11px;
    }

    .comparison-icon {
        width: 14px;
        height: 14px;
    }

    .comparison-col span {
        font-size: 11px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .price-amount {
        font-size: 48px;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
    padding: 16px 24px;
    z-index: 10000;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.cookie-banner-text a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s ease;
}

.cookie-banner-text a:hover {
    color: var(--primary-dark);
}

.cookie-banner-button {
    flex-shrink: 0;
    padding: 10px 24px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(99, 102, 241, 0.2);
}

.cookie-banner-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(99, 102, 241, 0.3);
}

.cookie-banner-button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 16px;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cookie-banner-text p {
        font-size: 13px;
    }

    .cookie-banner-button {
        width: 100%;
        justify-content: center;
    }
}

/* Dark Mode Support for Cookie Banner */
.dark-mode .cookie-banner {
    background: rgba(17, 24, 39, 0.98);
    border-top-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .cookie-banner-text p {
    color: #9CA3AF;
}

.dark-mode .cookie-banner-text a {
    color: #818CF8;
}

.dark-mode .cookie-banner-text a:hover {
    color: #A5B4FC;
}

/* Smooth Animations */
@media (prefers-reduced-motion: no-preference) {
    * {
        scroll-behavior: smooth;
    }

    .feature-card,
    .pricing-card,
    .btn-primary,
    .btn-secondary {
        transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

