/* ============================================
   Landing Page - Carss.at
   A modern, animated landing page
   ============================================ */

/* Hide shimmer overlay on landing page */
body:has(.landing) .page-shimmer-overlay,
body:has(.landing) .page-progress-bar,
.landing ~ .page-shimmer-overlay,
.landing ~ .page-progress-bar {
    display: none !important;
}

/* ============================================
   CSS Custom Properties for Landing Page
   ============================================ */
.landing {
    --landing-primary: #01161E;
    --landing-primary-light: #023a4a;
    --landing-accent: #10b981;
    --landing-accent-light: #34d399;
    --landing-text: #1f2937;
    --landing-text-muted: #6b7280;
    --landing-bg: #ffffff;
    --landing-bg-subtle: #f9fafb;
    --landing-border: #e5e7eb;
    --landing-gradient-start: #01161E;
    --landing-gradient-end: #064e5c;
}

/* ============================================
   Base Layout
   ============================================ */
.landing {
    min-height: 100vh;
    background: var(--landing-bg);
    overflow-x: hidden;
    position: relative;
}

/* ============================================
   Animated Background
   ============================================ */
.landing__bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.landing__bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(1, 22, 30, 0.02) 0%, 
        rgba(1, 22, 30, 0.05) 50%, 
        rgba(16, 185, 129, 0.03) 100%
    );
}

.landing__bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(1, 22, 30, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(1, 22, 30, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.landing__bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: glowFloat 20s ease-in-out infinite;
}

.landing__bg-glow--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.landing__bg-glow--2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(1, 22, 30, 0.1) 0%, transparent 70%);
    bottom: 20%;
    left: -150px;
    animation-delay: -7s;
}

.landing__bg-glow--3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation-delay: -14s;
}

@keyframes glowFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 30px) scale(1.05); }
}

/* Floating Particles */
.landing__bg-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.landing__bg-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--landing-accent);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 15s linear infinite;
}

.landing__bg-particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 20s; }
.landing__bg-particle:nth-child(2) { left: 20%; animation-delay: -3s; animation-duration: 18s; }
.landing__bg-particle:nth-child(3) { left: 30%; animation-delay: -6s; animation-duration: 22s; }
.landing__bg-particle:nth-child(4) { left: 40%; animation-delay: -9s; animation-duration: 16s; }
.landing__bg-particle:nth-child(5) { left: 50%; animation-delay: -2s; animation-duration: 25s; }
.landing__bg-particle:nth-child(6) { left: 60%; animation-delay: -5s; animation-duration: 19s; }
.landing__bg-particle:nth-child(7) { left: 70%; animation-delay: -8s; animation-duration: 21s; }
.landing__bg-particle:nth-child(8) { left: 80%; animation-delay: -11s; animation-duration: 17s; }
.landing__bg-particle:nth-child(9) { left: 90%; animation-delay: -4s; animation-duration: 23s; }
.landing__bg-particle:nth-child(10) { left: 95%; animation-delay: -7s; animation-duration: 20s; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Scroll Progress Indicator */
.landing__scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--landing-accent), var(--landing-primary));
    z-index: 1000;
    transition: width 0.1s ease-out;
}

/* ============================================
   Navigation
   ============================================ */
.landing__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

.landing__nav--scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 0.75rem 2rem;
}

.landing__nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.landing__nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.landing__nav-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.landing__nav-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--landing-text);
    letter-spacing: -0.02em;
}

.landing__nav-logo-accent {
    background: linear-gradient(
        90deg,
        #f97316,
        #ef4444,
        #ec4899,
        #8b5cf6,
        #3b82f6,
        #f97316
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: landing-logo-gradient 3s ease-in-out infinite;
}

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

.landing__nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.landing__nav-link {
    color: var(--landing-text-muted);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.landing__nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--landing-accent);
    transition: width 0.3s ease;
}

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

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

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

.landing__nav-login {
    color: var(--landing-text);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.landing__nav-login:hover {
    color: var(--landing-primary);
    background: var(--landing-bg-subtle);
}

/* Language Switcher */
.landing__lang-switcher {
    position: relative;
}

.landing__lang-btn {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: 1px solid var(--landing-border);
    border-radius: 8px;
    color: var(--landing-text);
    font-size: 0.8125rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
}

.landing__lang-btn:hover {
    background: var(--landing-bg-subtle);
    border-color: var(--landing-primary);
}

.landing__lang-btn.is-open {
    background: var(--landing-bg-subtle);
    border-color: var(--landing-primary);
}

.landing__lang-btn svg {
    width: 14px;
    height: 14px;
}

.landing__lang-chevron {
    transition: transform 0.2s ease;
}

.landing__lang-btn.is-open .landing__lang-chevron {
    transform: rotate(180deg);
}

.landing__lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 140px;
    background: var(--landing-bg);
    border: 1px solid var(--landing-border);
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 100;
    overflow: hidden;
}

.landing__lang-dropdown.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.landing__lang-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 1rem;
    background: none;
    border: none;
    color: var(--landing-text);
    font-size: 0.875rem;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s ease;
}

.landing__lang-option:hover {
    background: var(--landing-bg-subtle);
}

.landing__lang-option.is-active {
    color: var(--landing-primary);
    font-weight: 600;
}

.landing__lang-check {
    width: 16px;
    height: 16px;
    color: var(--landing-accent);
    opacity: 0;
}

.landing__lang-option.is-active .landing__lang-check {
    opacity: 1;
}

.landing__nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--landing-primary);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.landing__nav-cta::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: left 0.5s ease;
}

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

.landing__nav-cta:hover {
    background: var(--landing-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 22, 30, 0.2);
}

.landing__nav-cta-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.landing__nav-cta:hover .landing__nav-cta-icon {
    transform: translateX(3px);
}

/* ============================================
   Hero Section
   ============================================ */
.landing__hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
}

.landing__hero-content {
    animation: heroContentIn 0.8s ease-out both;
}

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

.landing__hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(1, 22, 30, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--landing-primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

.landing__hero-badge-icon {
    width: 16px;
    height: 16px;
    color: var(--landing-accent);
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(10deg); }
}

.landing__hero-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--landing-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    animation: titleReveal 0.8s ease-out both;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.landing__hero-title-highlight {
    background: linear-gradient(135deg, var(--landing-accent) 0%, var(--landing-primary-light) 50%, var(--landing-accent) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: gradientShift 4s ease-in-out infinite;
}

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

.landing__hero-description {
    font-size: 1.125rem;
    color: var(--landing-text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 540px;
    animation: fadeSlideUp 0.8s ease-out 0.4s both;
}

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

.landing__hero-actions {
    animation: fadeSlideUp 0.8s ease-out 0.6s both;
}

.landing__hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.landing__hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.landing__hero-btn--primary {
    background: var(--landing-primary);
    color: white;
    box-shadow: 0 4px 14px rgba(1, 22, 30, 0.25);
    position: relative;
    overflow: hidden;
}

.landing__hero-btn--primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.landing__hero-btn--primary:hover::before {
    width: 300px;
    height: 300px;
}

.landing__hero-btn--primary:hover {
    background: var(--landing-primary-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(1, 22, 30, 0.3);
}

/* Animated shine effect on primary buttons */
.landing__hero-btn--primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    transform: rotate(30deg) translateX(-100%);
    animation: btnShine 4s ease-in-out infinite;
}

@keyframes btnShine {
    0%, 100% { transform: rotate(30deg) translateX(-100%); }
    50% { transform: rotate(30deg) translateX(100%); }
}

.landing__hero-btn--primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.landing__hero-btn--primary:hover svg {
    transform: translateX(3px);
}

.landing__hero-btn--secondary {
    background: var(--landing-bg-subtle);
    color: var(--landing-text);
    border: 1px solid var(--landing-border);
    font-family: inherit;
    cursor: pointer;
}

.landing__hero-btn--secondary:hover {
    background: var(--landing-bg);
    border-color: var(--landing-primary);
    color: var(--landing-primary);
}

.landing__hero-btn--secondary svg {
    width: 20px;
    height: 20px;
    color: var(--landing-accent);
}

/* Hero Stats */
.landing__hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.landing__hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.landing__hero-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--landing-primary);
    line-height: 1;
}

.landing__hero-stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--landing-accent);
}

.landing__hero-stat-label {
    font-size: 0.875rem;
    color: var(--landing-text-muted);
}

.landing__hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--landing-border);
}

/* Hero Visual */
.landing__hero-visual {
    position: relative;
    perspective: 1000px;
    animation: heroVisualIn 1s ease-out 0.3s both;
}

