/* =====================================================================
   Landing page redesign — modern, clean, responsive education theme
   Namespaced with .lp- to avoid collisions with legacy style.css
   ===================================================================== */

:root {
    --lp-green-900: #0c3b2b;
    --lp-green-800: #0f4634;
    --lp-green-700: #14563f;
    --lp-green-600: #1c6b4f;
    --lp-green-500: #2f8f6b;
    --lp-lime: #d7f24b;
    --lp-lime-600: #c3e236;
    --lp-lime-700: #aacb1f;
    --lp-ink: #14201a;
    --lp-body: #4b5a52;
    --lp-muted: #7c8a82;
    --lp-cream: #f3f7ef;
    --lp-soft: #eef4ea;
    --lp-white: #ffffff;
    --lp-border: #e5ece1;
    --lp-radius: 18px;
    --lp-radius-lg: 28px;
    --lp-shadow: 0 18px 50px -20px rgba(12, 59, 43, 0.25);
    --lp-shadow-sm: 0 10px 30px -18px rgba(12, 59, 43, 0.35);
    --lp-font: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ---------- Base ---------- */
body {
    font-family: var(--lp-font);
    color: var(--lp-body);
    background: var(--lp-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.lp-page {
    overflow-x: hidden;
}

.lp-page h1,
.lp-page h2,
.lp-page h3,
.lp-page h4,
.lp-page h5 {
    color: var(--lp-ink);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.lp-page p {
    margin: 0;
}

.lp-page a {
    text-decoration: none;
    transition: all 0.25s ease;
}

.lp-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.lp-section {
    padding: 90px 0;
}

/* ---------- Buttons ---------- */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    padding: 13px 26px;
    border-radius: 999px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

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

.lp-btn-lime {
    background: var(--lp-lime);
    color: var(--lp-green-900);
    box-shadow: 0 10px 24px -12px rgba(170, 203, 31, 0.9);
}

.lp-btn-lime:hover {
    background: var(--lp-lime-600);
    color: var(--lp-green-900);
}

.lp-btn-dark {
    background: var(--lp-green-800);
    color: #fff;
}

.lp-btn-dark:hover {
    background: var(--lp-green-700);
    color: #fff;
}

.lp-btn-outline {
    background: transparent;
    color: var(--lp-green-800);
    border-color: var(--lp-border);
}

.lp-btn-outline:hover {
    border-color: var(--lp-green-600);
    color: var(--lp-green-700);
}

.lp-btn-ghost-light {
    background: transparent;
    color: #eaf3e6;
    border-color: rgba(255, 255, 255, 0.28);
}

.lp-btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* ---------- Navbar ---------- */
.lp-nav {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--lp-green-900);
    color: #fff;
}

.lp-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 78px;
}

.lp-logo img {
    max-height: 40px;
    width: auto;
}

.lp-nav-menu {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lp-nav-menu a {
    color: #d7e5dd;
    font-size: 15px;
    font-weight: 500;
}

.lp-nav-menu a:hover {
    color: var(--lp-lime);
}

.lp-nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lp-nav-link-login {
    color: #eaf3e6;
    font-weight: 500;
    font-size: 15px;
}

.lp-nav-link-login:hover {
    color: var(--lp-lime);
}

.lp-nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    padding: 6px;
}

/* nav user avatar dropdown */
.lp-nav .dropdown-menu {
    border: 0;
    box-shadow: var(--lp-shadow-sm);
    border-radius: 14px;
    padding: 8px;
}

.lp-avatar-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.25);
    overflow: hidden;
    background: transparent;
}

.lp-avatar-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------- Hero ---------- */
.lp-hero {
    background: radial-gradient(120% 120% at 85% 10%, #15543d 0%, var(--lp-green-900) 55%);
    color: #fff;
    padding: 70px 0 90px;
    position: relative;
    overflow: hidden;
}

.lp-hero::before,
.lp-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.5;
}

.lp-hero::before {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(215, 242, 75, 0.18), transparent 70%);
    top: -40px;
    left: -40px;
}

.lp-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
}

.lp-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(215, 242, 75, 0.3);
    color: var(--lp-lime);
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 22px;
}

.lp-hero h1 {
    color: #fff;
    font-size: clamp(2.2rem, 4.6vw, 3.6rem);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.lp-hero h1 .lp-hl {
    color: var(--lp-lime);
}

.lp-hero p {
    color: #c7d8cf;
    font-size: 17px;
    max-width: 520px;
    margin: 22px 0 30px;
}

.lp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.lp-hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 46px;
    flex-wrap: wrap;
}

