/* ════════════════════════════════════════════════════════════════════
   🌍 OmarIsSmart — Landing Page (v2 — Premium Cinematic)
   2026 | Bigger · Animated · Real Photos · Scroll Reveals
═══════════════════════════════════════════════════════════════════════ */

:root {
    --land-primary: #4F46E5;
    --land-primary-dark: #3730A3;
    --land-primary-light: #6366F1;
    --land-primary-50: #EEF2FF;
    --land-primary-100: #E0E7FF;
    --land-primary-200: #C7D2FE;
    --land-accent: #06B6D4;
    --land-success: #10B981;
    --land-warning: #F59E0B;
    --land-danger: #EF4444;
    --land-pink: #EC4899;
    --land-violet: #8B5CF6;

    --land-bg: #FFFFFF;
    --land-bg-soft: #F8FAFC;
    --land-bg-dark: #0F172A;
    --land-card: #FFFFFF;
    --land-border: #E2E8F0;

    --land-text-primary: #0F172A;
    --land-text-secondary: #475569;
    --land-text-muted: #94A3B8;
    --land-text-light: #FFFFFF;

    --land-radius-sm: 10px;
    --land-radius: 14px;
    --land-radius-lg: 20px;
    --land-radius-xl: 28px;

    --land-shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
    --land-shadow: 0 10px 28px -8px rgba(15, 23, 42, 0.14);
    --land-shadow-lg: 0 22px 44px -12px rgba(79, 70, 229, 0.22);
    --land-shadow-xl: 0 35px 70px -20px rgba(79, 70, 229, 0.28);

    --land-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
    margin: 0; padding: 0;
    font-family: 'Cairo', 'Tajawal', system-ui, -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--land-text-primary);
    background: var(--land-bg);
    direction: rtl;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a { color: var(--land-primary); text-decoration: none; transition: color var(--land-transition); }
a:hover { color: var(--land-primary-dark); }

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

.land-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.75rem;
}

/* ════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-zoom {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-zoom.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════ */
.land-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    padding: 0.875rem 0;
    transition: padding 0.25s ease, box-shadow 0.25s ease;
}

.land-nav.scrolled {
    padding: 0.625rem 0;
    box-shadow: 0 6px 24px -8px rgba(15, 23, 42, 0.08);
}

.land-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.land-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--land-text-primary);
    text-decoration: none;
    transition: transform var(--land-transition);
}
.land-logo:hover { transform: translateY(-2px); }

/* New: cartoon mascot SVG logo (kid with graduation cap) */
.land-logo-mascot {
    width: 56px; height: 56px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #FFFBEB, #FEF3C7);
    border: 2px solid rgba(245, 158, 11, 0.20);
    box-shadow:
        0 8px 20px -4px rgba(245, 158, 11, 0.25),
        0 2px 4px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}
.land-logo:hover .land-logo-mascot {
    transform: scale(1.05) rotate(-3deg);
    box-shadow:
        0 12px 28px -4px rgba(245, 158, 11, 0.35),
        0 4px 8px rgba(0, 0, 0, 0.06);
}
.land-logo-mascot svg {
    width: 100%; height: 100%; display: block;
}

.land-logo-text {
    display: flex; flex-direction: column; line-height: 1.1;
    font-family: 'Cairo', sans-serif;
}
.land-logo-name {
    font-size: 1.4rem; font-weight: 900; color: #0f172a;
    letter-spacing: -0.01em;
}
.land-logo-accent {
    background: linear-gradient(135deg, #6366F1, #8B5CF6, #A855F7);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.land-logo-text small {
    font-size: 0.7rem; font-weight: 600;
    color: var(--land-text-muted, #64748b);
    margin-top: 2px;
}

/* ───── FAHMO brand (image logo + Teal/Gold text) ───── */
.land-logo-mascot.fahmo-mark {
    background: transparent;
    border: 0;
    box-shadow: 0 8px 20px -4px rgba(20, 184, 166, 0.30);
    padding: 4px;
}
.land-logo:hover .land-logo-mascot.fahmo-mark {
    transform: scale(1.06) rotate(-3deg);
    box-shadow: 0 14px 30px -6px rgba(20, 184, 166, 0.45);
}
.land-logo-mascot.fahmo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.fahmo-name {
    font-family: 'Cairo', 'Segoe UI', sans-serif !important;
    font-size: 1.65rem !important;
    font-weight: 900 !important;
    letter-spacing: 0.02em !important;
    line-height: 1 !important;
    background: linear-gradient(135deg, #0E7C7B 0%, #14B8A6 45%, #D4AF37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent !important;
    filter: drop-shadow(0 2px 6px rgba(20, 184, 166, 0.18));
    display: inline-block;
}
.fahmo-tagline {
    color: #0E7C7B !important;
    font-weight: 700 !important;
}
[data-bs-theme="dark"] .fahmo-tagline,
.dark-mode .fahmo-tagline { color: #5eead4 !important; }

/* keep old class for backward-compat (footer still uses it) */
.land-logo-mark {
    width: 42px; height: 42px; border-radius: 11px;
    background: linear-gradient(135deg, var(--land-primary), var(--land-violet));
    color: white; display: inline-flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 800;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.35);
}

.land-nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.land-nav-link {
    color: var(--land-text-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    transition: color var(--land-transition);
    position: relative;
}

.land-nav-link:hover { color: var(--land-primary); }

.land-nav-link::after {
    content: "";
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--land-primary), var(--land-violet));
    transition: width var(--land-transition);
    border-radius: 2px;
}

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

.land-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.land-mobile-toggle {
    display: none;
    background: none;
    border: 1.5px solid var(--land-border);
    padding: 0.5rem;
    border-radius: 10px;
    cursor: pointer;
    color: var(--land-text-secondary);
}

@media (max-width: 992px) {
    .land-nav-links { display: none; }
    .land-mobile-toggle { display: inline-flex; }
}

/* ════════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════════ */
.land-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--land-radius);
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--land-transition);
    text-decoration: none;
    line-height: 1.2;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.land-btn-primary {
    background: linear-gradient(135deg, var(--land-primary) 0%, var(--land-violet) 100%);
    color: white;
    box-shadow: 0 10px 28px -6px rgba(79, 70, 229, 0.5), inset 0 1px 0 rgba(255,255,255,0.2);
}

.land-btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: right 0.6s ease;
}

.land-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px -6px rgba(79, 70, 229, 0.6), inset 0 1px 0 rgba(255,255,255,0.2);
    color: white;
}

.land-btn-primary:hover::before { right: 100%; }

.land-btn-outline {
    background: white;
    color: var(--land-text-primary);
    border-color: var(--land-border);
}

.land-btn-outline:hover {
    border-color: var(--land-primary);
    color: var(--land-primary);
    background: var(--land-primary-50);
    transform: translateY(-2px);
}

.land-btn-ghost {
    background: transparent;
    color: var(--land-text-primary);
    border-color: transparent;
}

.land-btn-ghost:hover {
    background: var(--land-primary-50);
    color: var(--land-primary);
}

.land-btn-lg { padding: 1.05rem 2.125rem; font-size: 1.0625rem; border-radius: 16px; }
.land-btn-sm { padding: 0.6rem 1.125rem; font-size: 0.9rem; }
.land-btn-xl { padding: 1.25rem 2.5rem; font-size: 1.125rem; border-radius: 18px; }

.land-btn i { font-size: 16px; transition: transform var(--land-transition); }
.land-btn:hover i { transform: translateX(-4px); }

/* Play button (for video CTAs) */
.land-play-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: white;
    color: var(--land-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    font-size: 22px;
    transition: all var(--land-transition);
    position: relative;
}

.land-play-btn::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

.land-play-btn:hover { transform: scale(1.1); }

/* ════════════════════════════════════════════════════
   HERO (Bigger + Animated Backgrounds)
════════════════════════════════════════════════════ */
.land-hero {
    position: relative;
    padding: 5rem 0 6rem;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 0%, rgba(139, 92, 246, 0.14) 0%, transparent 45%),
        radial-gradient(circle at 0% 100%, rgba(6, 182, 212, 0.10) 0%, transparent 45%),
        linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

@media (max-width: 992px) {
    .land-hero { padding: 3rem 0 4rem; }
}

/* Animated mesh blobs */
.land-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.land-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    will-change: transform;
}

/* Blobs ثابتة بدون animation لمنع أي اهتزاز */
.land-blob-1 {
    width: 480px; height: 480px;
    top: -150px; right: -150px;
    background: radial-gradient(circle, var(--land-primary), transparent 70%);
}

.land-blob-2 {
    width: 380px; height: 380px;
    bottom: -120px; left: -100px;
    background: radial-gradient(circle, var(--land-pink), transparent 70%);
    opacity: 0.35;
}