@keyframes heroVisualIn {
    from {
        opacity: 0;
        transform: translateX(50px) rotateY(-10deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0);
    }
}

.landing__hero-mockup {
    position: relative;
    height: 500px;
}

/* Floating Cards */
.landing__hero-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    animation: cardFloat 6s ease-in-out infinite;
    z-index: 10;
}

.landing__hero-card--1 {
    top: 20px;
    right: 20px;
    animation: cardFloat1 6s ease-in-out infinite, cardEnter 0.8s ease-out 0.5s both;
}

.landing__hero-card--2 {
    top: 140px;
    left: -20px;
    animation: cardFloat2 7s ease-in-out infinite, cardEnter 0.8s ease-out 0.7s both;
}

.landing__hero-card--3 {
    bottom: 80px;
    right: 40px;
    animation: cardFloat3 5s ease-in-out infinite, cardEnter 0.8s ease-out 0.9s both;
}

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

@keyframes cardFloat1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(1deg); }
    75% { transform: translateY(5px) rotate(-0.5deg); }
}

@keyframes cardFloat2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-12px) rotate(-1deg); }
    66% { transform: translateY(8px) rotate(0.5deg); }
}

@keyframes cardFloat3 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1.5deg); }
}

.landing__hero-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.landing__hero-card-icon--success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--landing-accent);
}

.landing__hero-card-icon--info {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.landing__hero-card-icon--warning {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.landing__hero-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.landing__hero-card-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--landing-text);
}

.landing__hero-card-subtitle {
    font-size: 0.75rem;
    color: var(--landing-text-muted);
}

/* Dashboard Preview */
.landing__hero-dashboard {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 420px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    animation: dashboardFloat 8s ease-in-out infinite, dashboardEnter 1s ease-out 0.3s both;
}

@keyframes dashboardEnter {
    from {
        opacity: 0;
        transform: translate(-50%, -40%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes dashboardFloat {
    0%, 100% { transform: translate(-50%, -50%); }
    50% { transform: translate(-50%, -52%); }
}

.landing__hero-dashboard-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1rem;
    background: var(--landing-bg-subtle);
    border-bottom: 1px solid var(--landing-border);
}

.landing__hero-dashboard-dots {
    display: flex;
    gap: 6px;
}

.landing__hero-dashboard-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--landing-border);
}

.landing__hero-dashboard-dots span:nth-child(1) { background: #ef4444; }
.landing__hero-dashboard-dots span:nth-child(2) { background: #f59e0b; }
.landing__hero-dashboard-dots span:nth-child(3) { background: #22c55e; }

.landing__hero-dashboard-title {
    font-size: 0.75rem;
    color: var(--landing-text-muted);
    font-weight: 500;
}

.landing__hero-dashboard-content {
    display: flex;
    min-height: 280px;
}

.landing__hero-dashboard-sidebar {
    width: 50px;
    background: var(--landing-primary);
    padding: 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.landing__hero-dashboard-menu-item {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.2s ease;
}

.landing__hero-dashboard-menu-item svg {
    width: 16px;
    height: 16px;
}

.landing__hero-dashboard-menu-item--active {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.landing__hero-dashboard-main {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.landing__hero-dashboard-stat-row {
    display: flex;
    gap: 0.75rem;
}

.landing__hero-dashboard-stat {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--landing-bg-subtle);
    border-radius: 8px;
}

.landing__hero-dashboard-stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: var(--landing-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing__hero-dashboard-stat-icon svg {
    width: 14px;
    height: 14px;
}

.landing__hero-dashboard-stat-info {
    display: flex;
    flex-direction: column;
}

.landing__hero-dashboard-stat-value {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--landing-primary);
}

.landing__hero-dashboard-stat-label {
    font-size: 0.6875rem;
    color: var(--landing-text-muted);
}

.landing__hero-dashboard-chart {
    flex: 1;
    background: var(--landing-bg-subtle);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: flex-end;
}

.landing__hero-dashboard-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    width: 100%;
    height: 100%;
}

.landing__hero-dashboard-chart-bar {
    flex: 1;
    background: rgba(1, 22, 30, 0.1);
    border-radius: 4px 4px 0 0;
    height: 0;
    transition: height 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.landing__hero-dashboard-chart-bar.is-animated {
    height: var(--height);
}

.landing__hero-dashboard-chart-bar--active {
    background: var(--landing-accent);
}

/* ============================================
   Benefits Section
   ============================================ */
.landing__benefits {
    position: relative;
    z-index: 1;
    padding: 2.5rem 2rem;
    border-top: 1px solid var(--landing-border);
    border-bottom: 1px solid var(--landing-border);
    background: var(--landing-bg-subtle);
}

.landing__benefits-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.landing__benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.landing__benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.landing__benefit:hover .landing__benefit-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(1, 22, 30, 0.2);
}

.landing__benefit-icon svg {
    width: 20px;
    height: 20px;
    color: white;
    transition: transform 0.3s ease;
}

.landing__benefit:hover .landing__benefit-icon svg {
    animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Staggered animation for benefits */
.landing__benefit {
    animation: slideInFromLeft 0.6s ease-out both;
}

.landing__benefit:nth-child(1) { animation-delay: 0.1s; }
.landing__benefit:nth-child(2) { animation-delay: 0.2s; }
.landing__benefit:nth-child(3) { animation-delay: 0.3s; }
.landing__benefit:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.landing__benefit-content {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.landing__benefit-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--landing-text);
}

.landing__benefit-text {
    font-size: 0.8125rem;
    color: var(--landing-text-muted);
}

/* ============================================
   Section Headers
   ============================================ */
.landing__section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
    animation: sectionFadeIn 0.8s ease-out both;
}

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

.landing__section-title {
    animation: titleWordReveal 0.6s ease-out 0.2s both;
}

@keyframes titleWordReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.landing__section-tag {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(1, 22, 30, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 100px;
    font-size: 0.8125rem;
    color: var(--landing-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.landing__section-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.2), transparent);
    animation: tagShimmer 3s ease-in-out infinite;
}

@keyframes tagShimmer {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.landing__section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--landing-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.landing__section-description {
    font-size: 1.125rem;
    color: var(--landing-text-muted);
    line-height: 1.7;
}

/* ============================================
   Features Section
   ============================================ */
.landing__features {
    position: relative;
    z-index: 1;
    padding: 6rem 2rem;
}

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

.landing__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
}

.landing__feature-card {
    position: relative;
    padding: 2rem;
    background: var(--landing-bg);
    border: 1px solid var(--landing-border);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: translateY(30px);
    overflow: visible;
    transform-style: preserve-3d;
    perspective: 1000px;
    isolation: isolate;
}

.landing__feature-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mouse follow glow effect */
.landing__feature-card::before {
    content: '';
    position: absolute;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
    border-radius: 16px;
}

.landing__feature-card:hover::before {
    opacity: 1;
}

/* Animated border gradient - positioned behind the card */
.landing__feature-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--landing-accent) 0%, var(--landing-primary) 50%, var(--landing-accent) 100%);
    background-size: 200% 200%;
    border-radius: 18px;
    z-index: -2;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: borderGlow 3s linear infinite;
}

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

.landing__feature-card:hover::after {
    opacity: 1;
}

.landing__feature-card:hover {
    border-color: transparent;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.landing__feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-primary-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease;
}

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

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

.landing__feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--landing-primary);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.landing__feature-card:hover .landing__feature-title {
    color: #fff;
}

.landing__feature-description {
    font-size: 0.9375rem;
    color: var(--landing-text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    transition: color 0.3s ease;
}

.landing__feature-card:hover .landing__feature-description {
    color: rgba(255, 255, 255, 0.85);
}

.landing__feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.landing__feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--landing-text);
    transition: color 0.3s ease;
}

.landing__feature-card:hover .landing__feature-list li {
    color: rgba(255, 255, 255, 0.9);
}

.landing__feature-list svg {
    width: 16px;
    height: 16px;
    color: var(--landing-accent);
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.landing__feature-card:hover .landing__feature-list svg {
    color: #fff;
}

/* ============================================
   How It Works Section
   ============================================ */
.landing__how-it-works {
    position: relative;
    z-index: 1;
    padding: 6rem 2rem;
    background: var(--landing-bg-subtle);
}

.landing__how-it-works-container {
    max-width: 1000px;
    margin: 0 auto;
}

.landing__steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.landing__step {
    display: grid;
    grid-template-columns: 80px 1fr 60px;
    gap: 1.5rem;
    align-items: center;
    padding: 2rem;
    background: var(--landing-bg);
    border-radius: 16px;
    border: 1px solid var(--landing-border);
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.landing__step.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.landing__step:hover {
    border-color: var(--landing-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.landing__step-number {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.landing__step-number::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--landing-accent), var(--landing-primary));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.landing__step:hover .landing__step-number::after {
    opacity: 0.3;
    animation: stepRipple 1s ease-out;
}

@keyframes stepRipple {
    from {
        transform: scale(1);
        opacity: 0.5;
    }
    to {
        transform: scale(1.5);
        opacity: 0;
    }
}

.landing__step:hover .landing__step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(1, 22, 30, 0.3);
}

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

.landing__step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--landing-primary);
}

