/* ============================================
   MedSeatPilot — Standalone CSS
   ============================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: #1e293b; background: #fff; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* Navbar */
.lp-nav { background: #fff; border-bottom: 1px solid #e9ecef; position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: 64px; display: flex; align-items: center; }
.lp-nav__inner { display: flex; align-items: center; justify-content: space-between; }
.lp-nav__logo { font-size: 1.2rem; font-weight: 800; color: #4f46e5; display: flex; align-items: center; gap: 8px; }
.lp-nav__logo span { font-weight: 400; color: #94a3b8; font-size: 0.9rem; }
.lp-nav__links { display: flex; gap: 4px; }
.lp-nav__links a { padding: 8px 14px; border-radius: 8px; font-size: 0.85rem; font-weight: 500; color: #475569; transition: all 0.15s; }
.lp-nav__links a:hover, .lp-nav__links a.active { color: #4f46e5; background: #eef2ff; }
.lp-nav__toggle { background: none; border: none; font-size: 1.2rem; color: #475569; cursor: pointer; }
.lp-mobile-menu { display: none; position: fixed; top: 64px; left: 0; right: 0; background: #fff; border-bottom: 1px solid #e9ecef; padding: 12px 20px; z-index: 999; flex-direction: column; gap: 4px; box-shadow: 0 8px 20px rgba(0,0,0,0.06); }
.lp-mobile-menu.open { display: flex; }
.lp-mobile-menu a { padding: 10px 14px; border-radius: 8px; font-size: 0.9rem; font-weight: 500; color: #334155; }
.lp-mobile-menu a:hover { background: #f1f5f9; }

/* Hero */
.lp-hero { padding: 120px 0 60px; background: linear-gradient(135deg, #1e1b4b, #312e81, #4f46e5); color: #fff; text-align: center; position: relative; overflow: hidden; }
.lp-hero::after { content: ''; position: absolute; top: -60px; right: -60px; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,0.03); }
.lp-hero h1 { font-size: 2.4rem; font-weight: 800; margin-bottom: 12px; line-height: 1.2; }
.lp-hero h1 span { background: linear-gradient(90deg, #a5b4fc, #c4b5fd); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.lp-hero p { font-size: 1rem; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto 24px; line-height: 1.6; }
.lp-hero__btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; background: #fff; color: #4f46e5; border-radius: 999px; font-weight: 700; font-size: 0.9rem; transition: all 0.2s; }
.lp-hero__btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); color: #4f46e5; }
.lp-hero__btn--outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.3); }
.lp-hero__btn--outline:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* Sections */
.lp-section { padding: 60px 0; }
.lp-section--alt { background: #f8fafc; }
.lp-section__header { text-align: center; margin-bottom: 36px; }
.lp-section__badge { display: inline-block; padding: 4px 12px; background: #eef2ff; color: #4f46e5; border-radius: 999px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px; }
.lp-section__title { font-size: 1.6rem; font-weight: 800; margin-bottom: 6px; }
.lp-section__sub { font-size: 0.9rem; color: #64748b; max-width: 520px; margin: 0 auto; }

/* Feature cards */
.lp-feature { background: #fff; border: 1px solid #e9ecef; border-radius: 14px; padding: 24px; text-align: center; transition: all 0.25s; height: 100%; }
.lp-feature:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(79,70,229,0.08); border-color: #c7d2fe; }
.lp-feature__icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin: 0 auto 14px; }
.lp-feature h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.lp-feature p { font-size: 0.82rem; color: #64748b; line-height: 1.5; margin: 0; }

/* Pricing */
.lp-price { background: #fff; border: 1px solid #e9ecef; border-radius: 16px; padding: 28px 24px; text-align: center; transition: all 0.25s; height: 100%; display: flex; flex-direction: column; }
.lp-price--featured { border: 2px solid #4f46e5; position: relative; }
.lp-price--featured::before { content: 'Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #4f46e5; color: #fff; padding: 3px 14px; border-radius: 999px; font-size: 0.68rem; font-weight: 700; }
.lp-price h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.lp-price__amount { font-size: 2rem; font-weight: 800; color: #4f46e5; margin-bottom: 16px; }
.lp-price__amount small { font-size: 0.85rem; color: #94a3b8; font-weight: 400; }
.lp-price ul { text-align: left; margin-bottom: 20px; flex: 1; }
.lp-price ul li { padding: 6px 0; font-size: 0.82rem; color: #475569; display: flex; align-items: center; gap: 8px; }
.lp-price ul li i { color: #10b981; font-size: 0.75rem; }
.lp-price ul li.disabled { color: #cbd5e1; text-decoration: line-through; }
.lp-price ul li.disabled i { color: #cbd5e1; }
.lp-price__btn { display: block; padding: 12px; border-radius: 10px; font-weight: 700; font-size: 0.85rem; text-align: center; transition: all 0.2s; border: none; width: 100%; cursor: pointer; }
.lp-price__btn--primary { background: #4f46e5; color: #fff; }
.lp-price__btn--primary:hover { background: #4338ca; }
.lp-price__btn--outline { background: #fff; color: #4f46e5; border: 1.5px solid #4f46e5; }
.lp-price__btn--outline:hover { background: #eef2ff; }

/* About */
.lp-about__img { border-radius: 16px; overflow: hidden; }
.lp-about__img img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }

/* Stats banner */
.lp-stats { background: linear-gradient(135deg, #4f46e5, #7c3aed); border-radius: 16px; padding: 32px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; color: #fff; text-align: center; }
.lp-stats__item { padding: 12px; position: relative; }
.lp-stats__item::after { content: ''; position: absolute; top: 20%; right: 0; width: 1px; height: 60%; background: rgba(255,255,255,0.15); }
.lp-stats__item:last-child::after { display: none; }
.lp-stats__val { font-size: 1.6rem; font-weight: 800; }
.lp-stats__lbl { font-size: 0.72rem; color: rgba(255,255,255,0.7); }

/* Predictor form */
.lp-predictor { background: #fff; border: 1px solid #e9ecef; border-radius: 16px; padding: 28px; }
.lp-predictor h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; }
.lp-predictor label { font-size: 0.78rem; font-weight: 600; color: #334155; margin-bottom: 4px; display: block; }
.lp-predictor input, .lp-predictor select { width: 100%; padding: 10px 14px; border: 1.5px solid #e2e8f0; border-radius: 10px; font-size: 0.88rem; color: #1e293b; outline: none; transition: border-color 0.2s; background: #fff; }
.lp-predictor input:focus, .lp-predictor select:focus { border-color: #4f46e5; box-shadow: 0 0 0 3px rgba(79,70,229,0.08); }
.lp-predictor__btn { display: block; width: 100%; padding: 12px; background: #4f46e5; color: #fff; border: none; border-radius: 10px; font-weight: 700; font-size: 0.9rem; cursor: pointer; transition: all 0.2s; }
.lp-predictor__btn:hover { background: #4338ca; }

/* Result cards */
.lp-result-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 24px; }
.lp-result-card { background: #fff; border: 1px solid #e9ecef; border-radius: 12px; padding: 16px; text-align: center; }
.lp-result-card__label { font-size: 0.68rem; font-weight: 600; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.03em; display: block; margin-bottom: 4px; }
.lp-result-card__value { font-size: 1.3rem; font-weight: 800; }
.lp-result-card--primary .lp-result-card__value { color: #4f46e5; }
.lp-result-card--success .lp-result-card__value { color: #10b981; }
.lp-result-card--warning .lp-result-card__value { color: #f59e0b; }
.lp-result-card--purple .lp-result-card__value { color: #8b5cf6; }

/* College results table */
.lp-college-tabs { display: flex; gap: 4px; margin-bottom: 16px; }
.lp-college-tab { padding: 8px 18px; border: 1.5px solid #e2e8f0; border-radius: 8px; background: #fff; color: #475569; font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: all 0.15s; }
.lp-college-tab:hover { border-color: #c7d2fe; }
.lp-college-tab.active { color: #fff; }
.lp-college-tab.safe.active { background: #10b981; border-color: #10b981; }
.lp-college-tab.moderate.active { background: #f59e0b; border-color: #f59e0b; }
.lp-college-tab.dream.active { background: #ef4444; border-color: #ef4444; }

.lp-college-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid #e9ecef; border-radius: 12px; overflow: hidden; }
.lp-college-table th { background: #f8fafc; padding: 10px 14px; text-align: left; font-size: 0.72rem; font-weight: 600; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.03em; border-bottom: 1px solid #e9ecef; }
.lp-college-table td { padding: 12px 14px; border-bottom: 1px solid #f1f5f9; font-size: 0.85rem; }
.lp-college-table tr:last-child td { border-bottom: none; }
.lp-college-table tr:hover td { background: #fafbfc; }
.lp-college-table .name { font-weight: 600; color: #1e293b; }
.lp-college-table .state { color: #64748b; }
.lp-chance { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 0.72rem; font-weight: 700; }
.lp-chance--high { background: #ecfdf5; color: #059669; }
.lp-chance--medium { background: #fffbeb; color: #d97706; }
.lp-chance--low { background: #fef2f2; color: #dc2626; }

/* Contact */
.lp-contact { background: #fff; border: 1px solid #e9ecef; border-radius: 16px; padding: 28px; }
.lp-contact textarea { width: 100%; padding: 10px 14px; border: 1.5px solid #e2e8f0; border-radius: 10px; font-size: 0.88rem; resize: vertical; min-height: 100px; outline: none; font-family: inherit; }
.lp-contact textarea:focus { border-color: #4f46e5; }
.lp-contact-info { display: flex; flex-direction: column; gap: 16px; }
.lp-contact-info__item { display: flex; align-items: flex-start; gap: 12px; }
.lp-contact-info__icon { width: 40px; height: 40px; border-radius: 10px; background: #eef2ff; color: #4f46e5; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* Footer */
.lp-footer { background: #0f172a; color: #cbd5e1; padding: 48px 0 20px; }
.lp-footer h4 { color: #fff; font-size: 1.1rem; margin-bottom: 12px; }
.lp-footer h5 { color: #fff; font-size: 0.88rem; margin-bottom: 10px; }
.lp-footer p { font-size: 0.82rem; line-height: 1.6; }
.lp-footer ul li { padding: 4px 0; font-size: 0.82rem; }
.lp-footer ul li a { color: #94a3b8; transition: color 0.15s; }
.lp-footer ul li a:hover { color: #fff; }
.lp-footer ul li i { width: 16px; margin-right: 6px; font-size: 0.75rem; }
.lp-footer__bottom { border-top: 1px solid rgba(255,255,255,0.06); margin-top: 32px; padding-top: 16px; text-align: center; font-size: 0.78rem; color: #64748b; }

/* Responsive */
@media (max-width: 767px) {
    .lp-hero { padding: 100px 0 40px; }
    .lp-hero h1 { font-size: 1.6rem; }
    .lp-stats { grid-template-columns: repeat(2, 1fr); }
    .lp-result-cards { grid-template-columns: repeat(2, 1fr); }
    .lp-college-table { font-size: 0.78rem; }
    .lp-college-table th, .lp-college-table td { padding: 8px 10px; }
    .lp-section__title { font-size: 1.3rem; }
}