.land-blob-3 {
    width: 320px; height: 320px;
    top: 30%; left: 30%;
    background: radial-gradient(circle, var(--land-accent), transparent 70%);
    opacity: 0.25;
}

/* Subtle grid pattern over blobs */
.land-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(79, 70, 229, 0.06) 1.2px, transparent 1.2px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 1;
}

.land-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

@media (max-width: 992px) {
    .land-hero-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.land-hero-content {
    animation: fadeInRight 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

.land-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--land-primary-50);
    color: var(--land-primary);
    padding: 0.5rem 1.125rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--land-primary-100);
    box-shadow: 0 4px 14px -4px rgba(79, 70, 229, 0.18);
}

.land-eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--land-success);
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.7);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.4); opacity: 0.7; }
}

.land-hero-title {
    font-size: clamp(2.625rem, 5.5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--land-text-primary);
    margin: 0 0 1.5rem;
}

.land-hero-title .grad {
    background: linear-gradient(135deg, var(--land-primary) 0%, var(--land-pink) 60%, var(--land-warning) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    animation: gradient-shift 6s ease-in-out infinite;
}

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

.land-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.75;
    color: var(--land-text-secondary);
    margin: 0 0 2.5rem;
    max-width: 600px;
}

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

.land-hero-trust {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    color: var(--land-text-secondary);
    font-size: 0.95rem;
}

.land-hero-trust > div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.land-hero-trust i { font-size: 20px; }

/* Hero Visual */
.land-hero-visual {
    position: relative;
    animation: fadeInLeft 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

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

.land-hero-image-wrap {
    position: relative;
    border-radius: var(--land-radius-xl);
    overflow: hidden;
    box-shadow: var(--land-shadow-xl);
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, var(--land-primary-50), var(--land-primary-100));
}

.land-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* الصورة ثابتة بدون أي animation — لمنع أي اهتزاز */
}

/* Floating UI cards over hero */
.land-hero-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 1rem 1.125rem;
    box-shadow: 0 24px 50px -12px rgba(15, 23, 42, 0.28);
    display: flex;
    align-items: center;
    gap: 0.875rem;
    min-width: 220px;
}

/* الكروت ثابتة بدون أي حركة — fade-in entrance فقط مرة واحدة */
.land-hero-card {
    opacity: 0;
    animation: card-fade-in 0.7s ease-out forwards;
}

.land-hero-card-1 {
    top: 10%; right: -10%;
    animation-delay: 0.6s;
}
.land-hero-card-2 {
    bottom: 12%; left: -10%;
    animation-delay: 0.9s;
}
.land-hero-card-3 {
    top: 50%; left: -5%;
    animation-delay: 1.2s;
}

@keyframes card-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.land-hero-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.bg-gold   { background: linear-gradient(135deg, #FCD34D, #F59E0B); box-shadow: 0 6px 14px rgba(245, 158, 11, 0.4); }
.bg-prim   { background: linear-gradient(135deg, var(--land-primary), var(--land-primary-light)); box-shadow: 0 6px 14px rgba(79, 70, 229, 0.4); }
.bg-emer   { background: linear-gradient(135deg, #34D399, #10B981); box-shadow: 0 6px 14px rgba(16, 185, 129, 0.4); }
.bg-pink   { background: linear-gradient(135deg, #F472B6, #EC4899); box-shadow: 0 6px 14px rgba(236, 72, 153, 0.4); }

.land-hero-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 3px;
    color: var(--land-text-primary);
}

.land-hero-card-meta {
    font-size: 0.78rem;
    color: var(--land-text-muted);
    margin: 0;
}

@media (max-width: 992px) {
    .land-hero-card-1 { right: 4%; top: 6%; }
    .land-hero-card-2 { left: 4%; bottom: 6%; }
    .land-hero-card-3 { display: none; }
}

/* Stats strip below hero */
.land-stats {
    position: relative;
    z-index: 2;
    margin-top: 4rem;
    padding: 2.25rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px);
    border: 1px solid var(--land-border);
    border-radius: var(--land-radius-lg);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    box-shadow: 0 12px 32px -12px rgba(15, 23, 42, 0.08);
}

@media (max-width: 768px) {
    .land-stats { grid-template-columns: repeat(2, 1fr); padding: 1.5rem; }
}

.land-stat {
    text-align: center;
    position: relative;
}

.land-stat:not(:last-child)::after {
    content: "";
    position: absolute;
    left: -0.625rem;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: var(--land-border);
}

@media (max-width: 768px) {
    .land-stat::after { display: none; }
}

.land-stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--land-primary), var(--land-violet));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.land-stat-label {
    font-size: 0.9rem;
    color: var(--land-text-secondary);
    font-weight: 600;
}

/* ════════════════════════════════════════════════════
   TRUSTED BY (Logos strip)
════════════════════════════════════════════════════ */
.land-trusted {
    padding: 3rem 0;
    background: var(--land-bg);
    border-top: 1px solid var(--land-border);
    border-bottom: 1px solid var(--land-border);
}

.land-trusted-label {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--land-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.75rem;
}

.land-trusted-logos {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 2.5rem;
    flex-wrap: wrap;
    opacity: 0.6;
}

.land-trusted-logos > div {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--land-text-secondary);
    letter-spacing: -0.02em;
    transition: all var(--land-transition);
}

.land-trusted-logos > div:hover {
    opacity: 1;
    transform: scale(1.05);
    color: var(--land-primary);
}

/* ════════════════════════════════════════════════════
   SECTION HEADER
════════════════════════════════════════════════════ */
.land-section {
    padding: 6.5rem 0;
    position: relative;
}

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

.land-section-soft { background: var(--land-bg-soft); }

.land-section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 4rem;
}

.land-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--land-primary);
    margin-bottom: 1rem;
    background: var(--land-primary-50);
    padding: 0.45rem 1rem;
    border-radius: 100px;
    border: 1px solid var(--land-primary-100);
}

.land-section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    color: var(--land-text-primary);
    margin: 0 0 1.125rem;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.land-section-subtitle {
    font-size: 1.15rem;
    color: var(--land-text-secondary);
    line-height: 1.75;
    margin: 0;
}

/* ════════════════════════════════════════════════════
   FEATURES
════════════════════════════════════════════════════ */
.land-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.land-feature {
    background: var(--land-card);
    border: 1px solid var(--land-border);
    border-radius: var(--land-radius-lg);
    padding: 2.25rem 2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.land-feature::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--land-primary), var(--land-violet));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.land-feature::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(79, 70, 229, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.land-feature:hover::before { transform: scaleX(1); }
.land-feature:hover::after { opacity: 1; }
.land-feature:hover .land-feature-icon { transform: scale(1.1) rotate(-5deg); }

.land-feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.land-feature-icon.fi-primary { background: var(--land-primary-50); color: var(--land-primary); }
.land-feature-icon.fi-emerald { background: rgba(16, 185, 129, 0.12); color: #059669; }
.land-feature-icon.fi-pink    { background: rgba(236, 72, 153, 0.10); color: var(--land-pink); }
.land-feature-icon.fi-amber   { background: rgba(245, 158, 11, 0.13); color: #D97706; }
.land-feature-icon.fi-cyan    { background: rgba(6, 182, 212, 0.12); color: var(--land-accent); }
.land-feature-icon.fi-violet  { background: rgba(139, 92, 246, 0.13); color: var(--land-violet); }

.land-feature-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--land-text-primary);
    margin: 0 0 0.625rem;
    letter-spacing: -0.01em;
}

.land-feature-desc {
    font-size: 0.95rem;
    color: var(--land-text-secondary);
    line-height: 1.75;
    margin: 0;
}

/* ════════════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════════════ */
.land-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    position: relative;
}

@media (max-width: 992px) {
    .land-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .land-steps { grid-template-columns: 1fr; }
}

.land-step {
    text-align: center;
    padding: 1.5rem;
    position: relative;
    transition: transform var(--land-transition);
}

.land-step:hover { transform: translateY(-6px); }

.land-step-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--land-primary), var(--land-violet));
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    font-weight: 900;
    margin-bottom: 1.25rem;
    box-shadow: 0 16px 32px -8px rgba(79, 70, 229, 0.5);
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.land-step:hover .land-step-num {
    transform: scale(1.1) rotate(8deg);
}

.land-step-num::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px dashed var(--land-primary-200);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.land-step-title {
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0 0 0.625rem;
}

.land-step-desc {
    font-size: 0.95rem;
    color: var(--land-text-secondary);
    margin: 0;
    line-height: 1.7;
}

/* ════════════════════════════════════════════════════
   COURSES
════════════════════════════════════════════════════ */
.land-courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
}

