/* ==========================================================================
   Daftar Wasl Landing Page — Design Tokens & Styles
   ========================================================================== */

:root {
    --landing-primary: #6F3AFA;
    --landing-primary-light: #8A5CF5;
    --landing-primary-dark: #5A2ED4;
    --landing-bg-dark: #060912;
    --landing-bg-dark-card: #1C1E26;
    --landing-bg-dark-nested: #14161C;
    --landing-bg-light: #F9FAFB;
    --landing-bg-white: #FFFFFF;
    --landing-text-white: #FFFFFF;
    --landing-text-muted: #9CA3AF;
    --landing-text-dark: #111827;
    --landing-text-body: #4B5563;
    --landing-text-subtitle: #6B7280;
    --landing-border: #E5E7EB;
    --landing-border-dark: #2A2D36;
    --landing-radius-sm: 12px;
    --landing-radius-md: 20px;
    --landing-radius-lg: 24px;
    --landing-radius-xl: 32px;
    --landing-radius-pill: 9999px;
    --landing-container: 1200px;
    --landing-section-py: 80px;
    --landing-section-py-sm: 48px;
    --landing-font: 'ExpoArabic', 'Noto Kufi Arabic', sans-serif;
    --landing-check-blue: #8A5CF5;
    --landing-badge-blue: #EEF2FF;
    --landing-badge-blue-text: #4F46E5;
    --landing-navbar-offset: 72px;
}

html:has(.landing-page) {
    scroll-behavior: smooth;
}

.landing-section[id] {
    scroll-margin-top: var(--landing-navbar-offset);
}

/* Layout overrides */
html:has(.landing-page),
body:has(.landing-page) {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    width: 100%;
    max-width: 100%;
    height: auto;
}

#app:has(.landing-page) {
    overflow-x: hidden;
    overflow-y: visible;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
}

.landing-page {
    overflow-x: hidden;
    overflow-y: visible;
    width: 100%;
    max-width: 100%;
    min-height: 0;
    height: auto;
    box-sizing: border-box;
}

.landing-page.mud-layout {
    overflow-x: hidden;
    overflow-y: visible;
    width: 100%;
    max-width: 100%;
    min-height: 0 !important;
    height: auto !important;
}

.landing-page .mud-main-content {
    margin: 0 !important;
    margin-inline: 0 !important;
    flex: 0 0 auto;
    padding-top: 0 !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
    width: 100%;
    max-width: 100%;
    height: auto !important;
    min-height: 0 !important;
}

.landing-page.mud-drawer-open .mud-main-content,
.landing-page.mud-drawer-close .mud-main-content,
.auth-page.mud-drawer-open .mud-main-content,
.auth-page.mud-drawer-close .mud-main-content {
    margin: 0 !important;
    margin-inline: 0 !important;
    padding-inline: 0 !important;
}

.landing-page .mud-container.landing-main-content {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
    box-sizing: border-box;
    height: auto !important;
    min-height: 0 !important;
}

/* Standalone auth pages (login / forgot password) — full viewport, no navbar */
html:has(.auth-page),
body:has(.auth-page) {
    overflow-x: hidden;
    width: 100%;
    min-height: 100%;
}

#app:has(.auth-page) {
    overflow-x: hidden;
    width: 100%;
    min-height: 100%;
}

.auth-page {
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
}

.auth-page.mud-layout {
    overflow-x: hidden;
    min-height: 100vh !important;
    height: auto !important;
}

.auth-page .mud-main-content {
    margin: 0 !important;
    margin-inline: 0 !important;
    flex: 1 1 auto;
    padding-top: 0 !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
    width: 100%;
    min-height: 100vh;
}

.auth-page .mud-container.auth-main-content {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
    min-height: 100vh;
    box-sizing: border-box;
}

.landing-sections {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
}

/* SectionWrapper */
.landing-section {
    padding: var(--landing-section-py) 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.landing-section--dark {
    background-color: var(--landing-bg-dark);
    color: var(--landing-text-white);
}

.landing-section--light {
    background-color: var(--landing-bg-light);
}

.landing-section__inner {
    max-width: var(--landing-container);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

/* SectionBadge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--landing-radius-pill);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-family: var(--landing-font);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--landing-text-white);
}

.section-badge--dark {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--landing-text-muted);
}

.section-badge--blue {
    background: var(--landing-badge-blue);
    border-color: transparent;
    color: var(--landing-badge-blue-text);
}

.section-badge--purple {
    background: rgba(111, 58, 250, 0.06);
    border: 1px solid rgba(111, 58, 250, 0.22);
    color: var(--landing-primary);
}

.pricing-section-wrapper .section-badge--purple {
    background: rgba(111, 58, 250, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.32);
    color: #c4b5fd;
}

.section-badge__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--landing-primary);
    flex-shrink: 0;
}

.section-badge--blue .section-badge__dot {
    background: var(--landing-badge-blue-text);
}

.section-badge--purple .section-badge__dot {
    background: var(--landing-primary);
}

.section-badge__text {
    line-height: 1.4;
}

/* LandingButton */
.landing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--landing-radius-pill);
    font-family: var(--landing-font);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
    white-space: nowrap;
    box-sizing: border-box;
}

.landing-btn__text {
    color: inherit;
}

.landing-btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

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

.landing-btn--primary .landing-btn__text {
    color: #ffffff;
}

.landing-btn--primary:hover,
.landing-btn--primary:focus-visible {
    background: var(--landing-primary-dark);
    border-color: var(--landing-primary-dark);
    color: #ffffff;
}

.landing-btn--primary:hover .landing-btn__text,
.landing-btn--primary:focus-visible .landing-btn__text {
    color: #ffffff;
}

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

.landing-btn--secondary .landing-btn__text {
    color: var(--landing-primary);
}

.landing-btn--secondary:hover,
.landing-btn--secondary:focus-visible {
    background: #f3f4f6;
    color: var(--landing-primary);
}

.landing-btn--secondary:hover .landing-btn__text,
.landing-btn--secondary:focus-visible .landing-btn__text {
    color: var(--landing-primary);
}

.landing-btn--outline {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.55);
}

.landing-btn--outline .landing-btn__text {
    color: #ffffff;
}

.landing-btn--outline:hover,
.landing-btn--outline:focus-visible {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.landing-btn--outline:hover .landing-btn__text,
.landing-btn--outline:focus-visible .landing-btn__text {
    color: #ffffff;
}

.landing-btn--white {
    background: var(--landing-bg-white);
    color: var(--landing-text-dark);
    border-color: var(--landing-bg-white);
}

.landing-btn--white .landing-btn__text {
    color: var(--landing-text-dark);
}

.landing-btn__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.landing-btn__icon svg {
    width: 18px;
    height: 18px;
}

/* PhoneMockup */
.phone-mockup {
    display: flex;
    justify-content: center;
}

.phone-mockup__frame {
    width: 200px;
    background: #1a1a2e;
    border-radius: 28px;
    padding: 8px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35), 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.phone-mockup--large .phone-mockup__frame {
    width: 260px;
}

.phone-mockup--small .phone-mockup__frame {
    width: 160px;
}

.phone-mockup__notch {
    width: 80px;
    height: 6px;
    background: #2a2a3e;
    border-radius: 3px;
    margin: 4px auto 8px;
}

.phone-mockup__screen {
    background: #f5f5f7;
    border-radius: 20px;
    padding: 12px;
    min-height: 320px;
}

.phone-mockup--large .phone-mockup__screen {
    min-height: 400px;
}

.phone-mockup--small .phone-mockup__screen {
    min-height: 260px;
    padding: 8px;
}

.phone-mockup__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.phone-mockup__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--landing-primary), #a78bfa);
    flex-shrink: 0;
}

.phone-mockup__user-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.phone-mockup__name {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--landing-text-dark);
    font-family: var(--landing-font);
}

.phone-mockup__role {
    font-size: 0.6rem;
    color: var(--landing-text-subtitle);
    font-family: var(--landing-font);
}

.phone-mockup__promo {
    background: var(--landing-primary);
    color: white;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 0.6rem;
    font-family: var(--landing-font);
    margin-bottom: 10px;
    text-align: center;
}

.phone-mockup__dates {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
}

.phone-mockup__date {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 4px;
    border-radius: 8px;
    background: white;
    border: 1px solid var(--landing-border);
}

