/* =============================================================
   GLASS-THEME.CSS — D-KODE Light Mode Glassmorphism System
   Applies to: index.html (nav + hero)
   Theme: Soft premium light gray/lavender, frosted glass UI
   ============================================================= */

/* -------------------------------------------------------
   LIGHT MODE DESIGN TOKENS
   ------------------------------------------------------- */
:root {
    /* Background */
    --bg-base:            #f0f0f5;
    --bg-subtle:          #e8e8f0;
    --bg-surface:         rgba(255, 255, 255, 0.72);

    /* Glass */
    --glass-bg:           rgba(255, 255, 255, 0.60);
    --glass-border:       rgba(255, 255, 255, 0.85);
    --glass-border-soft:  rgba(200, 200, 220, 0.45);
    --glass-blur:         blur(22px);
    --glass-shadow:       0 8px 32px rgba(100, 100, 140, 0.18);

    /* Nav glass — heavy frosted blur, very transparent */
    --nav-glass-bg:       rgba(255, 255, 255, 0.28);
    --nav-glass-blur:     blur(32px) saturate(180%);
    --nav-glass-shadow:   0 4px 30px rgba(100, 100, 160, 0.10), 0 1px 0 rgba(255,255,255,0.6) inset;

    /* Typography */
    --text-primary:       #0d0d14;
    --text-secondary:     #3a3a4a;
    --text-muted:         #7a7a90;
    --text-inverse:       #ffffff;

    /* Accent — deep matte charcoal */
    --accent-dark:        #131320;
    --accent-dark-hover:  #1f1f35;
    --accent-pill-bg:     #131320;
    --accent-pill-color:  #ffffff;

    /* Borders */
    --border-light:       rgba(180, 180, 210, 0.40);
    --border-strong:      rgba(130, 130, 180, 0.30);

    /* Decorative faint watermark */
    --watermark-opacity:  0.045;

    /* Spacing & radius */
    --nav-height:         72px;
    --radius-pill:        999px;
    --radius-lg:          20px;
    --radius-md:          12px;
}

/* -------------------------------------------------------
   GLOBAL LIGHT BASE OVERRIDE
   ------------------------------------------------------- */
html, body {
    background-color: var(--bg-base);
    color: var(--text-primary);
}

/* -------------------------------------------------------
   TOP NAVIGATION — FROSTED GLASS FLOATING BAR
   ------------------------------------------------------- */
.lm-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: var(--nav-glass-bg);
    backdrop-filter: var(--nav-glass-blur);
    -webkit-backdrop-filter: var(--nav-glass-blur);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--nav-glass-shadow);
    transition: background 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.lm-nav.scrolled {
    background: rgba(255, 255, 255, 0.55);
    border-bottom-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 40px rgba(80, 80, 140, 0.14);
}

/* ---- DARK NAV STATE — when scrolled over a dark section ---- */
.lm-nav.nav-dark {
    background: rgba(14, 14, 20, 0.72);
    border-bottom-color: rgba(255, 255, 255, 0.07);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.40), 0 1px 0 rgba(255,255,255,0.05) inset;
    backdrop-filter: blur(32px) saturate(160%);
    -webkit-backdrop-filter: blur(32px) saturate(160%);
}

.lm-nav.nav-dark.scrolled {
    background: rgba(10, 10, 16, 0.85);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.55);
}

/* Inner layout: left | center | right */
.lm-nav__inner {
    max-width: 1440px;
    margin: 0 auto;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 36px;
    gap: 20px;
}

/* Left nav links */
.lm-nav__left {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Center logo block */
.lm-nav__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.lm-nav__logo-block {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 18px;
    background: var(--accent-dark);
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.lm-nav__logo-block:hover {
    transform: scale(1.03);
}

/* Icon-only variant: no border/background, just the logo + soft drop shadow */
.lm-nav__logo-block--icon-only {
    padding: 0;
    background: none;
    border-radius: 0;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.lm-nav__logo-block--icon-only:hover {
    transform: scale(1.06);
}

.lm-nav__logo-block--icon-only .lm-nav__logo-img {
    width: 44px;
    height: 44px;
    /* Light nav: logo is black */
    filter: brightness(0) drop-shadow(0 2px 6px rgba(0,0,0,0.18));
    transition: filter 0.45s ease;
}

.lm-nav__logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    /* Light nav: logo is black */
    filter: brightness(0) drop-shadow(0 2px 6px rgba(0,0,0,0.18));
    transition: filter 0.45s ease;
}

.lm-nav__logo-text {
    font-family: 'Outfit', 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Right nav links */
.lm-nav__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

/* Shared nav link style */
.lm-nav__link {
    font-family: 'Outfit', 'Poppins', sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 7px 13px;
    border-radius: var(--radius-pill);
    transition: color 0.45s ease, background 0.2s ease;
    white-space: nowrap;
}

.lm-nav__link:hover {
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.06);
}

.lm-nav__link.active {
    color: var(--text-primary);
    font-weight: 600;
}

/* Dark nav state: links turn light */
.lm-nav.nav-dark .lm-nav__link {
    color: rgba(220, 220, 240, 0.75);
}
.lm-nav.nav-dark .lm-nav__link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);
}
.lm-nav.nav-dark .lm-nav__link.active {
    color: #ffffff;
}
.lm-nav.nav-dark .lm-nav__hamburger {
    color: #e0e0f0;
    border-color: rgba(255,255,255,0.20);
}
.lm-nav.nav-dark .lm-nav__hamburger:hover {
    background: rgba(255,255,255,0.10);
}
/* Logo in dark nav: force white */
.lm-nav.nav-dark .lm-nav__logo-img,
.lm-nav.nav-dark .lm-nav__logo-block--icon-only .lm-nav__logo-img {
    filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(255,255,255,0.15));
}
/* CTA stays dark-on-light in light sections; becomes white-outline in dark sections */
.lm-nav.nav-dark .lm-nav__cta {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 4px 16px rgba(0,0,0,0.35);
}
.lm-nav.nav-dark .lm-nav__cta:hover {
    background: rgba(255,255,255,0.22);
    box-shadow: 0 8px 24px rgba(0,0,0,0.45);
}

