/* Sparkxe marketing — matches auth/login light green SaaS look */
:root {
    --ink: #0b1f1a;
    --ink-2: #12352c;
    --panel: #ffffff;
    --line: #dce8e3;
    --text: #0b1f1a;
    --muted: #5f736c;
    --accent: #128c7e;
    --accent-2: #25d366;
    --accent-deep: #075e54;
    --accent-soft: #e8f8ef;
    --soft: #f3f8f6;
    --warn: #c0392b;
    --radius: 16px;
    --font-display: "Outfit", "Segoe UI", sans-serif;
    --font-body: "Plus Jakarta Sans", "Segoe UI", sans-serif;
    --shadow: 0 18px 50px rgba(7, 94, 84, 0.12);
    --radius: 18px;
    --radius-sm: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.lp-body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    font-family: var(--font-body);
    background:
        radial-gradient(ellipse 70% 50% at 10% 0%, rgba(37, 211, 102, 0.16), transparent 55%),
        radial-gradient(ellipse 55% 45% at 100% 100%, rgba(7, 94, 84, 0.12), transparent 50%),
        linear-gradient(165deg, #f7fbf9 0%, #eef6f3 48%, #e7f2ee 100%);
    overflow-x: hidden;
}

.lp-aurora,
.lp-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.lp-aurora {
    background:
        radial-gradient(ellipse 80% 45% at 50% -5%, rgba(37, 211, 102, 0.14), transparent 55%),
        radial-gradient(ellipse 40% 30% at 95% 20%, rgba(18, 140, 126, 0.1), transparent 50%);
    animation: lp-aurora 16s ease-in-out infinite alternate;
}

.lp-grid {
    background-image:
        linear-gradient(rgba(7, 94, 84, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 94, 84, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse at 50% 25%, black 15%, transparent 72%);
    opacity: 0.7;
}

@keyframes lp-aurora {
    from { filter: hue-rotate(0deg) saturate(1); }
    to { filter: hue-rotate(8deg) saturate(1.08); }
}

.lp-header,
.lp-main,
.lp-footer {
    position: relative;
    z-index: 1;
}

.lp-shell {
    width: min(100% - 2rem, 1180px);
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 760px) {
    .lp-shell { width: min(100% - 3rem, 1180px); }
}

.lp-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 0;
    background: transparent;
    padding: 0.75rem 0 0;
}

.lp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 1rem;
    min-height: 64px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(7, 94, 84, 0.08);
    border-radius: 18px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.lp-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text);
    min-width: 0;
    flex-shrink: 1;
}

.lp-brand-logo {
    height: 32px;
    width: auto;
    display: block;
    max-width: 140px;
    object-fit: contain;
}

.lp-brand-product {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: -0.02em;
    color: var(--muted);
    padding-left: 0.75rem;
    border-left: 1px solid var(--line);
    white-space: nowrap;
}

@media (max-width: 420px) {
    .lp-brand-product { display: none; }
    .lp-brand-logo { max-width: 120px; }
}

.lp-nav-links {
    display: none;
    align-items: center;
    gap: 0.85rem;
}

.lp-nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.lp-nav-links a:hover,
.lp-nav-links a.is-active {
    color: var(--accent-deep);
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.75rem 1.35rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.98rem;
    letter-spacing: 0.01em;
    border: 0;
    cursor: pointer;
    transition:
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.28s ease,
        background 0.28s ease,
        filter 0.28s ease,
        color 0.28s ease;
}

.lp-btn:hover { transform: translateY(-3px); }
.lp-btn:active { transform: translateY(-1px) scale(0.98); }

.lp-btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
    color: #fff;
    box-shadow: 0 10px 24px rgba(18, 140, 126, 0.28);
}

.lp-btn-primary:hover {
    filter: brightness(1.05);
    color: #fff;
    box-shadow: 0 12px 28px rgba(18, 140, 126, 0.34);
}

.lp-btn-ghost {
    border: 1.5px solid var(--accent);
    color: var(--accent);
    background: #fff;
    min-height: 44px;
}

.lp-btn-ghost:hover {
    background: var(--accent-soft);
    color: var(--accent-deep);
}