.phone-mockup__date--active {
    background: var(--landing-primary);
    border-color: var(--landing-primary);
}

.phone-mockup__date-day {
    font-size: 0.5rem;
    color: var(--landing-text-subtitle);
    font-family: var(--landing-font);
}

.phone-mockup__date--active .phone-mockup__date-day,
.phone-mockup__date--active .phone-mockup__date-num {
    color: white;
}

.phone-mockup__date-num {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--landing-text-dark);
    font-family: var(--landing-font);
}

.phone-mockup__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.phone-mockup__card {
    background: white;
    border-radius: 10px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    border: 1px solid var(--landing-border);
}

.phone-mockup__card-icon {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background: var(--landing-badge-blue);
}

.phone-mockup__card-label {
    font-size: 0.5rem;
    color: var(--landing-text-body);
    font-family: var(--landing-font);
    text-align: center;
}

/* FeatureCard */
.feature-card {
    background: #FAFBFC;
    border: 1px solid #EEF0F4;
    border-radius: 24px;
    padding: 44px 28px 40px;
    text-align: center;
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    height: 100%;
    box-sizing: border-box;
}

.feature-card:hover {
    border-color: rgba(111, 58, 250, 0.14);
    box-shadow: 0 12px 32px rgba(111, 58, 250, 0.08);
    transform: translateY(-2px);
}

.feature-card__icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--landing-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    flex-shrink: 0;
}

.feature-card__icon {
    color: #ffffff !important;
    font-size: 1.75rem !important;
}

.feature-card__title {
    font-family: var(--landing-font);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--landing-text-dark);
    margin: 0 0 14px;
    line-height: 1.45;
}

.feature-card__description {
    font-family: var(--landing-font);
    font-size: 0.875rem;
    color: var(--landing-text-subtitle);
    line-height: 1.85;
    margin: 0;
    max-width: 34ch;
    margin-inline: auto;
}

/* FeatureItem */
.feature-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 10px 0;
}

.feature-item__text {
    font-family: var(--landing-font);
    font-size: 0.9375rem;
    color: var(--landing-text-dark);
    font-weight: 500;
    flex: 1;
}

.feature-item__check {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--landing-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.feature-item__check .mud-icon-root {
    color: white !important;
    font-size: 1rem !important;
}

/* StatItem */
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    min-width: 140px;
}

.stat-item__value {
    font-family: var(--landing-font);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--landing-primary);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.stat-item__label {
    font-family: var(--landing-font);
    font-size: 0.9375rem;
    color: var(--landing-text-subtitle);
    line-height: 1.6;
    max-width: 18ch;
}

/* FeaturePoint */
.feature-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 250px;
}

.feature-point--end {
    flex-direction: row;
}

.feature-point--end .feature-point__content {
    text-align: start;
}

.feature-point--start {
    flex-direction: row-reverse;
}

.feature-point--start .feature-point__content {
    text-align: end;
}

.feature-point__icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--landing-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-point__icon {
    color: #ffffff !important;
    font-size: 1.25rem !important;
}

.feature-point__content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.feature-point__title {
    font-family: var(--landing-font);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--landing-text-dark);
    line-height: 1.45;
}

.feature-point__description {
    font-family: var(--landing-font);
    font-size: 0.8125rem;
    color: var(--landing-text-subtitle);
    line-height: 1.7;
}

/* PricingCard */
.pricing-card {
    background: rgba(28, 30, 38, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--landing-radius-xl);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(8px);
    transition:
        transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background-color 0.35s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(111, 58, 250, 0.42);
    background: rgba(32, 34, 44, 0.96);
    box-shadow:
        0 22px 44px rgba(17, 24, 39, 0.38),
        0 0 0 1px rgba(111, 58, 250, 0.18),
        0 14px 36px rgba(111, 58, 250, 0.2);
}

.pricing-card:hover .pricing-card__features {
    border-color: rgba(111, 58, 250, 0.14);
    background: rgba(10, 12, 20, 0.78);
}

.pricing-card:hover .pricing-card__amount {
    color: var(--landing-primary-light);
}

.pricing-card__header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-card__title {
    font-family: var(--landing-font);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--landing-text-white);
    margin: 0;
}

.pricing-card__description {
    font-family: var(--landing-font);
    font-size: 0.875rem;
    color: var(--landing-text-muted);
    line-height: 1.6;
    margin: 0;
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-top: 8px;
}

.pricing-card__amount {
    font-family: var(--landing-font);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--landing-text-white);
    transition: color 0.35s ease;
}

.pricing-card__period {
    font-family: var(--landing-font);
    font-size: 0.875rem;
    color: var(--landing-text-muted);
}

.pricing-card__features {
    background: rgba(10, 12, 20, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--landing-radius-md);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    transition: border-color 0.35s ease, background-color 0.35s ease;
}

.pricing-card__feature {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 8px 0;
}

.pricing-card__feature-text {
    font-family: var(--landing-font);
    font-size: 0.8125rem;
    color: var(--landing-text-muted);
    flex: 1;
}

.pricing-card__check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--landing-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.pricing-card__check .mud-icon-root {
    color: white !important;
    font-size: 0.75rem !important;
}

.pricing-card__btn {
    width: 100%;
    justify-content: center;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
}

.pricing-card:hover .pricing-card__btn {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(111, 58, 250, 0.38);
}

@media (prefers-reduced-motion: reduce) {
    .pricing-card,
    .pricing-card__amount,
    .pricing-card__features,
    .pricing-card__btn {
        transition: none;
    }

    .pricing-card:hover {
        transform: none;
    }

    .pricing-card:hover .pricing-card__btn {
        transform: none;
    }
}

/* HeroSection */
.hero-section {
    position: relative;
    background-color: #060912;
    min-height: auto;
    padding-top: 88px;
    padding-bottom: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
}

.hero-section__grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-color: #060912;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.07) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 75%);
}

.hero-section__glow {
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 100%);
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(99, 56, 242, 0.22) 0%, rgba(99, 56, 242, 0.06) 45%, transparent 70%);
    pointer-events: none;
}

.hero-section__glow-secondary {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: min(500px, 90%);
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section__inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 32px);
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.hero-section__content {
    text-align: center;
    max-width: 780px;
    width: 100%;
    margin: 0 auto;
    padding: 48px 0 24px;
    box-sizing: border-box;
}

.hero-section__badge {
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
    border-radius: var(--landing-radius-pill);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 32px;
    overflow: hidden;
}

.hero-section__badge-new {
    background: var(--landing-primary);
    color: #fff;
    padding: 10px 18px;
    font-family: var(--landing-font);
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1;
}

.hero-section__badge-text {
    padding: 10px 18px;
    font-family: var(--landing-font);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1;
}

.hero-section__title {
    font-family: var(--landing-font);
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin: 0 0 24px;
    letter-spacing: -0.02em;
}

.hero-section__subtitle {
    font-family: var(--landing-font);
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.85;
    margin: 0 auto 40px;
    max-width: 620px;
}

.hero-section__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    flex-direction: row;
}

.hero-section__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 8px;
    padding: 10px 18px 10px 14px;
    border-radius: var(--landing-radius-pill);
    font-family: var(--landing-font);
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    white-space: nowrap;
    line-height: 1.2;
    min-height: 44px;
    box-sizing: border-box;
}

.hero-section__btn-label {
    display: block;
    color: inherit;
}

.hero-section__btn:hover {
    transform: translateY(-1px);
}

.hero-section__btn--primary {
    background: var(--landing-primary);
    color: #ffffff;
    border-color: var(--landing-primary);
    box-shadow: 0 8px 32px rgba(111, 58, 250, 0.35);
}

.hero-section__btn--primary .hero-section__btn-label {
    color: #ffffff;
}

.hero-section__btn--primary:hover,
.hero-section__btn--primary:focus-visible {
    background: var(--landing-primary-dark);
    border-color: var(--landing-primary-dark);
    color: #ffffff;
    box-shadow: 0 12px 40px rgba(111, 58, 250, 0.45);
}

.hero-section__btn--primary:hover .hero-section__btn-label,
.hero-section__btn--primary:focus-visible .hero-section__btn-label {
    color: #ffffff;
}

