/* ============================================================
   Forex Signal — Modern Landing Page CSS
   Design: Swiss Minimalism, Light Mode, Admin Accent Color
   Font: Plus Jakarta Sans (replaces Montserrat on landing)
   ============================================================ */

/* -----------------------------------------------
   0. Import Font
   ----------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* -----------------------------------------------
   1. Base Reset & Tokens
   ----------------------------------------------- */
.lp-page *,
.lp-page *::before,
.lp-page *::after {
    box-sizing: border-box;
}

.lp-page {
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #1E293B;
    background: #ffffff;
}

/* -----------------------------------------------
   2. Typography Override
   ----------------------------------------------- */
.lp-page h1,
.lp-page h2,
.lp-page h3,
.lp-page h4,
.lp-page h5,
.lp-page h6 {
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    color: #0F172A;
    line-height: 1.25;
    margin-top: 0;
}

.lp-page p {
    color: #475569;
    line-height: 1.75;
    font-size: 15px;
    margin-bottom: 0;
}

/* -----------------------------------------------
   3. Modern Navbar
   ----------------------------------------------- */
.lp-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid #E2E8F0;
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.lp-navbar.is-scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.97);
}

.lp-navbar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.lp-navbar__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.lp-navbar__logo img {
    max-height: 44px;
    width: auto;
}