.landing__step-description {
    font-size: 0.9375rem;
    color: var(--landing-text-muted);
    line-height: 1.6;
}

.landing__step-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--landing-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.landing__step-connector {
    padding: 0 2rem;
    height: 40px;
    color: var(--landing-border);
    position: relative;
}

.landing__step-connector::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 0;
    background: linear-gradient(180deg, var(--landing-accent), var(--landing-primary));
    transform: translateX(-50%);
    animation: connectorGrow 0.5s ease-out forwards;
    animation-delay: var(--connector-delay, 0s);
}

.landing__step-connector:nth-of-type(1)::after { --connector-delay: 0.3s; }
.landing__step-connector:nth-of-type(2)::after { --connector-delay: 0.6s; }

@keyframes connectorGrow {
    to {
        height: 100%;
    }
}

.landing__step-connector svg {
    width: 100%;
    height: 100%;
    opacity: 0;
}

/* How It Works Video */
.landing__how-it-works-video {
    margin-bottom: 4rem;
    display: flex;
    justify-content: center;
}

.landing__how-it-works-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    background: #000;
}

.landing__how-it-works-video-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, var(--landing-accent), var(--landing-primary), var(--landing-accent));
    background-size: 200% 200%;
    animation: borderGlow 4s linear infinite;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

.landing__how-it-works-video-wrapper video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.landing__how-it-works-video-expand {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 0.8125rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.landing__how-it-works-video-expand:hover {
    background: rgba(16, 185, 129, 0.9);
    border-color: var(--landing-accent);
    transform: scale(1.05);
}

.landing__how-it-works-video-expand svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .landing__how-it-works-video {
        margin-bottom: 2.5rem;
    }
    
    .landing__how-it-works-video-wrapper {
        border-radius: 12px;
    }
    
    .landing__how-it-works-video-wrapper::before {
        border-radius: 12px;
    }
    
    .landing__how-it-works-video-expand {
        bottom: 0.75rem;
        right: 0.75rem;
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .landing__how-it-works-video-expand svg {
        width: 14px;
        height: 14px;
    }
}

/* ============================================
   Pricing Section
   ============================================ */
.landing__pricing {
    position: relative;
    z-index: 1;
    padding: 6rem 2rem;
}

.landing__pricing-container {
    max-width: 1100px;
    margin: 0 auto;
}

.landing__pricing-region {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: var(--landing-bg-subtle);
    border: 1px solid var(--landing-border);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--landing-text-muted);
}

.landing__pricing-region svg {
    width: 14px;
    height: 14px;
    color: var(--landing-accent);
}

.landing__pricing-region strong {
    color: var(--landing-primary);
    font-weight: 600;
}

.landing__pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: start;
    max-width: 800px;
    margin: 0 auto;
}

/* Featured Single Plan Layout */
.landing__pricing-featured {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.landing__pricing-card--featured {
    max-width: 500px;
    width: 100%;
    padding: 2.5rem;
    border-color: var(--landing-accent);
    box-shadow: 0 25px 60px rgba(16, 185, 129, 0.15);
}

.landing__pricing-card--featured .landing__pricing-card-header {
    text-align: center;
}

.landing__pricing-card--featured .landing__pricing-card-price {
    justify-content: center;
    font-size: 1.1em;
}

.landing__pricing-features--grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 1.5rem;
}

.landing__pricing-btn--large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Trial Box */
.landing__pricing-trial-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    background: var(--landing-bg-subtle);
    border: 1px dashed var(--landing-border);
    border-radius: 16px;
    animation: trialBoxFadeIn 0.6s ease-out 0.3s both;
}

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

.landing__pricing-trial-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.landing__pricing-trial-icon svg {
    width: 24px;
    height: 24px;
    color: var(--landing-accent);
}

.landing__pricing-trial-content {
    flex: 1;
}

.landing__pricing-trial-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--landing-primary);
    margin-bottom: 0.25rem;
}

.landing__pricing-trial-text {
    font-size: 0.875rem;
    color: var(--landing-text-muted);
    line-height: 1.5;
}

.landing__pricing-trial-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid var(--landing-border);
    border-radius: 8px;
    color: var(--landing-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.landing__pricing-trial-btn:hover {
    background: var(--landing-primary);
    border-color: var(--landing-primary);
    color: white;
}

.landing__pricing-amount--free {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--landing-accent);
}

.landing__pricing-card {
    position: relative;
    padding: 2rem;
    background: var(--landing-bg);
    border: 1px solid var(--landing-border);
    border-radius: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.landing__pricing-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.landing__pricing-card--popular {
    border-color: var(--landing-accent);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.15);
    transform: scale(1.02) translateY(30px);
}

.landing__pricing-card--popular.is-visible {
    transform: scale(1.02) translateY(0);
}

.landing__pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.375rem 1rem;
    background: var(--landing-accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: badgePop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both, badgeGlow 2s ease-in-out infinite;
}

@keyframes badgePop {
    from {
        opacity: 0;
        transform: translateX(-50%) scale(0);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { box-shadow: 0 0 20px 5px rgba(16, 185, 129, 0.2); }
}

.landing__pricing-card-header {
    margin-bottom: 1.5rem;
}

.landing__pricing-plan-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--landing-primary);
    margin-bottom: 0.25rem;
}

.landing__pricing-plan-description {
    font-size: 0.875rem;
    color: var(--landing-text-muted);
}

.landing__pricing-card-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--landing-border);
}

.landing__pricing-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--landing-primary);
}

.landing__pricing-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--landing-primary);
    line-height: 1;
    display: inline-block;
    position: relative;
}

.landing__pricing-card.is-visible .landing__pricing-amount {
    animation: priceCountUp 0.8s ease-out;
}

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

.landing__pricing-period {
    font-size: 1rem;
    color: var(--landing-text-muted);
}

.landing__pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 2rem;
}

.landing__pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--landing-text);
    opacity: 0;
    transform: translateX(-10px);
    animation: featureSlideIn 0.4s ease-out forwards;
}

.landing__pricing-card.is-visible .landing__pricing-features li:nth-child(1) { animation-delay: 0.1s; }
.landing__pricing-card.is-visible .landing__pricing-features li:nth-child(2) { animation-delay: 0.15s; }
.landing__pricing-card.is-visible .landing__pricing-features li:nth-child(3) { animation-delay: 0.2s; }
.landing__pricing-card.is-visible .landing__pricing-features li:nth-child(4) { animation-delay: 0.25s; }
.landing__pricing-card.is-visible .landing__pricing-features li:nth-child(5) { animation-delay: 0.3s; }
.landing__pricing-card.is-visible .landing__pricing-features li:nth-child(6) { animation-delay: 0.35s; }
.landing__pricing-card.is-visible .landing__pricing-features li:nth-child(7) { animation-delay: 0.4s; }
.landing__pricing-card.is-visible .landing__pricing-features li:nth-child(8) { animation-delay: 0.45s; }

/* carss.at/ URL prefix in pricing features */
.landing__pricing-feature-url {
    font-family: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
    font-size: 0.8125em;
    font-weight: 600;
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #0d9488 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

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

.landing__pricing-features svg {
    width: 18px;
    height: 18px;
    color: var(--landing-accent);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.landing__pricing-features li:hover svg {
    transform: scale(1.2);
    animation: checkPop 0.3s ease;
}

@keyframes checkPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1.2); }
}

.landing__pricing-btn {
    display: block;
    width: 100%;
    padding: 0.875rem 1.5rem;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    background: var(--landing-bg-subtle);
    color: var(--landing-primary);
    border: 1px solid var(--landing-border);
}

.landing__pricing-btn:hover {
    background: var(--landing-primary);
    color: white;
    border-color: var(--landing-primary);
    transform: translateY(-2px);
}

.landing__pricing-btn.is-hovered {
    animation: btnPulse 1s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(1, 22, 30, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(1, 22, 30, 0); }
}

.landing__pricing-btn--primary {
    background: var(--landing-primary);
    color: white;
    border-color: var(--landing-primary);
    position: relative;
    overflow: hidden;
}

.landing__pricing-btn--primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    transform: rotate(30deg) translateX(-100%);
    animation: btnShine 4s ease-in-out infinite;
}