.hero-section__btn--secondary {
    background: #ffffff;
    color: #111827;
    border-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.hero-section__btn--secondary .hero-section__btn-label {
    color: #111827;
}

.hero-section__btn--secondary:hover,
.hero-section__btn--secondary:focus-visible {
    background: #f3f4f6;
    border-color: #f3f4f6;
    color: #111827;
}

.hero-section__btn--secondary:hover .hero-section__btn-label,
.hero-section__btn--secondary:focus-visible .hero-section__btn-label {
    color: #111827;
}

.hero-section__btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
}

.hero-section__btn-icon--primary {
    width: 28px;
    height: 28px;
    background: #fff;
    color: var(--landing-primary);
}

.hero-section__btn-icon--primary svg {
    width: 14px;
    height: 14px;
}

.hero-section__btn-icon--secondary {
    width: 28px;
    height: 28px;
    background: var(--landing-primary);
    color: #fff;
}

.hero-section__btn-icon--secondary svg {
    width: 14px;
    height: 14px;
}

.hero-section__phones {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 32px;
    width: 100%;
    max-width: 100%;
    max-height: clamp(280px, 40vh, 440px);
    overflow: hidden;
    line-height: 0;
    padding: 0 clamp(8px, 2vw, 24px);
    box-sizing: border-box;
}

.hero-section__phones-img {
    display: block;
    width: 100%;
    max-width: min(980px, 100%);
    min-width: 0;
    height: auto;
    margin: 0 auto;
    object-fit: cover;
    object-position: top center;
    pointer-events: none;
    user-select: none;
}

/* AboutSection */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}

.about-section__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    max-width: 560px;
}

.about-section__title {
    font-family: var(--landing-font);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--landing-text-dark);
    line-height: 1.4;
    margin: 0;
}

.about-section__description {
    font-family: var(--landing-font);
    font-size: 1rem;
    color: var(--landing-text-body);
    line-height: 1.9;
    margin: 0;
}

.about-section__features {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    margin-top: 4px;
}

.about-section__cta {
    margin-top: 8px;
}

.about-section__btn {
    padding: 14px 28px !important;
    min-height: 48px !important;
    font-size: 0.9375rem !important;
}

.about-section__visual {
    width: 100%;
    min-width: 0;
}

.about-section__visual-frame {
    width: 100%;
    border-radius: var(--landing-radius-xl);
    overflow: hidden;
    line-height: 0;
    aspect-ratio: 1 / 1.08;
    box-shadow: 0 24px 48px rgba(111, 58, 250, 0.18);
}

.about-section__visual-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* FeaturesSection */
.features-section-wrapper {
    background: var(--landing-bg-white);
}

.features-section {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.features-section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.features-section__title {
    font-family: var(--landing-font);
    font-size: clamp(1.75rem, 3vw, 2.375rem);
    font-weight: 700;
    color: var(--landing-text-dark);
    line-height: 1.4;
    margin: 0;
}

.features-section__subtitle {
    font-family: var(--landing-font);
    font-size: 1rem;
    color: var(--landing-text-subtitle);
    line-height: 1.9;
    margin: 0;
    max-width: 640px;
}

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

/* WhyUsSection */
.why-us-section-wrapper {
    position: relative;
    background: var(--landing-bg-white);
    overflow: hidden;
}

.why-us-section-wrapper::before,
.why-us-section-wrapper::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(90px);
    z-index: 0;
}

.why-us-section-wrapper::before {
    top: 18%;
    inset-inline-end: -12%;
    width: min(420px, 50vw);
    height: min(420px, 50vw);
    background: rgba(111, 58, 250, 0.14);
}

.why-us-section-wrapper::after {
    bottom: 8%;
    inset-inline-start: -10%;
    width: min(380px, 45vw);
    height: min(380px, 45vw);
    background: rgba(167, 139, 250, 0.16);
}

.why-us-section-wrapper .landing-section__inner {
    position: relative;
    z-index: 1;
}

.why-us-section {
    display: flex;
    flex-direction: column;
    gap: clamp(32px, 6vw, 56px);
}

.why-us-section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.why-us-section__title {
    font-family: var(--landing-font);
    font-size: clamp(1.75rem, 3vw, 2.375rem);
    font-weight: 700;
    color: var(--landing-text-dark);
    line-height: 1.4;
    margin: 0;
}

.why-us-section__subtitle {
    font-family: var(--landing-font);
    font-size: 1rem;
    color: var(--landing-text-subtitle);
    line-height: 1.9;
    margin: 0;
    max-width: 640px;
}

.why-us-section__stats {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(24px, 6vw, 96px);
    width: 100%;
}

.why-us-section__showcase {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.why-us-section__orbit {
    display: none;
}

.why-us-section__phone {
    position: relative;
    z-index: 2;
}

.why-us-section__phone-frame {
    width: min(248px, 78vw);
    background: #14161f;
    border-radius: 34px;
    padding: 8px;
    box-shadow: 0 24px 48px rgba(17, 24, 39, 0.16);
}

.why-us-section__phone-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 26px;
    object-fit: cover;
    object-position: top center;
}

.why-us-section__point {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 360px;
}

.why-us-section__point .feature-point {
    max-width: 100%;
}

@media (min-width: 640px) and (max-width: 1023px) {
    .why-us-section__stats {
        flex-direction: row;
        gap: 48px;
    }

    .why-us-section__showcase {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px 24px;
        padding: 0 20px;
    }

    .why-us-section__phone {
        grid-column: 1 / -1;
        justify-self: center;
    }
}

@media (min-width: 1024px) {
    .why-us-section__stats {
        flex-direction: row;
        gap: clamp(48px, 8vw, 96px);
    }

    .why-us-section__showcase {
        display: block;
        height: 520px;
        max-width: 900px;
        padding: 0;
    }

    .why-us-section__orbit {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 500px;
        height: 500px;
        pointer-events: none;
        z-index: 0;
    }

    .why-us-section__orbit-ring {
        position: absolute;
        inset: 0;
        border-radius: 50%;
        border: 1px solid rgba(111, 58, 250, 0.07);
    }

    .why-us-section__orbit-ring--inner {
        inset: 64px;
        border-color: rgba(111, 58, 250, 0.05);
    }

    .why-us-section__phone {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .why-us-section__phone-frame {
        width: 248px;
    }

    .why-us-section__point {
        position: absolute;
        width: 240px;
        max-width: none;
    }

    .why-us-section__point--top-end {
        top: 21%;
        inset-inline-end: 1%;
    }

    .why-us-section__point--top-start {
        top: 21%;
        inset-inline-start: 1%;
    }

    .why-us-section__point--bottom-end {
        bottom: 21%;
        inset-inline-end: 3%;
    }

    .why-us-section__point--bottom-start {
        bottom: 21%;
        inset-inline-start: 3%;
    }
}

/* PricingSection */
.pricing-section-wrapper {
    position: relative;
    overflow: hidden;
    background: #0b0d17 !important;
}

.pricing-section-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 52% 42% at 14% 58%, rgba(124, 58, 237, 0.16) 0%, transparent 72%),
        radial-gradient(ellipse 48% 40% at 86% 54%, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
}

.pricing-section-wrapper .landing-section__inner {
    position: relative;
    z-index: 1;
}