/* CTA pill button */
.lm-nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 22px;
    background: var(--accent-pill-bg);
    color: var(--accent-pill-color);
    font-family: 'Outfit', 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-decoration: none;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.45s ease, color 0.45s ease, transform 0.2s ease, box-shadow 0.45s ease, border-color 0.45s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
    margin-left: 10px;
    white-space: nowrap;
}

.lm-nav__cta:hover {
    background: var(--accent-dark-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

/* Mobile hamburger (hidden by default on desktop) */
.lm-nav__hamburger {
    display: none;
    background: none;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 8px 10px;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 18px;
    transition: background 0.2s ease;
}

.lm-nav__hamburger:hover {
    background: rgba(0,0,0,0.06);
}

/* Mobile drawer */
.lm-nav__drawer {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 16px 24px 24px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-light);
}

.lm-nav__drawer.open {
    display: flex;
}

.lm-nav__drawer .lm-nav__link {
    font-size: 14px;
    padding: 10px 14px;
}

.lm-nav__drawer .lm-nav__cta {
    margin-left: 0;
    justify-content: center;
    margin-top: 8px;
}

@media (max-width: 1024px) {
    .lm-nav__left,
    .lm-nav__right {
        display: none;
    }

    .lm-nav__inner {
        grid-template-columns: 1fr auto;
        padding: 0 20px;
    }

    .lm-nav__hamburger {
        display: block;
    }

    .lm-nav__logo {
        justify-content: flex-start;
    }
}


/* -------------------------------------------------------
   HERO SECTION — TWO-COLUMN SPLIT LAYOUT
   ------------------------------------------------------- */
.lm-hero {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    padding-top: var(--nav-height);
    background: linear-gradient(135deg, #eeeef6 0%, #f4f4fa 40%, #ebebf5 100%);
    display: flex;
    flex-direction: column;
}

/* Smooth gradient at the bottom of hero leading into first section */
.lm-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -120px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(180, 170, 255, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.lm-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(160, 200, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Main grid: left text | right image */
.lm-hero__grid {
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    padding: 60px 60px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

/* ---- LEFT COLUMN ---- */
.lm-hero__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    position: relative;
}

/* Eyebrow badge */
.lm-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border-soft);
    border-radius: var(--radius-pill);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    width: fit-content;
}

.lm-hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #5b5bff;
    animation: pulse-dot 2s ease-in-out infinite;
}

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

/* Headline */
.lm-hero__headline {
    font-family: 'Outfit', 'Poppins', sans-serif;
    font-size: clamp(28px, 3.2vw, 56px);
    font-weight: 900;
    line-height: 1.08;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin: 0;
}

/* Subheadline */
.lm-hero__sub {
    font-family: 'Outfit', 'Poppins', sans-serif;
    font-size: clamp(14px, 1.2vw, 17px);
    font-weight: 400;
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0;
}

/* CTA buttons row */
.lm-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.lm-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-family: 'Outfit', 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.lm-hero__btn--primary {
    background: var(--accent-pill-bg);
    color: var(--accent-pill-color);
    box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}

.lm-hero__btn--primary:hover {
    background: var(--accent-dark-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.3);
}

.lm-hero__btn--secondary {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border-soft);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(100,100,160,0.12);
}

.lm-hero__btn--secondary:hover {
    background: rgba(255,255,255,0.90);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(100,100,160,0.18);
}

/* Social proof — avatar stack */
.lm-hero__social-proof {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 6px;
}

.lm-hero__avatars {
    display: flex;
    align-items: center;
}

.lm-hero__avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    object-fit: cover;
    margin-left: -12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: transform 0.2s ease;
}

