/**
 * Landing — light theme: layout, components, responsive
 * Loaded when data-landing-theme="light" (replaces landing-refined.css).
 */

html[data-landing-theme="light"] {
    color-scheme: light;
    --landing-pad-x: clamp(1rem, 4vw, 4.5rem);
    --lt-surface: #ffffff;
    --lt-elevated: #f8fafc;
    --lt-border: color-mix(in srgb, var(--c-primary) 14%, rgba(15, 23, 42, 0.1));
    --lt-muted: #64748b;
    --landing-dark-bg: var(--c-bg);
    --landing-dark-surface: var(--c-surface);
    --landing-dark-elevated: color-mix(in srgb, var(--c-primary-soft) 35%, var(--c-surface));
    --landing-dark-border: var(--lt-border);
    --landing-dark-ink: var(--c-ink);
    --landing-dark-muted: var(--c-muted);
    overflow-x: clip;
    max-width: 100%;
}

html[data-landing-theme="light"] body {
    overflow-x: clip;
    max-width: 100%;
}

html[data-landing-theme="light"] body::before,
html[data-landing-theme="light"] body::after {
    display: none !important;
}

html[data-landing-theme="light"] main#main-content,
html[data-landing-theme="light"] section.block,
html[data-landing-theme="light"] .wrap,
html[data-landing-theme="light"] .hero-grid,
html[data-landing-theme="light"] .hero-copy,
html[data-landing-theme="light"] .showcase,
html[data-landing-theme="light"] .adv-bento-shell,
html[data-landing-theme="light"] .landing-contact-layout,
html[data-landing-theme="light"] .cta-block {
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

html[data-landing-theme="light"] .wrap {
    width: 100%;
    padding-inline: var(--landing-pad-x);
}

html[data-landing-theme="light"] img,
html[data-landing-theme="light"] video,
html[data-landing-theme="light"] svg {
    max-width: 100%;
}

/* ========== Header & nav ========== */
html[data-landing-theme="light"] header.site {
    background: color-mix(in srgb, var(--c-surface) 88%, transparent) !important;
    border-bottom: 1px solid var(--lt-border) !important;
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    backdrop-filter: blur(14px) saturate(160%);
}

html[data-landing-theme="light"] header.site.is-scrolled {
    background: color-mix(in srgb, var(--c-surface) 96%, transparent) !important;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08) !important;
}

html[data-landing-theme="light"] .logo.logo--mark {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0;
    margin: 0;
}

html[data-landing-theme="light"] .logo-mark-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(11, 31, 77, 0.14);
    flex-shrink: 0;
}

html[data-landing-theme="light"] .logo-mark-badge .logo-mark-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
}

html[data-landing-theme="light"] .logo-wordmark {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--c-primary);
    letter-spacing: 0.01em;
}

html[data-landing-theme="light"] .nav {
    gap: 0.5rem !important;
}

html[data-landing-theme="light"] .nav-center.nav-links {
    flex: 1;
    min-width: 0;
    justify-content: center;
    gap: 0.05rem !important;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-inline: 0.25rem;
}

html[data-landing-theme="light"] .nav-center.nav-links::-webkit-scrollbar {
    display: none;
}

html[data-landing-theme="light"] .nav-links > a {
    color: var(--lt-muted) !important;
    font-weight: 600 !important;
    font-size: 0.82rem !important;
    padding: 0.45rem 0.62rem !important;
    white-space: nowrap;
    border-radius: 10px;
}

html[data-landing-theme="light"] .nav-links > a:hover,
html[data-landing-theme="light"] .nav-links > a.active {
    color: var(--c-primary) !important;
    background: color-mix(in srgb, var(--c-primary-soft) 75%, transparent) !important;
}

html[data-landing-theme="light"] .lang-switch {
    background: var(--lt-elevated) !important;
    border: 1px solid var(--lt-border) !important;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

html[data-landing-theme="light"] .lang-switch a:not(.active) {
    color: var(--lt-muted) !important;
}

html[data-landing-theme="light"] .lang-switch a:not(.active):hover {
    color: var(--c-primary) !important;
    background: color-mix(in srgb, var(--c-primary-soft) 80%, transparent);
}

html[data-landing-theme="light"] .nav-toggle {
    background: var(--lt-elevated) !important;
    border-color: var(--lt-border) !important;
    color: var(--c-ink) !important;
}

html[data-landing-theme="light"] .nav-panel {
    background: var(--lt-surface) !important;
    border-color: var(--lt-border) !important;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12) !important;
}