.lp-nav-cta {
    padding: 0.45rem 0.95rem !important;
    font-size: 0.9rem;
    min-height: 40px !important;
}

.lp-nav-cta-register {
    padding: 0.45rem 0.95rem !important;
    font-size: 0.9rem;
    min-height: 40px !important;
    color: #fff !important;
}

.lp-nav-toggle {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--line);
    border-radius: 0.75rem;
    background: #fff;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
}

.lp-nav-toggle span {
    display: block;
    width: 1.1rem;
    height: 2px;
    background: var(--ink);
}

.lp-drawer {
    display: flex;
    flex-direction: column;
    border-top: 0;
    background: transparent;
    margin: 0.65rem auto 0;
    width: min(100% - 2rem, 1180px);
}

.lp-drawer[hidden] { display: none !important; }

.lp-drawer-inner {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1rem 1.1rem 1.15rem;
    background: #fff;
    border: 1px solid rgba(7, 94, 84, 0.08);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.lp-drawer a {
    color: var(--text);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 600;
    padding: 0.35rem 0;
}

body.lp-nav-open { overflow: hidden; }

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

/* Hero */
.lp-hero {
    min-height: auto;
    display: grid;
    align-items: center;
    gap: 2rem;
    padding: clamp(1.75rem, 5vw, 3.5rem) 0 clamp(2.5rem, 6vw, 4rem);
    width: min(100% - 2rem, 1180px);
    margin: 0 auto;
}

.lp-hero-copy {
    max-width: 36rem;
    min-width: 0;
}

.lp-hero-brand {
    margin: 0 0 0.85rem;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.4rem, 11vw, 5.2rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    overflow-wrap: anywhere;
    color: var(--accent-deep);
    animation: lp-fade-up 0.75s ease both;
}

.lp-hero h1 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.25rem, 4.2vw, 2.05rem);
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--ink);
    overflow-wrap: break-word;
    animation: lp-fade-up 0.75s ease 0.08s both;
}

.lp-hero-lead {
    margin: 1.05rem 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.18rem);
    line-height: 1.55;
    max-width: 33rem;
    animation: lp-fade-up 0.75s ease 0.16s both;
}

.lp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
    animation: lp-fade-up 0.75s ease 0.24s both;
}

.lp-hero-visual {
    position: relative;
    min-height: 280px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    animation: lp-fade-up 0.9s ease 0.18s both;
}

.lp-stage {
    position: relative;
    width: min(100%, 420px);
    margin: 0 auto;
    padding-bottom: 1.5rem;
}

.lp-dash {
    border-radius: 18px;
    border: 1px solid rgba(7, 94, 84, 0.1);
    background: #fff;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.45s ease;
}

@media (min-width: 980px) {
    .lp-dash {
        transform: perspective(1000px) rotateY(-7deg) rotateX(3deg);
    }
    .lp-dash:hover {
        transform: perspective(1000px) rotateY(-1deg) rotateX(0deg);
    }
}

.lp-dash-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--line);
    background: var(--accent-soft);
}

.lp-dash-top strong {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--accent-deep);
}

.lp-dash-top span {
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
}

.lp-dash-body {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 240px;
}

@media (min-width: 520px) {
    .lp-dash-body {
        grid-template-columns: 0.9fr 1.1fr;
        min-height: 280px;
    }
}

.lp-dash-side {
    padding: 0.85rem 0.7rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 0.45rem;
    align-content: start;
    background: var(--soft);
}

@media (min-width: 520px) {
    .lp-dash-side {
        border-right: 1px solid var(--line);
        border-bottom: 0;
    }
}

.lp-side-item {
    padding: 0.55rem 0.6rem;
    border-radius: 10px;
    background: #fff;
    border: 1px solid transparent;
    font-size: 0.78rem;
    color: var(--muted);
}

.lp-side-item.is-on {
    border-color: rgba(18, 140, 126, 0.28);
    background: var(--accent-soft);
    color: var(--accent-deep);
    font-weight: 600;
}

.lp-dash-main {
    padding: 0.9rem;
    display: grid;
    gap: 0.55rem;
    align-content: start;
}