.pricing-section {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.pricing-section__backdrop {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.pricing-section__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.pricing-section__glow--purple {
    top: 38%;
    inset-inline-end: 8%;
    width: min(420px, 46vw);
    height: min(420px, 46vw);
    background: radial-gradient(circle, rgba(139, 92, 246, 0.55) 0%, rgba(124, 58, 237, 0.22) 38%, transparent 72%);
    filter: blur(88px);
    opacity: 0.9;
}

.pricing-section__glow--cyan {
    top: 34%;
    inset-inline-start: 6%;
    width: min(400px, 44vw);
    height: min(400px, 44vw);
    background: radial-gradient(circle, rgba(45, 212, 191, 0.42) 0%, rgba(34, 211, 238, 0.18) 42%, transparent 74%);
    filter: blur(96px);
    opacity: 0.85;
}

.pricing-section__orbit-ring {
    position: absolute;
    left: 50%;
    border-radius: 50%;
    pointer-events: none;
    transform: translateX(-50%);
}

.pricing-section__orbit-ring--outer {
    top: -280px;
    width: min(920px, 110vw);
    height: min(920px, 110vw);
    border: 1px solid rgba(94, 234, 212, 0.07);
}

.pricing-section__orbit-ring--mid {
    top: -160px;
    width: min(700px, 88vw);
    height: min(700px, 88vw);
    border: 1px solid rgba(147, 197, 253, 0.06);
}

.pricing-section__orbit-ring--inner {
    top: -40px;
    width: min(480px, 68vw);
    height: min(480px, 68vw);
    border: 1px solid rgba(167, 139, 250, 0.08);
}

.pricing-section__header {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.pricing-section__title {
    font-family: var(--landing-font);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--landing-text-white);
    line-height: 1.35;
    margin: 0;
}

.pricing-section__subtitle {
    font-family: var(--landing-font);
    font-size: 0.9375rem;
    color: var(--landing-text-muted);
    line-height: 1.8;
    margin: 0;
}

.pricing-section__toggle {
    display: inline-flex;
    border-radius: var(--landing-radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    overflow: hidden;
    margin-top: 8px;
    padding: 4px;
    gap: 4px;
}

.pricing-section__toggle-btn {
    padding: 10px 28px;
    font-family: var(--landing-font);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--landing-text-muted);
    background: transparent;
    border: none;
    border-radius: var(--landing-radius-pill);
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.pricing-section__toggle-btn--active {
    background: var(--landing-primary);
    color: var(--landing-text-white);
    box-shadow: 0 8px 20px rgba(111, 58, 250, 0.28);
}

.pricing-section__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* CTASection */
.cta-section-wrapper {
    background: var(--landing-bg-light);
}

.cta-section-wrapper.landing-section {
    padding: clamp(48px, 8vw, 80px) 0;
}

.cta-section-wrapper .landing-section__inner {
    padding-left: 24px;
    padding-right: 24px;
}

.cta-section {
    background: #6f3afa;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    min-height: 272px;
    height: 272px;
    box-shadow: 0 20px 40px rgba(111, 58, 250, 0.16);
}

.cta-section__backdrop {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    border-radius: inherit;
}

.cta-section__wave {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
}

.cta-section__wave--left {
    top: -32%;
    left: -16%;
    width: 58%;
    height: 164%;
    background: radial-gradient(ellipse at 72% 52%, rgba(79, 35, 180, 0.52) 0%, rgba(90, 46, 212, 0.22) 38%, transparent 72%);
}

.cta-section__wave--right {
    right: -12%;
    bottom: -48%;
    width: 46%;
    height: 136%;
    background: radial-gradient(ellipse at 28% 42%, rgba(79, 35, 180, 0.38) 0%, rgba(90, 46, 212, 0.14) 42%, transparent 74%);
}

.cta-section__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 252px minmax(0, 1fr);
    align-items: center;
    gap: clamp(24px, 4vw, 56px);
    height: 100%;
    padding: 0 clamp(56px, 7vw, 88px) 0 clamp(40px, 5vw, 64px);
    direction: ltr;
}

.cta-section__phone {
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 10px;
}

.cta-section__phone-img {
    width: 228px;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: top center;
    flex-shrink: 0;
    filter: drop-shadow(0 16px 28px rgba(17, 24, 39, 0.22));
}

[dir="ltr"] .hero-section__btn--primary .hero-section__btn-icon svg {
    transform: scaleX(-1);
}

[dir="ltr"] .about-section__btn .landing-btn__icon svg,
[dir="ltr"] .landing-btn .landing-btn__icon--end svg {
    transform: scaleX(-1);
}

.cta-section__content {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    text-align: start;
    max-width: 520px;
    justify-self: end;
    width: 100%;
}

.cta-section__title {
    font-family: var(--landing-font);
    font-size: clamp(1.625rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--landing-text-white);
    line-height: 1.4;
    margin: 0;
}

.cta-section__description {
    font-family: var(--landing-font);
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.8;
    margin: 0;
    unicode-bidi: plaintext;
}

.cta-section__platform {
    unicode-bidi: isolate;
    font-weight: 600;
}

.cta-section__stores {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    direction: ltr;
    margin-top: 2px;
}

.cta-section__store-badge {
    display: block;
    transition: transform 0.2s, opacity 0.2s;
}

.cta-section__store-badge:hover {
    transform: scale(1.03);
    opacity: 0.9;
}

.cta-section__store-badge img {
    height: 44px;
    width: auto;
    display: block;
}

/* ContactSection */
.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

.contact-section__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    max-width: 640px;
}

.contact-section__title {
    font-family: var(--landing-font);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--landing-text-white);
    line-height: 1.35;
    margin: 0;
}

.contact-section__description {
    font-family: var(--landing-font);
    font-size: 0.9375rem;
    color: var(--landing-text-muted);
    line-height: 1.8;
    margin: 0;
}

.contact-section__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    max-width: 880px;
}

.contact-section__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: var(--landing-text-white);
    transition: background-color 0.2s, border-color 0.2s, transform 0.2s;
}

.contact-section__card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(111, 58, 250, 0.35);
    transform: translateY(-2px);
}

.contact-section__card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(111, 58, 250, 0.18);
    color: var(--landing-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-section__card-icon .mud-icon-root {
    font-size: 1.35rem;
}

.contact-section__card-label {
    font-family: var(--landing-font);
    font-size: 0.8125rem;
    color: var(--landing-text-muted);
}

.contact-section__card-value {
    font-family: var(--landing-font);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--landing-text-white);
}

/* Phone numbers, emails, and other LTR strings inside RTL layout */
.landing-ltr {
    direction: ltr;
    unicode-bidi: isolate;
    display: inline-block;
}

/* LandingFooter */
.landing-footer {
    background: #060912;
    color: var(--landing-text-white);
    position: relative;
    padding: 72px 0 28px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.landing-sections > .landing-footer {
    width: 100%;
    max-width: 100%;
}

.landing-footer__glow {
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 90vw);
    height: 420px;
    background: radial-gradient(ellipse at center, rgba(111, 58, 250, 0.2) 0%, rgba(111, 58, 250, 0.06) 42%, transparent 72%);
    pointer-events: none;
}

.landing-footer__inner {
    max-width: var(--landing-container);
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 24px);
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

.landing-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 0.85fr)) minmax(0, 200px);
    gap: clamp(24px, 4vw, 48px);
    align-items: start;
    margin-bottom: 40px;
    width: 100%;
}

.landing-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 300px;
}

.landing-footer__logo {
    margin-bottom: 0;
}

.landing-footer__brand-desc {
    font-family: var(--landing-font);
    font-size: 0.8125rem;
    color: var(--landing-text-muted);
    line-height: 1.85;
    margin: 0;
}

.landing-footer__social {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.landing-footer__social-link {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--landing-text-white);
    text-decoration: none;
    transition: background-color 0.2s, border-color 0.2s;
    padding: 0;
    cursor: pointer;
    box-sizing: border-box;
    flex-shrink: 0;
    line-height: 0;
    vertical-align: middle;
}

button.landing-footer__social-link {
    appearance: none;
    -webkit-appearance: none;
    font: inherit;
    outline: none;
    box-shadow: none;
}

button.landing-footer__social-link:focus,
button.landing-footer__social-link:focus-visible,
button.landing-footer__social-link:active {
    outline: none;
    box-shadow: none;
    border-radius: 50% !important;
}

.landing-footer__social-link:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.14);
}

.landing-footer__social-link .mud-icon-root {
    color: white !important;
    font-size: 1.35rem !important;
    width: 1.35rem;
    height: 1.35rem;
}

.landing-footer__social-link .mud-icon-root svg {
    width: 1.35rem;
    height: 1.35rem;
}

.landing-footer__column {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
    text-align: start;
}

.landing-footer__column-title {
    font-family: var(--landing-font);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--landing-text-white);
    margin: 0 0 2px;
}

.landing-footer__link {
    font-family: var(--landing-font);
    font-size: 0.8125rem;
    color: var(--landing-text-muted);
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.5;
}

.landing-footer__link:hover {
    color: var(--landing-text-white);
}

.landing-footer__download {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 22px 18px;
}

.landing-footer__download-title {
    font-family: var(--landing-font);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--landing-text-white);
    margin: 0;
    text-align: center;
    width: 100%;
}

