:root {
    --lp-navy:  #010e20;
    --lp-dark:  #021433;
    --lp-mid:   #003d85;
    --lp-blue:  #057ffa;
    --lp-blue2: #0568d4;
    --lp-light: #cfe5ff;
    --lp-faint: #e8f2ff;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #fff; color: #1e293b; }

/* ── NAV ─────────────────────────────────────────── */
.lp-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(1,14,32,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.lp-nav-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 0 1.5rem;
    height: 64px;
    display: flex; align-items: center; gap: 2rem;
}
.lp-logo img { display: block; height: 26px; }
.lp-nav-links { display: flex; gap: 0.25rem; flex: 1; }
.lp-nav-links a {
    padding: 0.45rem 0.85rem;
    color: rgba(255,255,255,0.7);
    text-decoration: none; font-size: 0.875rem; font-weight: 500;
    border-radius: 6px; transition: color 0.15s, background 0.15s;
}
.lp-nav-links a:hover { color: white; background: rgba(255,255,255,0.07); }
.lp-nav-actions { display: flex; gap: 0.75rem; align-items: center; }
.lp-btn-ghost {
    padding: 0.45rem 1rem; font-size: 0.85rem; font-weight: 500;
    color: rgba(255,255,255,0.8); text-decoration: none;
    border: 1px solid rgba(255,255,255,0.18); border-radius: 8px;
    transition: all 0.15s; white-space: nowrap;
}
.lp-btn-ghost:hover { color: white; border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.06); }
.lp-btn-primary {
    padding: 0.5rem 1.1rem; font-size: 0.875rem; font-weight: 600;
    color: white; text-decoration: none; white-space: nowrap;
    background: linear-gradient(135deg, var(--lp-blue) 0%, var(--lp-blue2) 100%);
    border-radius: 8px; border: none;
    transition: all 0.2s;
}
.lp-btn-primary:hover { color: white; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(5,127,250,0.45); }
.lp-hamburger {
    display: none; background: none; border: none; color: rgba(255,255,255,0.8);
    margin-left: auto; padding: 0.25rem;
}
@media (max-width: 767px) {
    .lp-nav-links, .lp-nav-actions { display: none; }
    .lp-hamburger { display: block; }
}
.lp-mobile-nav {
    padding: 1rem 1.5rem 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    display: flex; flex-direction: column; gap: 0.25rem;
}
.lp-mobile-nav a {
    padding: 0.6rem 0.75rem; color: rgba(255,255,255,0.75);
    text-decoration: none; font-size: 0.9rem; border-radius: 6px;
}
.lp-mobile-nav a:hover { background: rgba(255,255,255,0.07); color: white; }
.lp-mobile-nav .lp-btn-primary { margin-top: 0.5rem; text-align: center; display: block; }