.land-course {
    background: white;
    border: 1px solid var(--land-border);
    border-radius: var(--land-radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.land-course:hover {
    transform: translateY(-10px);
    box-shadow: var(--land-shadow-xl);
    border-color: transparent;
}

.land-course-img {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--land-primary-100), var(--land-primary-50));
    position: relative;
    overflow: hidden;
}

.land-course-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.land-course:hover .land-course-img img { transform: scale(1.12); }

.land-course-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.land-course:hover .land-course-img::after { opacity: 1; }

.land-course-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    color: var(--land-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    z-index: 2;
}

.land-course-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.land-course-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--land-text-primary);
    margin: 0 0 0.625rem;
    line-height: 1.4;
}

.land-course-meta {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-size: 0.85rem;
    color: var(--land-text-muted);
    margin-bottom: 1.25rem;
}

.land-course-meta i { color: var(--land-primary); }

.land-course-rating {
    color: var(--land-warning);
    font-size: 0.9rem;
    font-weight: 600;
}

.land-course-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--land-border);
}

.land-course-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--land-primary);
}

.land-course-price small {
    font-size: 0.75rem;
    color: var(--land-text-muted);
    font-weight: 500;
    text-decoration: line-through;
    margin-right: 0.375rem;
}

/* ════════════════════════════════════════════════════
   MOBILE APP SHOWCASE
════════════════════════════════════════════════════ */
.land-mobile-showcase {
    padding: 6.5rem 0;
    background: linear-gradient(180deg, #FFFFFF 0%, var(--land-primary-50) 100%);
    overflow: hidden;
    position: relative;
}

.land-mobile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .land-mobile-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.land-mobile-content .land-section-eyebrow { margin-bottom: 1rem; }

.land-mobile-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin: 0 0 1.125rem;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.land-mobile-content p {
    font-size: 1.125rem;
    color: var(--land-text-secondary);
    line-height: 1.75;
    margin: 0 0 2rem;
}

.land-mobile-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.land-mobile-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
}

.land-mobile-features li i {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: var(--land-success);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.land-app-buttons {
    display: flex;
    gap: 0.875rem;
    flex-wrap: wrap;
}

.land-app-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: var(--land-bg-dark);
    color: white;
    padding: 0.875rem 1.375rem;
    border-radius: 12px;
    transition: all var(--land-transition);
    border: 1px solid rgba(255,255,255,0.1);
}

.land-app-btn:hover {
    transform: translateY(-3px);
    background: #1E293B;
    color: white;
    box-shadow: 0 12px 24px -8px rgba(0,0,0,0.3);
}

.land-app-btn i { font-size: 26px; }
.land-app-btn small { display: block; font-size: 0.65rem; opacity: 0.7; margin-bottom: 1px; }
.land-app-btn b { display: block; font-size: 0.95rem; font-weight: 700; letter-spacing: 0.01em; }

.land-mobile-visual {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.land-phone {
    width: 280px;
    height: 560px;
    background: var(--land-bg-dark);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 40px 80px -20px rgba(15, 23, 42, 0.4), 0 0 0 6px rgba(15, 23, 42, 0.1);
    position: relative;
    transform: rotate(-6deg);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.land-mobile-visual:hover .land-phone { transform: rotate(0deg) scale(1.04); }

.land-phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--land-primary), var(--land-violet));
}

.land-phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.land-phone-notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 24px;
    background: var(--land-bg-dark);
    border-radius: 100px;
    z-index: 2;
}

/* Decorative floating shapes around phone */
.land-phone-shape {
    position: absolute;
    border-radius: 18px;
    box-shadow: 0 16px 40px -8px rgba(15,23,42,0.15);
}

.land-phone-shape-1 {
    width: 140px;
    height: 80px;
    top: 12%;
    right: 12%;
    background: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.land-phone-shape-2 {
    width: 160px;
    height: 90px;
    bottom: 15%;
    left: 8%;
    background: white;
    padding: 1rem;
}

.land-phone-shape-2 small {
    font-size: 0.7rem;
    color: var(--land-text-muted);
    display: block;
    margin-bottom: 4px;
}

.land-phone-shape-2 .progress-mini {
    height: 6px;
    background: var(--land-border);
    border-radius: 100px;
    overflow: hidden;
    margin-top: 6px;
}

.land-phone-shape-2 .progress-fill {
    height: 100%;
    width: 75%;
    background: linear-gradient(90deg, var(--land-primary), var(--land-accent));
    border-radius: 100px;
}

/* ════════════════════════════════════════════════════
   IMPACT SECTION (Big Numbers)
════════════════════════════════════════════════════ */
.land-impact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1E1B4B 0%, #312E81 50%, #4F46E5 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.land-impact::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.4), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.3), transparent 40%);
    pointer-events: none;
}

.land-impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

@media (max-width: 768px) {
    .land-impact-grid { grid-template-columns: repeat(2, 1fr); }
}

.land-impact-item {
    padding: 1.5rem;
}

.land-impact-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 1.25rem;
    color: white;
}

.land-impact-value {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #FFFFFF 0%, #FCD34D 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.625rem;
    letter-spacing: -0.025em;
}

.land-impact-label {
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.85;
}

/* ════════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════════ */
.land-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
}

.land-testimonial {
    background: white;
    border: 1px solid var(--land-border);
    border-radius: var(--land-radius-lg);
    padding: 2.125rem 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.land-testimonial::before {
    content: "“";
    position: absolute;
    top: 0.875rem;
    left: 1.25rem;
    font-size: 5rem;
    line-height: 1;
    color: var(--land-primary-100);
    font-family: Georgia, serif;
}

.land-testimonial:hover {
    transform: translateY(-6px);
    border-color: var(--land-primary-100);
    box-shadow: var(--land-shadow-lg);
}

.land-testimonial-stars {
    color: var(--land-warning);
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.land-testimonial-quote {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--land-text-primary);
    margin: 0 0 1.5rem;
}

.land-testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding-top: 1.125rem;
    border-top: 1px solid var(--land-border);
}

.land-testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--land-primary), var(--land-violet));
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 22px;
    flex-shrink: 0;
}

.land-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.land-testimonial-name {
    font-size: 1rem;
    font-weight: 800;
    margin: 0;
    color: var(--land-text-primary);
}

.land-testimonial-role {
    font-size: 0.825rem;
    color: var(--land-text-muted);
    margin: 3px 0 0;
}

/* ════════════════════════════════════════════════════
   PRICING
════════════════════════════════════════════════════ */
.land-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    max-width: 1140px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .land-plans { grid-template-columns: 1fr; max-width: 500px; }
}

.land-plan {
    background: white;
    border: 2px solid var(--land-border);
    border-radius: var(--land-radius-lg);
    padding: 2.375rem 2rem;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.land-plan:hover {
    transform: translateY(-8px);
    box-shadow: var(--land-shadow-xl);
}

.land-plan.featured {
    border-color: var(--land-primary);
    box-shadow: 0 25px 50px -12px rgba(79, 70, 229, 0.3);
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .land-plan.featured { transform: scale(1); }
}

.land-plan.featured::before {
    content: "الأكثر شعبية";
    position: absolute;
    top: -14px;
    right: 50%;
    transform: translateX(50%);
    background: linear-gradient(135deg, var(--land-primary), var(--land-violet));
    color: white;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.45);
}

.land-plan-name {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--land-text-secondary);
    margin: 0 0 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.land-plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin: 1rem 0 1.125rem;
}

.land-plan-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--land-text-primary);
    letter-spacing: -0.025em;
    line-height: 1;
}

.land-plan-period {
    font-size: 0.95rem;
    color: var(--land-text-muted);
    font-weight: 500;
}

.land-plan-desc {
    font-size: 0.95rem;
    color: var(--land-text-secondary);
    margin: 0 0 1.75rem;
    line-height: 1.6;
}

.land-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    flex: 1;
}

.land-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.625rem 0;
    font-size: 0.95rem;
    color: var(--land-text-primary);
}

.land-plan-features li i {
    color: var(--land-success);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.land-plan .land-btn { width: 100%; }

/* ════════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════ */
.land-faqs {
    max-width: 860px;
    margin: 0 auto;
}

.land-faq {
    background: white;
    border: 1px solid var(--land-border);
    border-radius: var(--land-radius);
    margin-bottom: 0.875rem;
    overflow: hidden;
    transition: all var(--land-transition);
}

.land-faq:hover { border-color: var(--land-primary-200); box-shadow: var(--land-shadow-sm); }
.land-faq.open { border-color: var(--land-primary); box-shadow: var(--land-shadow); }

.land-faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 1.375rem 1.75rem;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--land-text-primary);
    text-align: right;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-family: inherit;
    transition: color var(--land-transition);
}

.land-faq-q:hover { color: var(--land-primary); }

.land-faq-q i {
    color: var(--land-primary);
    transition: transform var(--land-transition);
    font-size: 20px;
    flex-shrink: 0;
}