.landing-footer__stores {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.landing-footer__store-link {
    display: block;
    width: 100%;
    max-width: 168px;
    transition: opacity 0.2s, transform 0.2s;
}

.landing-footer__store-link:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.landing-footer__store-link img {
    width: 100%;
    height: auto;
    display: block;
}

.landing-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.landing-footer__copyright {
    font-family: var(--landing-font);
    font-size: 0.75rem;
    color: var(--landing-text-muted);
    display: block;
    width: 100%;
    text-align: center;
}

.faq-section__cta-text {
    font-family: var(--landing-font);
    font-size: 0.9375rem;
    color: var(--landing-text-subtitle);
    margin: 0;
}

/* FaqPage */
.faq-page {
    background: var(--landing-bg-light);
}

.faq-section {
    padding: 108px 0 64px;
}

.faq-section--landing {
    padding: 0;
}

.faq-section-wrapper .faq-section__list,
.faq-section-wrapper .faq-section__cta {
    max-width: 760px;
    margin-inline: auto;
    width: 100%;
}

.faq-section-wrapper .faq-section__header {
    margin-bottom: 40px;
}

.faq-section__inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}

.faq-section__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-bottom: 40px;
}

.faq-section__title {
    font-family: var(--landing-font);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--landing-text-dark);
    line-height: 1.4;
    margin: 0;
}

.faq-section__subtitle {
    font-family: var(--landing-font);
    font-size: 1rem;
    color: var(--landing-text-subtitle);
    line-height: 1.85;
    margin: 0;
    max-width: 560px;
}

.faq-section__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--landing-bg-white);
    border: 1px solid var(--landing-border);
    border-radius: var(--landing-radius-md);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item--open {
    border-color: rgba(111, 58, 250, 0.22);
    box-shadow: 0 8px 24px rgba(111, 58, 250, 0.08);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: start;
    font-family: var(--landing-font);
}

.faq-item__question:focus,
.faq-item__question:focus-visible {
    outline: none;
}

.faq-item__question-text {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--landing-text-dark);
    line-height: 1.6;
}

.faq-item__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(111, 58, 250, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-item__icon .mud-icon-root {
    color: var(--landing-primary) !important;
    font-size: 1.125rem !important;
}

.faq-item__answer {
    padding: 0 24px 20px;
}

.faq-item__answer p {
    font-family: var(--landing-font);
    font-size: 0.875rem;
    color: var(--landing-text-subtitle);
    line-height: 1.9;
    margin: 0;
}

.faq-section__cta {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--landing-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

/* Legal pages (Terms, etc.) */
.legal-page {
    background: var(--landing-bg-light);
}

.legal-section {
    padding: 108px 0 64px;
}

.legal-section__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.legal-section__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
}

.legal-section__title {
    font-family: var(--landing-font);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--landing-text-dark);
    line-height: 1.4;
    margin: 0;
}

.legal-section__updated {
    font-family: var(--landing-font);
    font-size: 0.8125rem;
    color: var(--landing-text-muted);
    margin: 0;
}

.legal-section__card {
    background: var(--landing-bg-white);
    border: 1px solid var(--landing-border);
    border-radius: var(--landing-radius-lg);
    padding: clamp(28px, 4vw, 40px);
    box-shadow: 0 12px 32px rgba(17, 24, 39, 0.06);
}

.legal-block + .legal-block {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--landing-border);
}

.legal-block__title {
    font-family: var(--landing-font);
    font-size: 1rem;
    font-weight: 700;
    color: var(--landing-text-dark);
    margin: 0 0 12px;
}

.legal-block__text {
    font-family: var(--landing-font);
    font-size: 0.875rem;
    color: var(--landing-text-subtitle);
    line-height: 1.9;
    margin: 0;
}

.legal-block__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legal-block__list li {
    font-family: var(--landing-font);
    font-size: 0.875rem;
    color: var(--landing-text-subtitle);
    line-height: 1.85;
    padding-inline-start: 18px;
    position: relative;
}

.legal-block__list li::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: 0.72em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--landing-primary-light);
    transform: translateY(-50%);
}

.legal-block__list li strong {
    color: var(--landing-text-dark);
    font-weight: 600;
}

.legal-block__list .legal-block__list {
    margin-top: 10px;
}