html[data-landing-theme="light"] .nav-panel .nav-links > a {
    color: var(--c-ink) !important;
}

html[data-landing-theme="light"] .mobile-backdrop {
    background: rgba(15, 23, 42, 0.35) !important;
}

/* ========== Hero — hide clutter, fix layout ========== */
html[data-landing-theme="light"] .hero-digital-bg,
html[data-landing-theme="light"] .landing-hero-blob,
html[data-landing-theme="light"] .hero-cursor-spot,
html[data-landing-theme="light"] .hero-atlas,
html[data-landing-theme="light"] .hero::after {
    display: none !important;
}

html[data-landing-theme="light"] .hero::before {
    opacity: 0.28 !important;
    animation: none !important;
}

html[data-landing-theme="light"] .hero {
    position: relative;
    isolation: isolate;
    min-height: clamp(520px, 82vh, 860px) !important;
    border-bottom: 1px solid var(--lt-border) !important;
    overflow: hidden !important;
}

/* بدون landing-refined.css الأيقونات تفقد position:absolute فتظهر صفاً باهتاً — نخفي الطبقة بالكامل */
html[data-landing-theme="light"] .hero-edu-deco {
    display: none !important;
}

html[data-landing-theme="light"] .hero .wrap.hero-grid {
    position: relative;
    z-index: 2;
    align-items: center;
}

html[data-landing-theme="light"] .badge {
    background: color-mix(in srgb, var(--c-secondary) 18%, #fff) !important;
    color: var(--c-primary-dark) !important;
    border: 1px solid color-mix(in srgb, var(--c-secondary) 35%, var(--lt-border)) !important;
}

html[data-landing-theme="light"] .hero-brand {
    display: none !important;
}

html[data-landing-theme="light"] .hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1rem;
}

html[data-landing-theme="light"] .hero-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--c-ink);
    background: var(--lt-surface);
    border: 1px solid var(--lt-border);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

html[data-landing-theme="light"] .hero-highlight i {
    color: var(--c-secondary) !important;
    opacity: 1 !important;
}

html[data-landing-theme="light"] .hero-photo-slider__nav {
    background: rgba(255, 255, 255, 0.94) !important;
    border-color: var(--lt-border) !important;
    color: var(--c-primary) !important;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.1) !important;
}

html[data-landing-theme="light"] .hero-photo-slider__nav:hover {
    background: color-mix(in srgb, var(--c-primary-soft) 55%, #fff) !important;
    border-color: color-mix(in srgb, var(--c-primary) 35%, var(--lt-border)) !important;
}

html[data-landing-theme="light"] .portal.portal-card .portal-card__icon {
    color: var(--c-primary) !important;
    background: color-mix(in srgb, var(--c-primary-soft) 70%, #fff) !important;
    border-color: var(--lt-border) !important;
}

html[data-landing-theme="light"] .portal.portal-card:hover .portal-card__icon {
    background: var(--c-primary) !important;
    color: #fff !important;
}

html[data-landing-theme="light"] .adv-bento__icon {
    background: color-mix(in srgb, var(--c-primary-soft) 65%, #fff) !important;
    color: var(--c-primary) !important;
    border-color: var(--lt-border) !important;
}

html[data-landing-theme="light"] .landing-faq__question i,
html[data-landing-theme="light"] .testimonial-card__quote-icon {
    color: var(--c-primary) !important;
    opacity: 1 !important;
}

html[data-landing-theme="light"] .hero-title,
html[data-landing-theme="light"] .hero .lead {
    color: var(--c-ink-deep) !important;
}

html[data-landing-theme="light"] .hero-cta {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 0.75rem !important;
}

html[data-landing-theme="light"] .hero-cta .btn {
    min-width: 0 !important;
    max-width: 100%;
}

html[data-landing-theme="light"] .hero-cta .btn-ghost,
html[data-landing-theme="light"] .btn-ghost {
    background: #fff !important;
    color: var(--c-primary) !important;
    border: 1.5px solid #cbd5e1 !important;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.07) !important;
}

html[data-landing-theme="light"] .hero-cta .btn-ghost:hover,
html[data-landing-theme="light"] .btn-ghost:hover {
    border-color: var(--c-primary) !important;
    background: var(--c-primary-soft) !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1) !important;
}

html[data-landing-theme="light"] .hero-illus {
    perspective: none !important;
    isolation: auto !important;
    max-width: min(480px, 100%) !important;
}

html[data-landing-theme="light"] .hero-illus-inner {
    padding: 12px 4px !important;
    transform: none !important;
    transform-style: flat !important;
}

html[data-landing-theme="light"] .hero-photo-frame {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: var(--lt-surface) !important;
    border-color: var(--lt-border) !important;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12) !important;
}

html[data-landing-theme="light"] .hero-photo-frame__chip {
    background: color-mix(in srgb, var(--lt-surface) 92%, transparent) !important;
    color: var(--c-ink) !important;
    border: 1px solid var(--lt-border) !important;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08) !important;
}