/* ── HERO ────────────────────────────────────────── */
.lp-hero {
    min-height: 100vh;
    background: linear-gradient(145deg, var(--lp-mid) 0%, var(--lp-navy) 55%, var(--lp-dark) 100%);
    display: flex; align-items: center;
    padding: 100px 1.5rem 4rem;
    position: relative; overflow: hidden;
}
.lp-hero::before {
    content: ''; position: absolute;
    top: -20%; right: -10%; width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(5,127,250,0.18) 0%, transparent 65%);
    pointer-events: none;
}
.lp-hero::after {
    content: ''; position: absolute;
    bottom: -15%; left: -5%; width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(5,127,250,0.1) 0%, transparent 65%);
    pointer-events: none;
}
.lp-hero-inner {
    max-width: 1200px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
    position: relative; z-index: 1;
}
@media (max-width: 991px) {
    .lp-hero-inner { grid-template-columns: 1fr; gap: 3rem; }
    .lp-hero { min-height: auto; padding: 100px 1.5rem 3rem; }
}
.lp-eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px; padding: 0.35rem 1rem;
    font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.75);
    margin-bottom: 1.5rem; letter-spacing: 0.02em;
}
.lp-live-dot {
    width: 7px; height: 7px; border-radius: 50%; background: #22c55e;
    animation: lp-pulse 2s infinite;
}
@keyframes lp-pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }
.lp-h1 {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 900; line-height: 1.1; letter-spacing: -1.5px;
    color: white; margin-bottom: 1.25rem;
}
.lp-h1 .accent {
    background: linear-gradient(135deg, #6db8fd 0%, var(--lp-blue) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.lp-hero-sub {
    font-size: 1.05rem; color: rgba(255,255,255,0.6);
    line-height: 1.7; margin-bottom: 2.25rem; max-width: 480px;
}
.lp-ctas { display: flex; gap: 0.875rem; flex-wrap: wrap; }
.lp-cta-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.875rem 1.75rem; font-size: 1rem; font-weight: 700;
    color: white; text-decoration: none;
    background: linear-gradient(135deg, var(--lp-blue) 0%, var(--lp-blue2) 100%);
    border-radius: 12px; transition: all 0.2s;
}
.lp-cta-primary:hover { color: white; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(5,127,250,0.5); }
.lp-cta-ghost {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.875rem 1.75rem; font-size: 1rem; font-weight: 600;
    color: rgba(255,255,255,0.85); text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.22); border-radius: 12px;
    transition: all 0.2s;
}
.lp-cta-ghost:hover { color: white; border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.07); }
.lp-hero-note {
    margin-top: 1.25rem; margin-bottom: 0;
    font-size: 0.78rem; color: rgba(255,255,255,0.38);
}

