/* ============================================================
   BusinessPlus / NWC – Homepage Stylesheet (Clean Light Theme)
   Modern, Crisp, Executive & High-Conversion Styling
   ============================================================ */

:root {
    --hp-primary: #4f46e5;
    --hp-primary-rgb: 79, 70, 229;
    --hp-primary-dark: #3730a3;
    --hp-primary-light: #6366f1;
    --hp-secondary: #7c3aed;
    --hp-cyan: #0284c7;
    --hp-emerald: #059669;
    --hp-amber: #d97706;

    /* Light Theme Palette */
    --hp-bg: #f8fafc;
    --hp-surface: #ffffff;
    --hp-card-bg: #ffffff;
    --hp-card-border: #e2e8f0;
    --hp-card-hover-border: #a5b4fc;

    /* Text Colors */
    --hp-text-dark: #0f172a;
    --hp-text-body: #334155;
    --hp-text-muted: #64748b;

    /* Gradients */
    --hp-grad-primary: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    --hp-grad-text: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #2563eb 100%);
    --hp-grad-hero: radial-gradient(circle at 50% -10%, #eef2ff 0%, #f8fafc 70%);
    --hp-grad-subtle: #f1f5f9;

    /* Geometry & Shadows */
    --hp-radius-xl: 24px;
    --hp-radius-lg: 16px;
    --hp-radius-md: 12px;
    --hp-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
    --hp-shadow-card: 0 10px 25px -5px rgba(0, 0, 0, 0.04), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
    --hp-shadow-hover: 0 20px 35px -8px rgba(79, 70, 229, 0.12), 0 8px 16px -4px rgba(0, 0, 0, 0.04);
    --hp-shadow-glow: 0 12px 28px -6px rgba(79, 70, 229, 0.35);
    --hp-transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

body.homepage-body {
    background-color: var(--hp-bg);
    color: var(--hp-text-body);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
    line-height: 1.65;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--hp-text-dark);
}

.gradient-text {
    background: var(--hp-grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* ============================================================
   Navbar Styles (Light Glassmorphism)
   ============================================================ */
.hp-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--hp-card-border);
    transition: var(--hp-transition);
}

.hp-navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.hp-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--hp-text-dark);
}

.hp-brand-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.hp-brand-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    color: var(--hp-text-dark);
    line-height: 1;
}

.hp-brand-tagline {
    font-size: 0.72rem;
    color: var(--hp-text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hp-nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hp-nav-link {
    color: var(--hp-text-muted);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    transition: var(--hp-transition);
    position: relative;
    padding: 0.3rem 0;
}

.hp-nav-link:hover {
    color: var(--hp-primary);
}

.hp-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--hp-primary);
    transition: width 0.25s ease;
    border-radius: 2px;
}

.hp-nav-link:hover::after {
    width: 100%;
}

.hp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.72rem 1.5rem;
    border-radius: var(--hp-radius-md);
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    transition: var(--hp-transition);
    cursor: pointer;
    line-height: 1.2;
    white-space: nowrap;
}

.hp-btn i {
    font-size: 1.1em;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.hp-btn-primary {
    background: var(--hp-grad-primary);
    color: #fff !important;
    border: none;
    box-shadow: var(--hp-shadow-glow);
}

.hp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 35px -8px rgba(79, 70, 229, 0.45);
    color: #fff !important;
}

.hp-btn-outline {
    background: #ffffff;
    color: var(--hp-text-dark) !important;
    border: 1.5px solid var(--hp-card-border);
    box-shadow: var(--hp-shadow-sm);
}

.hp-btn-outline:hover {
    background: #f8fafc;
    border-color: var(--hp-primary-light);
    color: var(--hp-primary) !important;
    transform: translateY(-2px);
}

.hp-btn-sm {
    padding: 0.55rem 1.15rem;
    font-size: 0.85rem;
}

.hp-btn-lg {
    padding: 0.95rem 2.2rem;
    font-size: 1.05rem;
    border-radius: var(--hp-radius-lg);
}