html[data-landing-theme="light"] .hero-photo-mini {
    border: 4px solid color-mix(in srgb, var(--c-primary) 18%, #fff) !important;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14) !important;
}

html[data-landing-theme="light"] .hero-photo-stat {
    background: var(--lt-surface) !important;
    color: var(--c-ink) !important;
    border: 1px solid var(--lt-border) !important;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1) !important;
}

html[data-landing-theme="light"] .hero-photo-stat__n {
    color: var(--c-primary) !important;
}

html[data-landing-theme="light"] .hero-photo-stat__l {
    color: var(--lt-muted) !important;
}

html[data-landing-theme="light"] .hero-photo-strip {
    background: var(--lt-surface) !important;
    border-color: var(--lt-border) !important;
    box-shadow: 0 6px 22px rgba(15, 23, 42, 0.06) !important;
}

html[data-landing-theme="light"] .hero-photo-strip__label {
    color: var(--c-ink) !important;
    font-weight: 700;
}

html[data-landing-theme="light"] .hero-photo-strip__item {
    border-color: var(--lt-border) !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06) !important;
}

html[data-landing-theme="light"] .hero-stat {
    padding: 0.65rem 0.5rem;
    border-radius: 12px;
    background: color-mix(in srgb, var(--lt-surface) 90%, var(--c-primary-soft));
    border: 1px solid var(--lt-border);
}

html[data-landing-theme="light"] .hero-stats .n {
    color: var(--c-primary) !important;
}

html[data-landing-theme="light"] .hero-stats .l {
    color: var(--lt-muted) !important;
}

html[data-landing-theme="light"] .float-card {
    background: var(--lt-surface) !important;
    border-color: var(--lt-border) !important;
    color: var(--c-ink) !important;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1) !important;
}

/* ========== Sections & cards ========== */
html[data-landing-theme="light"] .section-head .kicker {
    color: var(--c-primary-dark) !important;
    background: color-mix(in srgb, var(--c-primary-soft) 80%, #fff) !important;
    border: 1px solid var(--lt-border);
}

html[data-landing-theme="light"] .section-head h2 {
    color: var(--c-ink-deep) !important;
}

html[data-landing-theme="light"] .section-head p {
    color: var(--lt-muted) !important;
}

html[data-landing-theme="light"] .feat,
html[data-landing-theme="light"] .portal.portal-card,
html[data-landing-theme="light"] .price,
html[data-landing-theme="light"] .testimonial-card,
html[data-landing-theme="light"] .landing-faq__item,
html[data-landing-theme="light"] form.contact-form.contact-form--premium,
html[data-landing-theme="light"] .landing-contact-aside__inner,
html[data-landing-theme="light"] .showcase-card,
html[data-landing-theme="light"] .showcase {
    background: var(--lt-surface) !important;
    border-color: var(--lt-border) !important;
    color: var(--c-ink) !important;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06) !important;
}

html[data-landing-theme="light"] .feat h3,
html[data-landing-theme="light"] .portal.portal-card h3 {
    color: var(--c-ink-deep) !important;
}

html[data-landing-theme="light"] .feat p {
    color: var(--lt-muted) !important;
}