/* Hero visual */
.lp-hero-visual { position: relative; }
@media (max-width: 991px) { .lp-hero-visual { display: none; } }
.lp-mock-window {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px; overflow: hidden;
    backdrop-filter: blur(8px);
}
.lp-mock-titlebar {
    background: rgba(255,255,255,0.06);
    padding: 0.75rem 1rem;
    display: flex; align-items: center; gap: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.lp-mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.lp-mock-dot-r { background: #ff5f57; }
.lp-mock-dot-y { background: #ffbd2e; }
.lp-mock-dot-g { background: #28c840; }
.lp-mock-body { padding: 1.5rem; }
.lp-mock-stat-row {
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.75rem; margin-bottom: 1.25rem;
}
.lp-mock-stat-card {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; padding: 1rem;
}
.lp-mock-stat-num { font-size: 1.4rem; font-weight: 800; color: white; line-height: 1; margin-bottom: 0.3rem; }
.lp-mock-stat-lbl { font-size: 0.7rem; color: rgba(255,255,255,0.45); }
.lp-mock-route-list { display: flex; flex-direction: column; gap: 0.6rem; }
.lp-mock-route-item {
    display: flex; align-items: center; gap: 0.75rem;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px; padding: 0.75rem 1rem;
}
.lp-mock-route-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.lp-mock-route-dot-g { background: #22c55e; }
.lp-mock-route-dot-b { background: var(--lp-blue); }
.lp-mock-route-dot-y { background: #f59e0b; }
.lp-mock-route-label { font-size: 0.82rem; color: rgba(255,255,255,0.8); font-weight: 500; flex: 1; }
.lp-mock-route-count {
    font-size: 0.75rem; font-weight: 700; color: white;
    background: rgba(5,127,250,0.3); border-radius: 6px; padding: 0.2rem 0.5rem;
}
/* Floating badge */
.lp-float-badge {
    position: absolute; bottom: -16px; right: -16px;
    background: white; border-radius: 14px;
    padding: 0.875rem 1.25rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    display: flex; align-items: center; gap: 0.75rem;
}
.lp-float-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: linear-gradient(135deg, var(--lp-blue), var(--lp-blue2));
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.1rem; flex-shrink: 0;
}
.lp-float-num { font-size: 1.3rem; font-weight: 800; color: #010e20; line-height: 1; }
.lp-float-lbl { font-size: 0.72rem; color: #64748b; }

/* ── STATS BAR ────────────────────────────────────── */
.lp-stats-bar {
    background: #0a1929;
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.lp-stats-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
    display: flex; align-items: stretch; overflow-x: auto;
}
.lp-stat-item {
    flex: 1; min-width: 160px; padding: 1.75rem 1rem;
    text-align: center; border-right: 1px solid rgba(255,255,255,0.07);
}
.lp-stat-item:last-child { border-right: none; }
.lp-stat-val { font-size: 1.5rem; font-weight: 800; color: white; }
.lp-stat-lbl { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 0.2rem; }

/* ── SECTION SHARED ───────────────────────────────── */
.lp-section { padding: 5rem 1.5rem; }
.lp-section-inner { max-width: 1200px; margin: 0 auto; }
.lp-section-label {
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.12em; color: var(--lp-blue); margin-bottom: 0.75rem;
}
.lp-section-h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800;
    letter-spacing: -0.5px; color: #010e20; margin-bottom: 0.75rem;
}
.lp-section-sub {
    font-size: 1rem; color: #64748b; line-height: 1.7; max-width: 540px;
    margin-bottom: 3rem;
}

/* ── FEATURES ─────────────────────────────────────── */
.lp-features { background: #f8faff; }
.lp-feat-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
@media (max-width: 991px) { .lp-feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px)  { .lp-feat-grid { grid-template-columns: 1fr; } }
.lp-feat-card {
    background: white; border-radius: 16px; padding: 1.75rem 1.5rem;
    border: 1.5px solid #f1f5f9;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.lp-feat-card:hover {
    transform: translateY(-4px); box-shadow: 0 16px 40px rgba(5,127,250,0.08);
    border-color: var(--lp-light);
}
.lp-feat-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--lp-faint); color: var(--lp-blue);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 1.1rem;
}
.lp-feat-title { font-size: 0.95rem; font-weight: 700; color: #1e293b; margin-bottom: 0.4rem; }
.lp-feat-desc { font-size: 0.82rem; color: #64748b; line-height: 1.6; margin: 0; }

/* ── SPLIT SECTION ────────────────────────────────── */
.lp-split { background: white; }
.lp-split-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
@media (max-width: 767px) { .lp-split-inner { grid-template-columns: 1fr; gap: 2rem; } }
.lp-split.reverse .lp-split-inner { direction: rtl; }
.lp-split.reverse .lp-split-inner > * { direction: ltr; }
.lp-split-visual {
    background: linear-gradient(145deg, var(--lp-mid) 0%, var(--lp-navy) 100%);
    border-radius: 24px; padding: 2.5rem; min-height: 320px;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.lp-split-visual::before {
    content: ''; position: absolute; top: -30%; right: -20%; width: 300px; height: 300px;
    border-radius: 50%; background: radial-gradient(circle, rgba(5,127,250,0.25) 0%, transparent 70%);
}
.lp-split-cards { display: flex; flex-direction: column; gap: 0.875rem; width: 100%; position: relative; z-index: 1; }
.lp-split-card {
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; padding: 1rem 1.25rem;
    display: flex; align-items: center; gap: 1rem;
}
.lp-split-card-icon { font-size: 1.25rem; color: var(--lp-blue); flex-shrink: 0; }
.lp-split-card-text { font-size: 0.85rem; color: rgba(255,255,255,0.85); font-weight: 500; }
.lp-split-card-sub  { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.lp-split-tag {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: var(--lp-faint); color: var(--lp-blue2);
    border-radius: 50px; padding: 0.3rem 0.75rem;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    margin-bottom: 0.875rem;
}
.lp-check-list { list-style: none; padding: 0; margin: 1.5rem 0 2rem; }
.lp-check-list li {
    display: flex; gap: 0.75rem; align-items: flex-start;
    font-size: 0.9rem; color: #334155; padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
}
.lp-check-list li:last-child { border-bottom: none; }
.lp-check-list .chk { color: #22c55e; font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* ── HOW IT WORKS ─────────────────────────────────── */
.lp-how { background: linear-gradient(180deg, var(--lp-navy) 0%, var(--lp-dark) 100%); }
.lp-how .lp-section-h2 { color: white; }
.lp-how .lp-section-sub { color: rgba(255,255,255,0.5); }
.lp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 1rem; }
@media (max-width: 767px) { .lp-steps { grid-template-columns: 1fr; gap: 1.5rem; } }
.lp-step {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px; padding: 2rem 1.75rem;
}
.lp-step-num {
    width: 42px; height: 42px; border-radius: 12px;
    background: linear-gradient(135deg, var(--lp-blue), var(--lp-blue2));
    color: white; font-size: 1rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
}
.lp-step-title { font-size: 1.05rem; font-weight: 700; color: white; margin-bottom: 0.6rem; }
.lp-step-desc  { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin: 0; }

/* ── PRICING TEASER ───────────────────────────────── */
.lp-pricing { background: #f8faff; }
.lp-pricing-card {
    background: white; border-radius: 24px;
    padding: 3rem; box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
@media (max-width: 767px) { .lp-pricing-card { grid-template-columns: 1fr; gap: 2rem; } }
.lp-price-big {
    display: flex; align-items: baseline; gap: 0.35rem; margin: 1rem 0 0.5rem;
}
.lp-price-num { font-size: 3.5rem; font-weight: 900; color: #010e20; line-height: 1; letter-spacing: -2px; }
.lp-price-pct { font-size: 2rem; font-weight: 800; color: var(--lp-blue); line-height: 1; }
.lp-price-period { font-size: 0.85rem; color: #94a3b8; align-self: flex-end; padding-bottom: 0.5rem; }
.lp-pricing-feats { list-style: none; padding: 0; margin: 1.5rem 0 2rem; }
.lp-pricing-feats li {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.875rem; color: #374151; padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
}
.lp-pricing-feats li:last-child { border-bottom: none; }
.lp-pricing-feats .chk { color: #22c55e; }
.lp-pricing-right { text-align: center; }
.lp-pricing-badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: #f0fdf4; border: 1.5px solid #86efac;
    border-radius: 50px; padding: 0.35rem 1rem;
    font-size: 0.78rem; font-weight: 600; color: #16a34a;
    margin-bottom: 1.5rem;
}
.lp-pricing-big-num {
    font-size: 5rem; font-weight: 900; color: var(--lp-blue);
    line-height: 1; letter-spacing: -3px; margin-bottom: 0.25rem;
}
.lp-pricing-big-lbl { font-size: 0.9rem; color: #64748b; margin-bottom: 1.5rem; }
.lp-divider { height: 1px; background: #f1f5f9; margin: 1.5rem 0; }

/* ── FINAL CTA ────────────────────────────────────── */
.lp-cta-section {
    background: linear-gradient(145deg, var(--lp-mid) 0%, var(--lp-navy) 60%, var(--lp-dark) 100%);
    position: relative; overflow: hidden;
}
.lp-cta-section::before {
    content: ''; position: absolute; top: -40%; right: -10%; width: 700px; height: 700px;
    border-radius: 50%; background: radial-gradient(circle, rgba(5,127,250,0.15) 0%, transparent 65%);
}
.lp-cta-inner {
    max-width: 700px; margin: 0 auto; text-align: center;
    position: relative; z-index: 1;
}
.lp-cta-h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 900; color: white; letter-spacing: -0.5px; margin-bottom: 1rem; }
.lp-cta-sub { font-size: 1rem; color: rgba(255,255,255,0.55); margin-bottom: 2rem; line-height: 1.7; }
.lp-cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ───────────────────────────────────────── */
.lp-footer {
    background: #040e1c;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 3rem 1.5rem 2rem;
}
.lp-footer-inner { max-width: 1200px; margin: 0 auto; }
.lp-footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
    padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 2rem;
}
@media (max-width: 767px) { .lp-footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 575px)  { .lp-footer-top { grid-template-columns: 1fr; } }
.lp-footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-top: 0.75rem; line-height: 1.7; max-width: 260px; }
.lp-footer-col-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.45); margin-bottom: 1rem; }
.lp-footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.lp-footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.15s; }
.lp-footer-links a:hover { color: rgba(255,255,255,0.9); }
.lp-footer-bottom {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.lp-footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.lp-footer-legal { display: flex; gap: 1.25rem; }
.lp-footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.35); text-decoration: none; }
.lp-footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* AI blink cursor */
@keyframes lp-blink { 0%,100%{opacity:1} 50%{opacity:0} }
.lp-cursor { display: inline-block; width: 2px; height: 1em; background: #057ffa; vertical-align: middle; animation: lp-blink 1s step-end infinite; }

/* ── PRICING (plan-cards context override) ────────────────── */
.lp-pricing { background: #f8faff; }
.lp-pricing .plan-card { background: #fff; }

/* ── COUNTRIES ────────────────────────────────────────────── */
.lp-countries { background: white; }
.lp-gw-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
    margin-bottom: 2rem;
}
@media (max-width: 767px) { .lp-gw-grid { grid-template-columns: 1fr; } }
.lp-gw-card {
    border: 1.5px solid #e2e8f0; border-radius: 20px; padding: 1.75rem;
    display: flex; flex-direction: column; gap: 1.25rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.lp-gw-card:hover { border-color: var(--lp-light); box-shadow: 0 8px 30px rgba(5,127,250,0.07); }
.lp-gw-header { display: flex; align-items: center; gap: 1rem; }
.lp-gw-logo {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 800; color: white; flex-shrink: 0;
    letter-spacing: -0.5px;
}
.lp-gw-logo-pf { background: linear-gradient(135deg, #005cff, #0040cc); }
.lp-gw-logo-ps { background: linear-gradient(135deg, #00c3f7, #0096c7); }
.lp-gw-logo-st { background: linear-gradient(135deg, #635bff, #4a44e0); }
.lp-gw-name { font-size: 1rem; font-weight: 700; color: #010e20; }
.lp-gw-tagline { font-size: 0.78rem; color: #64748b; }
.lp-countries-list { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.lp-country-tag {
    display: inline-flex; align-items: center; gap: 0.3rem;
    background: #f0f5ff; border: 1px solid #cfe5ff;
    border-radius: 20px; padding: 0.25rem 0.65rem;
    font-size: 0.78rem; font-weight: 500; color: #334155;
    white-space: nowrap;
}
.lp-gw-methods { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.lp-method-tag {
    background: #f8faff; border: 1px solid #e2e8f0;
    border-radius: 6px; padding: 0.2rem 0.55rem;
    font-size: 0.72rem; font-weight: 600; color: #64748b;
}
.lp-country-tag-more {
    background: #f1f5f9; border-color: #e2e8f0;
    color: #94a3b8; font-style: italic;
}
.lp-countries-note {
    text-align: center; font-size: 0.82rem; color: #94a3b8;
    padding: 1rem; background: #f8faff; border-radius: 10px;
    border: 1px solid #e2e8f0;
}

/* ── BOOKING MODELS ───────────────────────────────────── */
.lp-models { background: #f8faff; }
.lp-model-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.lp-model-card {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.lp-model-card:hover {
    border-color: #0568d4;
    box-shadow: 0 8px 32px rgba(5,104,212,0.1);
}
.lp-model-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
}
.lp-model-icon-sched { background: linear-gradient(135deg, #0568d4, #0a3fa8); color: #fff; }
.lp-model-icon-xfer  { background: linear-gradient(135deg, #7c3aed, #5b21b6); color: #fff; }
.lp-model-name {
    font-size: 1.2rem; font-weight: 700; color: #0a1628;
}
.lp-model-tagline {
    font-size: 0.88rem; color: #64748b; line-height: 1.6;
    margin-top: -0.25rem;
}
.lp-model-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 0.5rem;
}
.lp-model-list li {
    display: flex; align-items: flex-start; gap: 0.6rem;
    font-size: 0.88rem; color: #475569; line-height: 1.5;
}
.lp-model-list li i { color: #0568d4; flex-shrink: 0; margin-top: 0.1rem; }
.lp-model-list li i.purple { color: #7c3aed; }
.lp-model-badge {
    display: inline-block;
    font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; padding: 0.2rem 0.6rem; border-radius: 20px;
    margin-bottom: 0.25rem;
}
.lp-model-badge-sched { background: #dbeafe; color: #1d4ed8; }
.lp-model-badge-xfer  { background: #ede9fe; color: #6d28d9; }
@media (max-width: 700px) {
    .lp-model-grid { grid-template-columns: 1fr; }
}