.lm-hero__avatar:first-child {
    margin-left: 0;
}

.lm-hero__avatar:hover {
    transform: translateY(-3px) scale(1.08);
    z-index: 10;
}

/* CSS circle avatars (fallback placeholders) */
.lm-hero__avatar--css {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    margin-left: -12px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
.lm-hero__avatar--css:first-child { margin-left: 0; }
.lm-hero__avatar--css:hover { transform: translateY(-3px) scale(1.08); z-index: 10; }
.lm-hero__avatar--css:nth-child(1) { background: linear-gradient(135deg,#a78bfa,#7c3aed); }
.lm-hero__avatar--css:nth-child(2) { background: linear-gradient(135deg,#60a5fa,#2563eb); }
.lm-hero__avatar--css:nth-child(3) { background: linear-gradient(135deg,#f472b6,#db2777); }
.lm-hero__avatar--css:nth-child(4) { background: linear-gradient(135deg,#34d399,#059669); }
.lm-hero__avatar--css:nth-child(5) { background: linear-gradient(135deg,#fbbf24,#d97706); }

.lm-hero__social-text {
    display: flex;
    flex-direction: column;
}

.lm-hero__social-count {
    font-family: 'Outfit', 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.lm-hero__social-label {
    font-size: 11.5px;
    color: var(--text-muted);
    font-weight: 400;
}

/* ---- RIGHT COLUMN ---- */
.lm-hero__right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
}

.lm-hero__img-wrapper {
    position: relative;
    z-index: 2;
    top: -60px;
    margin-bottom: -60px;
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0 30px 60px rgba(80, 80, 160, 0.28)) drop-shadow(0 8px 20px rgba(0,0,0,0.18));
    will-change: transform;
}

.lm-hero__img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 1;
    /* Float animation removed — JS parallax + float handles movement */
}

@keyframes hero-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33%       { transform: translateY(-16px) rotate(0.4deg); }
    66%       { transform: translateY(-8px) rotate(-0.3deg); }
}

/* Background ring glow behind image */
.lm-hero__img-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(140, 120, 255, 0.14) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

/* ---- FIXED PAGE SCROLL INDICATOR (left edge, persistent across all sections) ---- */
.page-scroll-indicator {
    position: fixed;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 900;
    /* Default: black (for light/white sections) */
    filter: none;
    transition: filter 0.4s ease;
}

/* Dark sections: invert to white — no manual colors needed */
.page-scroll-indicator.is-dark {
    filter: invert(1);
}

.psi__line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.4), transparent);
}

.psi__counter {
    font-family: 'Outfit', 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(0, 0, 0, 0.5);
    writing-mode: vertical-rl;
    text-transform: uppercase;
    transform: rotate(180deg);
    white-space: nowrap;
}

.psi__dots {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.psi__dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.30);
    transition: background 0.3s ease, transform 0.3s ease, height 0.3s ease, border-radius 0.3s ease;
    cursor: pointer;
}

.psi__dot.active {
    background: #000000;
    transform: scale(1.4);
    height: 14px;
    border-radius: 3px;
}

@media (max-width: 1024px) {
    .page-scroll-indicator { display: none; }
}

/* ---- DECORATIVE: WATERMARK (far right) ---- */
.lm-hero__watermark {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-family: 'Outfit', 'Poppins', sans-serif;
    font-size: clamp(80px, 10vw, 140px);
    font-weight: 900;
    color: var(--text-primary);
    opacity: var(--watermark-opacity);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    letter-spacing: 8px;
    text-transform: uppercase;
    z-index: 1;
}

/* -------------------------------------------------------
   RESPONSIVE HERO
   ------------------------------------------------------- */
@media (max-width: 1024px) {
    .lm-hero__grid {
        grid-template-columns: 1fr;
        padding: 50px 32px 40px;
        text-align: center;
    }

    .lm-hero__left {
        align-items: center;
    }

    .lm-hero__sub {
        max-width: 600px;
    }

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

    .lm-hero__social-proof {
        justify-content: center;
    }

    .lm-hero__img-wrapper {
        top: -160px;
        margin-bottom: -160px;
    }

    .lm-hero__right {
        min-height: 340px;
    }



    .lm-hero__watermark {
        display: none;
    }
}

@media (max-width: 600px) {
    .lm-hero__grid {
        padding: 40px 20px 32px;
    }

    .lm-hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .lm-hero__btn {
        width: 100%;
        justify-content: center;
    }

    .lm-hero__img-wrapper {
        max-width: 320px;
    }

    .lm-hero__social-proof {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-top: 12px;
        text-align: center;
    }
}


/* =============================================================
   PAGE BANNER — compact hero for inner pages
   (privacy, contact, works, pricing, terms, etc.)
   ============================================================= */

.lm-page-banner {
    position: relative;
    min-height: 52vh;
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 60px;
    background: linear-gradient(135deg, #0a0a14 0%, #0e0e1c 55%, #0c0c18 100%);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

/* Subtle radial glow at top */
.lm-page-banner::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 300px;
    background: radial-gradient(ellipse, rgba(110, 100, 220, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

/* Faint grid overlay */
.lm-page-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.6) 30%, rgba(0,0,0,0.6) 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.6) 30%, rgba(0,0,0,0.6) 70%, transparent 100%);
}

.lm-page-banner__inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
}

.lm-page-banner__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3.5px;
    color: rgba(160, 150, 220, 0.75);
    text-transform: uppercase;
    margin-bottom: 22px;
}

.lm-page-banner__label::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 1px;
    background: rgba(160, 150, 220, 0.5);
}

.lm-page-banner__title {
    font-family: 'Outfit', 'Poppins', sans-serif;
    font-size: clamp(42px, 6vw, 78px);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -1.5px;
    color: #f0f0f8;
    margin: 0 0 24px;
    text-transform: uppercase;
}

.lm-page-banner__title span {
    background: linear-gradient(135deg, #a78bfa 0%, #7c6bdf 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lm-page-banner__desc {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: rgba(170, 165, 200, 0.75);
    max-width: 600px;
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
}

/* Giant watermark word (top-right decorative) */
.lm-page-banner__watermark {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-family: 'Outfit', 'Poppins', sans-serif;
    font-size: clamp(70px, 9vw, 120px);
    font-weight: 900;
    color: rgba(255,255,255,0.025);
    letter-spacing: 10px;
    text-transform: uppercase;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    z-index: 1;
}

/* Scroll prompt at bottom */
.lm-page-banner__scroll {
    position: absolute;
    bottom: 28px;
    left: 60px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Outfit', 'Poppins', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(160, 150, 220, 0.5);
    text-transform: uppercase;
    text-decoration: none;
    z-index: 3;
    transition: color 0.3s ease;
}

.lm-page-banner__scroll:hover {
    color: rgba(160, 150, 220, 0.9);
}

.lm-page-banner__scroll-line {
    width: 40px;
    height: 1px;
    background: rgba(160, 150, 220, 0.4);
    position: relative;
    overflow: hidden;
}

.lm-page-banner__scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(160, 150, 220, 0.9);
    animation: scrollLineSlide 2s ease-in-out infinite;
}

@keyframes scrollLineSlide {
    0%   { left: -100%; }
    50%  { left: 0%; }
    100% { left: 100%; }
}

@media (max-width: 1024px) {
    .lm-page-banner__inner { padding: 0 32px; }
    .lm-page-banner__scroll { left: 32px; }
}

@media (max-width: 600px) {
    .lm-page-banner {
        min-height: 45vh;
        padding-bottom: 50px;
    }
    .lm-page-banner__inner { padding: 0 20px; }
    .lm-page-banner__title { letter-spacing: -0.5px; }
    .lm-page-banner__scroll { display: none; }
}

/* =============================================================
   ALTERNATING SECTION THEME SYSTEM
   .sec-light  → soft lavender/white
   .sec-dark   → deep matte black, rounded-top, overlapping
   ============================================================= */

.sec-light,
.sec-dark {
    position: relative;
    padding: 100px 0 80px;
    z-index: 1;
}

/* ---- WHITE (LIGHT) SECTIONS — flat, no border-radius ---- */
.sec-light {
    background: linear-gradient(160deg, #f0f0f8 0%, #eaeaf5 60%, #f4f4fb 100%);
    color: var(--text-primary);
    border-radius: 0;
    margin-top: 0;
    padding-top: 100px;
    overflow: hidden; /* Contain absolute background decos */
}

/* First section right after hero */
#intro {
    margin-top: 0 !important;
    border-radius: 0;
    padding-top: 80px;
}

/* Z-index stacking — dark sections float ABOVE light sections */
#intro        { z-index: 2; }
#results      { z-index: 3; }
#about        { z-index: 2; }
#comparison   { z-index: 3; }
#services     { z-index: 2; }
#pricing-tiers { z-index: 3; }
#team         { z-index: 2; }
#faq          { z-index: 3; }
#reviews      { z-index: 2; }
#contact      { z-index: 3; }

.sec-light .sec-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 2; /* Sits above sec-bg-deco */
}