.land-faq.open .land-faq-q i { transform: rotate(180deg); }

.land-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.land-faq.open .land-faq-a { max-height: 400px; }

.land-faq-a-inner {
    padding: 0 1.75rem 1.5rem;
    font-size: 1rem;
    color: var(--land-text-secondary);
    line-height: 1.8;
}

/* ════════════════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════════════════ */
.land-cta {
    background: linear-gradient(135deg, #1E1B4B 0%, #4F46E5 60%, #8B5CF6 100%);
    border-radius: var(--land-radius-xl);
    padding: 4.5rem 2.5rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin: 0 1.75rem;
}

.land-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.5) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.35) 0%, transparent 40%);
    pointer-events: none;
}

.land-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(255,255,255,0.04) 60px, rgba(255,255,255,0.04) 120px);
    pointer-events: none;
}

.land-cta > * { position: relative; z-index: 1; }

.land-cta h2 {
    font-size: clamp(2rem, 3.5vw, 2.875rem);
    font-weight: 800;
    margin: 0 0 1.125rem;
    letter-spacing: -0.025em;
}

.land-cta p {
    font-size: 1.15rem;
    opacity: 0.92;
    max-width: 620px;
    margin: 0 auto 2.25rem;
    line-height: 1.7;
}

.land-cta .land-btn {
    background: white;
    color: var(--land-primary);
    border-color: white;
    font-weight: 800;
}

.land-cta .land-btn:hover {
    background: rgba(255, 255, 255, 0.92);
    color: var(--land-primary-dark);
    transform: translateY(-3px);
}

/* ════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
.land-footer {
    background: var(--land-bg-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.land-footer::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--land-primary), transparent);
}

.land-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

@media (max-width: 768px) {
    .land-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

.land-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 1.125rem;
}

.land-footer-brand .land-logo-mark {
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.45);
}

.land-footer-about {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    max-width: 380px;
}

.land-social {
    display: flex;
    gap: 0.625rem;
}

.land-social a {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    transition: all var(--land-transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.land-social a:hover {
    background: linear-gradient(135deg, var(--land-primary), var(--land-violet));
    color: white;
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: 0 12px 24px -8px rgba(79, 70, 229, 0.5);
}

.land-footer-col h4 {
    font-size: 0.9rem;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 1.25rem;
}

.land-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.land-footer-col a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    transition: all var(--land-transition);
}

.land-footer-col a:hover {
    color: white;
    transform: translateX(-3px);
    display: inline-block;
}

.land-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ════════════════════════════════════════════════════
   MOBILE MENU
════════════════════════════════════════════════════ */
.land-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    z-index: 200;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.5rem;
    overflow-y: auto;
}

.land-mobile-menu.open { right: 0; }

.land-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    z-index: 150;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.land-mobile-overlay.open { opacity: 1; pointer-events: auto; }

.land-mobile-menu .land-mobile-close {
    background: none;
    border: 1px solid var(--land-border);
    width: 38px;
    height: 38px;
    border-radius: 10px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.land-mobile-menu nav { display: flex; flex-direction: column; gap: 0.25rem; }

.land-mobile-menu nav a {
    padding: 0.875rem 1rem;
    border-radius: 10px;
    color: var(--land-text-primary);
    font-weight: 600;
    transition: all var(--land-transition);
}

.land-mobile-menu nav a:hover {
    background: var(--land-primary-50);
    color: var(--land-primary);
}

.land-mobile-menu .mobile-cta {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--land-border);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ════════════════════════════════════════════════════════════════════
   NEW SECTIONS — World-Class Educational Layout
═══════════════════════════════════════════════════════════════════════ */

/* ─── Subject Categories ──────────────────────────── */
.land-subjects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.land-subject {
    position: relative;
    border-radius: var(--land-radius-lg);
    overflow: hidden;
    aspect-ratio: 1.3 / 1;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--land-shadow);
}

.land-subject:hover { transform: translateY(-8px); box-shadow: var(--land-shadow-xl); }

.land-subject-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.land-subject-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 30%, rgba(15, 23, 42, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: white;
    transition: background 0.4s ease;
}

.land-subject:hover .land-subject-overlay {
    background: linear-gradient(180deg, rgba(79, 70, 229, 0.3) 30%, rgba(79, 70, 229, 0.85) 100%);
}

.land-subject-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: auto;
    align-self: flex-end;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.land-subject-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 4px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.land-subject-count {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ─── Audience Sections (For Students/Parents/Teachers) ─ */
.land-audience {
    padding: 6rem 0;
}

.land-audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.land-audience-grid.reverse { grid-template-columns: 1fr 1fr; }
.land-audience-grid.reverse .land-audience-content { order: 2; }
.land-audience-grid.reverse .land-audience-visual { order: 1; }

@media (max-width: 992px) {
    .land-audience-grid,
    .land-audience-grid.reverse {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .land-audience-grid.reverse .land-audience-content { order: 1; }
    .land-audience-grid.reverse .land-audience-visual { order: 2; }
}

.land-audience-content .land-section-eyebrow { margin-bottom: 1rem; }

.land-audience-content h2 {
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
    font-weight: 800;
    margin: 0 0 1.125rem;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.land-audience-content > p {
    font-size: 1.125rem;
    color: var(--land-text-secondary);
    line-height: 1.75;
    margin: 0 0 2rem;
}

.land-audience-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem;
}

@media (max-width: 540px) {
    .land-audience-features { grid-template-columns: 1fr; }
}

.land-audience-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--land-text-primary);
}

.land-audience-features li i {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--land-success);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 1px;
}

.land-audience-visual {
    position: relative;
}

.land-audience-image {
    width: 100%;
    border-radius: var(--land-radius-xl);
    box-shadow: var(--land-shadow-xl);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.land-audience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating widget over audience image */
.land-audience-widget {
    position: absolute;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1rem 1.125rem;
    box-shadow: 0 20px 50px -12px rgba(15, 23, 42, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.land-audience-widget-1 { top: -16px; right: -16px; min-width: 200px; }
.land-audience-widget-2 { bottom: -16px; left: -16px; min-width: 220px; }

@media (max-width: 540px) {
    .land-audience-widget-1, .land-audience-widget-2 {
        position: static;
        margin: 1rem 0;
    }
}

/* ─── Live Sessions Section ───────────────────────── */
.land-live-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.land-live-card {
    background: white;
    border: 1px solid var(--land-border);
    border-radius: var(--land-radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.land-live-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--land-shadow-lg);
    border-color: transparent;
}

.land-live-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.land-live-thumb img {
    width: 100%; height: 100%; object-fit: cover;
}

.land-live-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5));
}

.land-live-badge {
    position: absolute;
    top: 14px; right: 14px;
    background: #EF4444;
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    z-index: 2;
    box-shadow: 0 6px 14px rgba(239, 68, 68, 0.4);
}

.land-live-badge::before {
    content: "";
    width: 6px; height: 6px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 0 8px rgba(255,255,255,0.8);
    animation: pulse-dot 1.2s ease-in-out infinite;
}

.land-live-time {
    position: absolute;
    bottom: 14px; right: 14px;
    background: rgba(0,0,0,0.7);
    color: white;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.3rem 0.7rem;
    border-radius: 8px;
    z-index: 2;
    backdrop-filter: blur(8px);
}

.land-live-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.land-live-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--land-text-primary);
    margin: 0 0 0.625rem;
    line-height: 1.4;
}

.land-live-instructor {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 1rem;
}

.land-live-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--land-primary), var(--land-violet));
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.land-live-instructor small {
    color: var(--land-text-muted);
    font-size: 0.78rem;
    display: block;
    margin-top: 1px;
}

.land-live-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.875rem;
    border-top: 1px solid var(--land-border);
    margin-top: auto;
    font-size: 0.85rem;
    color: var(--land-text-muted);
}

.land-live-meta strong { color: var(--land-text-primary); }

/* ─── Library Books ───────────────────────────────── */
.land-library {
    background: linear-gradient(180deg, var(--land-bg-soft) 0%, #FFFFFF 100%);
}

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

.land-book {
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.land-book:hover { transform: translateY(-10px); }

.land-book-cover {
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 36px -12px rgba(15, 23, 42, 0.25);
    margin-bottom: 1rem;
    position: relative;
}

.land-book-cover img {
    width: 100%; height: 100%; object-fit: cover;
}

.land-book-pages {
    position: absolute;
    top: 4px; bottom: 4px;
    left: 0;
    width: 6px;
    background: linear-gradient(90deg, rgba(0,0,0,0.15), transparent);
    border-radius: 3px 0 0 3px;
}

.land-book-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--land-text-primary);
    margin: 0 0 0.25rem;
}