.legal-block__link {
    color: var(--landing-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.legal-block__link:hover {
    color: var(--landing-primary-dark);
}

/* Auth pages (Login / Forgot Password) */
.landing-auth {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    box-sizing: border-box;
    font-family: var(--landing-font);
    position: relative;
    isolation: isolate;
}

.landing-auth__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.landing-auth__form-panel {
    display: flex;
    flex-direction: column;
    background: var(--landing-bg-white);
    min-height: 100vh;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.landing-auth__toolbar {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding: clamp(16px, 3vw, 24px) clamp(24px, 5vw, 64px) 0;
    box-sizing: border-box;
}

.landing-auth__toolbar-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    color: #4b5563;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
    box-sizing: border-box;
    padding: 0;
    line-height: 0;
}

.landing-auth__toolbar-btn:hover,
.landing-auth__toolbar-btn:focus-visible {
    background: #e9ebef;
    border-color: #d1d5db;
    color: var(--landing-text-dark);
    outline: none;
}

.landing-auth__toolbar-btn:active {
    transform: scale(0.96);
}

.landing-auth__toolbar-btn .mud-icon-root {
    font-size: 1.125rem !important;
}

.landing-auth__toolbar-btn--lang {
    width: auto;
    min-width: 40px;
    min-height: 40px;
    padding: 0 14px 0 12px;
    border-radius: var(--landing-radius-pill);
}

.landing-auth__toolbar-btn--lang.landing-lang-toggle {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    color: #4b5563;
}

.landing-auth__toolbar-btn--lang.landing-lang-toggle:hover,
.landing-auth__toolbar-btn--lang.landing-lang-toggle:focus-visible {
    background: #e9ebef;
    border-color: #d1d5db;
    color: var(--landing-text-dark);
}

[dir="rtl"] .landing-auth__toolbar-btn--back .mud-icon-root {
    transform: scaleX(-1);
}

.landing-auth__form-shell {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: clamp(16px, 3vw, 32px) clamp(24px, 5vw, 64px) clamp(32px, 5vw, 56px);
    box-sizing: border-box;
    overflow-y: auto;
}

.landing-auth__form-shell--card {
    align-items: center;
    justify-content: center;
}

.landing-auth__form-shell--card .mud-paper {
    width: 100%;
    max-width: 420px;
    box-shadow: 0 16px 40px rgba(17, 24, 39, 0.06);
}

.landing-auth__form {
    width: 100%;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.landing-auth__form--forgot {
    gap: 20px;
}

.landing-auth__header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: start;
}

.landing-auth__header--centered {
    align-items: center;
    text-align: center;
}

.landing-auth__subtitle--centered {
    max-width: 360px;
}

.landing-auth__header--with-icon {
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
}

.landing-auth__form-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #eae3ff;
    color: var(--landing-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.landing-auth__form-icon .mud-icon-root {
    font-size: 1.5rem;
}

.landing-auth__title--sm {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.landing-auth__title {
    font-family: var(--landing-font);
    font-size: clamp(1.75rem, 3vw, 2.625rem);
    font-weight: 700;
    color: var(--landing-text-dark);
    line-height: 1.35;
    margin: 0;
}

.landing-auth__subtitle {
    font-family: var(--landing-font);
    font-size: 0.875rem;
    color: var(--landing-text-subtitle);
    line-height: 1.7;
    margin: 0;
}

.landing-auth__fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.landing-auth__project-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.landing-auth__project-submit {
    border-radius: 15px !important;
}

.landing-auth__fields--compact {
    gap: 14px;
}

.landing-auth__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.landing-auth__label {
    font-family: var(--landing-font);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--landing-text-dark);
    line-height: 1.4;
}

.landing-auth__required {
    color: #ef4444;
    margin-inline-start: 2px;
}

.landing-auth__meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: -4px;
}

.landing-auth__remember {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--landing-font);
    font-size: 0.8125rem;
    color: var(--landing-text-subtitle);
    cursor: pointer;
    user-select: none;
}

.landing-auth__remember-input {
    width: 16px;
    height: 16px;
    accent-color: var(--landing-primary);
    cursor: pointer;
}

.landing-auth__secondary {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
    margin-top: 4px;
}

.landing-auth__input {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 13px 14px;
    font-family: var(--landing-font);
    font-size: 0.875rem;
    color: var(--landing-text-dark);
    background: #f8faff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
    pointer-events: auto;
}

.landing-auth__input--code {
    padding: 13px 10px;
    text-align: center;
}

.landing-auth__input:hover {
    background: #f3f6ff;
}

.landing-auth__input:focus {
    border-color: var(--landing-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(111, 58, 250, 0.12);
}

.landing-auth__input::placeholder {
    color: #9ca3af;
}

.landing-auth__input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.landing-auth__input--adorned {
    padding-inline-end: 44px;
}

.landing-auth__input-adornment {
    position: absolute;
    inset-inline-end: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: var(--landing-primary);
    cursor: pointer;
    padding: 0;
}

.landing-auth__input-adornment--static {
    pointer-events: none;
    cursor: default;
}

.landing-auth__validation {
    font-family: var(--landing-font);
    font-size: 0.75rem;
    color: #dc2626;
    margin: 0;
}

.landing-auth__back-link {
    display: block;
    text-align: center;
    font-family: var(--landing-font);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--landing-primary);
    text-decoration: none;
    margin-top: 4px;
}

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

.landing-auth__field-row {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 10px;
    align-items: start;
}

.landing-auth__field-row--phone {
    grid-template-columns: 108px 1fr;
    align-items: start;
}

.landing-auth__phone-group {
    display: grid;
    grid-template-columns: 108px 1fr;
    gap: 10px;
    align-items: start;
    width: 100%;
}

.landing-auth__phone-code,
.landing-auth__phone-number {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.landing-auth__phone-number .mud-input-helper-text {
    margin-top: 2px;
}

.landing-auth__field--inline {
    min-width: 0;
}

.landing-auth__input--adorned-start {
    padding-inline-start: 44px;
}

.landing-auth__input-adornment--start {
    inset-inline-end: auto;
    inset-inline-start: 10px;
}

.landing-auth .landing-auth__mud-field--code {
    min-width: 0;
}

.landing-auth .landing-auth__mud-field--code .mud-select-input {
    font-family: var(--landing-font);
    font-size: 0.875rem;
}

.landing-auth__forgot {
    font-family: var(--landing-font);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--landing-primary);
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}

.landing-auth__forgot:hover {
    color: var(--landing-primary-dark);
}

.landing-auth__submit {
    width: 100%;
    padding: 14px 24px !important;
    border-radius: var(--landing-radius-pill) !important;
    font-size: 0.9375rem !important;
    min-height: 48px !important;
}

.landing-auth__error {
    font-family: var(--landing-font);
    font-size: 0.8125rem;
    color: #dc2626;
    text-align: center;
    margin: 0;
}

.landing-auth__copyright {
    font-family: var(--landing-font);
    font-size: 0.8125rem;
    color: #5c5c5c;
    text-align: center;
    margin: 0;
    padding: 20px clamp(24px, 5vw, 64px) 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-shrink: 0;
    border-top: 1px solid transparent;
}

.landing-auth__copyright-mark {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1;
}

.landing-auth__brand-panel {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    background: linear-gradient(160deg, #7b4dff 0%, var(--landing-primary) 48%, #5a2ed4 100%);
    overflow: hidden;
    min-height: 100vh;
    z-index: 1;
}

.landing-auth__brand-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: 440px;
    min-height: 100vh;
    padding: clamp(40px, 6vw, 64px) clamp(28px, 5vw, 48px);
    box-sizing: border-box;
}

.landing-auth__brand-top {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 8vh;
}

.landing-auth__brand-bottom {
    padding-bottom: 8px;
}

.landing-auth__brand-slider {
    position: relative;
    min-height: 5.5em;
    margin-bottom: 28px;
}

.landing-auth__brand-text {
    position: absolute;
    inset: 0;
    font-family: var(--landing-font);
    font-size: 0.875rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.88);
    text-align: center;
    margin: 0;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1), transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.landing-auth__brand-text--active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.landing-auth__brand-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.landing-auth__brand-dot {
    width: 28px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: width 0.35s ease, background-color 0.35s ease, transform 0.2s ease;
}

.landing-auth__brand-dot:hover {
    background: rgba(255, 255, 255, 0.55);
}

.landing-auth__brand-dot:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.85);
    outline-offset: 3px;
}

.landing-auth__brand-dot--active {
    width: 40px;
    background: #ffffff;
}

.landing-auth__brand-content--animated {
    animation: landing-auth-brand-float 6s ease-in-out infinite;
}

@keyframes landing-auth-brand-float {
    0%, 100% {
        transform: translateY(0);
    }

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

@keyframes landing-auth-brand-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.22;
    }

    50% {
        transform: scale(1.06);
        opacity: 0.32;
    }
}

@media (prefers-reduced-motion: reduce) {
    .landing-auth__brand-text {
        transition: none;
    }

    .landing-auth__brand-content--animated,
    .landing-auth__brand-decor,
    .landing-auth__brand-decor--sm {
        animation: none;
    }
}

.landing-auth__brand-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.landing-auth__brand-logo {
    width: 110px;
    height: auto;
    object-fit: contain;
}

.landing-auth__brand-title {
    font-family: var(--landing-font);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--landing-text-white);
    margin: 0;
    line-height: 1.2;
}

.landing-auth__brand-decor {
    position: absolute;
    bottom: -72px;
    left: -72px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    z-index: 1;
    animation: landing-auth-brand-pulse 8s ease-in-out infinite;
}

.landing-auth__brand-decor--sm {
    bottom: 48px;
    left: -24px;
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.06);
    animation: landing-auth-brand-pulse 8s ease-in-out infinite 1.5s;
}

.landing-auth__brand-watermark {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 300px;
    height: auto;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

.landing-auth--card {
    background-color: #f4f5f7;
    background-image: url('../img/frameBack.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    overflow: hidden;
}

.landing-auth__card-page {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    padding: clamp(24px, 4vw, 48px) clamp(16px, 4vw, 24px);
    box-sizing: border-box;
    overflow-y: auto;
}

.landing-auth__card {
    width: 100%;
    max-width: 460px;
    background: var(--landing-bg-white);
    border: 1px solid var(--landing-border);
    border-radius: 38px;
    padding: clamp(28px, 4vw, 40px);
    box-shadow: 0 16px 40px rgba(17, 24, 39, 0.06);
    box-sizing: border-box;
}

.landing-auth__card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    margin-bottom: 24px;
}

.landing-auth__icon-badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #eae3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--landing-primary);
}

.landing-auth__icon-badge .mud-icon-root {
    font-size: 2rem;
}

.landing-auth__card-title {
    font-family: var(--landing-font);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--landing-text-dark);
    margin: 0;
    line-height: 1.5;
}

.landing-auth__card-text {
    font-family: var(--landing-font);
    font-size: 0.8125rem;
    color: var(--landing-text-subtitle);
    line-height: 1.8;
    margin: 0;
    max-width: 360px;
}

.landing-auth__card-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.landing-auth__resend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding-top: 0;
    font-family: var(--landing-font);
    font-size: 0.8125rem;
    color: var(--landing-text-subtitle);
}

.landing-auth__link {
    font-family: var(--landing-font);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--landing-primary);
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.landing-auth__link:hover {
    color: var(--landing-primary-dark);
}

.landing-auth__divider-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 0;
}

.landing-auth__divider-line {
    flex: 1;
    height: 1px;
    background: #d4d4d4;
}

.landing-auth__divider-text {
    font-family: var(--landing-font);
    font-size: 0.75rem;
    color: var(--landing-text-subtitle);
    white-space: nowrap;
}

.landing-auth__alt-btn {
    width: 100%;
    padding: 12px 20px !important;
    border-radius: 15px !important;
    font-size: 0.875rem !important;
    min-height: 44px !important;
    background: rgba(234, 227, 255, 0.35) !important;
    color: var(--landing-primary) !important;
    border: none !important;
}

.landing-auth__alt-btn:hover,
.landing-auth__alt-btn:focus-visible {
    background: rgba(234, 227, 255, 0.55) !important;
    color: var(--landing-primary-dark) !important;
}

.landing-auth__form--register {
    gap: 24px;
}

