/* Premium Landing Page Styles */
:root {
    --landing-primary: #0f172a;
    --landing-accent: #3b82f6;
    /* Brighter blue */
    --landing-accent-hover: #2563eb;
    --landing-bg: #f8fafc;
    --landing-surface: #ffffff;
    --landing-text-main: #334155;
    --landing-text-muted: #64748b;
    --landing-card-border: rgba(226, 232, 240, 0.8);
    --landing-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --landing-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    --landing-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.025);
}

.landing-contact-section {
    padding: 5.5rem 0;
    background: #ffffff;
}

.landing-contact-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(22rem, 1.15fr);
    gap: 3rem;
    align-items: center;
    max-width: 68rem;
}

.landing-contact-eyebrow {
    margin: 0 0 0.75rem;
    color: var(--landing-accent);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.landing-contact-title {
    margin: 0;
    color: var(--landing-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.04em;
}

.landing-contact-description {
    max-width: 34rem;
    margin: 1rem 0 0;
    color: var(--landing-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.landing-contact-card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    background: #f8fafc;
    box-shadow: 0 1rem 2.5rem rgba(15, 23, 42, 0.06);
}

.landing-contact-channel {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    min-width: 0;
}

.landing-contact-label {
    color: var(--landing-text-muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.landing-contact-primary,
.landing-contact-secondary,
.landing-contact-link {
    overflow-wrap: anywhere;
}

.landing-contact-primary {
    color: var(--landing-primary);
    font-weight: 800;
    text-decoration: none;
}

.landing-contact-primary:hover,
.landing-contact-primary:focus-visible {
    color: var(--landing-accent);
    text-decoration: underline;
}

.landing-contact-secondary {
    color: var(--landing-text-muted);
    font-size: 0.9rem;
    text-decoration: none;
}

.landing-contact-link {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 1.2rem;
    border-top: 1px solid #e2e8f0;
    color: var(--landing-accent);
    font-weight: 800;
    text-decoration: none;
}

.landing-contact-link:hover,
.landing-contact-link:focus-visible {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .landing-contact-section {
        padding: 4rem 0;
    }

    .landing-contact-shell {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .landing-contact-card {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body.landing-page {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--landing-text-main);
    line-height: 1.6;
    background-color: var(--landing-bg);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Navigation Hover Effects */
.landing-nav a:hover {
    color: var(--landing-accent) !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

/* Header - Glassmorphism */
.landing-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 5%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.landing-brand,
.landing-header-cta {
    flex: 0 0 auto;
}

.landing-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.28rem;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.78);
    color: var(--landing-primary);
    cursor: pointer;
}

.landing-menu-toggle__icon,
.landing-menu-toggle__icon::before,
.landing-menu-toggle__icon::after {
    display: block;
    width: 1.25rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.landing-menu-toggle__icon {
    position: relative;
}

.landing-menu-toggle__icon::before,
.landing-menu-toggle__icon::after {
    content: "";
    position: absolute;
    left: 0;
}

.landing-menu-toggle__icon::before {
    top: -0.42rem;
}

.landing-menu-toggle__icon::after {
    top: 0.42rem;
}

.logo {
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--landing-primary);
    text-decoration: none;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, var(--landing-primary) 0%, var(--landing-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-login {
    background: var(--landing-accent);
    color: white;
    padding: 0.7rem 1.8rem;
    border-radius: 9999px;
    /* Pill shape */
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.25);
    border: 2px solid transparent;
}

.btn-login:hover {
    background: var(--landing-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(59, 130, 246, 0.35);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('../images/landing/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    color: white;
}

.hero-section.hero-section-v11,
.hero-section.hero-section-v15 {
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-hero {
    padding: 1rem 3.5rem;
    font-size: 1.25rem;
    border-radius: 50px;
}

.trust-indicators {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.9;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

/* Stats Section */
.stats-section {
    background: var(--landing-primary);
    color: white;
    padding: 4rem 0;
    position: relative;
    z-index: 10;
    margin-top: -2rem;
    /* Overlap hero slightly */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #60a5fa;
    /* Light blue */
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Common Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    color: var(--landing-primary);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--landing-accent);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.container {
    width: min(100%, 1200px);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

img,
svg {
    max-width: 100%;
}

/* Features Section */
.features-section {
    padding: 2rem 0 4rem;
    /* Reduced top padding */
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--landing-card-border);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--landing-shadow-lg);
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-image-wrapper {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-card:hover .feature-image {
    transform: scale(1.08);
    /* Gentle zoom */
}

.feature-content {
    padding: 2.5rem;
}

.feature-icon-small {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: #eff6ff;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--landing-accent);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--landing-primary);
}

.feature-content p {
    color: var(--landing-text-muted);
    font-size: 1.05rem;
    margin: 0;
}

/* Steps Section */
.steps-section {
    position: relative;
    overflow: hidden;
    padding: 3rem 0 5rem;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 28%),
        linear-gradient(180deg, #eef5ff 0%, #f7fbff 55%, #eef4fb 100%);
}

.steps-section__glow {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    opacity: 0.9;
}

.steps-section__glow--left {
    top: -7rem;
    left: -8rem;
    width: 22rem;
    height: 22rem;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 70%);
}

.steps-section__glow--right {
    top: -8rem;
    right: -5rem;
    width: 24rem;
    height: 24rem;
    background:
        radial-gradient(circle at center, rgba(191, 219, 254, 0.55) 0%, rgba(191, 219, 254, 0.12) 34%, rgba(191, 219, 254, 0) 58%),
        radial-gradient(circle at center, transparent 63%, rgba(255, 255, 255, 0.85) 64%, rgba(255, 255, 255, 0.85) 71%, transparent 72%),
        radial-gradient(circle at center, transparent 78%, rgba(255, 255, 255, 0.8) 79%, rgba(255, 255, 255, 0.8) 86%, transparent 87%);
}

.steps-container {
    position: relative;
    z-index: 1;
}

.steps-header {
    text-align: center;
    margin-bottom: 3rem;
}

.steps-title {
    margin-bottom: 1.0rem;
}

.steps-title-accent {
    width: 4.5rem;
    height: 0.3rem;
    margin: 0 auto;
    border-radius: 999px;
    background: linear-gradient(90deg, #60a5fa 0%, #3b82f6 100%);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.25);
}

.steps-flow {
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
}

.steps-flow-line {
    position: absolute;
    top: 0.1rem;
    left: 12%;
    right: 12%;
    height: 0.22rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(96, 165, 250, 0.35) 0%, rgba(59, 130, 246, 0.7) 50%, rgba(96, 165, 250, 0.35) 100%);
    z-index: 0;
}

.steps-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    align-items: start;
}

.step-card {
    position: relative;
    padding-top: 2.4rem;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 1.8rem;
    box-shadow: 0 22px 50px -28px rgba(15, 23, 42, 0.28);
    overflow: visible;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3.25rem;
    height: 3.25rem;
    background: linear-gradient(180deg, #60a5fa 0%, #3b82f6 100%);
    color: white;
    font-size: 2rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    border: 0.35rem solid rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 30px rgba(59, 130, 246, 0.26);
}

.step-number--dark {
    background: linear-gradient(180deg, #28479b 0%, #1e3a8a 100%);
    box-shadow: 0 16px 30px rgba(30, 58, 138, 0.3);
}

.step-card-image {
    overflow: hidden;
    border-top-left-radius: 1.8rem;
    border-top-right-radius: 1.8rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.72);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(239, 246, 255, 0.92) 100%);
}

.step-card-illustration {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.step-card-body {
    padding: 2rem 2rem 2.25rem;
    text-align: left;
}

.step-title {
    font-size: clamp(1.9rem, 2.4vw, 2.1rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--landing-primary);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.step-description {
    margin: 0;
    color: #334155;
    font-size: 1.06rem;
    line-height: 1.55;
}

/* Testimonials */
.testimonials-section {
    padding: 8rem 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.testimonial-card {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 16px;
    position: relative;
    border: 1px solid var(--landing-card-border);
}

.stars {
    color: #fbbf24;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.testim-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--landing-text-main);
    margin-bottom: 1.5rem;
}

.testim-author {
    font-weight: 700;
    color: var(--landing-text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* FAQ */
.faq-section {
    padding: 4rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #f1f5f9;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: var(--landing-shadow-sm);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--landing-shadow-md);
}

.faq-question {
    font-size: 1.25rem;
    margin: 0 0 0.5rem 0;
    color: var(--landing-primary);
}

.faq-answer {
    color: var(--landing-text-muted);
    margin: 0;
}

/* Problem vs Solution (Why Us) */
.problem-section {
    padding: 8rem 0;
    background: #f1f5f9;
}

.comparison-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 3rem;
    position: relative;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 900px) {
    .comparison-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .comparison-vs {
        position: static;
        width: 50px;
        height: 50px;
        margin: -1rem auto;
        transform: none;
        z-index: 10;
        font-size: 0.9rem;
    }
}

.comparison-card {
    flex: 1;
    padding: 3rem;
    border-radius: 20px;
    position: relative;
}

.old-way {
    background: #e2e8f0;
    color: #64748b;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    padding-right: 4rem;
}

.new-way {
    background: white;
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
    z-index: 5;
    padding-left: 4rem;
    transform: scale(1.05);
    border: 2px solid var(--landing-accent);
}

@media (max-width: 900px) {

    .old-way,
    .new-way {
        border-radius: 20px;
        padding: 2.5rem;
        width: 100%;
        box-sizing: border-box;
    }

    .new-way {
        transform: none;
    }
}

.comparison-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.old-way .comparison-title {
    color: #475569;
}

.new-way .comparison-title {
    color: var(--landing-primary);
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.comparison-vs {
    width: 60px;
    height: 60px;
    background: var(--landing-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.5);
}

.badge-recommended {
    position: absolute;
    top: -15px;
    right: 30px;
    background: #10b981;
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.2);
}

/* CTA Footer */
.cta-section {
    padding: 5rem 0 6rem;
    background: linear-gradient(180deg, #f8fbff 0%, #edf4fb 100%);
}

.cta-shell {
    position: relative;
    max-width: 980px;
}

.cta-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: 1rem;
    align-items: center;
    padding: 3.25rem 3.25rem 3rem;
    border-radius: 2rem;
    background: #ffffff;
    border: 1px solid rgba(191, 219, 254, 0.8);
    box-shadow: 0 28px 70px -40px rgba(15, 23, 42, 0.28);
}

.cta-copy {
    position: relative;
    z-index: 2;
    min-width: 0;
    max-width: 35rem;
    justify-self: end;
}

.cta-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.9rem;
    margin-bottom: 1.2rem;
    border-radius: 999px;
    background: #dbeafe;
    color: #2563eb;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.cta-title {
    margin: 0 0 1rem;
    color: var(--landing-primary);
    font-size: clamp(2.2rem, 3vw, 3.4rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
    overflow-wrap: anywhere;
}

.cta-description {
    margin: 0 0 2rem;
    max-width: 31rem;
    color: #475569;
    font-size: 1.08rem;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-start;
}

.cta-button {
    min-width: 14rem;
    justify-content: center;
    box-shadow: 0 18px 40px -20px rgba(37, 99, 235, 0.42);
}

.cta-visual {
    position: relative;
    min-height: 22rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-visual-glow {
    position: absolute;
    inset: auto 10% 10% 10%;
    height: 70%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.24) 0%, rgba(96, 165, 250, 0.08) 45%, rgba(96, 165, 250, 0) 72%);
    filter: blur(12px);
}

.cta-illustration {
    position: relative;
    z-index: 1;
    display: block;
    width: min(100%, 31rem);
    max-height: 25rem;
    object-fit: contain;
    border-radius: 1.8rem;
}

.cta-illustration--login {
    width: min(100%, 27rem);
    max-height: 24rem;
}

.landing-footer {
    background: #020617;
    /* Very dark slate */
    color: #64748b;
    padding: 3rem 2rem;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container,
    .stats-grid {
        width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-section {
        height: auto;
        padding: 8rem 0 4rem;
        background-attachment: scroll;
    }

    .landing-header {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 2.75rem;
        grid-template-areas:
            "brand menu"
            "cta cta"
            "nav nav";
        align-items: center;
        padding: 0.85rem 1rem;
        gap: 0.75rem;
        overflow: visible;
    }

    .landing-brand {
        grid-area: brand;
        min-width: 0;
    }

    .landing-brand .logo {
        font-size: 1.55rem;
    }

    .landing-brand span {
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .landing-menu-toggle {
        grid-area: menu;
        display: inline-flex;
    }

    .landing-nav {
        display: none !important;
        grid-area: nav;
        flex-direction: column;
        align-items: stretch !important;
        width: 100%;
        gap: 0.35rem !important;
        margin: 0 !important;
        padding: 0.65rem;
        border: 1px solid rgba(226, 232, 240, 0.95);
        border-radius: 0.75rem;
        background: rgba(255, 255, 255, 0.92);
        box-shadow: var(--landing-shadow-md);
    }

    .landing-header.is-menu-open .landing-nav {
        display: flex !important;
    }

    .landing-nav a {
        width: 100%;
        padding: 0.65rem 0.75rem;
        border-radius: 0.5rem;
    }

    .landing-nav a:hover {
        background: rgba(59, 130, 246, 0.08);
    }

    .landing-header svg {
        width: 20px;
        height: 15px;
        flex: 0 0 auto;
    }

    .landing-header .btn-login {
        grid-area: cta;
        width: 100%;
        max-width: none;
        min-width: 0;
        min-height: 2.75rem;
        padding: 0.72rem 1rem;
        white-space: normal;
        line-height: 1.2;
        text-align: center;
        overflow: visible;
        text-overflow: clip;
        word-break: normal;
        overflow-wrap: anywhere;
    }

    .landing-header-cta {
        display: flex !important;
        justify-self: stretch;
    }

    @media (max-width: 380px) {
        .landing-header .btn-login {
            font-size: 0.9rem;
            padding-left: 0.75rem;
            padding-right: 0.75rem;
        }
    }

    .landing-header > div[style*="gap: 12px"],
    .landing-language-switcher {
        display: none !important;
    }

    .steps-section__glow,
    section[style*="position: relative"] > div[style*="filter: blur"],
    section[style*="position: relative"] > div[style*="radial-gradient"] {
        display: none !important;
    }

    .features-section,
    .steps-section,
    .testimonials-section,
    .faq-section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .steps-section {
        padding: 4.5rem 0 4rem;
    }

    .steps-header {
        margin-bottom: 3rem;
    }

    .steps-flow-line {
        display: none;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2.4rem;
    }

    .step-card {
        max-width: 34rem;
        margin: 0 auto;
    }

    .step-card-body {
        padding: 1.6rem 1.4rem 1.8rem;
    }

    .step-title {
        font-size: 1.85rem;
    }

    .cta-section {
        padding: 4rem 0 4.5rem;
    }

    .cta-card {
        grid-template-columns: 1fr;
        padding: 2rem 1.4rem 2.2rem;
        gap: 1.5rem;
        text-align: center;
    }

    .cta-copy {
        max-width: none;
    }

    .cta-description {
        max-width: none;
    }

    .cta-actions {
        justify-content: center;
    }

    .cta-button {
        width: 100%;
        min-width: 0;
    }

    .cta-visual {
        min-height: 16rem;
        order: -1;
    }

    .cta-illustration {
        width: min(100%, 20rem);
    }

    .cta-title {
        white-space: normal;
    }
}