.land-book-author {
    font-size: 0.8rem;
    color: var(--land-text-muted);
    margin: 0;
}

/* ─── Notifications Showcase ──────────────────────── */
.land-notif-card {
    background: white;
    border: 1px solid var(--land-border);
    border-radius: 14px;
    padding: 1rem 1.125rem;
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    box-shadow: var(--land-shadow);
}

.land-notif-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    flex-shrink: 0;
}

.land-notif-icon.bg-emerald { background: linear-gradient(135deg, #34D399, #10B981); }
.land-notif-icon.bg-amber   { background: linear-gradient(135deg, #FCD34D, #F59E0B); }
.land-notif-icon.bg-pink    { background: linear-gradient(135deg, #F472B6, #EC4899); }
.land-notif-icon.bg-indigo  { background: linear-gradient(135deg, var(--land-primary), var(--land-violet)); }

.land-notif-content { flex: 1; min-width: 0; }

.land-notif-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0 0 3px;
    color: var(--land-text-primary);
}

.land-notif-meta {
    font-size: 0.75rem;
    color: var(--land-text-muted);
    margin: 0;
}

.land-notif-time {
    font-size: 0.7rem;
    color: var(--land-text-muted);
    flex-shrink: 0;
}

/* ─── Banner CTA mid-page ─────────────────────────── */
.land-banner-cta {
    background: linear-gradient(135deg, var(--land-primary-50), var(--land-primary-100));
    border-radius: var(--land-radius-xl);
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    border: 1px solid var(--land-primary-100);
    position: relative;
    overflow: hidden;
}

.land-banner-cta::before {
    content: "";
    position: absolute;
    top: 0; right: 0; width: 50%; height: 100%;
    background: radial-gradient(ellipse at 100% 50%, rgba(139, 92, 246, 0.15), transparent 60%);
}

.land-banner-cta > * { position: relative; z-index: 1; }

.land-banner-cta h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
    color: var(--land-text-primary);
}

.land-banner-cta p {
    margin: 0;
    color: var(--land-text-secondary);
    font-size: 1rem;
}

/* ─── Big Counter Display (Hero stats variant) ──────── */
.land-mega-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    padding: 5rem 0;
    background: var(--land-bg-soft);
}

@media (max-width: 768px) {
    .land-mega-stats { grid-template-columns: repeat(2, 1fr); padding: 3rem 1rem; }
}

.land-mega-stat .num {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--land-primary), var(--land-violet) 50%, var(--land-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    letter-spacing: -0.03em;
}

.land-mega-stat .lbl {
    font-size: 1rem;
    color: var(--land-text-secondary);
    font-weight: 600;
    margin-top: 0.5rem;
}

/* ─── Section divider wave ─────────────────────────── */
.land-divider-wave {
    height: 60px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 60' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0,30 C300,60 900,0 1200,30 L1200,60 L0,60 Z' fill='%23F8FAFC'/%3E%3C/svg%3E");
    background-size: 100% 100%;
}

/* ════════════════════════════════════════════════════════════════════
   v4 — EDITORIAL / REFINED PROFESSIONAL DESIGN
═══════════════════════════════════════════════════════════════════════ */

/* ─── Editorial Hero (refined, not centered) ───────── */
.land-hero-edit {
    position: relative;
    padding: 5rem 0 6rem;
    overflow: hidden;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.land-hero-edit::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.10), transparent 60%);
    pointer-events: none;
}

.land-hero-edit::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08), transparent 60%);
    pointer-events: none;
}

.land-hero-edit-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

@media (max-width: 992px) {
    .land-hero-edit-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.land-hero-edit-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 1px solid var(--land-border);
    padding: 0.5rem 1rem 0.5rem 1.125rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--land-text-secondary);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 14px -4px rgba(15, 23, 42, 0.06);
}

.land-hero-edit-eyebrow strong {
    background: var(--land-primary);
    color: white;
    padding: 0.2rem 0.625rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
}

.land-hero-edit-title {
    font-size: clamp(2.25rem, 3.8vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--land-text-primary);
    margin: 0 0 1.25rem;
}

.land-hero-edit-title .accent {
    background: linear-gradient(135deg, var(--land-primary), var(--land-violet));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.land-hero-edit-sub {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--land-text-secondary);
    margin: 0 0 2rem;
    max-width: 540px;
}

.land-hero-edit-actions {
    display: flex;
    gap: 0.875rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.land-hero-edit-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: var(--land-text-muted);
    font-size: 0.9rem;
}

.land-hero-edit-meta > div {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.land-hero-edit-meta i { color: var(--land-success); font-size: 17px; }

/* Hero visual — single clean photo + 2 floating badges */
.land-hero-edit-visual {
    position: relative;
    aspect-ratio: 5 / 4;
    border-radius: var(--land-radius-xl);
    box-shadow: 0 30px 60px -20px rgba(79, 70, 229, 0.25);
}

.land-hero-edit-visual-img {
    width: 100%;
    height: 100%;
    border-radius: var(--land-radius-xl);
    overflow: hidden;
    position: relative;
}

.land-hero-edit-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.land-hero-edit-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-radius: 14px;
    padding: 0.75rem 1rem;
    box-shadow: 0 16px 40px -12px rgba(15, 23, 42, 0.22);
    display: flex;
    align-items: center;
    gap: 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    z-index: 3;
}

.land-hero-edit-badge.b1 { top: 18px; right: -16px; }
.land-hero-edit-badge.b2 { bottom: 18px; left: -16px; min-width: 220px; }

@media (max-width: 480px) {
    .land-hero-edit-badge.b1 { top: 12px; right: 12px; }
    .land-hero-edit-badge.b2 { bottom: 12px; left: 12px; }
}

.land-hero-edit-badge .ic {
    width: 38px; height: 38px;
    border-radius: 10px;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.land-hero-edit-badge .text strong {
    font-size: 0.9rem;
    color: var(--land-text-primary);
    display: block;
    line-height: 1.2;
}

.land-hero-edit-badge .text small {
    font-size: 0.72rem;
    color: var(--land-text-muted);
}

/* ─── Clean Stats (4 equal columns, no bento chaos) ─ */
.land-stats-clean {
    padding: 4rem 0;
    background: var(--land-bg);
    border-top: 1px solid var(--land-border);
    border-bottom: 1px solid var(--land-border);
}

.land-stats-clean-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 768px) {
    .land-stats-clean-grid { grid-template-columns: repeat(2, 1fr); }
}

.land-stat-clean {
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
}

.land-stat-clean:not(:last-child)::after {
    content: "";
    position: absolute;
    left: -0.5rem;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: var(--land-border);
}

@media (max-width: 768px) {
    .land-stat-clean::after { display: none; }
}

.land-stat-clean-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--land-primary-50);
    color: var(--land-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 1rem;
}

.land-stat-clean-num {
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1;
    color: var(--land-text-primary);
    letter-spacing: -0.025em;
    margin-bottom: 0.5rem;
}

.land-stat-clean-num .plus {
    font-size: 1.5rem;
    color: var(--land-primary);
    font-weight: 700;
}

.land-stat-clean-label {
    font-size: 0.95rem;
    color: var(--land-text-secondary);
    font-weight: 600;
}

/* ─── 3 Audience Cards Side-by-Side ────────────────── */
.land-audiences {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .land-audiences { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

.land-aud-card {
    background: white;
    border: 1px solid var(--land-border);
    border-radius: var(--land-radius-xl);
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.land-aud-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--land-shadow-xl);
    border-color: transparent;
}

.land-aud-card-img {
    aspect-ratio: 16 / 11;
    overflow: hidden;
    position: relative;
}

.land-aud-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}

.land-aud-card:hover .land-aud-card-img img { transform: scale(1.06); }

.land-aud-card-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(79, 70, 229, 0.5));
}

.land-aud-card-tag {
    position: absolute;
    top: 16px; right: 16px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    color: var(--land-primary);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.land-aud-card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.land-aud-card-title {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--land-text-primary);
    margin: 0 0 0.625rem;
    letter-spacing: -0.02em;
}

.land-aud-card-desc {
    font-size: 0.95rem;
    color: var(--land-text-secondary);
    line-height: 1.7;
    margin: 0 0 1.25rem;
}

.land-aud-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.land-aud-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--land-text-primary);
}

.land-aud-card-list li i {
    color: var(--land-success);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.land-aud-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--land-primary);
    font-weight: 700;
    font-size: 0.95rem;
    transition: gap var(--land-transition);
    margin-top: auto;
}

.land-aud-card-cta:hover { gap: 0.75rem; }

.land-aud-card-cta i { font-size: 14px; }

/* ════════════════════════════════════════════════════════════════════
   v5 — More Sections + Interactivity + 4K Images
═══════════════════════════════════════════════════════════════════════ */