html[data-landing-theme="light"] .feat-icon {
    background: color-mix(in srgb, var(--c-primary-soft) 70%, #fff) !important;
    border-color: var(--lt-border) !important;
    color: var(--c-primary) !important;
}

html[data-landing-theme="light"] .landing-faq__question {
    color: var(--c-ink) !important;
}

html[data-landing-theme="light"] .landing-faq__answer {
    color: var(--lt-muted) !important;
}

html[data-landing-theme="light"] .landing-faq__question::after {
    color: var(--c-primary) !important;
    background: color-mix(in srgb, var(--c-primary-soft) 75%, #fff) !important;
}

html[data-landing-theme="light"] .testimonial-card blockquote,
html[data-landing-theme="light"] .testimonial-card__meta cite {
    color: var(--c-ink) !important;
}

html[data-landing-theme="light"] .testimonial-card__meta span {
    color: var(--lt-muted) !important;
}

html[data-landing-theme="light"] .testimonial-card__footer {
    border-top-color: var(--lt-border) !important;
}

html[data-landing-theme="light"] .nursery-photo-frame {
    border-color: var(--lt-border) !important;
    background: var(--lt-surface) !important;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.1) !important;
}

html[data-landing-theme="light"] .nursery-photo-frame__badge {
    background: color-mix(in srgb, var(--lt-surface) 92%, transparent) !important;
    color: var(--c-ink) !important;
    border: 1px solid var(--lt-border) !important;
}

html[data-landing-theme="light"] .landing-nursery__role {
    background: var(--lt-surface) !important;
    border-color: var(--lt-border) !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06) !important;
}

html[data-landing-theme="light"] .landing-nursery__role h4 {
    color: var(--c-ink) !important;
}

html[data-landing-theme="light"] .landing-nursery__role p {
    color: var(--lt-muted) !important;
}

html[data-landing-theme="light"] .adv-bento-shell {
    background: linear-gradient(155deg, var(--lt-surface) 0%, var(--lt-elevated) 100%) !important;
    border-color: var(--lt-border) !important;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08) !important;
}

html[data-landing-theme="light"] .adv-bento__tile {
    background: var(--lt-elevated) !important;
    border-color: var(--lt-border) !important;
}

html[data-landing-theme="light"] .adv-bento__tile:hover {
    background: color-mix(in srgb, var(--c-primary-soft) 55%, var(--lt-elevated)) !important;
    border-color: color-mix(in srgb, var(--c-primary) 25%, var(--lt-border)) !important;
}

html[data-landing-theme="light"] .adv-bento__tile h4,
html[data-landing-theme="light"] .adv-bento__tile--hero h3 {
    color: var(--c-ink) !important;
}

html[data-landing-theme="light"] .adv-bento__tile p,
html[data-landing-theme="light"] .adv-bento__tile--hero .adv-bento__lead {
    color: var(--lt-muted) !important;
}

html[data-landing-theme="light"] .showcase-slide .txt h3 {
    color: var(--c-ink) !important;
}

html[data-landing-theme="light"] .showcase-slide .txt p,
html[data-landing-theme="light"] .showcase-slide .txt ul li {
    color: var(--lt-muted) !important;
}

html[data-landing-theme="light"] .showcase-tabs {
    background: var(--lt-elevated) !important;
    border-color: var(--lt-border) !important;
}

html[data-landing-theme="light"] .showcase-tab {
    color: var(--lt-muted) !important;
}

html[data-landing-theme="light"] .showcase-tab:hover {
    color: var(--c-ink) !important;
    background: color-mix(in srgb, var(--c-primary-soft) 70%, transparent) !important;
}

html[data-landing-theme="light"] .showcase-tab.active {
    color: #fff !important;
}

html[data-landing-theme="light"] .showcase-nav {
    background: var(--lt-surface) !important;
    border-color: var(--lt-border) !important;
    color: var(--c-primary) !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08) !important;
}