.lp-bubble {
    max-width: 92%;
    padding: 0.65rem 0.8rem;
    border-radius: 12px;
    font-size: 0.82rem;
    line-height: 1.4;
    animation: lp-bubble 0.55s ease both;
}

.lp-bubble-in {
    background: var(--soft);
    border: 1px solid var(--line);
    color: var(--ink);
    justify-self: start;
    animation-delay: 0.35s;
}

.lp-bubble-out {
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    border: 0;
    color: #fff;
    justify-self: end;
    animation-delay: 0.65s;
}

.lp-bubble-out.late { animation-delay: 0.95s; }

.lp-status-row {
    display: flex;
    gap: 0.4rem;
    justify-content: flex-end;
    margin-top: 0.2rem;
    animation: lp-fade-up 0.5s ease 1.2s both;
}

.lp-pill {
    padding: 0.2rem 0.5rem;
    border-radius: 8px;
    font-size: 0.68rem;
    letter-spacing: 0.03em;
    border: 1px solid rgba(18, 140, 126, 0.25);
    background: var(--accent-soft);
    color: var(--accent-deep);
    font-weight: 600;
}

@keyframes lp-bubble {
    from { opacity: 0; transform: translateY(10px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.lp-phone-float { display: none; }

@media (min-width: 980px) {
    .lp-phone-float {
        display: block;
        position: absolute;
        right: -12px;
        bottom: -18px;
        width: 140px;
        border-radius: 18px;
        border: 1px solid rgba(7, 94, 84, 0.12);
        background: #fff;
        box-shadow: var(--shadow);
        padding: 0.65rem;
        animation: lp-float 5s ease-in-out infinite;
    }
}

@keyframes lp-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.lp-phone-float .mini-bar {
    height: 6px;
    width: 40%;
    border-radius: 99px;
    background: var(--accent);
    margin-bottom: 0.55rem;
}

.lp-phone-float .mini-line {
    height: 8px;
    border-radius: 6px;
    background: var(--line);
    margin-bottom: 0.35rem;
}

.lp-phone-float .mini-line.w2 { width: 70%; }
.lp-phone-float .mini-line.w3 { width: 85%; background: rgba(37, 211, 102, 0.35); }

.lp-glow {
    position: absolute;
    inset: 8% 0 auto;
    height: 60%;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.22), transparent 65%);
    filter: blur(22px);
    z-index: -1;
}

/* Sections */
.lp-section {
    padding: clamp(3rem, 8vw, 5.5rem) 0;
    width: min(100% - 2rem, 1180px);
    margin: 0 auto;
}

.lp-section-head {
    max-width: 40rem;
    margin-bottom: 2rem;
}

.lp-kicker {
    display: inline-block;
    margin-bottom: 0.7rem;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.76rem;
}

.lp-section h2 {
    margin: 0 0 0.65rem;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    letter-spacing: -0.035em;
    line-height: 1.1;
    color: var(--ink);
}

.lp-section-head p,
.lp-lead {
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.55;
}

.lp-split {
    display: grid;
    gap: 1.5rem;
}

.lp-panel,
.lp-feature,
.lp-step,
.lp-detail {
    border: 1px solid rgba(7, 94, 84, 0.08);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
}

.lp-panel {
    padding: 1.4rem 1.45rem;
}

.lp-panel h3 {
    margin: 0 0 0.45rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    color: var(--accent-deep);
}

.lp-panel p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.lp-panel-link {
    display: inline-flex;
    margin-top: 1rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-display);
}

.lp-panel-link:hover { color: var(--accent-deep); }

.lp-features {
    display: grid;
    gap: 1rem;
}

.lp-feature {
    padding: 1.35rem;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.lp-feature:hover {
    transform: translateY(-4px);
    border-color: rgba(18, 140, 126, 0.35);
}

.lp-feature-num {
    display: inline-block;
    margin-bottom: 0.7rem;
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--accent);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
}

.lp-feature h3 {
    margin: 0 0 0.45rem;
    font-family: var(--font-display);
    font-size: 1.18rem;
    color: var(--ink);
}

.lp-feature p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
    font-size: 0.98rem;
}