.landing__pricing-btn--primary:hover {
    background: var(--landing-primary-light);
    border-color: var(--landing-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 22, 30, 0.2);
}

/* ============================================
   CTA Section
   ============================================ */
.landing__cta {
    position: relative;
    z-index: 1;
    padding: 6rem 2rem;
}

.landing__cta-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem;
    background: var(--landing-primary);
    border-radius: 24px;
    overflow: hidden;
    animation: ctaEnter 0.8s ease-out both;
}

@keyframes ctaEnter {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.landing__cta-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.landing__cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.landing__cta-shape--1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
    animation: ctaFloat 15s ease-in-out infinite;
}

.landing__cta-shape--2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -100px;
    animation: ctaFloat 12s ease-in-out infinite reverse;
}

@keyframes ctaFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, 30px) rotate(10deg); }
}

.landing__cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.landing__cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.landing__cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

.landing__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.landing__cta-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.landing__cta-btn--primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.landing__cta-btn--primary:hover svg {
    transform: translateX(3px);
}

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

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

/* Partner WhatsApp Button in CTA */
.landing__cta-btn--partner {
    background: #25D366;
    color: white;
    border: none;
}

.landing__cta-btn--partner:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.landing__cta-whatsapp-icon {
    width: 20px;
    height: 20px;
}

/* Partner Info Section in CTA */
.landing__cta-partner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.landing__cta-partner-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.02em;
}

.landing__cta-partner-badge svg,
.landing__cta-partner-badge i {
    width: 16px;
    height: 16px;
    color: #22c55e;
    flex-shrink: 0;
}

.landing__cta-partner-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.landing__cta-partner-main {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.landing__cta-partner-main:hover {
    opacity: 1;
}

/* Side Cannon Confetti Animation for Partner Logo */
.landing__cta-partner-main .cannon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    width: 0;
    height: 0;
}

.landing__cta-partner-main .cannon-left {
    left: 0;
}

.landing__cta-partner-main .cannon-right {
    right: 0;
}

.landing__cta-partner-main .confetti {
    position: absolute;
    font-size: 10px;
    opacity: 0;
    transform: scale(0);
}