/* ─── Live Activity Strip ──────────────────────────── */
.land-activity {
    background: linear-gradient(135deg, #1E1B4B 0%, #312E81 100%);
    padding: 0.875rem 0;
    overflow: hidden;
    position: relative;
}

.land-activity-track {
    display: flex;
    gap: 3rem;
    animation: marquee 45s linear infinite;
    white-space: nowrap;
}

.land-activity-item {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    flex-shrink: 0;
}

.land-activity-item .live-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.8);
    animation: pulse-dot 1.6s ease-in-out infinite;
}

.land-activity-item .badge-mini {
    background: rgba(255,255,255,0.15);
    padding: 0.2rem 0.625rem;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
}

/* ─── Why Choose Us (6 reasons with icons) ─────────── */
.land-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .land-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .land-why-grid { grid-template-columns: 1fr; }
}

.land-why-item {
    background: white;
    border: 1px solid var(--land-border);
    border-radius: var(--land-radius-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.land-why-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--land-shadow-lg);
    border-color: transparent;
}

.land-why-item::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -40%;
    width: 200px; height: 200px;
    border-radius: 50%;
    opacity: 0.08;
    transition: transform 0.6s ease;
}

.land-why-item:hover::before { transform: scale(1.4); }

.land-why-item.w1::before { background: var(--land-primary); }
.land-why-item.w2::before { background: var(--land-success); }
.land-why-item.w3::before { background: var(--land-pink); }
.land-why-item.w4::before { background: var(--land-warning); }
.land-why-item.w5::before { background: var(--land-accent); }
.land-why-item.w6::before { background: var(--land-violet); }

.land-why-num {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--land-text-muted);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.land-why-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.land-why-item:hover .land-why-icon { transform: rotate(-8deg) scale(1.05); }

.land-why-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 0.625rem;
    color: var(--land-text-primary);
    position: relative;
    z-index: 1;
}

.land-why-desc {
    font-size: 0.95rem;
    color: var(--land-text-secondary);
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ─── Our Methodology (5 steps connected) ──────────── */
.land-method {
    position: relative;
}

.land-method-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    position: relative;
}

@media (max-width: 992px) {
    .land-method-steps { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (max-width: 540px) {
    .land-method-steps { grid-template-columns: 1fr; }
}

.land-method-line {
    position: absolute;
    top: 32px;
    right: 8%;
    left: 8%;
    height: 2px;
    background: linear-gradient(90deg, var(--land-primary-100), var(--land-primary), var(--land-violet), var(--land-pink), var(--land-warning));
    z-index: 0;
    border-radius: 2px;
}

@media (max-width: 992px) { .land-method-line { display: none; } }

.land-method-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.land-method-circle {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--land-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--land-primary);
    margin: 0 auto 1rem;
    box-shadow: 0 12px 28px -8px rgba(79, 70, 229, 0.35);
    transition: all 0.4s ease;
    position: relative;
}

.land-method-item:hover .land-method-circle {
    background: linear-gradient(135deg, var(--land-primary), var(--land-violet));
    color: white;
    transform: scale(1.1);
    border-color: transparent;
}

.land-method-circle::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px dashed var(--land-primary-200);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.land-method-item:hover .land-method-circle::after { opacity: 1; }

.land-method-title {
    font-size: 1.0625rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--land-text-primary);
}

.land-method-desc {
    font-size: 0.875rem;
    color: var(--land-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ─── Featured Instructors ─────────────────────────── */
.land-instructors {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) { .land-instructors { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .land-instructors { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; } }

.land-instructor {
    background: white;
    border: 1px solid var(--land-border);
    border-radius: var(--land-radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
}

.land-instructor:hover {
    transform: translateY(-6px);
    box-shadow: var(--land-shadow-lg);
    border-color: transparent;
}

.land-instructor-photo {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--land-primary-50), var(--land-primary-100));
}

.land-instructor-photo img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}

.land-instructor:hover .land-instructor-photo img { transform: scale(1.06); }

.land-instructor-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15, 23, 42, 0.6));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.land-instructor:hover .land-instructor-photo::after { opacity: 1; }

.land-instructor-social {
    position: absolute;
    bottom: 14px;
    left: 14px;
    display: flex;
    gap: 0.4rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    z-index: 2;
}

.land-instructor:hover .land-instructor-social {
    opacity: 1;
    transform: translateY(0);
}

.land-instructor-social a {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,0.95);
    color: var(--land-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s ease;
}

.land-instructor-social a:hover {
    background: var(--land-primary);
    color: white;
}

.land-instructor-body {
    padding: 1.25rem;
    text-align: center;
}

.land-instructor-name {
    font-size: 1.0625rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
    color: var(--land-text-primary);
}

.land-instructor-subject {
    font-size: 0.85rem;
    color: var(--land-primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.land-instructor-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--land-border);
    font-size: 0.78rem;
    color: var(--land-text-muted);
}

.land-instructor-stats div { display: inline-flex; align-items: center; gap: 0.3rem; }
.land-instructor-stats strong { color: var(--land-text-primary); }

/* ─── Awards & Recognition ──────────────────────────── */
.land-awards {
    background: linear-gradient(180deg, var(--land-bg-soft) 0%, white 100%);
}

.land-awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

@media (max-width: 768px) { .land-awards-grid { grid-template-columns: repeat(2, 1fr); } }

.land-award {
    background: white;
    border: 1px solid var(--land-border);
    border-radius: var(--land-radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.land-award:hover {
    transform: translateY(-6px) rotate(-1deg);
    box-shadow: var(--land-shadow-lg);
    border-color: var(--land-primary-100);
}

.land-award-icon {
    width: 72px; height: 72px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #FCD34D, #F59E0B);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 14px 30px -8px rgba(245, 158, 11, 0.5);
    position: relative;
}

.land-award-icon::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #FCD34D;
    opacity: 0.4;
}

.land-award-title {
    font-size: 1rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
    color: var(--land-text-primary);
}

.land-award-meta {
    font-size: 0.825rem;
    color: var(--land-text-muted);
    margin: 0;
}

/* ─── Comparison Table ─────────────────────────────── */
.land-compare {
    background: white;
    border: 1px solid var(--land-border);
    border-radius: var(--land-radius-xl);
    overflow: hidden;
    box-shadow: var(--land-shadow);
    max-width: 900px;
    margin: 0 auto;
}

.land-compare-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    align-items: center;
    border-bottom: 1px solid var(--land-divider);
    font-size: 0.9rem;
}

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

.land-compare-head {
    background: linear-gradient(135deg, var(--land-primary-50), var(--land-primary-100));
    font-weight: 800;
    color: var(--land-text-primary);
    text-align: center;
    font-size: 0.95rem;
}

.land-compare-head .us {
    background: linear-gradient(135deg, var(--land-primary), var(--land-violet));
    color: white;
    padding: 0.4rem 0.875rem;
    border-radius: 100px;
    display: inline-block;
}

.land-compare-feature {
    font-weight: 600;
    color: var(--land-text-primary);
}

.land-compare-cell {
    text-align: center;
    color: var(--land-text-secondary);
}

.land-compare-cell.yes {
    color: var(--land-success);
    font-size: 1.25rem;
}

.land-compare-cell.no {
    color: var(--land-text-muted);
    font-size: 1.25rem;
    opacity: 0.4;
}

@media (max-width: 768px) {
    .land-compare-row { grid-template-columns: 1.5fr 0.7fr 0.7fr 0.7fr; padding: 0.875rem; font-size: 0.78rem; }
}

/* ─── Newsletter Section ───────────────────────────── */
.land-newsletter {
    background: linear-gradient(135deg, #F0F4FF 0%, #FCE7F3 100%);
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
}

.land-newsletter::before {
    content: "";
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.18), transparent 60%);
    pointer-events: none;
}

.land-newsletter::after {
    content: "";
    position: absolute;
    bottom: -100px; left: -100px;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15), transparent 60%);
    pointer-events: none;
}

.land-newsletter-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.land-newsletter h2 {
    font-size: clamp(1.875rem, 3vw, 2.5rem);
    font-weight: 800;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.land-newsletter p {
    font-size: 1.0625rem;
    color: var(--land-text-secondary);
    line-height: 1.7;
    margin: 0 0 2rem;
}

.land-newsletter-form {
    display: flex;
    gap: 0.5rem;
    background: white;
    padding: 6px;
    border-radius: 100px;
    box-shadow: 0 12px 32px -8px rgba(15, 23, 42, 0.12);
    max-width: 460px;
    margin: 0 auto;
}

.land-newsletter-form input {
    flex: 1;
    border: none;
    padding: 0.75rem 1.25rem;
    background: transparent;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    color: var(--land-text-primary);
}

.land-newsletter-form input::placeholder {
    color: var(--land-text-muted);
}

.land-newsletter-perks {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    color: var(--land-text-muted);
    font-size: 0.85rem;
}

.land-newsletter-perks > div {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.land-newsletter-perks i { color: var(--land-success); font-size: 16px; }

/* ─── Featured Story (Big Card) ────────────────────── */
.land-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: white;
    border: 1px solid var(--land-border);
    border-radius: var(--land-radius-xl);
    overflow: hidden;
    box-shadow: var(--land-shadow);
}

@media (max-width: 992px) {
    .land-story { grid-template-columns: 1fr; }
}

.land-story-img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.land-story-img img {
    width: 100%; height: 100%; object-fit: cover;
}

.land-story-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) { .land-story-content { padding: 2rem; } }