.lp-steps {
    display: grid;
    gap: 1rem;
    counter-reset: step;
}

.lp-step {
    position: relative;
    padding: 1.3rem 1.3rem 1.3rem 4.2rem;
}

.lp-step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 1.15rem;
    top: 1.25rem;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 0.7rem;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 800;
    background: var(--accent-soft);
    color: var(--accent-deep);
}

.lp-step h3 {
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--ink);
}

.lp-step p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

.lp-band {
    width: min(100% - 2rem, 1180px);
    margin: 0 auto 2rem;
    border-radius: 20px;
    border: 1px solid rgba(18, 140, 126, 0.18);
    background:
        radial-gradient(ellipse at 15% 0%, rgba(37, 211, 102, 0.16), transparent 50%),
        linear-gradient(145deg, #ffffff 0%, #eef8f3 100%);
    box-shadow: var(--shadow);
    padding: clamp(1.8rem, 4vw, 2.8rem);
    display: grid;
    gap: 1.25rem;
    align-items: center;
}

.lp-band h2 {
    margin: 0 0 0.45rem;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.1rem);
    letter-spacing: -0.03em;
    color: var(--accent-deep);
}

.lp-band p {
    margin: 0;
    color: var(--muted);
    max-width: 34rem;
    line-height: 1.5;
}

.lp-band-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Inner pages */
.lp-page-hero {
    padding: clamp(2.2rem, 6vw, 4.5rem) 0 1.5rem;
    width: min(100% - 2rem, 1180px);
    margin: 0 auto;
}

.lp-page-hero h1 {
    margin: 0.5rem 0 0.7rem;
    font-family: var(--font-display);
    font-size: clamp(2rem, 5.5vw, 3.2rem);
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--accent-deep);
    animation: lp-fade-up 0.7s ease both;
}

.lp-page-hero p {
    margin: 0;
    color: var(--muted);
    max-width: 40rem;
    font-size: 1.12rem;
    line-height: 1.55;
    animation: lp-fade-up 0.7s ease 0.08s both;
}

.lp-detail-grid,
.lp-contact-grid {
    display: grid;
    gap: 1rem;
}

.lp-detail {
    padding: 1.5rem;
}

.lp-detail h2 {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--accent-deep);
}

.lp-detail p,
.lp-detail li {
    color: var(--muted);
    line-height: 1.6;
}

.lp-detail ul {
    margin: 0.7rem 0 0;
    padding-left: 1.15rem;
}

.lp-contact-card a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
}

.lp-contact-card a:hover { color: var(--accent-deep); }

/* Forms (if used) */
.lp-register-form {
    border: 1px solid rgba(7, 94, 84, 0.08);
    border-radius: 18px;
    background: #fff;
    padding: clamp(1.25rem, 3vw, 2rem);
    box-shadow: var(--shadow);
}

.lp-form-grid {
    display: grid;
    gap: 1rem;
}

.lp-form-grid label {
    display: grid;
    gap: 0.4rem;
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 600;
}

.lp-form-grid input,
.lp-form-grid textarea,
.lp-form-grid select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    color: var(--text);
    padding: 0.8rem 0.95rem;
    font: inherit;
}

.lp-form-grid input:focus,
.lp-form-grid textarea:focus,
.lp-form-grid select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.18);
}

.lp-span-2 { grid-column: 1 / -1; }

.lp-check-label {
    display: block;
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 0.55rem;
}

.lp-check-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.1rem;
}

.lp-check {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text);
    font-size: 0.95rem;
}

.lp-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.lp-form-legal {
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.lp-form-legal a { color: var(--accent); font-weight: 600; }

.lp-form-alert {
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    border: 1px solid #f5c6c2;
    background: #fdeeee;
    color: var(--warn);
}

.lp-form-alert ul {
    margin: 0;
    padding-left: 1.1rem;
}

.lp-form-grid .mt-2 { margin-top: 0.5rem; }

@media (min-width: 760px) {
    .lp-form-grid { grid-template-columns: 1fr 1fr; }
}

/* Footer */
.lp-footer {
    margin-top: 3.5rem;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
}

.lp-footer-inner {
    padding: 2.6rem 0;
    display: grid;
    gap: 2rem;
}

.lp-footer-brand-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.55rem;
}