/* User Badge if Logged In */
.hp-auth-badge {
    background: #eef2ff;
    border: 1px solid #c7d2fe;
    color: var(--hp-primary);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ============================================================
   Hero Section (Light & Crisp)
   ============================================================ */
.hp-hero {
    position: relative;
    padding: 8.5rem 0 5.5rem;
    background: var(--hp-grad-hero);
    overflow: hidden;
    border-bottom: 1px solid var(--hp-card-border);
    text-align: center;
}

.hp-hero::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 450px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.08) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.hp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eef2ff;
    border: 1px solid #c7d2fe;
    border-radius: 50px;
    padding: 0.45rem 1.25rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--hp-primary);
    margin: 0 auto 1.75rem;
    text-transform: uppercase;
}

.hp-hero-title {
    font-size: 3.6rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 0 auto 1.5rem;
    max-width: 960px;
    font-weight: 800;
    color: var(--hp-text-dark);
}

.hp-hero-lead {
    font-size: 1.22rem;
    color: var(--hp-text-muted);
    max-width: 820px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
    line-height: 1.75;
}

.hp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.hp-trust-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--hp-card-border);
    max-width: 800px;
    margin: 0 auto;
}

.hp-trust-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--hp-text-muted);
    font-weight: 600;
}

.hp-trust-chip i {
    color: var(--hp-primary);
    font-size: 1.1rem;
}

/* Hero Showcase Card (Clean White Surface) */
.hp-showcase-card {
    background: #ffffff;
    border: 1px solid var(--hp-card-border);
    border-radius: var(--hp-radius-xl);
    padding: 2.2rem;
    box-shadow: var(--hp-shadow-card);
    position: relative;
    z-index: 2;
    transition: var(--hp-transition);
}

.hp-showcase-card:hover {
    border-color: var(--hp-card-hover-border);
    transform: translateY(-4px);
    box-shadow: var(--hp-shadow-hover);
}

.hp-live-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
    border-radius: 50px;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.hp-pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hp-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin: 1.8rem 0;
}

.hp-stat-box {
    background: #f8fafc;
    border: 1px solid var(--hp-card-border);
    border-radius: var(--hp-radius-md);
    padding: 1.2rem;
    transition: var(--hp-transition);
}

.hp-stat-box:hover {
    background: #ffffff;
    border-color: var(--hp-card-hover-border);
    box-shadow: var(--hp-shadow-sm);
}

.hp-stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--hp-text-dark);
    line-height: 1.1;
    margin-bottom: 4px;
}

.hp-stat-lbl {
    font-size: 0.76rem;
    color: var(--hp-text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hp-recent-deals {
    background: #f8fafc;
    border-radius: var(--hp-radius-md);
    border: 1px solid var(--hp-card-border);
    padding: 1.1rem;
    margin-top: 1.2rem;
}

.hp-deal-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.88rem;
}

.hp-deal-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hp-deal-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hp-deal-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--hp-grad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.82rem;
    color: #fff;
}

.hp-deal-amount {
    font-weight: 800;
    color: #059669;
}

/* ============================================================
   Section Headers & Common
   ============================================================ */
.hp-section {
    padding: 6.5rem 0;
    position: relative;
}

.hp-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 4rem;
}

.hp-section-tag {
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--hp-primary);
    margin-bottom: 0.8rem;
    display: block;
}

.hp-section-title {
    font-size: 2.75rem;
    line-height: 1.18;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--hp-text-dark);
}

.hp-section-desc {
    color: var(--hp-text-muted);
    font-size: 1.08rem;
    line-height: 1.7;
}

/* ============================================================
   How It Works (Pipeline)
   ============================================================ */
.hp-pipeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.hp-pipeline-card {
    background: #ffffff;
    border: 1px solid var(--hp-card-border);
    border-radius: var(--hp-radius-lg);
    padding: 2.2rem 1.6rem;
    position: relative;
    box-shadow: var(--hp-shadow-card);
    transition: var(--hp-transition);
}