.lp-navbar__nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.lp-navbar__nav li a {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.lp-navbar__nav li a:hover {
    color: var(--brand-color, #3B82F6);
    background: rgba(0, 0, 0, 0.04);
}

.lp-navbar__nav .dropdown-menu {
    min-width: 200px;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    padding: 8px;
    margin-top: 8px;
}

.lp-navbar__nav .dropdown-menu > li > a {
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 13px;
    color: #334155;
}

.lp-navbar__nav .dropdown-menu > li > a:hover {
    background: #F1F5F9;
    color: var(--brand-color, #3B82F6);
}

.lp-navbar__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.lp-navbar__actions .lp-btn-ghost {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.lp-navbar__actions .lp-btn-ghost:hover {
    background: #F1F5F9;
    color: #0F172A;
}

.lp-navbar__actions .lp-btn-primary {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: var(--brand-color, #3B82F6);
    padding: 9px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.15s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    line-height: 1;
}

.lp-navbar__actions .lp-btn-primary:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

/* Mobile toggle */
.lp-navbar__toggle {
    display: none;
    background: none;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    color: #334155;
}

.lp-navbar__toggle svg {
    display: block;
    width: 20px;
    height: 20px;
}

/* -----------------------------------------------
   4. Section Padding Utility
   ----------------------------------------------- */
.lp-section {
    padding: 96px 0;
    overflow: hidden;
}

.lp-section--sm {
    padding: 60px 0;
}

.lp-section--gray {
    background: #F8FAFC;
}

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

/* -----------------------------------------------
   5. Section Heading
   ----------------------------------------------- */
.lp-heading {
    text-align: center;
    margin-bottom: 60px;
}

.lp-heading__tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-color, #3B82F6);
    background: color-mix(in srgb, var(--brand-color, #3B82F6) 12%, transparent);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.lp-heading__title {
    font-size: 36px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 14px;
    line-height: 1.2;
}

.lp-heading__sub {
    font-size: 16px;
    color: #64748B;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* -----------------------------------------------
   6. Hero Section
   ----------------------------------------------- */
.lp-hero {
    padding: 148px 0 96px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Decorative background grid */
.lp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(226, 232, 240, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(226, 232, 240, 0.5) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Accent blob */
.lp-hero::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, color-mix(in srgb, var(--brand-color, #3B82F6) 12%, transparent) 0%, transparent 65%);
    pointer-events: none;
}

.lp-hero__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 840px;
    margin: 0 auto;
    padding: 0 24px;
}

.lp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    border-radius: 40px;
    padding: 6px 16px 6px 8px;
    margin-bottom: 28px;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}

.lp-hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-color, #3B82F6);
    animation: lp-pulse 2s infinite;
    flex-shrink: 0;
}

@keyframes lp-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.lp-hero__title {
    font-size: clamp(42px, 6.5vw, 80px);
    font-weight: 900;
    line-height: 1.05;
    color: #0F172A;
    margin-bottom: 24px;
    letter-spacing: -0.04em; /* Tighter tracking for premium feel */
}

.lp-hero__title mark {
    background: none;
    color: var(--brand-color, #3B82F6);
    font-style: normal;
}

.lp-hero__sub {
    font-size: 18px;
    color: #64748B;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.lp-hero__cta {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;
    padding: 12px 26px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    line-height: 1;
}

.lp-btn--primary {
    background: var(--brand-color, #3B82F6);
    color: #ffffff;
    box-shadow: 0 4px 14px color-mix(in srgb, var(--brand-color, #3B82F6) 35%, transparent);
}

.lp-btn--primary:hover {
    opacity: 0.88;
    transform: translateY(-1px);
    color: #fff;
    box-shadow: 0 6px 20px color-mix(in srgb, var(--brand-color, #3B82F6) 45%, transparent);
}

.lp-btn--outline {
    background: transparent;
    color: #334155;
    border: 1.5px solid #CBD5E1;
}

.lp-btn--outline:hover {
    background: #F8FAFC;
    border-color: #94A3B8;
    color: #0F172A;
    transform: translateY(-1px);
}

/* Hero social proof strip */
.lp-hero__proof {
    margin-top: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding-top: 40px;
    border-top: 1px solid #E2E8F0;
    flex-wrap: wrap;
}

.lp-hero__proof-item {
    text-align: center;
}

.lp-hero__proof-num {
    font-size: 28px;
    font-weight: 800;
    color: #0F172A;
    display: block;
    line-height: 1;
}

.lp-hero__proof-label {
    font-size: 13px;
    color: #64748B;
    font-weight: 500;
    margin-top: 4px;
    display: block;
}

.lp-hero__proof-divider {
    width: 1px;
    height: 40px;
    background: #E2E8F0;
}

/* -----------------------------------------------
   7. About Section
   ----------------------------------------------- */
.lp-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.lp-about__img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

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

.lp-about__img-wrap::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 24px;
    border: 2px solid color-mix(in srgb, var(--brand-color, #3B82F6) 20%, transparent);
    z-index: -1;
}

.lp-about__content .lp-heading {
    text-align: left;
    margin-bottom: 24px;
}

.lp-about__content .lp-heading__title {
    font-size: 30px;
}

.lp-about__desc {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 28px;
}

/* -----------------------------------------------
   8. Features / Speciality Section
   ----------------------------------------------- */
.lp-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.lp-feature-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 28px;
    transition: box-shadow 0.25s ease, transform 0.2s ease, border-color 0.25s ease;
    cursor: default;
}

.lp-feature-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--brand-color, #3B82F6) 35%, transparent);
}

.lp-feature-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--brand-color, #3B82F6) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 24px;
    color: var(--brand-color, #3B82F6);
    transition: background 0.25s ease;
}

.lp-feature-card:hover .lp-feature-card__icon {
    background: color-mix(in srgb, var(--brand-color, #3B82F6) 18%, transparent);
}

.lp-feature-card__title {
    font-size: 17px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 10px;
}

.lp-feature-card__desc {
    font-size: 14px;
    color: #64748B;
    line-height: 1.7;
    margin: 0;
}

/* -----------------------------------------------
   9. Signals Section
   ----------------------------------------------- */
.lp-signals__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
}

.lp-signal-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.lp-signal-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
    transform: translateY(-2px);
}

.lp-signal-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid #F1F5F9;
    background: #F8FAFC;
}

.lp-signal-card__symbol {
    font-size: 15px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: 0.02em;
}

.lp-signal-card__badge {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.lp-signal-card__badge--buy {
    background: #DCFCE7;
    color: #16A34A;
}

.lp-signal-card__badge--sell {
    background: #FEE2E2;
    color: #DC2626;
}

.lp-signal-card__body {
    padding: 0;
}

.lp-signal-card__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    border-bottom: 1px solid #F1F5F9;
    font-size: 13px;
}

.lp-signal-card__row:last-child {
    border-bottom: none;
}

.lp-signal-card__row-label {
    color: #64748B;
    font-weight: 500;
}

.lp-signal-card__row-val {
    font-weight: 700;
    color: #0F172A;
}

.lp-signal-card__row-val--green {
    color: #16A34A;
}

.lp-signal-card__row-val--amber {
    color: #D97706;
}

.lp-signal-card__row-val--pending {
    color: #94A3B8;
    font-weight: 500;
}

.lp-signal-card__lock {
    padding: 24px 16px;
    text-align: center;
    background: #F8FAFC;
    border-bottom: 1px solid #F1F5F9;
}

.lp-signal-card__lock svg {
    width: 32px;
    height: 32px;
    color: #94A3B8;
}

.lp-signal-card__lock-text {
    font-size: 12px;
    color: #94A3B8;
    margin-top: 6px;
    display: block;
}

/* -----------------------------------------------
   10. Pricing Section
   ----------------------------------------------- */
.lp-pricing__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: start;
}

.lp-pricing-card {
    background: #ffffff;
    border: 1.5px solid #E2E8F0;
    border-radius: 20px;
    padding: 32px;
    transition: box-shadow 0.25s ease, transform 0.2s ease;
    position: relative;
}

.lp-pricing-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
    transform: translateY(-3px);
}

.lp-pricing-card--featured {
    border-color: var(--brand-color, #3B82F6);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand-color, #3B82F6) 10%, transparent);
}

.lp-pricing-card--featured::before {
    content: 'Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-color, #3B82F6);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 14px;
    border-radius: 20px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.lp-pricing-card__name {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748B;
    margin-bottom: 16px;
}

.lp-pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px;
}

.lp-pricing-card__currency {
    font-size: 20px;
    font-weight: 700;
    color: #334155;
}

.lp-pricing-card__amount {
    font-size: 48px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1;
}

.lp-pricing-card__period {
    font-size: 13px;
    color: #94A3B8;
    font-weight: 500;
}

.lp-pricing-card__free {
    font-size: 36px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 6px;
}

.lp-pricing-card__divider {
    height: 1px;
    background: #F1F5F9;
    margin: 24px 0;
}

.lp-pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #334155;
    font-weight: 500;
}

.lp-pricing-card__features li::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--brand-color, #3B82F6) 15%, transparent);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233B82F6' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 11px;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

/* -----------------------------------------------
   11. Counters / Stats Section
   ----------------------------------------------- */
.lp-stats {
    background: #0F172A;
    padding: 72px 0;
}

.lp-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.lp-stat-item {
    text-align: center;
    padding: 0 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-stat-item:last-child {
    border-right: none;
}

.lp-stat-item__num {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.lp-stat-item__label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    letter-spacing: 0.04em;
}

.lp-stat-item__accent {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--brand-color, #3B82F6);
    border-radius: 2px;
    margin: 12px auto 0;
}

/* -----------------------------------------------
   12. Trading Widget Section
   ----------------------------------------------- */
.lp-widget-wrap {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

/* -----------------------------------------------
   13. CTA Banner
   ----------------------------------------------- */
.lp-cta {
    background: var(--brand-color, #3B82F6);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.lp-cta::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.lp-cta::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.lp-cta__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.lp-cta__text h3 {
    font-size: 30px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.lp-cta__text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin: 0;
}

.lp-btn--white {
    background: #ffffff;
    color: var(--brand-color, #3B82F6);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.lp-btn--white:hover {
    background: #F8FAFC;
    color: var(--brand-color, #3B82F6);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.15);
}

/* -----------------------------------------------
   14. Testimonials
   ----------------------------------------------- */
.lp-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.lp-testimonial-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 28px;
    transition: box-shadow 0.2s ease;
}

.lp-testimonial-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.lp-testimonial-card__quote {
    font-size: 14px;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 20px;
    position: relative;
}

.lp-testimonial-card__quote::before {
    content: '\201C';
    font-size: 56px;
    color: var(--brand-color, #3B82F6);
    line-height: 0;
    vertical-align: -22px;
    margin-right: 4px;
    font-family: Georgia, serif;
    opacity: 0.35;
}

.lp-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #F1F5F9;
    padding-top: 16px;
    margin-top: 4px;
}

.lp-testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #E2E8F0;
}

.lp-testimonial-card__name {
    font-size: 14px;
    font-weight: 700;
    color: #0F172A;
    display: block;
    margin-bottom: 2px;
}

.lp-testimonial-card__role {
    font-size: 12px;
    color: #94A3B8;
    font-weight: 500;
}

/* -----------------------------------------------
   15. Subscribe / Email Section
   ----------------------------------------------- */
.lp-subscribe {
    background: #F8FAFC;
}

.lp-subscribe__inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.lp-subscribe__form {
    display: flex;
    gap: 10px;
    margin-top: 28px;
    border-radius: 12px;
    background: #ffffff;
    border: 1.5px solid #E2E8F0;
    padding: 6px 6px 6px 18px;
    align-items: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-subscribe__form:focus-within {
    border-color: var(--brand-color, #3B82F6);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-color, #3B82F6) 14%, transparent);
}

.lp-subscribe__input {
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    font-size: 14px;
    color: #0F172A;
    flex: 1;
    min-width: 0;
}

.lp-subscribe__input::placeholder {
    color: #94A3B8;
}

.lp-subscribe__alerts {
    margin-bottom: 16px;
}

/* -----------------------------------------------
   16. Blog Cards
   ----------------------------------------------- */
.lp-blog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.lp-blog-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.25s ease, transform 0.2s ease;
    display: flex;
    flex-direction: column;
}

.lp-blog-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
    transform: translateY(-3px);
}

.lp-blog-card__img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.lp-blog-card__body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lp-blog-card__meta {
    display: flex;
    gap: 14px;
    margin-bottom: 10px;
}

.lp-blog-card__meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #94A3B8;
    font-weight: 500;
}

.lp-blog-card__meta-item svg {
    width: 14px;
    height: 14px;
}

.lp-blog-card__title {
    font-size: 16px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.lp-blog-card__title:hover {
    color: var(--brand-color, #3B82F6);
}

.lp-blog-card__title a {
    color: inherit;
    text-decoration: none;
}

.lp-blog-card__title a:hover {
    color: var(--brand-color, #3B82F6);
}

.lp-blog-card__excerpt {
    font-size: 13px;
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
}

.lp-blog-card__link {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-color, #3B82F6);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s ease;
}

.lp-blog-card__link:hover {
    gap: 9px;
    color: var(--brand-color, #3B82F6);
}

/* -----------------------------------------------
   17. Footer
   ----------------------------------------------- */
.lp-footer {
    background: #0F172A;
    padding: 64px 0 0;
}

.lp-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.lp-footer__brand p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
}

.lp-footer__brand img {
    max-height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.lp-footer__col-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.lp-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-footer__links li a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.lp-footer__links li a:hover {
    color: #ffffff;
}

.lp-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
    margin-bottom: 10px;
}

.lp-footer__contact-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--brand-color, #3B82F6);
}

.lp-footer__social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.lp-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.65);
    transition: background 0.2s ease, color 0.2s ease;
    text-decoration: none;
    font-size: 14px;
}

.lp-footer__social a:hover {
    background: var(--brand-color, #3B82F6);
    color: #ffffff;
}

.lp-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.lp-footer__bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
    margin: 0;
}

.lp-footer__bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.lp-footer__bottom a:hover {
    color: #ffffff;
}

.lp-footer__bottom-links {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* -----------------------------------------------
   18. Scroll Animation
   ----------------------------------------------- */
.lp-fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.lp-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .lp-fade-up {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* -----------------------------------------------
   19. Responsive
   ----------------------------------------------- */
@media (max-width: 991px) {
    .lp-about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lp-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .lp-stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 32px;
    }

    .lp-stat-item:nth-child(2n) {
        border-right: none;
    }

    .lp-stat-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .lp-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .lp-navbar__nav {
        display: none;
    }

    .lp-navbar__toggle {
        display: flex;
    }

    .lp-navbar__nav.is-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #ffffff;
        border-bottom: 1px solid #E2E8F0;
        padding: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        gap: 4px;
        align-items: stretch;
        justify-content: flex-start;
    }

    .lp-navbar__nav.is-open li {
        width: 100%;
    }
}

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

    .lp-hero {
        padding: 120px 0 64px;
    }

    .lp-hero__proof {
        gap: 20px;
    }

    .lp-hero__proof-divider {
        display: none;
    }

    .lp-cta__inner {
        flex-direction: column;
        text-align: center;
    }

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

    .lp-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .lp-footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .lp-subscribe__form {
        flex-direction: column;
        padding: 12px;
        gap: 12px;
    }

    .lp-subscribe__input {
        width: 100%;
        padding: 4px 0;
    }
}

@media (max-width: 479px) {
    .lp-hero__cta {
        flex-direction: column;
        align-items: stretch;
    }

    .lp-btn {
        justify-content: center;
    }

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

    .lp-stat-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
}

/* -----------------------------------------------
   20. Override Legacy Bootstrap Panel on Landing
   ----------------------------------------------- */
.lp-page .panel {
    display: none; /* replaced by lp-signal-card */
}

/* -----------------------------------------------
   21. Hero Widget Layout — Responsive Breakpoints
   ----------------------------------------------- */

/* ≤ 1280px — tighten the grid a touch */
@media (max-width: 1280px) {
    .lp-hero--with-widgets .lp-hero__inner {
        padding: 0 32px;
        gap: 36px;
        grid-template-columns: 1fr 280px;
    }
}

/* ≤ 1024px — stack hero content above widgets */
@media (max-width: 1024px) {
    .lp-hero--with-widgets .lp-hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 24px;
        align-items: flex-start;
    }

    .lp-hero--with-widgets .lp-hero__content {
        align-items: center;
        text-align: center;
    }

    .lp-hero--with-widgets .lp-hero__badge,
    .lp-hero--with-widgets .lp-hero__title,
    .lp-hero--with-widgets .lp-hero__sub,
    .lp-hero--with-widgets .lp-hero__cta {
        text-align: center;
    }

    .lp-hero--with-widgets .lp-hero__cta {
        justify-content: center;
    }

    .lp-hero--with-widgets .lp-hero__proof {
        justify-content: center;
        width: 100%;
    }

    /* Widgets go side-by-side */
    .lp-hero__widgets {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }

    .lp-widget-panel {
        flex: 1 1 280px;
        min-width: 260px;
    }

    /* Market tabs center on tablet */
    .lp-market-tabs {
        justify-content: center;
    }
}

/* ≤ 768px — full mobile */
@media (max-width: 768px) {
    /* Navbar */
    .lp-navbar__nav,
    .lp-navbar__actions .lp-btn-ghost {
        display: none;
    }

    .lp-navbar__toggle {
        display: flex;
    }

    .lp-navbar__inner {
        padding: 0 16px;
    }

    /* Hero */
    .lp-hero {
        padding: 120px 0 64px;
    }

    .lp-hero--with-widgets .lp-hero__inner {
        padding: 0 16px;
        gap: 28px;
    }

    .lp-hero__title {
        font-size: clamp(28px, 8vw, 44px);
    }

    .lp-hero__sub {
        font-size: 15px;
    }

    /* Widgets stack vertically again at true mobile */
    .lp-hero__widgets {
        flex-direction: column;
    }

    .lp-widget-panel {
        width: 100%;
        flex: none;
    }

    /* Market tabs scroll horizontally */
    .lp-market-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 4px;
        justify-content: flex-start;
    }

    .lp-market-tabs::-webkit-scrollbar { display: none; }

    .lp-market-tab {
        flex-shrink: 0;
    }

    /* About */
    .lp-about__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Blog */
    .lp-blog__grid {
        grid-template-columns: 1fr;
    }

    /* Testimonials */
    .lp-testimonials__grid {
        grid-template-columns: 1fr;
    }

    /* Sections */
    .lp-section {
        padding: 64px 0;
    }

    .lp-heading__title {
        font-size: 26px;
    }

    .lp-heading {
        margin-bottom: 36px;
    }
}

/* ≤ 480px */
@media (max-width: 480px) {
    .lp-hero__proof {
        gap: 16px;
    }

    .lp-hero__proof-divider {
        display: none;
    }

    /* Footer bottom flex stack */
    .lp-footer__bottom > div {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
        gap: 12px !important;
    }

    .lp-subscribe__form {
        flex-direction: column;
        padding: 10px;
    }

    .lp-subscribe__input {
        width: 100%;
    }

}

/* -----------------------------------------------
   12. Agent-Centric Pricing (Bootstrap Refactor)
   ----------------------------------------------- */

/* -----------------------------------------------
   12. Agent-Centric Pricing (Original Cleaner Layout)
   ----------------------------------------------- */
.lp-pricing__grid--agents {
    display: grid;
    /* Increase min-width from 360 to 420 to prevent 3 columns from being too cramped in 1200px container */
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
    gap: 30px;
    margin-top: 50px;
}

.lp-pricing-card {
    background: #fff;
    border-radius: 24px;
    padding: 0;
    position: relative;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0,0,0,0.05);
    width: 100%;
    min-width: 0;
}

.lp-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.lp-pricing-card__header {
    height: 140px;
    border-radius: 24px 24px 0 0;
    position: relative;
    overflow: visible; 
    z-index: 1;
}

.lp-pricing-card__header-bg {
    position: absolute;
    inset: 0;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    background-color: color-mix(in srgb, var(--brand-color) 8%, transparent);
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.lp-pricing-card__header-bg--blurred::after {
    content: '';
    position: absolute;
    inset: -5%;
    width: 110%;
    height: 110%;
    background: inherit;
    filter: blur(8px) brightness(0.9);
}

.lp-pricing-card__profile-wrap {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    padding: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 20;
}

.lp-pricing-card__profile-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.lp-pricing-card__rating {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: #FACC15;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 21;
}

.lp-pricing-card__body {
    padding: 70px 25px 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-grow: 1;
}

.lp-pricing-card__title-area {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.lp-pricing-card__agent-name {
    font-size: 20px;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 4px;
    line-height: 1.3;
}

.lp-pricing-card__plan-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lp-pricing-card__content-grid {
    display: grid;
    grid-template-columns: 1fr 140px;
    gap: 20px;
}

/* Higher breakpoint to stack internal grid if card starts getting cramped */
@media (max-width: 1100px) {
    .lp-pricing-card__content-grid {
        grid-template-columns: 1fr;
    }
    .lp-pricing-card__sidebar {
        border-left: none !important;
        border-top: 1px solid rgba(0,0,0,0.05);
        padding-left: 0 !important;
        padding-top: 15px;
    }
}

.lp-pricing-card__main-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lp-pricing-card__sec-title {
    font-size: 11px;
    font-weight: 800;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.lp-pricing-card__desc {
    font-size: 13px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

@media (max-width: 380px) {
    .lp-pricing-card__metrics {
        grid-template-columns: repeat(2, 1fr);
    }
}

.lp-pricing-metric-box {
    background: #F8FAFC;
    border: 1px solid #F1F5F9;
    border-radius: 12px;
    padding: 10px;
    text-align: center;
}

.lp-pricing-metric-box__val {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #1E293B;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lp-pricing-metric-box__label {
    font-size: 9px;
    font-weight: 600;
    color: #94A3B8;
    text-transform: uppercase;
}

.lp-pricing-card__sidebar {
    border-left: 1px solid rgba(0,0,0,0.05);
    padding-left: 15px;
}

.lp-pricing-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-pricing-feature-list li {
    font-size: 11px;
    color: #475569;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lp-pricing-feature-list li svg {
    color: var(--brand-color);
    flex-shrink: 0;
}

.lp-pricing-card__price-row {
    margin-top: auto;
    padding-top: 25px;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lp-pricing-card__price-val {
    font-size: 24px;
    font-weight: 800;
    color: #1E293B;
}

.lp-pricing-card__cta-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.lp-pricing-card__cta {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.lp-pricing-card__cta--primary {
    background-color: var(--brand-color) !important;
    color: #fff !important;
    border: none;
    box-shadow: 0 4px 15px color-mix(in srgb, var(--brand-color) 25%, transparent);
}

.lp-pricing-card__cta--primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.lp-pricing-card__cta--outline {
    background-color: transparent !important;
    color: var(--brand-color) !important;
    border: 2px solid var(--brand-color) !important;
}

.lp-pricing-card__cta--outline:hover {
    background-color: color-mix(in srgb, var(--brand-color) 8%, transparent) !important;
    transform: translateY(-2px);
}

.lp-pricing-read-more {
    color: var(--brand-color);
    font-weight: 700;
    cursor: pointer;
    font-size: 12px;
    margin-left: 5px;
    border: none;
    background: none;
    padding: 0;
}

.lp-pricing-card__footer {
    padding: 20px 25px;
    background: #F8FAFC;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-radius: 0 0 24px 24px;
}

.lp-pricing-review-box {
    font-style: italic;
    font-size: 12px;
    color: #64748B;
    line-height: 1.5;
}

.lp-agent-profile-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: color-mix(in srgb, var(--brand-color) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-color);
    font-weight: 800;
    font-size: 32px;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsiveness */
@media (max-width: 640px) {
    .lp-pricing__grid--agents {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
    
    .lp-pricing-card__content-grid {
        grid-template-columns: 1fr;
    }
    
    .lp-pricing-card__sidebar {
        border-left: none;
        border-top: 1px solid rgba(0,0,0,0.05);
        padding-left: 0;
        padding-top: 15px;
    }
    
    .lp-pricing-card__cta-group {
        grid-template-columns: 1fr;
    }
}

/* Add specialized container for ultra-wide to match modern aesthetic if needed */
@media (min-width: 1600px) {
    .lp-container--wide {
        max-width: 1400px;
    }
}
