:root {
    /* -------------------------------------------------------------------------- */
    /*                                 Color Palette                                */
    /* -------------------------------------------------------------------------- */

    /* Primary Brand Colors */
    --color-primary: #58CC02;
    --color-primary-dark: #46A302;
    --color-primary-light: #DFF6CC;

    /* Neutral / Surface Colors */
    --color-surface-white: #FFFFFF;
    --color-surface-off: #FAFAFA;
    --color-text-main: #1F2937;
    /* Slate 900 */
    --color-text-muted: #4B5563;
    /* Slate 600 */
    --color-border: #E5E7EB;
    /* Gray 200 */

    /* Semantic Colors */
    --color-success: #22C55E;
    --color-warning: #F59E0B;
    --color-error: #EF4444;

    /* -------------------------------------------------------------------------- */
    /*                                 Typography                                   */
    /* -------------------------------------------------------------------------- */
    --font-family: 'Nunito', sans-serif;

    --text-hero: 3.5rem;
    /* 56px */
    --text-h2: 2.5rem;
    /* 40px */
    --text-h3: 1.5rem;
    /* 24px */
    --text-body: 1.125rem;
    /* 18px */
    --text-sm: 1rem;
    /* 16px */

    /* -------------------------------------------------------------------------- */
    /*                                   Spacing                                    */
    /* -------------------------------------------------------------------------- */
    --container-width: 1200px;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* -------------------------------------------------------------------------- */
    /*                                   Effects                                    */
    /* -------------------------------------------------------------------------- */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-green: 0 4px 6px -1px rgba(88, 204, 2, 0.3);
}

html {
    scroll-behavior: smooth;
}