.hp-pipeline-card:hover {
    border-color: var(--hp-card-hover-border);
    transform: translateY(-6px);
    box-shadow: var(--hp-shadow-hover);
}

.hp-step-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.8rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    color: #e2e8f0;
    line-height: 1;
}

.hp-step-icon {
    width: 56px;
    height: 56px;
    background: #eef2ff;
    border: 1px solid #c7d2fe;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--hp-primary);
    margin-bottom: 1.5rem;
    transition: var(--hp-transition);
}

.hp-pipeline-card:hover .hp-step-icon {
    background: var(--hp-grad-primary);
    color: #fff;
    box-shadow: 0 10px 20px -5px rgba(79, 70, 229, 0.35);
}

.hp-step-title {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: var(--hp-text-dark);
}

.hp-step-desc {
    font-size: 0.92rem;
    color: var(--hp-text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ============================================================
   Pillars & Feature Grid
   ============================================================ */
.hp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.hp-feature-card {
    background: #ffffff;
    border: 1px solid var(--hp-card-border);
    border-radius: var(--hp-radius-xl);
    padding: 2.4rem;
    box-shadow: var(--hp-shadow-card);
    transition: var(--hp-transition);
    position: relative;
    overflow: hidden;
}

.hp-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--hp-grad-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hp-feature-card:hover {
    border-color: var(--hp-card-hover-border);
    transform: translateY(-6px);
    box-shadow: var(--hp-shadow-hover);
}

.hp-feature-card:hover::before {
    opacity: 1;
}

.hp-feature-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.6rem;
}

.hp-feature-title {
    font-size: 1.35rem;
    margin-bottom: 0.85rem;
    color: var(--hp-text-dark);
}

.hp-feature-desc {
    color: var(--hp-text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   Interactive Referral Calculator
   ============================================================ */
.hp-calc-wrapper {
    background: #ffffff;
    border: 1.5px solid #e0e7ff;
    border-radius: var(--hp-radius-xl);
    padding: 3.5rem;
    box-shadow: 0 20px 50px -10px rgba(79, 70, 229, 0.08);
}

.hp-range-group {
    margin-bottom: 2rem;
}

.hp-range-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--hp-text-dark);
}

.hp-range-val {
    color: var(--hp-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
}

.hp-slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #e2e8f0;
    outline: none;
    -webkit-appearance: none;
    transition: background 0.2s;
}

.hp-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--hp-primary);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(79, 70, 229, 0.5);
    transition: transform 0.15s;
}