/* Background image decoration styles */
.sec-bg-deco {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25; /* slightly lower opacity so text remains readable over a full background */
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

/* ---- BLACK (DARK) SECTIONS — ALL 4 corners rounded, floating above white ---- */
.sec-dark {
    background: #0e0e14;
    color: #f0f0f5;
    border-radius: 40px;
    margin-top: -60px;
    margin-bottom: -60px;
    box-shadow:
        0 -20px 60px rgba(0,0,0,0.35),
        0  20px 60px rgba(0,0,0,0.35),
        0 0 0 1px rgba(255,255,255,0.04);
    position: relative;
    z-index: 3;
}

.sec-dark .sec-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

/* Section label + title */
.sec-label {
    font-family: 'Outfit','Poppins',sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sec-light .sec-label { color: #8888aa; }
.sec-dark  .sec-label { color: #6666aa; }
.sec-label::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1.5px;
    background: currentColor;
    flex-shrink: 0;
}

.sec-title {
    font-family: 'Outfit','Poppins',sans-serif;
    font-size: clamp(28px, 3.6vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}
.sec-light .sec-title { color: #0d0d14; }
.sec-dark  .sec-title { color: #f0f0f5; }

.sec-subtitle {
    font-size: 15px;
    line-height: 1.75;
    margin: 0 0 52px;
    max-width: 580px;
}
.sec-light .sec-subtitle { color: #5a5a72; }
.sec-dark  .sec-subtitle { color: #9090b0; }

/* ---- LIGHT CARDS — flat, no border-radius, clean white ---- */
.lt-card {
    background: transparent;
    border: 1px solid rgba(200,200,220,0.50);
    border-radius: 0;
    padding: 36px;
    box-shadow: 0 2px 16px rgba(100,100,160,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    z-index: 1;
}

/* White background layer */
.lt-card::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    background: #ffffff;
    border-radius: inherit;
}

/* Glowing layer */
.lt-card::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -2;
    transform: scale(1.02);
    -webkit-filter: blur(20px);
    -moz-filter: blur(20px);
    -ms-filter: blur(20px);
    filter: blur(20px);
    background: linear-gradient(270deg, #0fffc1, #7e0fff);
    background-size: 200% 200%;
    animation: animateGlow 10s ease infinite;
    opacity: 0.5;
}

.lt-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(80,70,160,0.14);
}
.lt-card h2,.lt-card h3,.lt-card h4 { margin-bottom: 10px; color: #0d0d14; }
.lt-card p,.lt-card li { font-size: 14px; line-height: 1.75; color: #4a4a62; }

@keyframes animateGlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}



/* ---- FLOATING ROCK DARK CARDS ---- */
.dk-card {
    background: rgba(20,18,40,0.70);
    border: 1px solid rgba(120,110,200,0.22);
    border-radius: 24px;
    padding: 36px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 8px 40px rgba(0,0,0,0.45),
        0 2px 12px rgba(60,50,120,0.30),
        inset 0 1px 0 rgba(255,255,255,0.06);
    transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), box-shadow 0.45s ease, border-color 0.45s ease;
    position: relative;
    overflow: hidden;
    animation: rock-float-dk 7s ease-in-out infinite;
}

/* Rock top crystal vein */
.dk-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(100,90,200,0.5), rgba(160,150,255,0.8), rgba(100,90,200,0.5), transparent);
    border-radius: 24px 24px 0 0;
}

/* Icicle glow at base */
.dk-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; transform: translateX(-50%);
    width: 50%; height: 3px;
    background: linear-gradient(90deg, transparent, rgba(100,120,255,0.5), rgba(140,160,255,0.7), rgba(100,120,255,0.5), transparent);
    border-radius: 0 0 24px 24px;
    filter: blur(3px);
}

.dk-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow:
        0 28px 70px rgba(0,0,0,0.55),
        0 8px 30px rgba(80,70,180,0.35),
        inset 0 1px 0 rgba(255,255,255,0.10);
    border-color: rgba(140,130,230,0.45);
}
.dk-card h2,.dk-card h3,.dk-card h4 { color: #f0f0f5; margin-bottom: 10px; }
.dk-card p,.dk-card li { color: #a0a0c0; font-size: 14px; line-height: 1.75; }

.dk-card:nth-child(1) { animation-delay: 0s; }
.dk-card:nth-child(2) { animation-delay: -2.5s; }
.dk-card:nth-child(3) { animation-delay: -5s; }
.dk-card:nth-child(4) { animation-delay: -1.5s; }
.dk-card:hover { animation-play-state: paused; }

@keyframes rock-float-dk {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    40%       { transform: translateY(-10px) rotate(0.4deg); }
    70%       { transform: translateY(-5px) rotate(-0.3deg); }
}

/* ---- FLOATING ROCK ICON BADGE ---- */
.rock-card-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    position: relative;
    overflow: visible;
}

.lt-card .rock-card-icon-wrap {
    background: linear-gradient(135deg, rgba(140,120,220,0.18) 0%, rgba(180,170,255,0.12) 100%);
    border: 1px solid rgba(150,130,220,0.3);
    box-shadow: 0 4px 16px rgba(120,100,200,0.15), inset 0 1px 0 rgba(255,255,255,0.6);
    color: #5a3fbf;
}

.dk-card .rock-card-icon-wrap {
    background: linear-gradient(135deg, rgba(80,70,160,0.35) 0%, rgba(100,90,200,0.20) 100%);
    border: 1px solid rgba(120,110,220,0.30);
    box-shadow: 0 4px 16px rgba(60,50,130,0.30), inset 0 1px 0 rgba(255,255,255,0.08);
    color: #c0b0ff;
}

/* Mountains section divider — floats above the rounded top border */
.mountains-divider {
    width: 110%;
    position: absolute;
    left: -5%;
    top: -100px;
    height: 250px;
    z-index: 4;
    pointer-events: none;
    overflow: visible;
}


.mountains-divider img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    filter: drop-shadow(0 -10px 30px rgba(140,130,220,0.15));
}

/* Small floating rock decoration for sections */
.sec-rock-deco {
    position: absolute;
    pointer-events: none;
    opacity: 0.55;
    z-index: 0;
}

.sec-rock-deco--left {
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 160px;
    animation: rock-float-lt 8s ease-in-out infinite;
    animation-delay: -3s;
}

.sec-rock-deco--right {
    right: -60px;
    top: 40%;
    width: 140px;
    animation: rock-float-lt 9s ease-in-out infinite;
    animation-delay: -6s;
}

/* Icon circles */
.sec-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}
.sec-light .sec-icon { background: rgba(100,100,200,0.10); color: #4040cc; }
.sec-dark  .sec-icon { background: rgba(255,255,255,0.08); color: #c0c0ff; }

/* Grid layouts */
.cards-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.cards-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.cards-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

@media (max-width: 1024px) {
    .cards-grid-3 { grid-template-columns: repeat(2,1fr); }
    .cards-grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
    .cards-grid-3,.cards-grid-2,.cards-grid-4 { grid-template-columns: 1fr; }
    .sec-light .sec-inner,.sec-dark .sec-inner { padding: 0 20px; }
}

/* Stats row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-bottom: 48px;
}
@media (max-width: 768px) { .stats-row { grid-template-columns: repeat(2,1fr); } }

.stat-pill { text-align: center; padding: 32px 20px; border-radius: 20px; position: relative; overflow: hidden; }
.sec-light .stat-pill {
    background: rgba(255,255,255,0.80);
    border: 1px solid rgba(200,200,230,0.55);
    box-shadow: 0 4px 20px rgba(100,100,160,0.10);
}
.sec-dark .stat-pill {
    background: rgba(20,18,40,0.65);
    border: 1px solid rgba(120,110,200,0.20);
    box-shadow: 0 6px 28px rgba(0,0,0,0.40), inset 0 1px 0 rgba(255,255,255,0.06);
    animation: rock-float-dk 7s ease-in-out infinite;
}
.sec-dark .stat-pill::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(120,100,220,0.6), rgba(160,150,255,0.9), rgba(120,100,220,0.6), transparent);
    border-radius: 20px 20px 0 0;
}
.sec-dark .stat-pill:nth-child(1) { animation-delay: 0s; }
.sec-dark .stat-pill:nth-child(2) { animation-delay: -1.8s; }
.sec-dark .stat-pill:nth-child(3) { animation-delay: -3.6s; }
.sec-dark .stat-pill:nth-child(4) { animation-delay: -5.4s; }
.stat-pill__number {
    font-family: 'Outfit','Poppins',sans-serif;
    font-size: clamp(32px,4vw,52px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
}
.sec-light .stat-pill__number { color: #0d0d14; }
.sec-dark  .stat-pill__number { color: #f0f0f5; }
.stat-pill__label { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; }
.sec-light .stat-pill__label { color: #8888aa; }
.sec-dark  .stat-pill__label { color: #6666aa; }

/* Buttons — light sections */
.btn-lt-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; background: #0d0d14; color: #fff;
    border-radius: 999px; font-family: 'Outfit','Poppins',sans-serif;
    font-size: 13px; font-weight: 600; letter-spacing: 0.6px;
    text-decoration: none; border: none; cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.22);
}
.btn-lt-primary:hover { background: #1f1f35; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.28); }

.btn-lt-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; background: rgba(255,255,255,0.80); color: #0d0d14;
    border-radius: 999px; border: 1px solid rgba(200,200,230,0.60);
    font-family: 'Outfit','Poppins',sans-serif; font-size: 13px; font-weight: 600;
    letter-spacing: 0.6px; text-decoration: none; cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 12px rgba(100,100,160,0.12);
}
.btn-lt-secondary:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(100,100,160,0.18); }

/* Buttons — dark sections */
.btn-dk-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; background: #fff; color: #0d0d14;
    border-radius: 999px; font-family: 'Outfit','Poppins',sans-serif;
    font-size: 13px; font-weight: 700; letter-spacing: 0.6px;
    text-decoration: none; border: none; cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(255,255,255,0.10);
}
.btn-dk-primary:hover { background: #e8e8f0; transform: translateY(-2px); }

.btn-dk-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; background: rgba(255,255,255,0.07); color: #f0f0f5;
    border-radius: 999px; border: 1px solid rgba(255,255,255,0.16);
    font-family: 'Outfit','Poppins',sans-serif; font-size: 13px; font-weight: 600;
    letter-spacing: 0.6px; text-decoration: none; cursor: pointer;
    transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.btn-dk-secondary:hover { background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.30); transform: translateY(-2px); }