/* Left cannon confetti colors */
.landing__cta-partner-main .cannon-left .c1 { color: #fbbf24; }
.landing__cta-partner-main .cannon-left .c2 { color: #f472b6; }
.landing__cta-partner-main .cannon-left .c3 { color: #60a5fa; }
.landing__cta-partner-main .cannon-left .c4 { color: #34d399; }
.landing__cta-partner-main .cannon-left .c5 { color: #a78bfa; }
.landing__cta-partner-main .cannon-left .c6 { color: #fb923c; }
.landing__cta-partner-main .cannon-left .c7 { color: #f43f5e; }
.landing__cta-partner-main .cannon-left .c8 { color: #22d3d3; }
.landing__cta-partner-main .cannon-left .c9 { color: #84cc16; }
.landing__cta-partner-main .cannon-left .c10 { color: #e879f9; }

/* Right cannon confetti colors */
.landing__cta-partner-main .cannon-right .c1 { color: #f472b6; }
.landing__cta-partner-main .cannon-right .c2 { color: #34d399; }
.landing__cta-partner-main .cannon-right .c3 { color: #fbbf24; }
.landing__cta-partner-main .cannon-right .c4 { color: #a78bfa; }
.landing__cta-partner-main .cannon-right .c5 { color: #60a5fa; }
.landing__cta-partner-main .cannon-right .c6 { color: #fb923c; }
.landing__cta-partner-main .cannon-right .c7 { color: #22d3d3; }
.landing__cta-partner-main .cannon-right .c8 { color: #f43f5e; }
.landing__cta-partner-main .cannon-right .c9 { color: #e879f9; }
.landing__cta-partner-main .cannon-right .c10 { color: #84cc16; }

/* Trigger animations on hover - Left cannon */
.landing__cta-partner-main:hover .cannon-left .c1 { animation: partner-cannon-left-1 0.8s cubic-bezier(0.15, 0.85, 0.35, 1.2) forwards; }
.landing__cta-partner-main:hover .cannon-left .c2 { animation: partner-cannon-left-2 0.8s cubic-bezier(0.15, 0.85, 0.35, 1.2) 0.03s forwards; }
.landing__cta-partner-main:hover .cannon-left .c3 { animation: partner-cannon-left-3 0.8s cubic-bezier(0.15, 0.85, 0.35, 1.2) 0.06s forwards; }
.landing__cta-partner-main:hover .cannon-left .c4 { animation: partner-cannon-left-4 0.8s cubic-bezier(0.15, 0.85, 0.35, 1.2) 0.02s forwards; }
.landing__cta-partner-main:hover .cannon-left .c5 { animation: partner-cannon-left-5 0.8s cubic-bezier(0.15, 0.85, 0.35, 1.2) 0.05s forwards; }
.landing__cta-partner-main:hover .cannon-left .c6 { animation: partner-cannon-left-6 0.8s cubic-bezier(0.15, 0.85, 0.35, 1.2) 0.04s forwards; }
.landing__cta-partner-main:hover .cannon-left .c7 { animation: partner-cannon-left-7 0.8s cubic-bezier(0.15, 0.85, 0.35, 1.2) 0.01s forwards; }
.landing__cta-partner-main:hover .cannon-left .c8 { animation: partner-cannon-left-8 0.8s cubic-bezier(0.15, 0.85, 0.35, 1.2) 0.07s forwards; }
.landing__cta-partner-main:hover .cannon-left .c9 { animation: partner-cannon-left-9 0.8s cubic-bezier(0.15, 0.85, 0.35, 1.2) 0.035s forwards; }
.landing__cta-partner-main:hover .cannon-left .c10 { animation: partner-cannon-left-10 0.8s cubic-bezier(0.15, 0.85, 0.35, 1.2) 0.055s forwards; }

/* Trigger animations on hover - Right cannon */
.landing__cta-partner-main:hover .cannon-right .c1 { animation: partner-cannon-right-1 0.8s cubic-bezier(0.15, 0.85, 0.35, 1.2) forwards; }
.landing__cta-partner-main:hover .cannon-right .c2 { animation: partner-cannon-right-2 0.8s cubic-bezier(0.15, 0.85, 0.35, 1.2) 0.03s forwards; }
.landing__cta-partner-main:hover .cannon-right .c3 { animation: partner-cannon-right-3 0.8s cubic-bezier(0.15, 0.85, 0.35, 1.2) 0.06s forwards; }
.landing__cta-partner-main:hover .cannon-right .c4 { animation: partner-cannon-right-4 0.8s cubic-bezier(0.15, 0.85, 0.35, 1.2) 0.02s forwards; }
.landing__cta-partner-main:hover .cannon-right .c5 { animation: partner-cannon-right-5 0.8s cubic-bezier(0.15, 0.85, 0.35, 1.2) 0.05s forwards; }
.landing__cta-partner-main:hover .cannon-right .c6 { animation: partner-cannon-right-6 0.8s cubic-bezier(0.15, 0.85, 0.35, 1.2) 0.04s forwards; }
.landing__cta-partner-main:hover .cannon-right .c7 { animation: partner-cannon-right-7 0.8s cubic-bezier(0.15, 0.85, 0.35, 1.2) 0.01s forwards; }
.landing__cta-partner-main:hover .cannon-right .c8 { animation: partner-cannon-right-8 0.8s cubic-bezier(0.15, 0.85, 0.35, 1.2) 0.07s forwards; }
.landing__cta-partner-main:hover .cannon-right .c9 { animation: partner-cannon-right-9 0.8s cubic-bezier(0.15, 0.85, 0.35, 1.2) 0.035s forwards; }
.landing__cta-partner-main:hover .cannon-right .c10 { animation: partner-cannon-right-10 0.8s cubic-bezier(0.15, 0.85, 0.35, 1.2) 0.055s forwards; }

/* Left cannon trajectories - shooting outward and up/down */
@keyframes partner-cannon-left-1 {
    0% { opacity: 1; transform: scale(1) translate(0, 0) rotate(0deg); }
    100% { opacity: 0; transform: scale(0.6) translate(-50px, -35px) rotate(-180deg); }
}
@keyframes partner-cannon-left-2 {
    0% { opacity: 1; transform: scale(1) translate(0, 0) rotate(0deg); }
    100% { opacity: 0; transform: scale(0.5) translate(-40px, -20px) rotate(-220deg); }
}
@keyframes partner-cannon-left-3 {
    0% { opacity: 1; transform: scale(1) translate(0, 0) rotate(0deg); }
    100% { opacity: 0; transform: scale(0.7) translate(-55px, 5px) rotate(-150deg); }
}
@keyframes partner-cannon-left-4 {
    0% { opacity: 1; transform: scale(1) translate(0, 0) rotate(0deg); }
    100% { opacity: 0; transform: scale(0.5) translate(-35px, 25px) rotate(-260deg); }
}
@keyframes partner-cannon-left-5 {
    0% { opacity: 1; transform: scale(1) translate(0, 0) rotate(0deg); }
    100% { opacity: 0; transform: scale(0.6) translate(-45px, -10px) rotate(-190deg); }
}
@keyframes partner-cannon-left-6 {
    0% { opacity: 1; transform: scale(1) translate(0, 0) rotate(0deg); }
    100% { opacity: 0; transform: scale(0.55) translate(-30px, 15px) rotate(-240deg); }
}

/* Right cannon trajectories - shooting outward and up/down */
@keyframes partner-cannon-right-1 {
    0% { opacity: 1; transform: scale(1) translate(0, 0) rotate(0deg); }
    100% { opacity: 0; transform: scale(0.6) translate(50px, -35px) rotate(180deg); }
}
@keyframes partner-cannon-right-2 {
    0% { opacity: 1; transform: scale(1) translate(0, 0) rotate(0deg); }
    100% { opacity: 0; transform: scale(0.5) translate(40px, -20px) rotate(220deg); }
}
@keyframes partner-cannon-right-3 {
    0% { opacity: 1; transform: scale(1) translate(0, 0) rotate(0deg); }
    100% { opacity: 0; transform: scale(0.7) translate(55px, 5px) rotate(150deg); }
}
@keyframes partner-cannon-right-4 {
    0% { opacity: 1; transform: scale(1) translate(0, 0) rotate(0deg); }
    100% { opacity: 0; transform: scale(0.5) translate(35px, 25px) rotate(260deg); }
}
@keyframes partner-cannon-right-5 {
    0% { opacity: 1; transform: scale(1) translate(0, 0) rotate(0deg); }
    100% { opacity: 0; transform: scale(0.6) translate(45px, -10px) rotate(190deg); }
}
@keyframes partner-cannon-right-6 {
    0% { opacity: 1; transform: scale(1) translate(0, 0) rotate(0deg); }
    100% { opacity: 0; transform: scale(0.55) translate(30px, 15px) rotate(240deg); }
}
@keyframes partner-cannon-right-7 {
    0% { opacity: 1; transform: scale(1) translate(0, 0) rotate(0deg); }
    100% { opacity: 0; transform: scale(0.65) translate(60px, -15px) rotate(200deg); }
}
@keyframes partner-cannon-right-8 {
    0% { opacity: 1; transform: scale(1) translate(0, 0) rotate(0deg); }
    100% { opacity: 0; transform: scale(0.45) translate(38px, 30px) rotate(280deg); }
}
@keyframes partner-cannon-right-9 {
    0% { opacity: 1; transform: scale(1) translate(0, 0) rotate(0deg); }
    100% { opacity: 0; transform: scale(0.5) translate(48px, -28px) rotate(170deg); }
}
@keyframes partner-cannon-right-10 {
    0% { opacity: 1; transform: scale(1) translate(0, 0) rotate(0deg); }
    100% { opacity: 0; transform: scale(0.6) translate(42px, 18px) rotate(230deg); }
}

/* Additional left cannon trajectories */
@keyframes partner-cannon-left-7 {
    0% { opacity: 1; transform: scale(1) translate(0, 0) rotate(0deg); }
    100% { opacity: 0; transform: scale(0.65) translate(-60px, -15px) rotate(-200deg); }
}
@keyframes partner-cannon-left-8 {
    0% { opacity: 1; transform: scale(1) translate(0, 0) rotate(0deg); }
    100% { opacity: 0; transform: scale(0.45) translate(-38px, 30px) rotate(-280deg); }
}
@keyframes partner-cannon-left-9 {
    0% { opacity: 1; transform: scale(1) translate(0, 0) rotate(0deg); }
    100% { opacity: 0; transform: scale(0.5) translate(-48px, -28px) rotate(-170deg); }
}
@keyframes partner-cannon-left-10 {
    0% { opacity: 1; transform: scale(1) translate(0, 0) rotate(0deg); }
    100% { opacity: 0; transform: scale(0.6) translate(-42px, 18px) rotate(-230deg); }
}

.landing__cta-partner-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    /* Make SVG logo white */
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease, transform 0.3s ease;
}

/* On hover, show original color */
.landing__cta-partner-main:hover .landing__cta-partner-logo {
    filter: none;
    transform: scale(1.05);
}

.landing__cta-partner-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
}

.landing__cta-partner-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    padding: 0.375rem 0.75rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    margin-top: 0.25rem;
}

.landing__cta-partner-phone:hover {
    color: #25D366;
    background: rgba(37, 211, 102, 0.1);
}

.landing__cta-partner-phone svg,
.landing__cta-partner-phone i {
    width: 14px;
    height: 14px;
}

/* RTL support for CTA partner */
[dir="rtl"] .landing__cta-partner-badge,
[dir="rtl"] .landing__cta-partner-main {
    flex-direction: row-reverse;
}

[dir="rtl"] .landing__cta-partner-phone {
    flex-direction: row-reverse;
}

.landing__cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.landing__cta-note svg {
    width: 16px;
    height: 16px;
    color: var(--landing-accent);
}

/* ============================================
   Minimal Footer
   ============================================ */
.landing__footer-minimal {
    position: relative;
    z-index: 1;
    padding: 1.5rem 2rem;
    background: var(--landing-bg-subtle);
    border-top: 1px solid var(--landing-border);
}

.landing__footer-minimal-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.landing__footer-minimal-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.landing__footer-copyright {
    font-size: 0.8125rem;
    color: var(--landing-text-muted);
}

.landing__footer-divider {
    color: var(--landing-border);
    font-size: 0.75rem;
}

.landing__footer-link-inline {
    font-size: 0.8125rem;
    color: var(--landing-text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.landing__footer-link-inline:hover {
    color: var(--landing-primary);
}

.landing__footer-minimal-center {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.landing__footer-made-by {
    font-size: 0.75rem;
    color: var(--landing-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.landing__footer-bytsolv {
    display: flex;
    align-items: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.landing__footer-bytsolv:hover {
    transform: scale(1.15);
}

.landing__footer-bytsolv-logo {
    height: 18px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(10%) sepia(15%) saturate(1000%) hue-rotate(160deg) brightness(95%);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.landing__footer-bytsolv:hover .landing__footer-bytsolv-logo {
    filter: brightness(0) saturate(100%) invert(50%) sepia(90%) saturate(500%) hue-rotate(130deg) brightness(95%);
    transform: rotate(-3deg);
}


.landing__footer-minimal-right {
    display: flex;
    align-items: center;
}

.landing__footer-social {
    display: flex;
    gap: 0.5rem;
}

.landing__footer-social-link {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: transparent;
    border: 1px solid var(--landing-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--landing-text-muted);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.landing__footer-social-link:hover {
    background: var(--landing-primary);
    border-color: var(--landing-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 22, 30, 0.15);
}

.landing__footer-social-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.landing__footer-social-link:hover svg {
    animation: socialIconPop 0.4s ease;
}

@keyframes socialIconPop {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2) rotate(10deg); }
}

/* ============================================
   Navigation WhatsApp Button (Regional Partner)
   ============================================ */
.landing__nav-whatsapp {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #25D366;
    border-radius: 9999px;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.landing__nav-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.landing__nav-whatsapp-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.landing__nav-whatsapp-text {
    display: none;
}

@media (min-width: 1100px) {
    .landing__nav-whatsapp-text {
        display: inline;
    }
}

/* RTL support for nav WhatsApp */
[dir="rtl"] .landing__nav-whatsapp {
    flex-direction: row-reverse;
}

/* ============================================
   Get Started Dropdown (Mobile)
   ============================================ */
.landing__nav-cta-wrapper {
    position: relative;
}

/* Desktop: Show direct link, hide dropdown */
.landing__nav-cta--desktop {
    display: inline-flex;
}

.landing__nav-cta-dropdown {
    display: none;
}

/* Hide desktop-only WhatsApp on mobile */
.landing__nav-whatsapp--desktop {
    display: flex;
}

/* Mobile: Show dropdown, hide direct link */
@media (max-width: 768px) {
    .landing__nav-cta--desktop {
        display: none;
    }
    
    .landing__nav-cta-dropdown {
        display: block;
        position: relative;
    }
    
    .landing__nav-whatsapp--desktop {
        display: none;
    }
}

.landing__nav-cta--mobile {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 1rem;
    background: var(--landing-primary);
    color: white;
    border: none;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.landing__nav-cta--mobile:hover {
    background: var(--landing-primary-light);
}

.landing__nav-cta-chevron {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.landing__nav-cta-dropdown.is-open .landing__nav-cta-chevron {
    transform: rotate(180deg);
}

.landing__nav-cta-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.landing__nav-cta-dropdown.is-open .landing__nav-cta-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.landing__nav-cta-menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--landing-text);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.landing__nav-cta-menu-item:hover {
    background: var(--landing-bg-subtle);
}

.landing__nav-cta-menu-item i,
.landing__nav-cta-menu-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.landing__nav-cta-menu-item--whatsapp {
    color: #25D366;
}

.landing__nav-cta-menu-item--whatsapp:hover {
    background: rgba(37, 211, 102, 0.1);
}

.landing__nav-cta-menu-whatsapp {
    fill: #25D366;
}

/* RTL support for dropdown */
[dir="rtl"] .landing__nav-cta-menu {
    right: 0;
    left: auto;
}

[dir="rtl"] .landing__nav-cta-menu-item {
    flex-direction: row-reverse;
}

/* ============================================
   Mobile Menu (Three Dots)
   ============================================ */
.landing__nav-mobile-menu {
    display: none;
    position: relative;
}

.landing__nav-mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--landing-border);
    border-radius: 8px;
    color: var(--landing-text);
    cursor: pointer;
    transition: all 0.2s ease;
}

.landing__nav-mobile-menu-btn:hover {
    background: var(--landing-bg-subtle);
}

.landing__nav-mobile-menu-btn svg {
    width: 20px;
    height: 20px;
}

.landing__nav-mobile-menu-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.landing__nav-mobile-menu.is-open .landing__nav-mobile-menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.landing__nav-mobile-menu-section {
    padding: 0.5rem;
}

.landing__nav-mobile-menu-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--landing-text-muted);
    margin-bottom: 0.5rem;
}

.landing__nav-mobile-menu-langs {
    display: flex;
    gap: 0.5rem;
}

.landing__nav-mobile-lang-option {
    flex: 1;
    padding: 0.5rem;
    background: var(--landing-bg-subtle);
    border: 1px solid var(--landing-border);
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--landing-text);
    cursor: pointer;
    transition: all 0.2s ease;
}

.landing__nav-mobile-lang-option:hover,
.landing__nav-mobile-lang-option.is-active {
    background: var(--landing-primary);
    border-color: var(--landing-primary);
    color: #fff;
}

.landing__nav-mobile-menu-divider {
    height: 1px;
    background: var(--landing-border);
    margin: 0.25rem 0;
}

.landing__nav-mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    color: var(--landing-text);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.landing__nav-mobile-menu-item:hover {
    background: var(--landing-bg-subtle);
}

.landing__nav-mobile-menu-item i {
    width: 18px;
    height: 18px;
}

/* RTL support for mobile menu */
[dir="rtl"] .landing__nav-mobile-menu-dropdown {
    right: 0;
    left: auto;
}

[dir="rtl"] .landing__nav-mobile-menu-item {
    flex-direction: row-reverse;
}

/* Keep Get Started dropdown within viewport on mobile */
@media (max-width: 768px) {
    .landing__nav-cta-menu {
        right: 0;
        left: auto;
        min-width: 180px;
        max-width: calc(100vw - 2rem);
    }
    
    [dir="rtl"] .landing__nav-cta-menu {
        right: 0;
        left: auto;
    }
    
    .landing__nav-cta-menu-item {
        font-size: 0.875rem;
        padding: 0.625rem 0.875rem;
    }
}

/* Phone numbers should always be LTR */
.landing__nav-whatsapp-text,
.landing__cta-partner-phone,
[dir="rtl"] .landing__nav-whatsapp-text,
[dir="rtl"] .landing__cta-partner-phone {
    direction: ltr;
    unicode-bidi: embed;
}

/* ============================================
   Floating WhatsApp Button (Mobile Only)
   ============================================ */
.landing__floating-whatsapp {
    display: none;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 
        0 4px 12px rgba(37, 211, 102, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: floatingPulse 2s ease-in-out infinite;
}

.landing__floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 
        0 6px 20px rgba(37, 211, 102, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.15);
}

.landing__floating-whatsapp svg {
    width: 28px;
    height: 28px;
}

@keyframes floatingPulse {
    0%, 100% {
        box-shadow: 
            0 4px 12px rgba(37, 211, 102, 0.4),
            0 2px 4px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 
            0 4px 12px rgba(37, 211, 102, 0.4),
            0 2px 4px rgba(0, 0, 0, 0.1),
            0 0 0 8px rgba(37, 211, 102, 0.15);
    }
}

/* RTL support for floating WhatsApp */
[dir="rtl"] .landing__floating-whatsapp {
    right: auto;
    left: 1.5rem;
}

/* ============================================
   Regional Partner Contact Card
   ============================================ */
.landing__partner-card {
    position: relative;
    z-index: 1;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
}

.landing__partner-card-container {
    max-width: 800px;
    margin: 0 auto;
}

.landing__partner-card-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.landing__partner-card-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #25D366 0%, var(--landing-accent) 100%);
}

.landing__partner-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.landing__partner-card-logos {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.landing__partner-card-logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

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

.landing__partner-card-logo-img {
    height: 28px;
    width: auto;
    /* No filter needed - logos should be white/light on dark background */
}

.landing__partner-card-logo-img--partner {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.landing__partner-card-x {
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
}

.landing__partner-card-partner-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.landing__partner-card-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 1rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
}

.landing__partner-card-body {
    margin-bottom: 2rem;
}

.landing__partner-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.landing__partner-card-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

.landing__partner-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.landing__partner-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.landing__partner-card-btn svg,
.landing__partner-card-btn i {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.landing__partner-card-btn--whatsapp {
    background: #25D366;
    color: #fff;
}

.landing__partner-card-btn--whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.landing__partner-card-btn--call {
    background: var(--landing-primary);
    color: #fff;
}

.landing__partner-card-btn--call:hover {
    background: var(--landing-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(1, 22, 30, 0.25);
}

.landing__partner-card-btn--website {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.landing__partner-card-btn--website:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    transform: translateY(-2px);
}

/* RTL support for partner card */
[dir="rtl"] .landing__partner-card-header {
    flex-direction: row-reverse;
}

[dir="rtl"] .landing__partner-card-logos {
    flex-direction: row-reverse;
}

[dir="rtl"] .landing__partner-card-actions {
    flex-direction: row-reverse;
}

[dir="rtl"] .landing__partner-card-btn {
    flex-direction: row-reverse;
}

/* ============================================
   Regional Partnership Banner
   ============================================ */
.landing__footer-minimal--has-partner {
    padding-top: 0;
}

.landing__footer-partnership {
    background: linear-gradient(135deg, var(--landing-primary) 0%, var(--landing-primary-light) 100%);
    padding: 1rem 2rem;
    margin-bottom: 0;
}

.landing__footer-partnership-container {
    max-width: 1280px;
    margin: 0 auto;
}

.landing__footer-partnership-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.landing__footer-partnership-logos {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.landing__footer-partnership-logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

.landing__footer-partnership-logo-img {
    height: 24px;
    width: auto;
    filter: brightness(0) invert(1);
}

.landing__footer-partnership-x {
    font-size: 1.25rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
}

.landing__footer-partnership-partner-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.02em;
}

.landing__footer-partnership-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.landing__footer-partnership-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.landing__footer-partnership-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.landing__footer-partnership-contact:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.landing__footer-partnership-contact svg {
    width: 16px;
    height: 16px;
}

/* RTL support for partnership */
[dir="rtl"] .landing__footer-partnership-content {
    flex-direction: row-reverse;
}

[dir="rtl"] .landing__footer-partnership-logos {
    flex-direction: row-reverse;
}

[dir="rtl"] .landing__footer-partnership-info {
    flex-direction: row-reverse;
}

[dir="rtl"] .landing__footer-partnership-contact {
    flex-direction: row-reverse;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .landing__hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 7rem;
        min-height: auto;
    }
    
    .landing__hero-content {
        order: 1;
    }
    
    .landing__hero-visual {
        order: 2;
        display: none;
    }
    
    .landing__hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .landing__hero-actions {
        justify-content: center;
    }
    
    .landing__footer-minimal-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .landing__footer-minimal-left,
    .landing__footer-minimal-center,
    .landing__footer-minimal-right {
        justify-content: center;
    }
    
    .landing__benefits-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .landing__pricing-cards--three {
        grid-template-columns: 1fr 1fr;
        max-width: 700px;
    }
    
    .landing__pricing-cards--three .landing__pricing-card:first-child {
        grid-column: span 2;
        max-width: 350px;
        justify-self: center;
    }
}

@media (max-width: 768px) {
    .landing__nav {
        padding: 0.75rem 1rem;
    }
    
    .landing__nav-links {
        display: none;
    }
    
    .landing__nav-actions {
        gap: 0.375rem;
    }
    
    /* Hide desktop-only elements on mobile */
    .landing__lang-switcher--desktop {
        display: none;
    }
    
    .landing__nav-login--desktop {
        display: none;
    }
    
    /* Show mobile menu */
    .landing__nav-mobile-menu {
        display: block;
    }
    
    .landing__nav-cta {
        font-size: 0.8125rem;
        padding: 0.5rem 0.875rem;
        gap: 0.375rem;
    }
    
    .landing__nav-cta-icon {
        width: 14px;
        height: 14px;
    }
}

/* Very small screens - further optimize header */
@media (max-width: 400px) {
    .landing__nav-actions {
        gap: 0.25rem;
    }
    
    .landing__nav-cta--mobile {
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
    }
    
    .landing__hero {
        padding: 6rem 1rem 3rem;
    }
    
    .landing__hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .landing__hero-stat-divider {
        display: none;
    }
    
    .landing__hero-stat {
        align-items: center;
    }
    
    .landing__features,
    .landing__how-it-works,
    .landing__pricing,
    .landing__cta {
        padding: 4rem 1rem;
    }
    
    .landing__features-grid {
        grid-template-columns: 1fr;
    }
    
    .landing__step {
        grid-template-columns: 60px 1fr;
        gap: 1rem;
    }
    
    .landing__step-icon {
        display: none;
    }
    
    .landing__step-connector {
        padding: 0 1rem;
    }
    
    .landing__pricing-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .landing__pricing-cards--three {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .landing__pricing-card--popular {
        transform: none;
    }
    
    .landing__pricing-card--popular.is-visible {
        transform: none;
    }
    
    .landing__pricing-features--grid {
        grid-template-columns: 1fr;
    }
    
    .landing__pricing-trial-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .landing__pricing-trial-content {
        text-align: center;
    }
    
    .landing__cta-container {
        padding: 2.5rem 1.5rem;
    }
    
    .landing__cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .landing__cta-partner {
        padding: 1rem 1.25rem;
        gap: 0.5rem;
    }
    
    .landing__cta-partner-badge {
        font-size: 0.75rem;
        flex-wrap: wrap;
    }
    
    .landing__cta-partner-logo {
        height: 32px;
    }
    
    .landing__cta-partner-name {
        font-size: 1rem;
    }
    
    .landing__footer-minimal {
        padding: 1.25rem 1rem;
    }
    
    .landing__footer-minimal-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .landing__footer-minimal-left {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Partner card responsive */
    .landing__partner-card {
        padding: 2.5rem 1rem;
    }
    
    .landing__partner-card-content {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .landing__partner-card-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .landing__partner-card-title {
        font-size: 1.25rem;
    }
    
    .landing__partner-card-description {
        font-size: 0.9375rem;
    }
    
    .landing__partner-card-actions {
        flex-direction: column;
    }
    
    .landing__partner-card-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Nav WhatsApp responsive */
    .landing__nav-whatsapp {
        padding: 0.5rem;
        border-radius: 50%;
    }
    
    .landing__benefits-container {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .landing__benefit {
        padding: 0.75rem 0;
    }
}

/* ============================================
   Mobile Hero Visual
   ============================================ */
.landing__hero-mobile-visual {
    display: none;
}

@media (max-width: 1024px) {
    .landing__hero-mobile-visual {
        display: block;
        position: relative;
        margin-top: 3rem;
        padding: 1rem;
        min-height: 280px;
    }
    
    .landing__hero-mobile-glow {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, var(--landing-accent) 0%, transparent 70%);
        opacity: 0.15;
        filter: blur(60px);
        animation: landing-mobile-glow-pulse 4s ease-in-out infinite;
    }
    
    @keyframes landing-mobile-glow-pulse {
        0%, 100% {
            transform: translate(-50%, -50%) scale(1);
            opacity: 0.15;
        }
        50% {
            transform: translate(-50%, -50%) scale(1.2);
            opacity: 0.25;
        }
    }
    
    .landing__hero-mobile-cards {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .landing__hero-mobile-card {
        display: flex;
        align-items: center;
        gap: 0.875rem;
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 14px;
        padding: 0.875rem 1rem;
        opacity: 0;
        transform: translateX(-30px);
        animation: landing-mobile-card-slide 0.6s ease forwards;
    }
    
    .landing__hero-mobile-card--1 {
        animation-delay: 0.2s;
    }
    
    .landing__hero-mobile-card--2 {
        animation-delay: 0.4s;
    }
    
    .landing__hero-mobile-card--3 {
        animation-delay: 0.6s;
    }
    
    @keyframes landing-mobile-card-slide {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .landing__hero-mobile-card-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .landing__hero-mobile-card-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .landing__hero-mobile-card-icon--success {
        background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.05));
        color: #22c55e;
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
    }
    
    .landing__hero-mobile-card-icon--info {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.05));
        color: #3b82f6;
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
    }
    
    .landing__hero-mobile-card-icon--warning {
        background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(249, 115, 22, 0.05));
        color: #f97316;
        box-shadow: 0 0 20px rgba(249, 115, 22, 0.2);
    }
    
    .landing__hero-mobile-card-text {
        display: flex;
        flex-direction: column;
        gap: 0.125rem;
    }
    
    .landing__hero-mobile-card-title {
        font-size: 0.9375rem;
        font-weight: 600;
        color: var(--landing-text);
    }
    
    .landing__hero-mobile-card-sub {
        font-size: 0.8125rem;
        color: var(--landing-text-muted);
    }
    
    /* Floating orbs */
    .landing__hero-mobile-orbs {
        position: absolute;
        inset: 0;
        pointer-events: none;
        overflow: hidden;
    }
    
    .landing__hero-mobile-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(1px);
    }
    
    .landing__hero-mobile-orb--1 {
        width: 8px;
        height: 8px;
        background: #22c55e;
        top: 10%;
        left: 10%;
        animation: landing-mobile-orb-float 6s ease-in-out infinite;
        box-shadow: 0 0 15px #22c55e;
    }
    
    .landing__hero-mobile-orb--2 {
        width: 6px;
        height: 6px;
        background: #3b82f6;
        top: 20%;
        right: 15%;
        animation: landing-mobile-orb-float 5s ease-in-out infinite 1s;
        box-shadow: 0 0 12px #3b82f6;
    }
    
    .landing__hero-mobile-orb--3 {
        width: 10px;
        height: 10px;
        background: #f97316;
        bottom: 15%;
        right: 20%;
        animation: landing-mobile-orb-float 7s ease-in-out infinite 0.5s;
        box-shadow: 0 0 18px #f97316;
    }
    
    @keyframes landing-mobile-orb-float {
        0%, 100% {
            transform: translate(0, 0) scale(1);
            opacity: 0.8;
        }
        25% {
            transform: translate(10px, -15px) scale(1.1);
            opacity: 1;
        }
        50% {
            transform: translate(-5px, -25px) scale(0.9);
            opacity: 0.6;
        }
        75% {
            transform: translate(-15px, -10px) scale(1.05);
            opacity: 0.9;
        }
    }
    
    /* Add subtle hover effect on mobile cards */
    .landing__hero-mobile-card::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 14px;
        background: linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.05) 0%,
            transparent 50%
        );
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .landing__hero-mobile-card:nth-child(1) {
        animation: landing-mobile-card-slide 0.6s ease forwards,
                   landing-mobile-card-glow-green 3s ease-in-out infinite 1s;
    }
    
    .landing__hero-mobile-card:nth-child(2) {
        animation: landing-mobile-card-slide 0.6s ease forwards,
                   landing-mobile-card-glow-blue 3s ease-in-out infinite 1.5s;
    }
    
    .landing__hero-mobile-card:nth-child(3) {
        animation: landing-mobile-card-slide 0.6s ease forwards,
                   landing-mobile-card-glow-orange 3s ease-in-out infinite 2s;
    }
    
    @keyframes landing-mobile-card-glow-green {
        0%, 100% {
            box-shadow: 0 4px 20px rgba(34, 197, 94, 0);
        }
        50% {
            box-shadow: 0 4px 25px rgba(34, 197, 94, 0.15);
        }
    }
    
    @keyframes landing-mobile-card-glow-blue {
        0%, 100% {
            box-shadow: 0 4px 20px rgba(59, 130, 246, 0);
        }
        50% {
            box-shadow: 0 4px 25px rgba(59, 130, 246, 0.15);
        }
    }
    
    @keyframes landing-mobile-card-glow-orange {
        0%, 100% {
            box-shadow: 0 4px 20px rgba(249, 115, 22, 0);
        }
        50% {
            box-shadow: 0 4px 25px rgba(249, 115, 22, 0.15);
        }
    }
}

/* ============================================
   Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .landing__bg-glow,
    .landing__hero-card,
    .landing__cta-shape {
        animation: none;
    }
    
    .landing__feature-card,
    .landing__step,
    .landing__pricing-card {
        opacity: 1;
        transform: none;
    }
    
    .landing__hero-content,
    .landing__hero-visual {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .landing__hero-mobile-glow,
    .landing__hero-mobile-orb,
    .landing__hero-mobile-card {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   RTL (Right-to-Left) Support for Arabic
   ============================================ */
[dir="rtl"] .landing,
body.rtl .landing {
    direction: rtl;
    text-align: right;
}

/* Navigation RTL */
[dir="rtl"] .landing__nav-container {
    flex-direction: row-reverse;
}

[dir="rtl"] .landing__nav-links {
    flex-direction: row-reverse;
}

[dir="rtl"] .landing__nav-actions {
    flex-direction: row-reverse;
}

[dir="rtl"] .landing__nav-link::after {
    left: auto;
    right: 0;
}

[dir="rtl"] .landing__nav-cta-icon {
    transform: rotate(180deg);
}

[dir="rtl"] .landing__nav-cta:hover .landing__nav-cta-icon {
    transform: rotate(180deg) translateX(-3px);
}

[dir="rtl"] .landing__lang-dropdown {
    right: auto;
    left: 0;
}

/* Hero RTL */
[dir="rtl"] .landing__hero {
    direction: rtl;
}

[dir="rtl"] .landing__hero-content {
    text-align: right;
}

[dir="rtl"] .landing__hero-actions {
    flex-direction: row-reverse;
    justify-content: flex-start;
}

[dir="rtl"] .landing__hero-btn--primary svg {
    transform: rotate(180deg);
}

[dir="rtl"] .landing__hero-btn--primary:hover svg {
    transform: rotate(180deg) translateX(-3px);
}

[dir="rtl"] .landing__hero-visual {
    transform: scaleX(-1);
}

/* Benefits RTL */
[dir="rtl"] .landing__benefit {
    flex-direction: row-reverse;
    text-align: right;
}

/* Features RTL */
[dir="rtl"] .landing__feature-list li {
    flex-direction: row-reverse;
}

/* Steps RTL */
[dir="rtl"] .landing__step {
    direction: rtl;
}

[dir="rtl"] .landing__step-content {
    text-align: right;
}

/* Pricing RTL */
[dir="rtl"] .landing__pricing-region {
    flex-direction: row-reverse;
}

[dir="rtl"] .landing__pricing-features li {
    flex-direction: row-reverse;
}

/* CTA RTL */
[dir="rtl"] .landing__cta-content {
    text-align: center;
}

[dir="rtl"] .landing__cta-btn--primary svg {
    transform: rotate(180deg);
}

[dir="rtl"] .landing__cta-btn--primary:hover svg {
    transform: rotate(180deg) translateX(-3px);
}

[dir="rtl"] .landing__cta-note {
    flex-direction: row-reverse;
}

/* Pricing Trial Box RTL */
[dir="rtl"] .landing__pricing-trial-box {
    flex-direction: row-reverse;
}

[dir="rtl"] .landing__pricing-trial-content {
    text-align: right;
}

/* Footer RTL */
[dir="rtl"] .landing__footer-minimal-container {
    flex-direction: row-reverse;
}

[dir="rtl"] .landing__footer-minimal-left {
    flex-direction: row-reverse;
}

[dir="rtl"] .landing__footer-minimal-center {
    flex-direction: row-reverse;
}

[dir="rtl"] .landing__footer-social {
    flex-direction: row-reverse;
}

[dir="rtl"] .landing__footer-link-inline:hover {
    transform: translateX(-3px);
}

/* Section headers RTL - keep centered */
[dir="rtl"] .landing__section-header {
    text-align: center;
}

/* Arabic Font adjustment */
[dir="rtl"] .landing {
    font-family: 'DM Sans', 'Segoe UI', Tahoma, Arial, sans-serif;
}

/* ============================================
   Video Modal
   ============================================ */
.landing__video-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.landing__video-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.landing__video-modal-content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.landing__video-modal.is-open .landing__video-modal-content {
    transform: scale(1) translateY(0);
}

.landing__video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.landing__video-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.landing__video-modal-close svg {
    width: 20px;
    height: 20px;
}

.landing__video-modal iframe,
.landing__video-modal video {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    background: #000;
    object-fit: contain;
}

.landing__video-modal video::-webkit-media-controls {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.landing__video-modal video::-webkit-media-controls-panel {
    background: transparent;
}

/* Video thumbnail styling for the button */
.landing__hero-btn--secondary.landing__video-trigger {
    cursor: pointer;
    position: relative;
}

.landing__hero-btn--secondary.landing__video-trigger::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: transparent;
    transition: all 0.3s ease;
}

.landing__hero-btn--secondary.landing__video-trigger:hover::before {
    background: rgba(16, 185, 129, 0.05);
}

.landing__hero-btn--secondary.landing__video-trigger svg {
    animation: playPulse 2s ease-in-out infinite;
}

@keyframes playPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@media (max-width: 768px) {
    .landing__video-modal-content {
        max-width: 100%;
        border-radius: 12px;
    }
    
    .landing__video-modal-close {
        top: -45px;
        width: 36px;
        height: 36px;
    }
    
    .landing__video-modal-close svg {
        width: 18px;
        height: 18px;
    }
}

/* ============================================
   URL Ticker Animation - carss.at / your-business
   ============================================ */
.landing__url-ticker {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 0.625rem 1rem 0.625rem 0.875rem;
    background: linear-gradient(135deg, rgba(1, 22, 30, 0.95), rgba(2, 40, 52, 0.95));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 100px;
    font-family: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    box-shadow: 
        0 4px 20px rgba(1, 22, 30, 0.3),
        0 0 40px rgba(16, 185, 129, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: tickerGlow 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.landing__url-ticker::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    animation: tickerShine 4s ease-in-out infinite;
}

@keyframes tickerGlow {
    0%, 100% { box-shadow: 0 4px 20px rgba(1, 22, 30, 0.3), 0 0 40px rgba(16, 185, 129, 0.1); }
    50% { box-shadow: 0 4px 30px rgba(1, 22, 30, 0.4), 0 0 60px rgba(16, 185, 129, 0.2); }
}

@keyframes tickerShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.landing__url-ticker-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-right: 0.5rem;
    color: #22c55e;
}

.landing__url-ticker-icon svg {
    width: 16px;
    height: 16px;
    filter: drop-shadow(0 0 4px rgba(34, 197, 94, 0.5));
}

.landing__url-ticker-platform {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.landing__url-ticker-separator {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0.25rem;
}

.landing__url-ticker-names {
    height: 1.5em;
    overflow: hidden;
    position: relative;
    min-width: 140px;
}

.landing__url-ticker-track {
    display: flex;
    flex-direction: column;
    animation: tickerScroll 16s ease-in-out infinite;
}

.landing__url-ticker-name {
    height: 1.5em;
    display: flex;
    align-items: center;
    color: #10b981;
    font-weight: 600;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

/* Last item "your-business" with special highlight */
.landing__url-ticker-name:last-child {
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.4);
}

@keyframes tickerScroll {
    0%, 10% { transform: translateY(0); }
    12.5%, 22.5% { transform: translateY(-12.5%); }
    25%, 35% { transform: translateY(-25%); }
    37.5%, 47.5% { transform: translateY(-37.5%); }
    50%, 60% { transform: translateY(-50%); }
    62.5%, 72.5% { transform: translateY(-62.5%); }
    75%, 85% { transform: translateY(-75%); }
    87.5%, 100% { transform: translateY(-87.5%); }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .landing__url-ticker {
        font-size: 0.8125rem;
        padding: 0.5rem 0.875rem 0.5rem 0.75rem;
        margin-bottom: 1.25rem;
    }
    
    .landing__url-ticker-icon {
        width: 18px;
        height: 18px;
        margin-right: 0.375rem;
    }
    
    .landing__url-ticker-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .landing__url-ticker-names {
        min-width: 110px;
    }
}

/* RTL Support */
.rtl .landing__url-ticker {
    direction: ltr;
}

