/* RankForge Digital — shared landing page styles */

:root {
    --navy: #060c1a;
    --navy-mid: #0c1425;
    --navy-light: #131d35;
    --orange: #f59e0b;
    --white: #ffffff;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--navy); color: var(--white);
    line-height: 1.65; font-size: 16px;
}

a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Minimal top nav */
.lp-nav {
    background: var(--navy-mid);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 18px 24px;
}
.lp-nav-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    flex-wrap: wrap;
}
.lp-logo { font-size: 1.15rem; font-weight: 800; color: var(--white); }
.lp-logo span { color: var(--orange); }
.lp-nav-right { display: flex; align-items: center; gap: 20px; font-size: 0.9rem; }
.lp-nav-right a { color: var(--gray-300); }
.lp-nav-right a:hover { color: var(--orange); text-decoration: none; }
.lp-nav-phone { color: var(--white) !important; font-weight: 600; }

/* Hero */
.lp-hero { padding: 80px 24px 60px; text-align: center; }
.lp-hero-inner { max-width: 760px; margin: 0 auto; }
.lp-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
    line-height: 1.15; letter-spacing: -1px; margin-bottom: 16px;
}
.lp-hero h1 .highlight { color: var(--orange); }
.lp-hero-sub {
    font-size: 1.1rem; color: var(--gray-300);
    max-width: 600px; margin: 0 auto 32px;
}
.lp-cta-btn {
    display: inline-block; background: var(--orange); color: var(--navy);
    padding: 16px 36px; border-radius: 12px;
    font-weight: 700; font-size: 1rem;
    transition: transform 0.2s;
}
.lp-cta-btn:hover { transform: translateY(-2px); text-decoration: none; }

/* Content section */
.lp-section {
    padding: 50px 24px;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.lp-section-inner { max-width: 760px; margin: 0 auto; }
.lp-section h2 {
    font-size: 1.55rem; font-weight: 800; color: var(--white);
    margin-bottom: 16px; letter-spacing: -0.5px;
}
.lp-section p { color: var(--gray-300); margin-bottom: 16px; line-height: 1.75; }
.lp-section p:last-child { margin-bottom: 0; }
.lp-section ul { list-style: none; padding: 0; margin-bottom: 16px; }
.lp-section ul li {
    padding: 6px 0 6px 26px; color: var(--gray-300); position: relative;
}
.lp-section ul li::before {
    content: '✓'; position: absolute; left: 0;
    color: var(--orange); font-weight: 900;
}

/* Bottom CTA */
.lp-cta {
    background: var(--navy-mid); text-align: center;
    padding: 60px 24px; border-top: 2px solid var(--orange);
}
.lp-cta h2 { font-size: 1.8rem; font-weight: 900; color: var(--white); margin-bottom: 12px; }
.lp-cta p {
    color: var(--gray-400); font-size: 1rem; margin-bottom: 28px;
    max-width: 480px; margin-left: auto; margin-right: auto;
}

/* Footer */
.lp-footer {
    background: var(--navy-mid); padding: 40px 24px 30px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.lp-footer-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.lp-footer-heading {
    font-size: 0.85rem; font-weight: 700; color: var(--gray-400);
    letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px;
}
.lp-footer-areas {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px;
    margin-bottom: 28px; font-size: 0.95rem;
}
.lp-footer-areas a { color: var(--gray-300); }
.lp-footer-areas a:hover { color: var(--orange); text-decoration: none; }
.lp-footer-bottom {
    color: var(--gray-500); font-size: 0.82rem;
    padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.06);
}
.lp-footer-bottom a { color: var(--gray-500); }
.lp-footer-bottom a:hover { color: var(--gray-300); text-decoration: none; }

/* Cookie banner — identical to homepage visual */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--navy-mid); border-top: 2px solid var(--orange);
    padding: 20px 24px; z-index: 998; display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.cookie-banner-msg {
    color: var(--gray-300); font-size: 0.88rem; line-height: 1.5;
    margin: 0; flex: 1;
}
.cookie-banner-msg a { color: var(--orange); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn {
    font: inherit; cursor: pointer; padding: 10px 20px;
    border-radius: 8px; font-weight: 600; font-size: 0.9rem;
    transition: all 0.2s; white-space: nowrap;
}
.cookie-btn-reject {
    background: transparent; border: 1px solid rgba(255,255,255,0.2);
    color: var(--gray-300);
}
.cookie-btn-reject:hover { border-color: rgba(255,255,255,0.4); color: var(--white); }
.cookie-btn-accept { background: var(--orange); border: 1px solid var(--orange); color: var(--navy); }
.cookie-btn-accept:hover { background: #fbbf24; border-color: #fbbf24; }

/* Mobile */
@media (max-width: 768px) {
    .lp-nav-inner { flex-direction: column; text-align: center; gap: 12px; }
    .lp-hero { padding: 60px 20px 40px; }
    .lp-section, .lp-cta { padding: 40px 20px; }
    .cookie-banner-inner { flex-direction: column; gap: 16px; align-items: stretch; }
    .cookie-banner-msg { text-align: center; }
    .cookie-banner-actions { flex-direction: column; }
    .cookie-btn { width: 100%; }
}