.lp-footer-logo {
    height: 34px;
    width: auto;
}

.lp-footer-brand {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.45rem;
    color: var(--accent-deep);
}

.lp-footer p {
    margin: 0;
    color: var(--muted);
    max-width: 28rem;
    line-height: 1.55;
}

.lp-footer-cta {
    margin-top: 1.1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.lp-footer-cols {
    display: grid;
    gap: 1.5rem;
}

.lp-footer-cols h4 {
    margin: 0 0 0.65rem;
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--ink);
}

.lp-footer-cols a {
    display: block;
    color: var(--muted);
    text-decoration: none;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.lp-footer-cols a:hover { color: var(--accent); }

.lp-footer-bar {
    border-top: 1px solid var(--line);
    padding: 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: space-between;
    color: var(--muted);
    font-size: 0.88rem;
}

.lp-footer-bar a {
    color: inherit;
    text-decoration: none;
}

.lp-footer-bar a:hover { color: var(--accent); }

@media (min-width: 760px) {
    .lp-features { grid-template-columns: repeat(2, 1fr); }
    .lp-split { grid-template-columns: 1fr 1fr; }
    .lp-steps { grid-template-columns: repeat(3, 1fr); }
    .lp-step { padding-left: 1.3rem; padding-top: 3.6rem; }
    .lp-step::before { top: 1.15rem; left: 1.15rem; }
    .lp-band { grid-template-columns: 1.4fr auto; }
    .lp-footer-inner { grid-template-columns: 1.2fr 1fr; }
    .lp-footer-cols { grid-template-columns: 1fr 1fr; }
    .lp-detail-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-contact-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-media-row { grid-template-columns: 1fr 1.05fr; align-items: center; }
    .lp-media-row.is-reverse { grid-template-columns: 1.05fr 1fr; }
    .lp-feature-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-timeline { grid-template-columns: repeat(4, 1fr); }
    .lp-timeline::before {
        top: 1.55rem;
        left: 8%;
        right: 8%;
        height: 2px;
        width: auto;
        bottom: auto;
    }
    .lp-timeline-step {
        padding: 1.35rem 1.2rem 1.2rem;
        text-align: center;
    }
    .lp-timeline-num {
        position: relative;
        left: auto;
        top: auto;
        margin: 0 auto 0.85rem;
    }
}

@media (min-width: 1100px) {
    .lp-nav-links { display: flex; }
    .lp-nav-toggle { display: none; }
}

@media (min-width: 980px) {
    .lp-hero:not(.lp-hero-rich) {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 3rem;
    }
    .lp-features { grid-template-columns: repeat(3, 1fr); }
    .lp-detail-grid { grid-template-columns: repeat(3, 1fr); }
    .lp-feature-grid { grid-template-columns: repeat(3, 1fr); }
    .lp-hero-inner {
        grid-template-columns: 0.95fr 1.05fr;
        gap: 2.5rem;
        align-items: center;
    }
}

/* —— Rich landing additions —— */
.lp-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-reveal.is-in {
    opacity: 1;
    transform: translateY(0);
}

.lp-hero-rich {
    position: relative;
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    overflow: clip;
}

.lp-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 60% at 85% 40%, rgba(37, 211, 102, 0.18), transparent 60%),
        radial-gradient(ellipse 40% 50% at 10% 80%, rgba(7, 94, 84, 0.1), transparent 55%);
    pointer-events: none;
}

.lp-hero-wash {
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, transparent, rgba(247, 251, 249, 0.85));
    pointer-events: none;
}

.lp-hero-inner {
    position: relative;
    width: min(100% - 2rem, 1180px);
    margin: 0 auto;
    display: grid;
    gap: 2rem;
    padding: clamp(1.75rem, 5vw, 3.25rem) 0 clamp(2.5rem, 6vw, 4rem);
}

.lp-hero-rich .lp-hero-brand {
    font-size: clamp(2.6rem, 10vw, 4.8rem);
    color: var(--accent-deep);
}