.landing-auth__disabled-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 18px 20px;
    border-radius: 16px;
    background: rgba(234, 227, 255, 0.45);
    border: 1px solid rgba(111, 58, 250, 0.18);
    text-align: center;
}

.landing-auth__disabled-icon {
    color: var(--landing-primary);
    font-size: 1.5rem;
}

.landing-auth__disabled-title {
    font-weight: 700;
    color: var(--landing-text-dark);
    margin: 0;
}

.landing-auth__disabled-text {
    color: var(--landing-text-subtitle);
    line-height: 1.75;
    margin: 0;
    max-width: 360px;
}

.landing-auth__fields--disabled {
    opacity: 0.55;
    pointer-events: none;
    user-select: none;
}

.landing-auth__register-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--landing-font);
    font-size: 0.875rem;
    color: var(--landing-text-subtitle);
}

.landing-auth__form--status {
    gap: 0;
    align-items: center;
    text-align: center;
}

.landing-auth__status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.landing-auth__status-icon {
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.landing-auth__status-image {
    width: 90px;
    height: auto;
    object-fit: contain;
}

.landing-auth__status-actions {
    width: 100%;
    margin-top: 20px;
}

.landing-auth__status-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--landing-font);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--landing-primary);
    cursor: pointer;
    padding: 8px 4px;
}

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

/* In-app forms (e.g. change password inside dashboard layout) */
.landing-auth__in-app {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 8px clamp(16px, 4vw, 32px) 32px;
    box-sizing: border-box;
}

.landing-auth__form--in-app {
    gap: 20px;
}

.landing-auth__form--in-app .landing-auth__header {
    margin-bottom: 4px;
}

.landing-auth .dir .mud-ltr {
    direction: inherit !important;
}

/* MudBlazor يفرض LTR على Email — إجبار اتجاه النص في صفحات المصادقة */
.landing-auth[dir="rtl"] .landing-auth__fields .mud-input-control-input-container,
.landing-auth[dir="rtl"] .landing-auth__phone-group .mud-input-control-input-container,
.landing-auth[dir="rtl"] .landing-auth__fields--disabled .mud-input-control-input-container {
    direction: rtl !important;
}

.landing-auth[dir="rtl"] .landing-auth__fields input,
.landing-auth[dir="rtl"] .landing-auth__fields .mud-input-slot,
.landing-auth[dir="rtl"] .landing-auth__phone-group input,
.landing-auth[dir="rtl"] .landing-auth__phone-group .mud-input-slot,
.landing-auth[dir="rtl"] .landing-auth__fields--disabled input,
.landing-auth[dir="rtl"] .landing-auth__fields--disabled .mud-input-slot {
    direction: rtl !important;
    text-align: right !important;
}

.landing-auth[dir="rtl"] .landing-auth__fields input::placeholder,
.landing-auth[dir="rtl"] .landing-auth__phone-group input::placeholder,
.landing-auth[dir="rtl"] .landing-auth__fields--disabled input::placeholder {
    text-align: right !important;
}

.landing-auth[dir="rtl"] .mud-ltr input,
.landing-auth[dir="rtl"] .mud-ltr .mud-input-slot,
.landing-auth[dir="rtl"] input.mud-input-root[type="email"] {
    direction: rtl !important;
    text-align: right !important;
}

.landing-auth[dir="ltr"] .landing-auth__fields .mud-input-control-input-container,
.landing-auth[dir="ltr"] .landing-auth__phone-group .mud-input-control-input-container,
.landing-auth[dir="ltr"] .landing-auth__fields--disabled .mud-input-control-input-container {
    direction: ltr !important;
}

.landing-auth[dir="ltr"] .landing-auth__fields input,
.landing-auth[dir="ltr"] .landing-auth__fields .mud-input-slot,
.landing-auth[dir="ltr"] .landing-auth__phone-group input,
.landing-auth[dir="ltr"] .landing-auth__phone-group .mud-input-slot,
.landing-auth[dir="ltr"] .landing-auth__fields--disabled input,
.landing-auth[dir="ltr"] .landing-auth__fields--disabled .mud-input-slot {
    direction: ltr !important;
    text-align: left !important;
}

.landing-auth[dir="ltr"] .landing-auth__fields input::placeholder,
.landing-auth[dir="ltr"] .landing-auth__phone-group input::placeholder,
.landing-auth[dir="ltr"] .landing-auth__fields--disabled input::placeholder {
    text-align: left !important;
}

.landing-auth[dir="ltr"] .mud-ltr input,
.landing-auth[dir="ltr"] .mud-ltr .mud-input-slot,
.landing-auth[dir="ltr"] input.mud-input-root[type="email"] {
    direction: ltr !important;
    text-align: left !important;
}

.landing-auth .landing-auth__mud-field {
    width: 100%;
    pointer-events: auto;
    position: relative;
    z-index: 1;
}

.landing-auth .landing-auth__mud-field .mud-input-control,
.landing-auth .landing-auth__mud-field .mud-input-control-input-container,
.landing-auth .landing-auth__mud-field input,
.landing-auth .landing-auth__mud-field .mud-input-slot {
    pointer-events: auto !important;
}

.landing-auth .landing-auth__mud-field .mud-input-outlined-border {
    border-radius: 10px;
    border-color: #d1d5db;
    background: var(--landing-bg-white);
}

.landing-auth .landing-auth__mud-field.mud-input-outlined:hover .mud-input-outlined-border,
.landing-auth .landing-auth__mud-field.mud-input-outlined.mud-input-outlined-focused .mud-input-outlined-border {
    border-color: var(--landing-primary-light);
}

.landing-auth .landing-auth__mud-field .mud-input-label {
    font-family: var(--landing-font);
    font-size: 0.8125rem;
}

.landing-auth .landing-auth__mud-field .mud-input-slot {
    font-family: var(--landing-font);
    font-size: 0.875rem;
}

.landing-auth .landing-auth__mud-field .mud-input-adornment .mud-icon-root {
    color: var(--landing-primary);
}

/* LandingLogo */
.landing-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.landing-logo__text {
    font-family: var(--landing-font);
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    white-space: nowrap;
}

.landing-footer__logo.landing-logo .landing-logo__text {
    font-size: 1.375rem;
}

/* LandingNavbar */
.landing-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background: rgba(6, 9, 18, 0.72);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    box-sizing: border-box;
}

.landing-navbar__inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 14px clamp(16px, 4vw, 32px);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-direction: row;
    box-sizing: border-box;
}

.landing-navbar__logo {
    margin-inline-end: 8px;
    flex-shrink: 0;
}

.landing-navbar__nav {
    display: none;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
    min-width: 0;
}

.landing-navbar__link {
    font-family: var(--landing-font);
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    padding: 8px 10px;
    border-radius: var(--landing-radius-sm);
    transition: color 0.2s;
    white-space: nowrap;
}

.landing-navbar__link:hover {
    color: var(--landing-primary-light);
}

.landing-navbar__lang {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-inline-start: auto;
}

.landing-lang-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: auto;
    max-width: none;
    flex: 0 0 auto;
    border: none;
    cursor: pointer;
    font-family: var(--landing-font);
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.2;
    box-sizing: border-box;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.landing-lang-toggle__icon.mud-icon-root {
    font-size: 1.125rem !important;
}

.landing-lang-toggle__label {
    white-space: nowrap;
    line-height: 1.2;
}

.landing-lang-toggle--navbar {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 10px;
    border-radius: var(--landing-radius-pill);
}

.landing-lang-toggle--navbar .landing-lang-toggle__icon.mud-icon-root {
    color: var(--landing-primary-light) !important;
}

.landing-lang-toggle--navbar:hover,
.landing-lang-toggle--navbar:focus-visible {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    outline: none;
}

.landing-lang-toggle--navbar:active {
    transform: scale(0.97);
}

.landing-navbar__actions {
    display: none;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.landing-navbar__btn-login,
.landing-navbar__btn-register {
    padding: 8px 16px !important;
    font-size: 0.8125rem !important;
    min-height: 38px !important;
    line-height: 1.2 !important;
}

.landing-navbar a.landing-btn--primary,
.landing-navbar a.landing-btn--primary:hover,
.landing-navbar a.landing-btn--primary:focus-visible,
.landing-navbar a.landing-btn--primary .landing-btn__text {
    color: #ffffff;
}

.landing-navbar a.landing-btn--outline,
.landing-navbar a.landing-btn--outline:hover,
.landing-navbar a.landing-btn--outline:focus-visible,
.landing-navbar a.landing-btn--outline .landing-btn__text {
    color: #ffffff;
}

.landing-navbar__toggler {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--landing-text-white);
    cursor: pointer;
    padding: 8px;
    margin-inline-start: auto;
    flex-shrink: 0;
}