/* Comparison cards */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 700px) { .compare-grid { grid-template-columns: 1fr; } }
.compare-card { border-radius: 20px; padding: 36px; }
.compare-card--bad  { background: rgba(255,60,60,0.06); border: 1px solid rgba(255,80,80,0.18); }
.compare-card--good { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16); }
.compare-card__title { font-family: 'Outfit','Poppins',sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.compare-card--bad  .compare-card__title { color: #ff6666; }
.compare-card--good .compare-card__title { color: #f0f0f5; }
.compare-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.compare-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; line-height: 1.6; }
.compare-card--bad  .compare-list li { color: #c0a0a0; }
.compare-card--good .compare-list li { color: #c0c0e0; }
.ci { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; flex-shrink: 0; margin-top: 2px; }
.compare-card--bad  .ci { background: rgba(255,80,80,0.15); color: #ff6666; }
.compare-card--good .ci { background: rgba(255,255,255,0.10); color: #c0c0ff; }

/* Pricing cards */
.pricing-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; align-items: start; }
@media (max-width: 1024px) { .pricing-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px)  { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
    border-radius: 24px; padding: 32px 28px;
    display: flex; flex-direction: column; gap: 20px;
    background: rgba(20,18,40,0.65);
    border: 1px solid rgba(120,110,200,0.20);
    box-shadow: 0 8px 36px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.06);
    transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), box-shadow 0.45s ease, border-color 0.45s ease;
    position: relative;
    overflow: hidden;
    animation: rock-float-dk 7s ease-in-out infinite;
}
.price-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(100,90,200,0.5), rgba(160,150,255,0.8), rgba(100,90,200,0.5), transparent);
    border-radius: 24px 24px 0 0;
}
.price-card:nth-child(1) { animation-delay: 0s; }
.price-card:nth-child(2) { animation-delay: -1.8s; }
.price-card:nth-child(3) { animation-delay: -3.6s; }
.price-card:nth-child(4) { animation-delay: -5.4s; }
.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 8px 24px rgba(80,70,180,0.35), inset 0 1px 0 rgba(255,255,255,0.10);
    border-color: rgba(140,130,230,0.45);
    animation-play-state: paused;
}
.price-card--featured {
    background: rgba(30,26,60,0.80);
    border-color: rgba(160,150,255,0.40);
    transform: scale(1.04);
    box-shadow: 0 12px 50px rgba(80,60,160,0.40), inset 0 1px 0 rgba(255,255,255,0.10);
    z-index: 2;
}
.price-card--featured::before {
    background: linear-gradient(90deg, transparent, rgba(140,120,255,0.7), rgba(200,190,255,1.0), rgba(140,120,255,0.7), transparent);
}
.price-card--featured:hover { transform: scale(1.04) translateY(-10px); }
.price-card__badge { font-size: 9px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #c0b0ff; margin-bottom: -8px; }
.price-card__name { font-family: 'Outfit','Poppins',sans-serif; font-size: 24px; font-weight: 800; color: #f0f0f5; }
.price-card__features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; flex-grow: 1; }
.price-card__features li { font-size: 13px; color: #9090b0; display: flex; align-items: center; gap: 10px; }
.price-card__features li i { font-size: 11px; color: rgba(180,180,255,0.5); width: 14px; flex-shrink: 0; }
.price-card__features li i.fa-check { color: #80d0a0; }
.price-card__features li i.fa-times { color: #c06060; opacity: 0.7; }


/* FAQ dark overrides — floating rock style */
.sec-dark .faq-item {
    background: rgba(20,18,40,0.60);
    border: 1px solid rgba(120,110,200,0.18);
    border-radius: 18px; padding: 22px; cursor: pointer;
    transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.30), inset 0 1px 0 rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}
.sec-dark .faq-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(100,90,200,0.4), rgba(140,130,255,0.7), rgba(100,90,200,0.4), transparent);
    border-radius: 18px 18px 0 0;
    opacity: 0;
    transition: opacity 0.3s;
}
.sec-dark .faq-item:hover { background: rgba(25,22,50,0.70); border-color: rgba(140,130,220,0.30); transform: translateX(4px); box-shadow: 0 8px 30px rgba(0,0,0,0.40); }
.sec-dark .faq-item:hover::before { opacity: 1; }
.sec-dark .faq-item.active { border-color: rgba(160,150,255,0.35); background: rgba(30,26,60,0.70); }
.sec-dark .faq-item.active::before { opacity: 1; }
.sec-dark .faq-header { color: #f0f0f5; font-size: 15px; font-weight: 500; }
.sec-dark .faq-answer { color: #9090b0; border-top-color: rgba(255,255,255,0.08); }
.sec-dark .faq-icon { color: #8888cc; }
.sec-dark .faq-item.active .faq-icon { color: #c0b0ff; }

/* Reviews swiper on dark */
.sec-dark .review-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); border-radius: 18px; padding: 28px; box-shadow: 0 4px 24px rgba(0,0,0,0.35); }
.sec-dark .review-author { color: #f0f0f5; }
.sec-dark .review-text { color: #9090b0; }

/* Contact form — light */
.lt-form { display: flex; flex-direction: column; gap: 16px; }
.lt-form input,.lt-form textarea {
    width: 100%; box-sizing: border-box; padding: 14px 18px;
    background: rgba(255,255,255,0.80); border: 1px solid rgba(200,200,230,0.60);
    border-radius: 12px; font-family: 'Outfit','Poppins',sans-serif;
    font-size: 14px; color: #0d0d14; outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.lt-form input::placeholder,.lt-form textarea::placeholder { color: #9090b0; }
.lt-form input:focus,.lt-form textarea:focus { border-color: rgba(120,120,220,0.55); box-shadow: 0 0 0 3px rgba(120,120,220,0.10); }

/* Hours list — light */
.hours-list-lt { list-style: none; padding: 0; margin: 0 0 28px; }
.hours-list-lt li { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(180,180,220,0.25); font-size: 14px; color: #4a4a62; }
.hours-list-lt li:last-child { border-bottom: none; }

/* Map */
.map-frame { width: 100%; height: 320px; border-radius: 20px; overflow: hidden; border: 1px solid rgba(200,200,230,0.55); box-shadow: 0 4px 24px rgba(100,100,160,0.10); }
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: saturate(0.5) contrast(1.1) brightness(1.05); display: block; }

/* Suppress old section titles inside new sec wrappers */
.sec-light .section-title-huge,
.sec-dark  .section-title-huge { display: none; }

/* ---- FOOTER ---- */
.lm-footer {
    background: #07070d;
    color: #f0f0f5;
    border-radius: 40px 40px 0 0;
    margin-top: -48px;
    padding: 72px 0 0;
    position: relative;
    z-index: 3;
    box-shadow: 0 -8px 60px rgba(0,0,0,0.35);
}
.lm-footer__inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.lm-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.lm-footer__brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; text-decoration: none; }
.lm-footer__brand-logo img { width: 32px; height: 32px; filter: brightness(0) invert(1); }
.lm-footer__brand-name { font-family: 'Outfit','Poppins',sans-serif; font-size: 16px; font-weight: 800; color: #fff; letter-spacing: 2px; }
.lm-footer__bio { font-size: 13.5px; color: #7070a0; line-height: 1.75; margin-bottom: 24px; }
.lm-footer__socials { display: flex; gap: 10px; }
.lm-footer__socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10); display: flex; align-items: center; justify-content: center; color: #a0a0c0; font-size: 14px; text-decoration: none; transition: background 0.2s, color 0.2s, transform 0.2s; }
.lm-footer__socials a:hover { background: rgba(255,255,255,0.14); color: #fff; transform: translateY(-2px); }
.lm-footer__col-title { font-family: 'Outfit','Poppins',sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #5555aa; margin-bottom: 20px; }
.lm-footer__links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.lm-footer__links li a,.lm-footer__contact li a { font-size: 14px; color: #8080a8; text-decoration: none; transition: color 0.2s; }
.lm-footer__links li a:hover,.lm-footer__contact li a:hover { color: #f0f0f5; }
.lm-footer__contact { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.lm-footer__contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #8080a8; }
.lm-footer__contact li i { color: #5555aa; margin-top: 2px; width: 14px; flex-shrink: 0; }
.lm-footer__bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; flex-wrap: wrap; gap: 12px; }
.lm-footer__copy { font-size: 13px; color: #50507a; }
.lm-footer__copy a { color: #8080b0; text-decoration: none; }
.lm-footer__copy a:hover { color: #f0f0f5; }
.lm-footer__legal { display: flex; gap: 20px; }
.lm-footer__legal a { font-size: 12px; color: #50507a; text-decoration: none; letter-spacing: 0.5px; transition: color 0.2s; }
.lm-footer__legal a:hover { color: #f0f0f5; }

@media (max-width: 900px) { .lm-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 560px) { .lm-footer__grid { grid-template-columns: 1fr; } .lm-footer__inner { padding: 0 20px; } .lm-footer__bottom { flex-direction: column; align-items: flex-start; } }

/* Terms / Legal Cards - Match PACKAGES (sec-dark) UI */
.sec-dark .terms-card {
    background: rgba(20,18,40,0.60);
    border: 1px solid rgba(120,110,200,0.18);
    border-radius: 18px; 
    padding: 32px 40px; 
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.30), inset 0 1px 0 rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}
.sec-dark .terms-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(140,120,255,0.3), transparent);
}
@media (max-width: 768px) {
    .sec-dark .terms-card {
        padding: 24px;
    }
}