.lp-hero-rich h1 {
    font-size: clamp(1.2rem, 3.4vw, 1.85rem);
    font-weight: 600;
    color: var(--ink);
    max-width: 28ch;
}

.lp-hero-anim {
    opacity: 0;
    transform: translateY(22px);
    animation: lp-hero-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: var(--d, 0s);
}

.lp-hero-media.lp-hero-anim {
    transform: translateY(28px) scale(0.97);
    animation-name: lp-hero-media-in;
    animation-duration: 1.05s;
}

@keyframes lp-hero-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lp-hero-media-in {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.lp-hero-media {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 260px;
}

.lp-hero-orb {
    position: absolute;
    width: min(92%, 460px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.3), transparent 68%);
    filter: blur(10px);
    animation: lp-pulse 6s ease-in-out infinite;
}

.lp-hero-ring {
    position: absolute;
    width: min(78%, 380px);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(18, 140, 126, 0.18);
    animation: lp-ring 7s ease-in-out infinite;
    pointer-events: none;
}

.lp-hero-figure {
    position: relative;
    z-index: 1;
    margin: 0;
    width: min(100%, 560px);
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(160deg, #f4faf7, #e8f3ee);
    box-shadow:
        0 30px 70px rgba(7, 94, 84, 0.16),
        0 0 0 1px rgba(7, 94, 84, 0.06);
    animation: lp-float-y 6s ease-in-out infinite;
    animation-delay: 1s;
}

.lp-hero-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
    transform-origin: center;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-hero-figure:hover .lp-hero-img {
    transform: scale(1.03);
}

.lp-btn {
    transition:
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.28s ease,
        background 0.28s ease,
        filter 0.28s ease,
        color 0.28s ease;
}

.lp-btn:hover {
    transform: translateY(-3px);
}

.lp-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.lp-float {
    animation: lp-float-y 5.5s ease-in-out infinite;
}

.lp-float-badge {
    position: absolute;
    z-index: 2;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(7, 94, 84, 0.1);
    box-shadow: 0 10px 28px rgba(7, 94, 84, 0.12);
    color: var(--accent-deep);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.78rem;
    white-space: nowrap;
    animation: lp-float-y 4.2s ease-in-out infinite;
}

.lp-float-badge-a { top: 8%; left: 2%; animation-delay: 0.2s; }
.lp-float-badge-b { top: 18%; right: 0; animation-delay: 0.8s; }
.lp-float-badge-c { bottom: 12%; left: 8%; animation-delay: 1.3s; }

@keyframes lp-float-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes lp-pulse {
    0%, 100% { transform: scale(1); opacity: 0.85; }
    50% { transform: scale(1.08); opacity: 1; }
}

@keyframes lp-ring {
    0%, 100% { transform: scale(0.96); opacity: 0.35; }
    50% { transform: scale(1.06); opacity: 0.7; }
}

@media (prefers-reduced-motion: reduce) {
    .lp-hero-anim,
    .lp-hero-figure,
    .lp-hero-orb,
    .lp-hero-ring,
    .lp-float,
    .lp-reveal {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

.lp-media-block {
    padding-top: clamp(2rem, 5vw, 3.5rem);
    padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.lp-media-block-alt {
    background: rgba(255, 255, 255, 0.45);
    border-radius: 28px;
    width: min(100% - 1rem, 1220px);
    padding-left: clamp(1rem, 3vw, 2rem);
    padding-right: clamp(1rem, 3vw, 2rem);
}

.lp-media-row {
    display: grid;
    gap: 1.75rem;
}

.lp-media-row.is-reverse .lp-media-copy { order: 2; }
.lp-media-row.is-reverse .lp-media-frame { order: 1; }

.lp-media-copy h2 {
    margin: 0 0 0.7rem;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.5vw, 2.35rem);
    letter-spacing: -0.03em;
    color: var(--accent-deep);
    line-height: 1.15;
}

.lp-media-copy > p {
    margin: 0 0 1rem;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 36rem;
}

.lp-check-list {
    margin: 0 0 1.15rem;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.lp-check-list li {
    position: relative;
    padding-left: 1.7rem;
    color: var(--ink);
    font-weight: 500;
    line-height: 1.45;
}

.lp-check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 1.05rem;
    height: 1.05rem;
    border-radius: 50%;
    background: var(--accent-soft);
    box-shadow: inset 0 0 0 2px var(--accent);
}

.lp-check-list li::after {
    content: "";
    position: absolute;
    left: 0.34rem;
    top: 0.55rem;
    width: 0.35rem;
    height: 0.55rem;
    border: solid var(--accent-deep);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.lp-text-link {
    display: inline-flex;
    color: var(--accent);
    font-weight: 700;
    font-family: var(--font-display);
    text-decoration: none;
}

.lp-text-link:hover { color: var(--accent-deep); }

.lp-media-frame {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(7, 94, 84, 0.08);
    background: #fff;
    box-shadow: var(--shadow);
}

.lp-media-frame img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.lp-media-frame:hover img {
    transform: scale(1.03);
}

.lp-feature-grid {
    display: grid;
    gap: 1rem;
}

.lp-feature-card {
    padding: 1.35rem 1.3rem;
    border-radius: 18px;
    border: 1px solid rgba(7, 94, 84, 0.08);
    background: #fff;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.lp-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(18, 140, 126, 0.35);
}

.lp-feature-icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.85rem;
    display: grid;
    place-items: center;
    background: var(--accent-soft);
    color: var(--accent-deep);
    margin-bottom: 0.9rem;
}

.lp-feature-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.lp-feature-card h3 {
    margin: 0 0 0.4rem;
    font-family: var(--font-display);
    font-size: 1.12rem;
    color: var(--ink);
}

.lp-feature-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
    font-size: 0.96rem;
}

.lp-section-cta {
    margin-top: 1.75rem;
    display: flex;
    justify-content: center;
}

.lp-service-list {
    display: grid;
    gap: 0.85rem;
    margin: 0 0 1.35rem;
}

.lp-service-list > div {
    display: grid;
    gap: 0.15rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(7, 94, 84, 0.08);
}

.lp-service-list strong {
    font-family: var(--font-display);
    color: var(--accent-deep);
    font-size: 0.98rem;
}

.lp-service-list span {
    color: var(--muted);
    font-size: 0.92rem;
}

.lp-timeline {
    position: relative;
    display: grid;
    gap: 1rem;
}

.lp-timeline::before {
    content: "";
    position: absolute;
    left: 1.55rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), rgba(18, 140, 126, 0.15));
}