.landing-navbar__toggler .mud-icon-root {
    color: white !important;
    font-size: 1.5rem !important;
}

.landing-navbar__mobile {
    display: none;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 16px 24px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: var(--landing-bg-dark);
    max-height: calc(100dvh - 64px);
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
}

.landing-navbar__mobile--open {
    display: flex;
}

.landing-navbar__mobile-link {
    font-family: var(--landing-font);
    font-size: 0.9375rem;
    color: var(--landing-text-white);
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-navbar__mobile-lang {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-lang-toggle--mobile-menu {
    width: auto;
    padding: 0;
    background: transparent;
    font-size: 0.9375rem;
    color: var(--landing-text-white);
}

.landing-lang-toggle--mobile-menu:hover,
.landing-lang-toggle--mobile-menu:focus-visible {
    background: transparent;
    color: var(--landing-primary-light);
}

.landing-navbar__mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

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

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 767px) {
    .landing-section {
        padding: var(--landing-section-py-sm) 0;
    }

    .landing-section__inner {
        padding: 0 16px;
    }

    .landing-btn {
        padding: 12px 20px;
        font-size: 0.875rem;
    }

    .feature-card {
        padding: 32px 20px 28px;
    }

    .feature-card__icon-wrap {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }

    .feature-card__icon {
        font-size: 1.5rem !important;
    }

    .stat-item__value {
        font-size: 2rem;
    }

    .feature-point {
        max-width: 100%;
    }

    .pricing-card {
        padding: 24px;
    }

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

    .cta-section-wrapper.landing-section {
        padding: 48px 0;
    }

    .cta-section {
        border-radius: 24px;
        height: auto;
        min-height: 0;
    }

    .cta-section__inner {
        grid-template-columns: 1fr;
        padding: 28px 24px 0;
        height: auto;
    }

    .cta-section__content {
        justify-self: stretch;
        align-items: center;
        text-align: center;
        order: 2;
        padding-bottom: 28px;
    }

    .cta-section__phone {
        order: 1;
        height: 220px;
        padding-top: 0;
        justify-content: center;
    }

    .cta-section__phone-img {
        width: 200px;
    }

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

    .hero-section {
        padding-top: 72px;
        min-height: auto;
    }

    .hero-section__content {
        padding: 32px 0 16px;
    }

    .hero-section__title {
        font-size: 1.875rem;
        margin-bottom: 16px;
    }

    .hero-section__subtitle {
        font-size: 0.875rem;
        margin-bottom: 28px;
        line-height: 1.75;
    }

    .hero-section__badge {
        margin-bottom: 24px;
    }

    .hero-section__actions {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .hero-section__btn {
        width: auto;
        max-width: 100%;
        padding: 10px 16px 10px 12px;
        font-size: 0.8125rem;
        min-height: 40px;
    }

    .hero-section__phones {
        max-height: clamp(200px, 34vh, 300px);
        margin-top: 24px;
        padding: 0 8px;
    }

    .hero-section__phones-img {
        min-width: 0;
        max-width: 100%;
        width: 100%;
    }

    .about-section__title {
        font-size: 1.5rem;
    }

    .about-section__visual {
        order: -1;
    }

    .about-section__visual-frame {
        aspect-ratio: 16 / 11;
    }

    .about-section__content {
        max-width: 100%;
    }

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

    .features-section__title {
        font-size: 1.5rem;
    }

    .why-us-section__title {
        font-size: 1.5rem;
    }

    .why-us-section__header {
        padding: 0 8px;
    }

    .pricing-section__title {
        font-size: 1.5rem;
    }

    .cta-section__title {
        font-size: 1.5rem;
    }

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

    .landing-footer {
        padding: 48px 0 24px;
    }

    .contact-section__cards {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .landing-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .landing-footer__brand,
    .landing-footer__download {
        grid-column: 1;
        max-width: none;
        width: 100%;
    }

    .landing-footer__download {
        justify-self: stretch;
        max-width: none;
    }

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

    .faq-section {
        padding: 88px 0 48px;
    }

    .faq-section__inner {
        padding: 0 16px;
    }

    .legal-section {
        padding: 88px 0 48px;
    }

    .legal-section__inner {
        padding: 0 16px;
    }

    .legal-section__card {
        padding: 24px 20px;
    }

    .landing-auth__split {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }

    /* جوال: النموذج كامل بدون اللوحة البنفسجية الجانبية */
    .landing-auth__brand-panel {
        display: none;
    }

    .landing-auth__form-panel {
        flex: 1;
        min-height: 100vh;
        background: var(--landing-bg-white);
    }

    .landing-auth__form-shell {
        padding: 32px 20px 20px;
        align-items: center;
        justify-content: center;
    }

    .landing-auth__form {
        gap: 20px;
        max-width: 440px;
        width: 100%;
    }

    .landing-auth__fields,
    .landing-auth__fields--compact {
        gap: 14px;
    }

    .landing-auth__header {
        gap: 6px;
    }

    .landing-auth__title {
        font-size: clamp(1.5rem, 5vw, 1.75rem);
    }

    .landing-auth__copyright {
        padding: 16px 20px 28px;
    }

    .landing-auth__in-app {
        padding: 8px 16px 24px;
        max-width: 100%;
    }

    .faq-item__question {
        padding: 16px 18px;
    }

    .faq-item__answer {
        padding: 0 18px 16px;
    }

    .landing-navbar__inner {
        padding: 10px 16px;
    }
}

@media (max-width: 479px) {
    .hero-section__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-section__btn {
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .hero-section__title {
        font-size: 2.5rem;
    }

    .hero-section__phones {
        max-height: clamp(240px, 36vh, 360px);
    }

    .hero-section__phones-img {
        max-width: 720px;
        min-width: 0;
    }

    .about-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-section__title {
        font-size: 1.75rem;
    }

    .about-section__visual-frame {
        aspect-ratio: 16 / 10;
    }

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

    .features-section__title {
        font-size: 1.75rem;
    }

    .why-us-section__title {
        font-size: 1.75rem;
    }

    .pricing-section__grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 720px;
        margin: 0 auto;
    }

    .pricing-section__title {
        font-size: 1.75rem;
    }

    .landing-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 28px;
    }

    .landing-footer__brand {
        grid-column: 1 / -1;
        max-width: 520px;
    }

    .landing-footer__download {
        grid-column: 1 / -1;
        max-width: 320px;
        justify-self: center;
        width: 100%;
    }

    .cta-section {
        height: auto;
        min-height: 0;
    }

    .cta-section__inner {
        grid-template-columns: 1fr;
        padding: 32px 28px 0;
        height: auto;
    }

    .cta-section__content {
        justify-self: stretch;
        align-items: center;
        text-align: center;
        order: 2;
        padding-bottom: 32px;
    }

    .cta-section__phone {
        order: 1;
        height: 240px;
        padding-top: 0;
    }

    .cta-section__title {
        font-size: 1.75rem;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .landing-footer__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 28px 24px;
    }

    .landing-footer__brand {
        grid-column: 1 / -1;
        max-width: 480px;
    }

    .landing-footer__download {
        grid-column: 1 / -1;
        max-width: 320px;
        justify-self: center;
        width: 100%;
    }
}

@media (max-width: 1279px) {
    .landing-navbar {
        background: var(--landing-bg-dark);
        backdrop-filter: none;
    }

    .landing-navbar--menu-open {
        background: var(--landing-bg-dark);
    }

    .landing-navbar__lang {
        display: none;
    }
}

@media (min-width: 1280px) {
    .landing-navbar__nav,
    .landing-navbar__actions {
        display: flex;
    }

    .landing-navbar__lang {
        margin-inline-start: 0;
    }

    .landing-navbar__toggler {
        display: none;
    }

    .landing-navbar__mobile,
    .landing-navbar__mobile--open {
        display: none !important;
    }
}
