/* GetFSBOLeads.com - Shared Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
    --navy: #0F172A;
    --navy-light: #1E293B;
    --blue: #3B82F6;
    --blue-dark: #2563EB;
    --blue-light: #60A5FA;
    --blue-50: #EFF6FF;
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --gray-50: #F9FAFB;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --green: #10B981;
    --green-light: #D1FAE5;
    --orange: #F59E0B;
    --red: #EF4444;
    --purple: #8B5CF6;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

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

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }

img { max-width: 100%; height: auto; }

/* ===== HEADER / NAV ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    max-width: 1320px;
    margin: 0 auto;
    height: 72px;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-item > a, .nav-item > button {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-item > a:hover, .nav-item > button:hover,
.nav-item:hover > a, .nav-item:hover > button {
    color: var(--blue);
}

.nav-item > button svg {
    width: 12px;
    height: 12px;
    transition: transform 0.2s;
}

.nav-item:hover > button svg {
    transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 8px;
    box-shadow: var(--shadow-lg);
    z-index: 100;
}

.nav-item:hover .nav-dropdown {
    display: block;
}

.nav-dropdown a {
    display: block;
    padding: 10px 14px;
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.15s, color 0.15s;
}

.nav-dropdown a:hover {
    background: var(--blue-50);
    color: var(--blue);
}

.nav-dropdown .dd-desc {
    display: block;
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 400;
    margin-top: 2px;
}

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

.nav-phone {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    white-space: nowrap;
}

.nav-phone:hover { color: var(--blue); }

/* Mobile hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    margin: 6px 0;
    transition: all 0.3s;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    font-family: inherit;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    text-decoration: none;
    gap: 8px;
    white-space: nowrap;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--blue-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--gray-200);
}
.btn-secondary:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.btn-outline {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
}
.btn-outline:hover {
    background: var(--blue);
    color: var(--white);
}

.btn-dark {
    background: var(--navy);
    color: var(--white);
}
.btn-dark:hover {
    background: var(--navy-light);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
}
.btn-white:hover {
    background: var(--gray-100);
    color: var(--navy);
    transform: translateY(-1px);
}

.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 8px 20px; font-size: 13px; }

/* ===== HERO PATTERNS ===== */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy) 0%, #1a2744 50%, #0c1929 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container { position: relative; z-index: 1; }

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--off-white);
}

.section-dark {
    background: var(--navy);
    color: var(--white);
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.section-dark .section-subtitle {
    color: rgba(255,255,255,0.7);
}

/* ===== CARDS ===== */
.card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.2s;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

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

/* Grid layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ===== PRICING TABLE ===== */
.pricing-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--blue);
    transform: scale(1.04);
}

.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: var(--white);
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-tier {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 56px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 4px;
}

.pricing-price span { font-size: 20px; font-weight: 500; color: var(--gray-500); }

.pricing-desc {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: var(--navy);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 32px;
}

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

.footer-brand p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.7;
}

.footer-brand img {
    height: 36px;
}

.site-footer h4 {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.site-footer ul {
    list-style: none;
}

.site-footer ul li {
    margin-bottom: 10px;
}

.site-footer ul a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: color 0.2s;
}

.site-footer ul a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
    margin-left: 24px;
}

/* ===== BADGES / TAGS ===== */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge-blue { background: var(--blue-50); color: var(--blue); }
.badge-green { background: var(--green-light); color: #065F46; }

/* ===== STATS ===== */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 64px;
    padding: 48px 0;
}

.stat-item { text-align: center; }
.stat-value {
    font-size: 40px;
    font-weight: 800;
    color: var(--blue);
}
.stat-label {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 4px;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 32px;
}

.testimonial-stars { color: var(--orange); font-size: 18px; margin-bottom: 12px; }

.testimonial-text {
    font-size: 15px;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    font-size: 14px;
    color: var(--navy);
}

.testimonial-role {
    font-size: 13px;
    color: var(--gray-500);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
    padding: 64px 0;
    text-align: center;
    color: var(--white);
}

.cta-banner h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .grid-3 { grid-template-columns: 1fr 1fr; }
    .grid-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .nav-toggle { display: block; }
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--gray-200);
        padding: 16px;
        box-shadow: var(--shadow-lg);
    }
    .nav-menu.active .nav-dropdown {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 16px;
        display: none;
    }
    .nav-item.open .nav-dropdown { display: block; }
    .nav-right { gap: 8px; }
    .nav-phone { display: none; }

    .hero { padding: 48px 0; }
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 17px; }

    .section { padding: 48px 0; }
    .section-title { font-size: 28px; }

    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .stats-row { flex-direction: column; gap: 24px; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-4px); }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
}

/* ===== STEPS ===== */
.steps { counter-reset: step; }
.step-item {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
    align-items: flex-start;
}
.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    flex-shrink: 0;
}
.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.step-content p {
    color: var(--gray-600);
    font-size: 15px;
}

/* ===== FAQ ===== */
.faq-item {
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 0;
}
.faq-q {
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-q::after {
    content: '+';
    font-size: 24px;
    color: var(--gray-400);
    transition: transform 0.2s;
}
.faq-item.open .faq-q::after {
    content: '−';
}
.faq-a {
    display: none;
    padding-top: 12px;
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.7;
}
.faq-item.open .faq-a {
    display: block;
}

/* ===== PAGE HEADER (non-home pages) ===== */
.page-header {
    background: var(--navy);
    color: var(--white);
    padding: 56px 0;
    text-align: center;
}
.page-header h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 12px;
}
.page-header p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== LOGIN ===== */
.login-container {
    max-width: 440px;
    margin: 0 auto;
    padding: 80px 24px;
}
.login-box {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

/* ===== BLOG ===== */
.blog-card {
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    transition: all 0.2s;
}
.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}
.blog-card-img {
    height: 200px;
    background: linear-gradient(135deg, var(--blue-50), var(--gray-100));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}
.blog-card-body {
    padding: 24px;
}
.blog-card-body h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.blog-card-body p {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 12px;
}
.blog-meta {
    font-size: 13px;
    color: var(--gray-400);
}

/* Comparison check/x */
.check { color: var(--green); }
.cross { color: var(--gray-300); }

/* Success message */
.form-success {
    display: none;
    background: var(--green-light);
    border: 1px solid var(--green);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    color: #065F46;
}
.form-success.show { display: block; }