.lp-stat h3 {
    color: var(--lp-lime);
    font-size: 2rem;
    font-weight: 700;
}

.lp-stat span {
    color: #b9cbc1;
    font-size: 14px;
}

/* hero image */
.lp-hero-visual {
    position: relative;
}

.lp-hero-imgwrap {
    position: relative;
    border-radius: var(--lp-radius-lg);
    background: linear-gradient(160deg, rgba(215, 242, 75, 0.16), rgba(255, 255, 255, 0.04));
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-hero-imgwrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.lp-hero-badge {
    position: absolute;
    background: #fff;
    color: var(--lp-ink);
    border-radius: 16px;
    padding: 12px 16px;
    box-shadow: var(--lp-shadow);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
}

.lp-hero-badge .lp-badge-ico {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: var(--lp-soft);
    color: var(--lp-green-600);
    font-size: 16px;
}

.lp-hero-badge small {
    display: block;
    color: var(--lp-muted);
    font-weight: 500;
    font-size: 11px;
}

.lp-hero-badge.b1 {
    top: 24px;
    left: -18px;
}

.lp-hero-badge.b2 {
    bottom: 30px;
    right: -14px;
}

/* ---------- Brands strip ---------- */
.lp-brands {
    padding: 34px 0;
    border-bottom: 1px solid var(--lp-border);
}

.lp-brands-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.lp-brand {
    font-size: 20px;
    font-weight: 700;
    color: #9fb0a6;
    letter-spacing: 0.5px;
    opacity: 0.85;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.lp-brand i {
    font-size: 22px;
}

/* ---------- Section heading ---------- */
.lp-head {
    max-width: 640px;
    margin: 0 auto 54px;
    text-align: center;
}

.lp-head.left {
    text-align: left;
    margin-left: 0;
}

.lp-eyebrow {
    display: inline-block;
    color: var(--lp-green-600);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.lp-head h2 {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
}

.lp-head p {
    color: var(--lp-body);
    margin-top: 14px;
    font-size: 16px;
}

/* ---------- Steps ---------- */
.lp-steps {
    background: var(--lp-cream);
}

.lp-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.lp-step {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 34px 28px;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lp-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--lp-shadow);
}

.lp-step-num {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--lp-green-800);
    color: var(--lp-lime);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 22px;
}

.lp-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.lp-step p {
    color: var(--lp-body);
    font-size: 15px;
}

/* ---------- Feature / course cards ---------- */
.lp-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.lp-card {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 30px 26px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    height: 100%;
}

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

.lp-card-ico {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: var(--lp-soft);
    color: var(--lp-green-600);
    font-size: 26px;
    margin-bottom: 22px;
    transition: background 0.25s ease, color 0.25s ease;
}

.lp-card:hover .lp-card-ico {
    background: var(--lp-green-800);
    color: var(--lp-lime);
}

.lp-card h3 {
    font-size: 19px;
    margin-bottom: 10px;
}

.lp-card p {
    color: var(--lp-body);
    font-size: 15px;
}

.lp-seeall {
    text-align: center;
    margin-top: 48px;
}

/* ---------- Premium / experience ---------- */
.lp-premium {
    background: var(--lp-cream);
}

.lp-premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: center;
}

.lp-premium-visual {
    position: relative;
    background: var(--lp-green-900);
    border-radius: var(--lp-radius-lg);
    padding: 30px;
    min-height: 340px;
    overflow: hidden;
}

.lp-premium-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(90% 90% at 20% 10%, rgba(215, 242, 75, 0.14), transparent 60%);
}

.lp-mini-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.lp-mini {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 30px;
}

.lp-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-feature-list {
    list-style: none;
    margin: 26px 0 0;
    padding: 0;
    display: grid;
    gap: 20px;
}

.lp-feature-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.lp-feature-list .lp-check {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--lp-soft);
    color: var(--lp-green-600);
    display: grid;
    place-items: center;
    font-size: 16px;
}

.lp-feature-list h4 {
    font-size: 17px;
    margin-bottom: 4px;
}

.lp-feature-list p {
    color: var(--lp-body);
    font-size: 14.5px;
}

/* ---------- Stats / testimonial ---------- */
.lp-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: center;
}

.lp-bignums {
    display: grid;
    gap: 26px;
    margin-top: 30px;
}

.lp-bignum {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--lp-border);
}

.lp-bignum:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.lp-bignum h3 {
    font-size: 2.6rem;
    color: var(--lp-green-700);
    min-width: 130px;
}