.lp-timeline-step {
    position: relative;
    padding: 1.2rem 1.2rem 1.2rem 4rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(7, 94, 84, 0.08);
    box-shadow: var(--shadow);
}

.lp-timeline-num {
    position: absolute;
    left: 1rem;
    top: 1.15rem;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 8px 18px rgba(18, 140, 126, 0.28);
}

.lp-timeline-step h3 {
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
    font-size: 1.08rem;
    color: var(--ink);
}

.lp-timeline-step p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
    font-size: 0.95rem;
}

@media (max-width: 575.98px) {
    .lp-float-badge { display: none; }
    .lp-hero-figure { width: 100%; }
    .lp-hero-ring { display: none; }
    .lp-header { padding-top: 0.55rem; }
    .lp-header-inner { padding: 0.55rem 0.75rem; border-radius: 14px; }
}

/* Auth-matched cards (login/register feel) */
.lp-sx-card {
    background: #fff;
    border: 1px solid rgba(7, 94, 84, 0.08);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.45rem 1.35rem;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.28s ease;
}

.lp-sx-card:hover {
    transform: translateY(-4px);
    border-color: rgba(18, 140, 126, 0.28);
}

.lp-sx-card-icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.85rem;
    display: grid;
    place-items: center;
    background: var(--accent-soft);
    color: var(--accent-deep);
    margin-bottom: 0.95rem;
}

.lp-sx-card-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.lp-sx-card h2 {
    margin: 0 0 0.45rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--accent-deep);
}

.lp-sx-card > p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.lp-sx-card a {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
}

.lp-sx-card a:hover { color: var(--accent-deep); }

.lp-sx-card-meta {
    margin-top: 0.65rem !important;
}