html[data-landing-theme="light"] .showcase-kicker,
html[data-landing-theme="light"] .showcase-counter {
    color: var(--c-primary-dark) !important;
    background: color-mix(in srgb, var(--c-primary-soft) 75%, #fff) !important;
    border-color: var(--lt-border) !important;
}

/* ========== Pricing (keep readable dark text) ========== */
html[data-landing-theme="light"] .pricing-section-head h3 {
    color: var(--c-primary) !important;
}

html[data-landing-theme="light"] .pricing-section-head p,
html[data-landing-theme="light"] .pricing-divider,
html[data-landing-theme="light"] .plan-card-tagline,
html[data-landing-theme="light"] .plan-footnote {
    color: var(--lt-muted) !important;
}

html[data-landing-theme="light"] .price.featured,
html[data-landing-theme="light"] .price--nursery.featured {
    background: linear-gradient(
        180deg,
        color-mix(in srgb, var(--c-primary-soft) 55%, #fff) 0%,
        var(--lt-surface) 55%
    ) !important;
    border-color: color-mix(in srgb, var(--c-primary) 30%, var(--lt-border)) !important;
}

html[data-landing-theme="light"] .price h3 {
    color: var(--c-primary) !important;
}

html[data-landing-theme="light"] .plan-price-main {
    color: var(--c-ink-deep) !important;
}

html[data-landing-theme="light"] .plan-price-main small {
    color: var(--lt-muted) !important;
}

html[data-landing-theme="light"] .plan-features li {
    color: var(--lt-muted) !important;
}

/* ========== Contact ========== */
html[data-landing-theme="light"] form.contact-form.contact-form--premium .contact-form__head h3 {
    color: var(--c-ink-deep) !important;
}

html[data-landing-theme="light"] form.contact-form.contact-form--premium .contact-form__head p,
html[data-landing-theme="light"] .landing-contact-aside__inner,
html[data-landing-theme="light"] .contact-channel {
    color: var(--lt-muted) !important;
}

html[data-landing-theme="light"] .landing-contact-aside__inner h3,
html[data-landing-theme="light"] .contact-channel h3 {
    color: var(--c-ink) !important;
}

html[data-landing-theme="light"] form.contact-form.contact-form--premium input,
html[data-landing-theme="light"] form.contact-form.contact-form--premium textarea {
    background: var(--lt-elevated) !important;
    border-color: var(--lt-border) !important;
    color: var(--c-ink) !important;
}

/* ========== Hero mind / book ========== */
html[data-landing-theme="light"] .hero-mind-wrap,
html[data-landing-theme="light"] .hero-book-wrap {
    --hm-neon: var(--c-primary);
    --hm-neon-alt: var(--c-secondary);
}

html[data-landing-theme="light"] .hero-mind-svg,
html[data-landing-theme="light"] .hero-book-svg {
    filter: drop-shadow(0 8px 24px color-mix(in srgb, var(--c-primary) 22%, transparent));
}

/* ========== Footer ========== */
html[data-landing-theme="light"] footer.site.site-footer {
    padding: 0;
    border-top: 1px solid color-mix(in srgb, var(--c-primary) 16%, rgba(15, 23, 42, 0.08));
}

html[data-landing-theme="light"] footer.site.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        color-mix(in srgb, var(--c-primary) 70%, var(--c-secondary)) 35%,
        color-mix(in srgb, var(--c-secondary) 55%, var(--c-primary)) 65%,
        transparent
    );
    opacity: 0.85;
    pointer-events: none;
}

html[data-landing-theme="light"] .footer-logo .logo-mark-badge {
    width: 54px;
    height: 54px;
    border-radius: 16px;
}

html[data-landing-theme="light"] .footer-logo .logo-mark-badge .logo-mark-icon {
    width: 42px;
    height: 42px;
}

html[data-landing-theme="light"] .site-footer__logo .logo-wordmark {
    color: #fff;
}

html[data-landing-theme="light"] .site-footer__main {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr) minmax(0, 0.85fr);
    gap: clamp(2rem, 4vw, 3.25rem);
    align-items: start;
    padding-block: clamp(2.75rem, 5vw, 3.75rem);
}

html[data-landing-theme="light"] .site-footer__brand {
    max-width: 22rem;
}

html[data-landing-theme="light"] .site-footer__logo {
    margin-bottom: 1rem;
}

html[data-landing-theme="light"] .site-footer__blurb,
html[data-landing-theme="light"] .footer-blurb {
    margin: 0 0 1.35rem;
    font-size: 0.92rem;
    line-height: 1.72;
    color: #cbd5e1;
}

html[data-landing-theme="light"] .site-footer__brand .landing-social {
    justify-content: flex-start;
    margin-top: 0;
}

html[data-landing-theme="light"] .site-footer__heading {
    margin: 0 0 1rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
}

html[data-landing-theme="light"] [dir="rtl"] .site-footer__heading {
    letter-spacing: 0.02em;
    text-transform: none;
}

html[data-landing-theme="light"] .site-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

html[data-landing-theme="light"] .site-footer__links a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

html[data-landing-theme="light"] .site-footer__links a:hover,
html[data-landing-theme="light"] .site-footer__links a:focus-visible {
    color: #fff;
}

html[data-landing-theme="light"] .site-footer__bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: color-mix(in srgb, #0f172a 92%, var(--c-primary-dark) 8%);
}