.lp-bignum span {
    color: var(--lp-body);
    font-size: 15px;
}

.lp-testi-card {
    position: relative;
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    min-height: 420px;
    background: linear-gradient(160deg, var(--lp-green-800), var(--lp-green-900));
    padding: 34px;
    display: flex;
    align-items: flex-end;
}

.lp-testi-inner {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--lp-shadow);
}

.lp-testi-inner .lp-stars {
    color: #f5b301;
    font-size: 14px;
    margin-bottom: 10px;
}

.lp-testi-inner p {
    color: var(--lp-ink);
    font-size: 15px;
    font-style: italic;
}

.lp-testi-inner .lp-testi-name {
    margin-top: 14px;
    font-weight: 600;
    color: var(--lp-green-700);
    font-style: normal;
}

/* ---------- Pricing ---------- */
.lp-pricing {
    background: var(--lp-cream);
}

.lp-price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.lp-price-card {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lp-price-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--lp-shadow);
}

.lp-price-card.featured {
    background: var(--lp-green-900);
    border-color: var(--lp-green-900);
}

.lp-price-name {
    display: inline-block;
    font-weight: 600;
    color: var(--lp-green-600);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.lp-price-card.featured .lp-price-name {
    color: var(--lp-lime);
}

.lp-price-amt {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--lp-ink);
}

.lp-price-card.featured .lp-price-amt {
    color: #fff;
}

.lp-price-amt small {
    font-size: 15px;
    font-weight: 500;
    color: var(--lp-muted);
}

.lp-price-card.featured .lp-price-amt small {
    color: #a9bcb2;
}

.lp-price-limit {
    margin-top: 10px;
    color: var(--lp-body);
    font-size: 14px;
}

.lp-price-card.featured .lp-price-limit {
    color: #c7d8cf;
}

.lp-price-features {
    list-style: none;
    margin: 22px 0;
    padding: 22px 0 0;
    border-top: 1px solid var(--lp-border);
    display: grid;
    gap: 12px;
    flex: 1;
}

.lp-price-card.featured .lp-price-features {
    border-top-color: rgba(255, 255, 255, 0.14);
}

.lp-price-features li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--lp-body);
}

.lp-price-features li i {
    color: var(--lp-green-500);
    margin-top: 4px;
    font-size: 12px;
}

.lp-price-card.featured .lp-price-features li {
    color: #d6e4dc;
}

.lp-price-card.featured .lp-price-features li i {
    color: var(--lp-lime);
}

.lp-price-btn {
    display: block;
    text-align: center;
    width: 100%;
    padding: 13px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    background: var(--lp-soft);
    color: var(--lp-green-700);
    border: 1.5px solid transparent;
}

.lp-price-btn:hover {
    background: var(--lp-green-800);
    color: #fff;
}

.lp-price-card.featured .lp-price-btn {
    background: var(--lp-lime);
    color: var(--lp-green-900);
}

.lp-price-card.featured .lp-price-btn:hover {
    background: var(--lp-lime-600);
}

/* ---------- FAQ ---------- */
.lp-faq-wrap {
    max-width: 820px;
    margin: 0 auto;
}

.lp-faq-item {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
}

.lp-faq-q {
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--lp-ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}

.lp-faq-q .lp-faq-ico {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--lp-soft);
    color: var(--lp-green-700);
    display: grid;
    place-items: center;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.lp-faq-item.open .lp-faq-q .lp-faq-ico {
    background: var(--lp-green-800);
    color: var(--lp-lime);
    transform: rotate(45deg);
}

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

.lp-faq-a-inner {
    padding: 0 24px 22px;
    color: var(--lp-body);
    font-size: 15px;
}

/* ---------- CTA ---------- */
.lp-cta {
    padding: 40px 0 100px;
}