.land-story-tag {
    display: inline-block;
    background: var(--land-success);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.35rem 0.875rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
    width: fit-content;
}

.land-story-quote {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--land-text-primary);
    margin: 0 0 2rem;
    letter-spacing: -0.01em;
}

.land-story-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.land-story-avatar {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--land-primary), var(--land-violet));
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
}

.land-story-author-info strong {
    font-size: 1rem;
    color: var(--land-text-primary);
    display: block;
}

.land-story-author-info small {
    font-size: 0.85rem;
    color: var(--land-text-muted);
}

.land-story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--land-border);
}

.land-story-stat .num {
    font-size: 1.625rem;
    font-weight: 900;
    color: var(--land-primary);
    line-height: 1;
}

.land-story-stat .lbl {
    font-size: 0.78rem;
    color: var(--land-text-muted);
    margin-top: 4px;
}

/* Original Hero v3 (centered) — DEPRECATED */
.land-hero-v3 {
    position: relative;
    padding: 6rem 0 5rem;
    overflow: hidden;
    background: linear-gradient(180deg, #FAFBFF 0%, #F1F4FF 60%, #FFFFFF 100%);
    text-align: center;
}

.land-hero-v3::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(236, 72, 153, 0.10) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(6, 182, 212, 0.10) 0%, transparent 50%);
    pointer-events: none;
}

.land-hero-v3::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(79, 70, 229, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(79, 70, 229, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    pointer-events: none;
}

.land-hero-v3 .land-container { position: relative; z-index: 2; }

.land-hero-v3-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 1px solid var(--land-primary-100);
    padding: 0.5rem 0.75rem 0.5rem 1.125rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--land-text-secondary);
    margin-bottom: 1.75rem;
    box-shadow: 0 4px 16px -4px rgba(79, 70, 229, 0.1);
}

.land-hero-v3-eyebrow strong {
    background: var(--land-primary);
    color: white;
    padding: 0.2rem 0.625rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.land-hero-v3-title {
    font-size: clamp(2.75rem, 6.5vw, 5.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--land-text-primary);
    margin: 0 auto 1.75rem;
    max-width: 1000px;
}

.land-hero-v3-title .grad-1 {
    background: linear-gradient(135deg, var(--land-primary), var(--land-violet));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.land-hero-v3-title .grad-2 {
    background: linear-gradient(135deg, var(--land-pink), var(--land-warning));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.land-hero-v3-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--land-text-secondary);
    margin: 0 auto 2.5rem;
    max-width: 720px;
}

.land-hero-v3-actions {
    display: flex;
    gap: 0.875rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.land-hero-v3-meta {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.875rem;
    color: var(--land-text-muted);
    flex-wrap: wrap;
    justify-content: center;
}

.land-hero-v3-meta > div {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.land-hero-v3-meta i { color: var(--land-success); font-size: 16px; }

/* Dashboard preview below hero */
.land-hero-v3-preview {
    margin-top: 4rem;
    position: relative;
}

.land-dashboard-frame {
    background: white;
    border-radius: 20px 20px 0 0;
    border: 1px solid var(--land-border);
    border-bottom: none;
    overflow: hidden;
    box-shadow: 0 50px 100px -20px rgba(79, 70, 229, 0.25), 0 30px 60px -30px rgba(15, 23, 42, 0.18);
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.land-dashboard-bar {
    background: linear-gradient(180deg, #F8FAFC, #F1F5F9);
    padding: 0.875rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--land-border);
}

.land-dashboard-bar .dot {
    width: 12px; height: 12px; border-radius: 50%;
}
.land-dashboard-bar .dot.r { background: #FF5F57; }
.land-dashboard-bar .dot.y { background: #FEBC2E; }
.land-dashboard-bar .dot.g { background: #28C840; }

.land-dashboard-bar .url {
    flex: 1;
    background: white;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    color: var(--land-text-muted);
    text-align: center;
    border: 1px solid var(--land-border);
    margin: 0 1rem;
}

.land-dashboard-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Floating card over dashboard */
.land-dashboard-float {
    position: absolute;
    background: white;
    border-radius: 14px;
    padding: 0.875rem 1rem;
    box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.25);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
    border: 1px solid rgba(255,255,255,0.6);
}

.land-dashboard-float-1 {
    top: 18%; right: -8%;
    animation: card-fade-in 0.8s ease-out 1s forwards;
    opacity: 0;
}

.land-dashboard-float-2 {
    bottom: 14%; left: -8%;
    animation: card-fade-in 0.8s ease-out 1.3s forwards;
    opacity: 0;
}

@media (max-width: 992px) {
    .land-dashboard-float-1, .land-dashboard-float-2 { display: none; }
}

/* ─── Bento Stats Grid ─────────────────────────────── */
.land-bento {
    padding: 5rem 0;
}

.land-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 160px;
    gap: 1.25rem;
}

@media (max-width: 992px) {
    .land-bento-grid { grid-template-columns: repeat(2, 1fr); }
}

.land-bento-card {
    background: white;
    border: 1px solid var(--land-border);
    border-radius: var(--land-radius-lg);
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.land-bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--land-shadow-lg);
    border-color: var(--land-primary-100);
}

.land-bento-card.span-2 { grid-column: span 2; }
.land-bento-card.span-2-row { grid-row: span 2; }

@media (max-width: 992px) {
    .land-bento-card.span-2,
    .land-bento-card.span-2-row { grid-column: span 2; grid-row: span 1; }
}

/* Bento variants */
.land-bento-card.bento-primary {
    background: linear-gradient(135deg, var(--land-primary) 0%, var(--land-violet) 100%);
    color: white;
    border-color: transparent;
}

.land-bento-card.bento-dark {
    background: linear-gradient(135deg, #0F172A, #1E1B4B);
    color: white;
    border-color: transparent;
}

.land-bento-card.bento-image {
    padding: 0;
    overflow: hidden;
}

.land-bento-card.bento-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.land-bento-card.bento-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(15, 23, 42, 0.85));
}

.land-bento-image-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: white;
    z-index: 2;
}

.land-bento-num {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--land-primary), var(--land-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.land-bento-card.bento-primary .land-bento-num,
.land-bento-card.bento-dark .land-bento-num {
    background: linear-gradient(135deg, #FFFFFF, #FCD34D);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.land-bento-label {
    font-size: 0.95rem;
    color: var(--land-text-secondary);
    font-weight: 600;
    margin-top: 0.5rem;
}

.land-bento-card.bento-primary .land-bento-label,
.land-bento-card.bento-dark .land-bento-label {
    color: rgba(255, 255, 255, 0.85);
}

.land-bento-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--land-primary-50);
    color: var(--land-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 1rem;
}

.land-bento-card.bento-primary .land-bento-icon,
.land-bento-card.bento-dark .land-bento-icon {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.land-bento-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.land-bento-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    color: var(--land-text-secondary);
}

.land-bento-card.bento-primary .land-bento-desc,
.land-bento-card.bento-dark .land-bento-desc {
    color: rgba(255, 255, 255, 0.85);
}

/* Mini chart bars */
.land-bento-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 50px;
    margin-top: auto;
}

.land-bento-chart .bar {
    flex: 1;
    background: linear-gradient(180deg, var(--land-primary), var(--land-primary-light));
    border-radius: 3px;
    min-height: 8px;
}

.land-bento-card.bento-primary .land-bento-chart .bar,
.land-bento-card.bento-dark .land-bento-chart .bar {
    background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.4));
}

/* ─── Marquee (logos / testimonials) ──────────────── */
.land-marquee {
    overflow: hidden;
    padding: 2rem 0;
    background: var(--land-bg);
    border-top: 1px solid var(--land-border);
    border-bottom: 1px solid var(--land-border);
    position: relative;
}

.land-marquee-track {
    display: flex;
    gap: 4rem;
    animation: marquee 35s linear infinite;
    white-space: nowrap;
    will-change: transform;
}

.land-marquee:hover .land-marquee-track { animation-play-state: paused; }

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.land-marquee-item {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--land-text-secondary);
    letter-spacing: -0.02em;
    flex-shrink: 0;
    opacity: 0.6;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.land-marquee-item:hover { opacity: 1; color: var(--land-primary); }