/* -------------------------------------------------------------------------- */
/*                                    Reset                                     */
/* -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-surface-off);
    /* Warm off-white background */
    color: var(--color-text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    padding: 2rem 0;
    /* Add outer padding for the frame effect */
    position: relative;
    /* Ensure overflow hidden works with absolute children if any */
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

ul {
    list-style: none;
}

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

.section {
    padding: var(--spacing-lg) 0;
}

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

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

.bg-off-white {
    background-color: var(--color-surface-off);
}

.grid {
    display: grid;
    gap: var(--spacing-md);
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.flex {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.flex-col {
    flex-direction: column;
}

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

.justify-between {
    justify-content: space-between;
}

/* -------------------------------------------------------------------------- */
/*                                  Components                                  */
/* -------------------------------------------------------------------------- */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2.5rem;
    font-weight: 800;
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
    cursor: pointer;
    gap: 0.5rem;
    font-size: var(--text-sm);
    letter-spacing: 0.02em;
}

/* Primary Button (White on Green) - for Hero */
.btn-primary {
    background-color: var(--color-surface-white);
    color: var(--color-text-main);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: none;
}

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

/* Outline Button (White Border) - for Hero */
.btn-outline {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-surface-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: var(--color-surface-white);
    transform: translateY(-2px);
}

/* Download App Button (Dark) - for Bottom Card */
.btn-dark {
    background-color: #1F2937;
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-dark:hover {
    background-color: black;
    transform: translateY(-2px);
}


/* Typography */
h1 {
    font-size: var(--text-hero);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: var(--text-h2);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: var(--text-h3);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

p {
    font-size: var(--text-body);
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.section-header {
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Cards */
.feature-card {
    background: var(--color-surface-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    height: 100%;
}

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

.icon-box {
    width: 64px;
    height: 64px;
    background-color: var(--color-primary-light);
    color: var(--color-primary-dark);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* -------------------------------------------------------------------------- */
/*                                   Sections                                   */
/* -------------------------------------------------------------------------- */

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2.5rem 0;
    /* More padding given the frame */
    background: transparent;
    border-bottom: none;
}

.logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    /* Left aligned typically in reference */
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--color-surface-white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.logo span {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 40px;
    width: 40px;
    border-radius: 8px;
}

/* Navigation Links (if needed, hidden based on request but structure allows) */
.nav-links {
    display: flex;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Hero Card Wrapper */
.hero-wrapper {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

/* Hero Card */
.hero-card {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    /* Slightly deeper gradient */
    border-radius: 64px;
    /* Even rounder */
    position: relative;
    min-height: 650px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* More space for text */
    align-items: center;
    overflow: hidden;
    /* Clip everything for clean edges or visible if we want pop-out */
    box-shadow: 0 30px 60px -15px rgba(88, 204, 2, 0.4);
}

.hero-content {
    padding: 6rem;
    position: relative;
    z-index: 20;
}

/* Mascot Removed */


.hero-content h1 {
    font-size: 4.5rem;
    color: white;
    /* Larger */
    margin-bottom: 2rem;
    line-height: 1.05;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.35rem;
    max-width: 520px;
    margin-bottom: 3rem;
}

.hero-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-visual img:last-child {
    /* The phones */
    position: relative;
    z-index: 10;
}

.hero-mascot {
    position: absolute;
    left: 20px;
    /* Tucked slightly left */
    bottom: 40px;
    width: 140px;
    /* Smaller as requested */
    height: auto;
    z-index: 5;
    /* Behind phones (10) but visible */
    transform: rotate(-10deg);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    animation: floatMascot 8s ease-in-out infinite;
}

@keyframes floatMascot {

    0%,
    100% {
        transform: rotate(-10deg) translateY(0);
    }

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

/* Stats Section (Masonry-ish) */
.stats-section {
    padding-top: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 350px 1fr 350px;
    /* Specific widths */
    gap: 2rem;
    align-items: stretch;
}

.stat-card {
    padding: 2.5rem;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240px;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
    transform: translateY(-5px);
}

/* Card Variants */
.stat-card.green {
    background-color: var(--color-primary-light);
    color: var(--color-primary-dark);
}

.stat-card.white {
    background-color: white;
    border: 1px solid var(--color-border);
}

.stat-card.download-block {
    background-color: #F3F4F6;
    align-items: flex-start;
    padding: 2rem;
    /* Reduced from 2.5rem */
}

/* ... existing ... */

.notify-input {
    flex: 1;
    min-width: 0;
    /* Allow shrinking */
    padding: 0.75rem 1rem;
    /* Reduced side padding from 1.5rem */
    border: none;
    background: transparent;
    font-size: 1rem;
    outline: none;
    color: var(--color-text-main);
    border-radius: 99px;
}

/* ... existing ... */

.btn-notify {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    /* Reduced side padding from 1.75rem */
    border-radius: 99px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    /* Slight reduction */
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(88, 204, 2, 0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 700;
    opacity: 0.8;
}

/* Download Block Specifics */
.download-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.store-buttons {
    display: flex;
    gap: 1rem;
}

.store-badge {
    background: black;
    color: white;
    border-radius: 12px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: opacity 0.2s;
}

.store-badge:hover {
    opacity: 0.8;
}

/* Notify Form Styles */
/* Notify Form Styles - Unified Pill Design */
.notify-form {
    display: flex;
    width: 100%;
    margin-bottom: 1rem;
    position: relative;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 99px;
    /* Pill shape */
    padding: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease;
}

.notify-form:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(88, 204, 2, 0.15);
}

.notify-input {
    flex: 1;
    min-width: 0;
    /* CRITICAL: Allows flex child to shrink properly */
    padding: 0.75rem 1rem;
    /* Reduced from 1.5rem */
    border: none;
    background: transparent;
    font-size: 0.95rem;
    /* Slightly smaller text */
    outline: none;
    color: var(--color-text-main);
    border-radius: 99px;
    /* Inner radius matches */
}

.notify-input::placeholder {
    color: #9CA3AF;
}

.btn-notify {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    /* Reduced from 1.75rem */
    border-radius: 99px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(88, 204, 2, 0.3);
}

.btn-notify:hover {
    background: var(--color-primary-dark);
    transform: translateX(-1px);
    box-shadow: 0 4px 10px rgba(88, 204, 2, 0.4);
}

/* Steps / How it Works */
.step-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-item.reverse {
    direction: rtl;
    /* Quick hack for swapping columns conceptually, better with grid areas */
}

.step-item.reverse .step-content {
    direction: ltr;
    /* Reset text direction */
}

.step-number {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
    font-weight: 800;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.step-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.testimonial-card {
    background: var(--color-surface-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    text-align: center;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
    background-color: var(--color-border);
}

.stars {
    color: var(--color-warning);
    margin-bottom: 1rem;
}

/* Feature Details Section */
.feature-details {
    padding: 6rem 0;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.feature-text {
    flex: 1;
}

.feature-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary-dark);
}

.feature-text p {
    font-size: 1.125rem;
    line-height: 1.7;
}

.feature-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    padding: 2.5rem;
}

.feature-image img {
    max-width: 290px;
    border-radius: 32px;
    /* border: 8px solid white; REMOVED */
    z-index: 2;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
    /* box-shadow removed to prevent rectangle */
    /* Using filter for shape-based shadow instead */
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.25));
}

.feature-row:hover .feature-image img {
    transform: scale(1.02) rotate(0deg);
}

/* Footer (Simplified) */
.simple-footer {
    text-align: center;
    padding: 4rem 0 2rem;
}


/* -------------------------------------------------------------------------- */
/*                                Responsive                                  */
/* -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
    :root {
        --container-width: 100%;
        --text-hero: 3.5rem;
    }

    /* Hero adjustments for Tablet/Small Laptop */
    .hero-card {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
        padding-bottom: 3rem;
        border-radius: 48px;
    }

    .hero-content {
        padding: 4rem 3rem 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        justify-content: center;
        margin-top: -2rem;
        transform: scale(0.9);
    }

    /* Stack Stats slightly earlier if needed, but 1024 can usually handle 3 cols. 
       Let's switch to 1 col for better readability on tablets portrait. */
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .feature-row {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    :root {
        --text-hero: 2.75rem;
        --text-h2: 2rem;
        --spacing-md: 1.5rem;
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    .header {
        padding: 1rem 0;
    }

    .logo {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }

    .logo img {
        width: 32px;
        height: 32px;
    }

    .logo span {
        font-size: 1rem;
    }

    /* Hero Mobile */
    .hero-card {
        border-radius: 32px;
        padding-bottom: 2rem;
        display: flex;
        flex-direction: column;

        /* Make wider to match other cards or screen edge */
        width: calc(100% + 3rem);
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }

    /* Unbox hero content to reorder children */
    .hero-content {
        display: contents;
    }

    .hero-content h1 {
        order: 1;
        font-size: var(--text-hero);
        margin-bottom: 1rem;
        padding: 3rem 1.5rem 0;
        /* Move padding here since container is gone */
    }

    .hero-content p {
        order: 2;
        padding: 0 1.5rem;
        margin-bottom: 1rem;
    }

    /* Image in middle (Order 3) */
    /* Image in middle (Order 3) */
    .hero-visual {
        order: 3;
        transform: none;
        margin-top: 0;
        /* Reset to 0 to prevent overlap */
        margin-bottom: 1rem;
        display: flex;
        justify-content: center;
    }

    .hero-visual img {
        width: 50% !important;
        height: auto;
    }

    /* Buttons at bottom (Order 4) */
    .hero-content .flex {
        order: 4;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-top: 50px;
        /* Increased from 30px as requested "20% more" */
        margin-bottom: 2rem;
        padding: 0 1.5rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: auto;
        min-width: 140px;
    }

    /* Stack Features */
    .feature-row {
        flex-direction: column !important;
        /* Force stack */
        text-align: center;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    /* Ensure alternating rows also stack correctly (image/text order) */
    .feature-row:nth-child(even) {
        flex-direction: column !important;
    }

    /* Reorder text to top for mobile? Or keep image first? 
       Usually Text -> Image is better for storytelling, or Image -> Text.
       Current HTML structure varies. 
       Let's enforce a specific order if we want consistency, but simple stacking is safer.
    */

    /* Enforce Image Top, Text Bottom */
    .feature-image {
        order: 1;
        padding: 0;
        justify-content: center;
    }

    .feature-text {
        order: 2;
    }

    .feature-image img {
        max-width: 60%;
        /* Reduced from 80% */
        transform: rotate(0deg) !important;
        /* No rotation on mobile to save space */
        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
        /* Lighter shadow */
    }

    .icon-box {
        margin: 0 auto 1rem;
    }

    /* Stats Mobile */
    .stats-grid {
        grid-template-columns: minmax(0, 1fr) !important;
        /* Force single column securely */
        gap: 1.5rem;
        width: 100%;
        max-width: 100vw;
        /* Ensure no blowout */
    }

    .stat-card {
        padding: 2rem;
        min-height: 320px;
        /* Normalized height for all cards */
        display: flex;
        flex-direction: column;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    /* Misc */
    .store-buttons {
        justify-content: center;
    }

    .footer {
        padding: 3rem 0;
    }
}



/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.2s ease-out;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease-out;
}

.modal-content h3 {
    margin-top: 0;
    color: var(--color-text-dark);
}

.modal-content textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    margin-bottom: 1rem;
    resize: vertical;
    outline: none;
    transition: border-color 0.2s;
}

.modal-content textarea:focus {
    border-color: var(--color-primary);
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.btn-cancel {
    background: transparent;
    border: none;
    color: #666;
    font-weight: 600;
    cursor: pointer;
    padding: 0.8rem 1.2rem;
}

.btn-submit {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-submit:hover {
    transform: scale(1.05);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

        transform: translateY(0);
        opacity: 1;
    }
}
/* -------------------------------------------------------------------------- */
/*                              Language Switcher                             */
/* -------------------------------------------------------------------------- */

.lang-switcher {
    position: relative;
    display: inline-block;
    z-index: 1000;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--color-surface-white);
    border: 1px solid var(--color-border);
    border-radius: 99px;
    font-weight: 700;
    color: var(--color-text-main);
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
}

.lang-btn i, .lang-btn svg {
    pointer-events: none;
}

.lang-btn:hover, .lang-btn:focus-visible {
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
    box-shadow: 0 0 0 3px var(--color-primary-light);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--color-surface-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: 0.5rem;
    margin: 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
}

.lang-switcher.open .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-menu li button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.5rem 1rem;
    background: none;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--color-text-main);
    cursor: pointer;
    transition: background 0.1s, color 0.1s;
}

.lang-menu li button:hover,
.lang-menu li button.active {
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
    font-weight: 700;
}