html[data-landing-theme="light"] .site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding-block: 1.15rem;
}

html[data-landing-theme="light"] .site-footer__copy {
    margin: 0;
    font-size: 0.84rem;
    color: #94a3b8;
}

html[data-landing-theme="light"] .site-footer__domain {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: color-mix(in srgb, var(--c-secondary) 65%, #fff);
    text-decoration: none;
}

/* ========== Hero responsive ========== */
@media (min-width: 861px) {
    html[data-landing-theme="light"] .hero-cta {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }

    html[data-landing-theme="light"] .hero-cta .btn {
        width: auto !important;
        flex: 0 0 auto !important;
        white-space: nowrap;
    }
}

@media (max-width: 1280px) {
    html[data-landing-theme="light"] .nav-links > a {
        font-size: 0.76rem !important;
        padding: 0.4rem 0.5rem !important;
    }
}

@media (max-width: 1100px) {
    html[data-landing-theme="light"] .logo-wordmark {
        display: none;
    }

    html[data-landing-theme="light"] .logo-mark-badge {
        width: 44px;
        height: 44px;
    }

    html[data-landing-theme="light"] .logo-mark-badge .logo-mark-icon {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 860px) {
    html[data-landing-theme="light"] .hero {
        min-height: 0 !important;
        padding: clamp(1.25rem, 4vw, 2rem) 0 clamp(2rem, 5vw, 2.75rem) !important;
    }

    html[data-landing-theme="light"] .hero .wrap.hero-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.35rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    html[data-landing-theme="light"] .hero-copy {
        order: 1 !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    html[data-landing-theme="light"] .hero-illus {
        order: 2 !important;
        max-width: min(22rem, 100%) !important;
        margin-inline: auto !important;
        width: 100% !important;
    }

    html[data-landing-theme="light"] .hero-title {
        font-size: clamp(1.55rem, 6.5vw, 2.25rem) !important;
        line-height: 1.28 !important;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    html[data-landing-theme="light"] .hero .lead {
        max-width: 100% !important;
        font-size: 1rem !important;
        overflow-wrap: anywhere;
    }

    html[data-landing-theme="light"] .hero-highlights {
        gap: 0.35rem !important;
    }

    html[data-landing-theme="light"] .hero-highlight {
        font-size: 0.72rem !important;
        padding: 0.32rem 0.58rem !important;
    }

    html[data-landing-theme="light"] .hero-cta {
        flex-direction: column !important;
        flex-wrap: wrap !important;
        align-items: stretch !important;
    }

    html[data-landing-theme="light"] .hero-cta .btn {
        width: 100% !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
        white-space: normal !important;
        font-size: 0.92rem !important;
        padding: 0.78rem 1rem !important;
    }

    html[data-landing-theme="light"] .hero-stats {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 0.55rem !important;
        margin-top: 1.5rem !important;
    }

    html[data-landing-theme="light"] .hero-stat {
        min-width: 0 !important;
        text-align: center;
        padding: 0.5rem 0.35rem !important;
    }

    html[data-landing-theme="light"] .hero-stats .n {
        font-size: 1.15rem !important;
    }

    html[data-landing-theme="light"] .hero-stats .l {
        font-size: 0.7rem !important;
        line-height: 1.35 !important;
        overflow-wrap: anywhere;
    }

    html[data-landing-theme="light"] .hero-photo-strip {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    html[data-landing-theme="light"] .hero-photo-mini,
    html[data-landing-theme="light"] .hero-photo-stat,
    html[data-landing-theme="light"] .float-card {
        display: none !important;
    }

    html[data-landing-theme="light"] .nav-center.nav-links.desktop-only {
        display: none !important;
    }

}

/* ========== Mobile — all sections ========== */
@media (max-width: 960px) {
    html[data-landing-theme="light"] {
        --landing-pad-x: clamp(0.85rem, 4vw, 1.35rem);
    }

    html[data-landing-theme="light"] header.site .nav.wrap {
        gap: 0.45rem !important;
        min-height: 64px;
    }

    html[data-landing-theme="light"] .logo-wordmark {
        font-size: 1rem !important;
        max-width: 5.5rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    html[data-landing-theme="light"] .lang-switch {
        flex-shrink: 1;
        min-width: 0;
    }

    html[data-landing-theme="light"] .lang-switch a {
        min-width: 0 !important;
        padding: 0.36rem 0.5rem !important;
        font-size: 0.78rem !important;
        gap: 0.28rem !important;
    }

    html[data-landing-theme="light"] .lang-switch .lang-flag {
        width: 18px !important;
        height: 13px !important;
    }

    html[data-landing-theme="light"] section.block {
        padding-block: clamp(2.5rem, 6vw, 3.25rem) !important;
    }

    html[data-landing-theme="light"] .section-head {
        margin-bottom: 1.65rem !important;
        padding-inline: 0;
    }

    html[data-landing-theme="light"] .section-head h2 {
        font-size: clamp(1.35rem, 5vw, 1.75rem) !important;
        overflow-wrap: anywhere;
    }

    html[data-landing-theme="light"] #features .wrap {
        overflow-x: visible !important;
        max-width: 100%;
    }

    html[data-landing-theme="light"] #features .grid.grid-features {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        flex-wrap: unset !important;
        overflow-x: visible !important;
        scroll-snap-type: none !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        gap: 0.65rem !important;
        padding-bottom: 0 !important;
    }

    html[data-landing-theme="light"] #features .grid.grid-features .feat {
        flex: unset !important;
        width: auto !important;
        min-width: 0 !important;
        scroll-snap-align: unset !important;
        padding: 1rem 0.7rem 0.95rem !important;
        text-align: center;
    }

    html[data-landing-theme="light"] #features .feat-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.05rem !important;
        margin-bottom: 0.55rem !important;
    }

    html[data-landing-theme="light"] #features .feat h3 {
        font-size: 0.8rem !important;
        line-height: 1.35 !important;
        overflow-wrap: anywhere;
        margin-bottom: 0.35rem !important;
    }

    html[data-landing-theme="light"] #features .feat p {
        font-size: 0.72rem !important;
        line-height: 1.45 !important;
        -webkit-line-clamp: 4;
    }

    html[data-landing-theme="light"] .landing-nursery__grid {
        gap: 1.35rem !important;
    }

    html[data-landing-theme="light"] .landing-nursery__media,
    html[data-landing-theme="light"] .landing-nursery__content {
        min-width: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    html[data-landing-theme="light"] .nursery-photo-frame {
        aspect-ratio: 16 / 10 !important;
        min-height: 0 !important;
        max-height: none !important;
        border-radius: 18px !important;
    }

    html[data-landing-theme="light"] .landing-nursery__roles {
        grid-template-columns: 1fr !important;
        gap: 0.6rem !important;
        margin-top: 1rem !important;
    }

    html[data-landing-theme="light"] .landing-nursery__actions {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.55rem !important;
        margin-top: 1.15rem !important;
    }

    html[data-landing-theme="light"] .landing-nursery__actions .btn {
        width: 100% !important;
        justify-content: center !important;
    }

    html[data-landing-theme="light"] .landing-portals-grid,
    html[data-landing-theme="light"] .pricing-grid,
    html[data-landing-theme="light"] .pricing-grid--nursery,
    html[data-landing-theme="light"] .landing-testimonials-grid,
    html[data-landing-theme="light"] .landing-nursery__grid,
    html[data-landing-theme="light"] .landing-play-duo__grid,
    html[data-landing-theme="light"] .landing-contact-layout,
    html[data-landing-theme="light"] form.contact-form .row {
        grid-template-columns: 1fr !important;
    }

    html[data-landing-theme="light"] .showcase {
        padding: 1.35rem 0.85rem 1.15rem !important;
        border-radius: 18px !important;
    }

    html[data-landing-theme="light"] .showcase-slide {
        grid-template-columns: 1fr !important;
        gap: 1.1rem !important;
        padding-inline: 0.35rem !important;
    }

    html[data-landing-theme="light"] .showcase-nav {
        width: 38px !important;
        height: 38px !important;
        font-size: 1.15rem !important;
    }

    html[data-landing-theme="light"] .showcase-tabs {
        gap: 0.35rem !important;
    }

    html[data-landing-theme="light"] .showcase-tab {
        font-size: 0.72rem !important;
        padding: 0.48rem 0.55rem !important;
        flex: 1 1 calc(50% - 0.35rem);
    }

    html[data-landing-theme="light"] .adv-bento {
        grid-template-columns: 1fr !important;
        grid-template-rows: none !important;
    }

    html[data-landing-theme="light"] .adv-bento__tile--hero {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
    }

    html[data-landing-theme="light"] .price {
        padding: 1.15rem 0.95rem !important;
    }

    html[data-landing-theme="light"] form.contact-form.contact-form--premium {
        padding: 1.35rem 1rem !important;
    }

    html[data-landing-theme="light"] .contact-form__head {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.75rem !important;
    }

    html[data-landing-theme="light"] .site-footer__main {
        grid-template-columns: 1fr !important;
        gap: 1.75rem !important;
    }

    html[data-landing-theme="light"] .fab-contact {
        inset-inline-end: 12px !important;
        bottom: 12px !important;
    }
}

@media (max-width: 900px) {
    html[data-landing-theme="light"] .site-footer__main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 720px) {
    html[data-landing-theme="light"] .logo-mark-badge {
        width: 44px;
        height: 44px;
    }

    html[data-landing-theme="light"] .logo-mark-badge .logo-mark-icon {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 560px) {
    html[data-landing-theme="light"] {
        --landing-pad-x: clamp(0.75rem, 3.5vw, 1rem);
    }

    html[data-landing-theme="light"] #features .grid.grid-features {
        grid-template-columns: 1fr !important;
        gap: 0.55rem !important;
    }

    html[data-landing-theme="light"] #features .grid.grid-features .feat {
        display: grid !important;
        grid-template-columns: auto 1fr !important;
        grid-template-rows: auto auto !important;
        align-items: start !important;
        text-align: start !important;
        gap: 0.2rem 0.7rem !important;
        padding: 0.85rem 0.9rem !important;
    }

    html[data-landing-theme="light"] #features .feat-icon {
        grid-row: 1 / 3 !important;
        grid-column: 1 !important;
        align-self: center !important;
        margin-bottom: 0 !important;
        width: 38px !important;
        height: 38px !important;
        font-size: 0.95rem !important;
    }

    html[data-landing-theme="light"] #features .feat h3 {
        grid-column: 2 !important;
        grid-row: 1 !important;
        font-size: 0.86rem !important;
        text-align: start;
        margin-bottom: 0 !important;
    }

    html[data-landing-theme="light"] #features .feat p {
        grid-column: 2 !important;
        grid-row: 2 !important;
        font-size: 0.76rem !important;
        text-align: start;
        -webkit-line-clamp: unset;
        display: block !important;
        overflow: visible !important;
    }

    html[data-landing-theme="light"] .nursery-photo-frame {
        aspect-ratio: 4 / 3 !important;
        border-radius: 16px !important;
    }

    html[data-landing-theme="light"] .hero-title {
        font-size: clamp(1.42rem, 7vw, 1.82rem) !important;
    }

    html[data-landing-theme="light"] .hero-highlights {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    html[data-landing-theme="light"] .hero-highlight {
        justify-content: center;
    }

    html[data-landing-theme="light"] .hero-stats {
        grid-template-columns: 1fr !important;
        gap: 0.45rem !important;
    }

    html[data-landing-theme="light"] .hero-stat {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 0.65rem !important;
        text-align: start !important;
        padding: 0.55rem 0.75rem !important;
    }

    html[data-landing-theme="light"] .hero-stats .l {
        font-size: 0.78rem !important;
        text-align: end;
    }

    html[data-landing-theme="light"] .lang-switch .lang-code {
        display: none;
    }

    html[data-landing-theme="light"] .lang-switch a {
        min-width: 2.35rem !important;
        padding: 0.38rem 0.42rem !important;
    }

    html[data-landing-theme="light"] .showcase-tab {
        flex: 1 1 100%;
    }

    html[data-landing-theme="light"] .cta-block {
        padding: 1.5rem var(--landing-pad-x) !important;
    }

    html[data-landing-theme="light"] .cta-block h2 {
        font-size: 1.12rem !important;
        overflow-wrap: anywhere;
    }

    html[data-landing-theme="light"] .site-footer__main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-block: 2.25rem;
    }

    html[data-landing-theme="light"] .site-footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (min-width: 961px) {
    html[data-landing-theme="light"] .lang-switch a {
        min-width: 4.35rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html[data-landing-theme="light"] .hero::before,
    html[data-landing-theme="light"] .hero-photo-mini,
    html[data-landing-theme="light"] .hero-photo-stat,
    html[data-landing-theme="light"] .feat:hover {
        animation: none !important;
        transform: none !important;
    }
}