.lp-cta-inner {
    background: radial-gradient(120% 140% at 85% 0%, #15543d, var(--lp-green-900));
    border-radius: var(--lp-radius-lg);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.lp-cta-inner h2 {
    color: #fff;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    max-width: 560px;
}

.lp-cta-inner p {
    color: #c7d8cf;
    margin-top: 14px;
    max-width: 520px;
}

.lp-cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.lp-footer {
    background: var(--lp-green-900);
    color: #c7d8cf;
    padding: 70px 0 0;
}

.lp-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.lp-footer-logo img {
    max-height: 44px;
    margin-bottom: 18px;
}

.lp-footer p {
    color: #a9bcb2;
    font-size: 15px;
}

.lp-footer h4 {
    color: #fff;
    font-size: 17px;
    margin-bottom: 20px;
}

.lp-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.lp-footer-contact li a,
.lp-footer-contact li {
    color: #a9bcb2;
    font-size: 15px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.lp-footer-contact li a:hover {
    color: var(--lp-lime);
}

.lp-footer-contact i {
    color: var(--lp-lime);
    margin-top: 4px;
}

.lp-social {
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    color: #eaf3e6;
    font-size: 16px;
}

.lp-social a:hover {
    background: var(--lp-lime);
    color: var(--lp-green-900);
}

.lp-lang {
    margin-top: 26px;
}

.lp-lang .dropdown-menu {
    border: 0;
    border-radius: 12px;
    box-shadow: var(--lp-shadow-sm);
    max-height: 260px;
    overflow-y: auto;
}

.lp-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #eaf3e6;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 13px;
    cursor: pointer;
}

.lp-lang-btn svg {
    width: 16px;
    fill: currentColor;
}

.lp-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 22px 0;
    text-align: center;
}

.lp-footer-bottom p {
    color: #90a49a;
    font-size: 14px;
    margin: 0;
}

/* ---------- Register modal polish ---------- */
.lp-page .modal-content {
    border: 0;
    border-radius: 20px;
    overflow: hidden;
}

.lp-page .modal-header {
    background: var(--lp-green-900);
    color: #fff;
    border: 0;
    padding: 22px 28px;
}

.lp-page .modal-header .modal-title {
    color: #fff;
    font-weight: 600;
}

.lp-page .modal-header .btn-close {
    filter: invert(1) grayscale(1) brightness(2);
}

.lp-page .modal-body {
    padding: 28px;
}

.lp-page .reg-modal-form h4 {
    font-size: 15px;
    letter-spacing: 1px;
    color: var(--lp-green-600);
    margin-bottom: 16px;
}

.lp-page .single-form {
    margin-bottom: 14px;
}

.lp-page .single-form label {
    font-size: 13px;
    font-weight: 500;
    color: var(--lp-body);
    margin-bottom: 6px;
    display: block;
}

.lp-page .single-form .form-control,
.lp-page .single-form .form-select {
    border-radius: 10px;
    border: 1px solid var(--lp-border);
    padding: 10px 14px;
    font-size: 14px;
}

.lp-page .single-form .form-control:focus,
.lp-page .single-form .form-select:focus {
    border-color: var(--lp-green-500);
    box-shadow: 0 0 0 3px rgba(47, 143, 107, 0.12);
}

.lp-page .m-submit-btn {
    margin-top: 10px;
    width: 100%;
    background: var(--lp-green-800);
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.lp-page .m-submit-btn:hover {
    background: var(--lp-green-700);
}

/* ---------- Mobile nav drawer ---------- */
.lp-nav-backdrop {
    display: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .lp-section {
        padding: 66px 0;
    }

    .lp-hero-grid,
    .lp-premium-grid,
    .lp-trust-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lp-hero-visual {
        max-width: 480px;
        margin: 0 auto;
    }

    .lp-cards,
    .lp-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-price-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* mobile nav */
    .lp-nav-toggle {
        display: inline-flex;
    }

    .lp-nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 78%;
        max-width: 320px;
        background: var(--lp-green-800);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 6px;
        padding: 90px 28px 28px;
        transition: right 0.3s ease;
        z-index: 1001;
    }

    .lp-nav-menu.open {
        right: 0;
    }

    .lp-nav-menu li {
        width: 100%;
    }

    .lp-nav-menu a {
        display: block;
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 16px;
    }

    .lp-nav-backdrop.show {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }

    .lp-nav-close {
        position: absolute;
        top: 22px;
        right: 22px;
        background: transparent;
        border: 0;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
    }
}

@media (max-width: 640px) {
    .lp-section {
        padding: 54px 0;
    }

    .lp-cards,
    .lp-steps-grid,
    .lp-price-grid,
    .lp-footer-grid,
    .lp-mini-grid {
        grid-template-columns: 1fr;
    }

    .lp-hero {
        padding: 50px 0 70px;
    }

    .lp-hero-stats {
        gap: 26px;
    }

    .lp-hero-badge {
        display: none;
    }

    .lp-cta-inner {
        padding: 40px 26px;
    }

    .lp-bignum h3 {
        font-size: 2rem;
        min-width: 100px;
    }

    .lp-nav-right .lp-nav-link-login {
        display: none;
    }
}

.lp-nav-close {
    display: none;
}

@media (max-width: 991px) {
    .lp-nav-close {
        display: block;
    }
}