.hp-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.hp-calc-result-card {
    background: linear-gradient(135deg, #eef2ff 0%, #f5f3ff 100%);
    border: 1.5px solid #c7d2fe;
    border-radius: var(--hp-radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hp-calc-revenue {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #059669;
    line-height: 1.1;
    margin: 1rem 0;
}

/* ============================================================
   Chapters Showcase
   ============================================================ */
.hp-chapter-card {
    background: #ffffff;
    border: 1px solid var(--hp-card-border);
    border-radius: var(--hp-radius-lg);
    padding: 2rem;
    box-shadow: var(--hp-shadow-card);
    transition: var(--hp-transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hp-chapter-card:hover {
    border-color: var(--hp-card-hover-border);
    transform: translateY(-4px);
    box-shadow: var(--hp-shadow-hover);
}

.hp-chapter-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    background: #f1f5f9;
    color: #475569;
    display: inline-block;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.hp-chapter-title {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
    color: var(--hp-text-dark);
}

.hp-chapter-meta {
    margin-top: auto;
    padding-top: 1.2rem;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--hp-text-muted);
}

/* ============================================================
   Testimonials
   ============================================================ */
.hp-testimonial-card {
    background: #ffffff;
    border: 1px solid var(--hp-card-border);
    border-radius: var(--hp-radius-xl);
    padding: 2.2rem;
    box-shadow: var(--hp-shadow-card);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.hp-test-stars {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.hp-test-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #334155;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.hp-test-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hp-test-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--hp-grad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
}

.hp-test-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--hp-text-dark);
    margin: 0;
}

.hp-test-role {
    font-size: 0.8rem;
    color: var(--hp-text-muted);
    margin: 0;
}

/* ============================================================
   FAQ Accordion
   ============================================================ */
.hp-accordion-item {
    background: #ffffff;
    border: 1px solid var(--hp-card-border);
    border-radius: var(--hp-radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--hp-shadow-sm);
    transition: var(--hp-transition);
}

.hp-accordion-item:hover {
    border-color: var(--hp-card-hover-border);
}

.hp-accordion-btn {
    width: 100%;
    padding: 1.4rem 1.8rem;
    background: none;
    border: none;
    text-align: left;
    color: var(--hp-text-dark);
    font-family: 'Outfit', sans-serif;
    font-size: 1.12rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--hp-transition);
}

.hp-accordion-btn i {
    transition: transform 0.3s ease;
    color: var(--hp-primary);
}

.hp-accordion-btn[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.hp-accordion-body {
    padding: 0 1.8rem 1.4rem;
    color: var(--hp-text-muted);
    font-size: 0.96rem;
    line-height: 1.7;
}

/* ============================================================
   Bottom CTA Banner
   ============================================================ */
.hp-cta-banner {
    background: linear-gradient(135deg, #eef2ff 0%, #f5f3ff 100%);
    border: 1.5px solid #c7d2fe;
    border-radius: var(--hp-radius-xl);
    padding: 4.5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--hp-shadow-card);
}

.hp-cta-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.12) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.hp-cta-title {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    color: var(--hp-text-dark);
}

.hp-cta-desc {
    font-size: 1.15rem;
    color: var(--hp-text-muted);
    max-width: 620px;
    margin: 0 auto 2.5rem;
}

/* ============================================================
   Homepage Footer (Clean & Standardized)
   ============================================================ */
.hp-footer {
    padding: 4.5rem 0 2.5rem;
    border-top: 1px solid var(--hp-card-border);
    background: #ffffff;
}

.hp-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
    margin-bottom: 2rem;
}

.hp-footer-links a {
    display: inline-flex;
    align-items: center;
    padding: 6px 18px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    color: #475569;
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 600;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.hp-footer-links a:hover {
    background: #eef2ff;
    border-color: #c7d2fe;
    color: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.12);
}

.hp-footer-info {
    text-align: center;
    color: var(--hp-text-muted);
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
}

.hp-footer-address {
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.hp-copyright {
    text-align: center;
    color: #94a3b8;
    font-size: 0.82rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

/* ============================================================
   Responsive Breakpoints
   ============================================================ */
@media (max-width: 1199.98px) {
    .hp-hero-title { font-size: 3rem; }
    .hp-pipeline-grid { grid-template-columns: repeat(2, 1fr); }
    .hp-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991.98px) {
    .hp-nav-links { display: none; }
    .hp-mobile-toggle { display: block !important; }
    .hp-hero { padding: 7.5rem 0 4rem; }
    .hp-hero-title { font-size: 2.6rem; }
    .hp-section-title { font-size: 2.2rem; }
    .hp-calc-wrapper { padding: 2.2rem; }
    .hp-cta-title { font-size: 2.3rem; }
    .hp-cta-banner { padding: 3rem 1.8rem; }
}

@media (max-width: 767.98px) {
    .hp-hero-title { font-size: 2.2rem; }
    .hp-hero-lead { font-size: 1.05rem; }
    .hp-pipeline-grid { grid-template-columns: 1fr; }
    .hp-features-grid { grid-template-columns: 1fr; }
    .hp-stat-grid { grid-template-columns: 1fr; }
    .hp-hero-actions { flex-direction: column; }
    .hp-hero-actions .hp-btn { width: 100%; }
}

.hp-mobile-menu {
    display: none;
    background: #ffffff;
    border-bottom: 1px solid var(--hp-card-border);
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.hp-mobile-menu.show {
    display: block;
}

.hp-mobile-links {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.hp-mobile-links li {
    margin-bottom: 1rem;
}

.hp-mobile-links a {
    color: var(--hp-text-dark);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
}