.land-marquee-item i { font-size: 1.75rem; }

/* Side gradients on marquee */
.land-marquee::before,
.land-marquee::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.land-marquee::before {
    right: 0;
    background: linear-gradient(270deg, var(--land-bg), transparent);
}

.land-marquee::after {
    left: 0;
    background: linear-gradient(90deg, var(--land-bg), transparent);
}

/* ─── Tabbed Features ─────────────────────────────── */
.land-tabs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.land-tab-btn {
    background: white;
    border: 2px solid var(--land-border);
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--land-text-secondary);
    cursor: pointer;
    transition: all var(--land-transition);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: inherit;
}

.land-tab-btn:hover {
    border-color: var(--land-primary);
    color: var(--land-primary);
}

.land-tab-btn.active {
    background: linear-gradient(135deg, var(--land-primary), var(--land-violet));
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 24px -6px rgba(79, 70, 229, 0.45);
}

.land-tab-content { display: none; }
.land-tab-content.active { display: block; animation: fade-up 0.4s ease both; }

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

/* ─── Horizontal Live Cards (NEW layout) ──────────── */
.land-live-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.land-live-row {
    display: grid;
    grid-template-columns: 280px 1fr auto;
    gap: 1.5rem;
    align-items: center;
    background: white;
    border: 1px solid var(--land-border);
    border-radius: var(--land-radius-lg);
    padding: 1.25rem;
    transition: all var(--land-transition);
}

@media (max-width: 768px) {
    .land-live-row { grid-template-columns: 1fr; }
}

.land-live-row:hover {
    border-color: var(--land-primary-100);
    box-shadow: var(--land-shadow);
    transform: translateX(-4px);
}

.land-live-row-thumb {
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.land-live-row-thumb img {
    width: 100%; height: 100%; object-fit: cover;
}

.land-live-row-status {
    position: absolute;
    top: 10px; right: 10px;
    padding: 0.3rem 0.7rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.land-live-row-status.live {
    background: rgba(239, 68, 68, 0.95);
    color: white;
}

.land-live-row-status.upcoming {
    background: rgba(255, 255, 255, 0.95);
    color: var(--land-primary);
}

.land-live-row-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--land-text-primary);
}

.land-live-row-content .meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--land-text-muted);
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.land-live-row-content .meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.land-live-row-content .desc {
    font-size: 0.875rem;
    color: var(--land-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ─── Phone Mockup with Notifications ─────────────── */
.land-iphone {
    width: 320px;
    height: 640px;
    background: var(--land-bg-dark);
    border-radius: 50px;
    padding: 14px;
    box-shadow: 0 40px 80px -20px rgba(15, 23, 42, 0.4), 0 0 0 8px rgba(15, 23, 42, 0.08);
    position: relative;
    margin: 0 auto;
}

.land-iphone-screen {
    width: 100%;
    height: 100%;
    border-radius: 36px;
    background: linear-gradient(180deg, #1E1B4B 0%, #4F46E5 50%, #8B5CF6 100%);
    overflow: hidden;
    position: relative;
}

.land-iphone-screen::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 26px;
    background: var(--land-bg-dark);
    border-radius: 100px;
    z-index: 5;
}

.land-iphone-clock {
    position: absolute;
    top: 50px;
    right: 0; left: 0;
    text-align: center;
    color: white;
    z-index: 4;
}

.land-iphone-clock .time {
    font-size: 4.5rem;
    font-weight: 200;
    letter-spacing: -0.03em;
    line-height: 1;
}

.land-iphone-clock .date {
    font-size: 0.95rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.land-iphone-notifs {
    position: absolute;
    top: 220px;
    right: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 4;
}

.land-iphone-notif {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-radius: 14px;
    padding: 0.625rem 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    animation: notif-slide 0.6s ease-out forwards;
    opacity: 0;
}

.land-iphone-notif:nth-child(1) { animation-delay: 0.5s; }
.land-iphone-notif:nth-child(2) { animation-delay: 0.8s; }
.land-iphone-notif:nth-child(3) { animation-delay: 1.1s; }
.land-iphone-notif:nth-child(4) { animation-delay: 1.4s; }

@keyframes notif-slide {
    from { opacity: 0; transform: translateY(-10px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.land-iphone-notif-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
    flex-shrink: 0;
}

.land-iphone-notif-content {
    flex: 1;
    min-width: 0;
}

.land-iphone-notif-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--land-text-primary);
    margin: 0 0 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.land-iphone-notif-meta {
    font-size: 0.65rem;
    color: var(--land-text-muted);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.land-iphone-notif-time {
    font-size: 0.6rem;
    color: var(--land-text-muted);
    flex-shrink: 0;
}

/* Layout for notifications section v3 */
.land-notif-v3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .land-notif-v3 { grid-template-columns: 1fr; gap: 3rem; }
}

.land-notif-v3-content h2 {
    font-size: clamp(2rem, 4vw, 2.875rem);
    font-weight: 800;
    margin: 0 0 1.125rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.land-notif-v3-content p {
    font-size: 1.0625rem;
    color: var(--land-text-secondary);
    line-height: 1.75;
    margin: 0 0 1.5rem;
}

.land-notif-v3-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.land-notif-v3-type {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1rem;
    background: white;
    border: 1px solid var(--land-border);
    border-radius: 12px;
    transition: all var(--land-transition);
}

.land-notif-v3-type:hover {
    border-color: var(--land-primary);
    transform: translateY(-2px);
}

.land-notif-v3-type i {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
}

.land-notif-v3-type span {
    font-size: 0.875rem;
    font-weight: 600;
}

/* ═══════════════════════════════════════════
   WHY OMAR ZAKI — Value Proposition Section
   ═══════════════════════════════════════════ */
.land-why {
    padding: 5rem 0;
    background:
        radial-gradient(circle at 90% 10%, rgba(99,102,241,0.07) 0%, transparent 35%),
        radial-gradient(circle at 10% 90%, rgba(139,92,246,0.05) 0%, transparent 35%),
        #ffffff;
    position: relative;
    overflow: hidden;
}

.land-why::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99,102,241,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99,102,241,0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 75%);
    pointer-events: none;
}

.land-why-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .land-why-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* Left: text */
.land-why-text { padding-inline-end: 1rem; }

.land-why-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 800;
    color: #4F46E5;
    background: rgba(99,102,241,0.08);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}

.land-why-eyebrow-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
    box-shadow: 0 0 0 0 rgba(99,102,241,0.7);
    animation: whyPulse 2.2s infinite;
}
@keyframes whyPulse {
    0%   { box-shadow: 0 0 0 0 rgba(99,102,241,0.7); }
    70%  { box-shadow: 0 0 0 10px rgba(99,102,241,0); }
    100% { box-shadow: 0 0 0 0 rgba(99,102,241,0); }
}

.land-why-title {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 900;
    color: #0f172a;
    line-height: 1.35;
    letter-spacing: -0.01em;
    margin: 0 0 1.25rem;
}

.land-why-accent {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #A855F7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.land-why-desc {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #475569;
    margin: 0 0 1.75rem;
    max-width: 36rem;
}

.land-why-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    color: #fff;
    font-family: 'Cairo', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    padding: 0.875rem 1.75rem;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 10px 24px -8px rgba(99,102,241,0.45);
    transition: all 0.3s cubic-bezier(.22, 1, .36, 1);
}

.land-why-cta:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 36px -10px rgba(99,102,241,0.6);
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
}

.land-why-cta i { font-size: 1.1rem; transition: transform 0.3s; }
.land-why-cta:hover i { transform: translateX(-4px); }

/* Right: 4 pillars */
.land-why-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

@media (max-width: 576px) {
    .land-why-pillars { grid-template-columns: 1fr; }
}

.land-why-pillar {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s cubic-bezier(.22, 1, .36, 1);
    position: relative;
    overflow: hidden;
}

.land-why-pillar::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, transparent);
    transition: background 0.3s;
}

.land-why-pillar:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.25);
    box-shadow: 0 16px 36px -12px rgba(99, 102, 241, 0.18);
}

.land-why-pillar:hover::before {
    background: linear-gradient(90deg, #6366F1, #8B5CF6, #A855F7);
}

/* Stagger pillars positioning */
.land-why-pillar:nth-child(1) { transform: translateY(-8px); }
.land-why-pillar:nth-child(4) { transform: translateY(-8px); }
.land-why-pillar:nth-child(1):hover,
.land-why-pillar:nth-child(4):hover { transform: translateY(-12px); }

.land-why-pillar-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 6px 16px -6px rgba(0, 0, 0, 0.08);
}

.land-why-pillar-text h3 {
    font-family: 'Cairo', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.4rem;
}

.land-why-pillar-text p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