.lp-sx-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.1rem;
}

.lp-sx-card-actions .lp-btn {
    min-height: 42px;
    padding: 0.55rem 1rem;
    font-size: 0.9rem;
}

.lp-sx-links {
    margin: 0.35rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.45rem;
}

.lp-sx-links li {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.45;
}

.lp-sx-links a {
    font-weight: 600;
}

/* Pricing */
.lp-pricing-grid {
    display: grid;
    gap: 1.1rem;
}

.lp-pricing-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(7, 94, 84, 0.08);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.55rem 1.4rem 1.4rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.28s ease;
}

.lp-pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(18, 140, 126, 0.28);
}

.lp-pricing-card.is-featured {
    border-color: rgba(18, 140, 126, 0.35);
    background:
        radial-gradient(ellipse at 100% 0%, rgba(37, 211, 102, 0.12), transparent 55%),
        #fff;
}

.lp-pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent-deep);
    background: var(--accent-soft);
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
}

.lp-pricing-card h2 {
    margin: 0 0 0.45rem;
    font-family: var(--font-display);
    font-size: 1.45rem;
    color: var(--accent-deep);
}

.lp-pricing-desc {
    margin: 0 0 1.1rem;
    color: var(--muted);
    line-height: 1.5;
    font-size: 0.95rem;
    min-height: 2.8em;
}

.lp-pricing-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.55rem;
}

.lp-pricing-amount {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--ink);
}

.lp-pricing-period {
    color: var(--muted);
    font-size: 0.92rem;
}

.lp-pricing-trial {
    margin: 0 0 0.85rem;
    color: var(--accent-deep);
    font-size: 0.9rem;
    font-weight: 600;
}

.lp-pricing-features {
    margin: 0 0 1.25rem;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.45rem;
    flex: 1;
}

.lp-pricing-features li {
    position: relative;
    padding-left: 1.35rem;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.45;
}

.lp-pricing-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--accent);
}

.lp-pricing-actions {
    margin-top: auto;
}

.lp-pricing-actions .lp-btn {
    width: 100%;
    justify-content: center;
}

/* FAQ */
.lp-faq-list {
    display: grid;
    gap: 0.85rem;
    max-width: 820px;
}

.lp-faq-item {
    background: #fff;
    border: 1px solid rgba(7, 94, 84, 0.08);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 0;
    overflow: hidden;
}

.lp-faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 1.05rem 1.25rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--accent-deep);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.lp-faq-item summary::-webkit-details-marker { display: none; }

.lp-faq-item summary::after {
    content: "+";
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--accent-soft);
    color: var(--accent-deep);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
}

.lp-faq-item[open] summary::after { content: "–"; }

.lp-faq-item p {
    margin: 0;
    padding: 0 1.25rem 1.15rem;
    color: var(--muted);
    line-height: 1.6;
}

.lp-faq-item a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.lp-faq-item a:hover { color: var(--accent-deep); }

.lp-drawer {
    margin-top: 0.65rem;
    border: 1px solid rgba(7, 94, 84, 0.08);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
}

.lp-footer {
    margin-top: 3.5rem;
    border-top: 0;
    background: transparent;
    padding-bottom: 1.25rem;
}

.lp-footer-inner {
    padding: 2rem 1.35rem;
    display: grid;
    gap: 2rem;
    background: #fff;
    border: 1px solid rgba(7, 94, 84, 0.08);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.lp-footer-bar {
    border-top: 0;
    padding: 1rem 0.35rem 0;
}

.lp-band {
    border: 1px solid rgba(7, 94, 84, 0.08) !important;
    background: #fff !important;
    box-shadow: var(--shadow) !important;
}

.lp-feature-card,
.lp-detail,
.lp-panel,
.lp-media-frame,
.lp-timeline-step {
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow) !important;
    border: 1px solid rgba(7, 94, 84, 0.08) !important;
}

@media (min-width: 760px) {
    .lp-pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-footer-cols { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 980px) {
    .lp-pricing-grid { grid-template-columns: repeat(3, 1fr); }
    .lp-contact-grid { grid-template-columns: repeat(3, 1fr); }
}
