:root {
    --primary: #1e3a8a;
    --primary-light: #3b82f6;
    --accent: #10b981;
    --accent-dark: #059669;
    --dark: #0f172a;
    --gray: #64748b;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #1e293b;
    margin: 0;
}

a { text-decoration: none; }

/* Navbar */
.navbar-main {
    background: white;
    padding: 14px 0;
    border-bottom: 1px solid #e5e7eb;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand-custom {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-brand-custom:hover { color: var(--primary); }
.navbar-brand-custom i { font-size: 26px; color: var(--accent); }

.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links a {
    color: var(--gray);
    font-weight: 500;
    font-size: 15px;
}

.nav-links a:hover { color: var(--primary); }

.btn-nav {
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
}

.btn-nav-outline {
    border: 1px solid #d1d5db;
    color: #374151;
    background: white;
}

.btn-nav-outline:hover { background: #f9fafb; color: var(--primary); border-color: var(--primary-light); }

.btn-nav-fill {
    background: var(--primary);
    color: white;
    border: 1px solid var(--primary);
}

.btn-nav-fill:hover { background: #1e40af; color: white; }

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
}

/* Hero */
.hero {
    padding: 140px 0 80px;
    background: var(--primary);
    color: white;
}

.hero h1 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero .lead {
    font-size: 18px;
    opacity: 0.85;
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.btn-hero {
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
}

.btn-hero-primary {
    background: var(--accent);
    color: white;
}

.btn-hero-primary:hover { background: var(--accent-dark); color: white; }

.btn-hero-outline {
    border: 1px solid rgba(255,255,255,0.5);
    color: white;
}

.btn-hero-outline:hover { background: rgba(255,255,255,0.1); color: white; border-color: white; }

.hero-stats {
    margin-top: 48px;
    display: flex;
    gap: 40px;
}

.hero-stat h3 { font-size: 28px; font-weight: 700; margin-bottom: 2px; }
.hero-stat p { font-size: 13px; opacity: 0.7; margin: 0; }

/* Features */
.features {
    padding: 80px 0;
    background: #f9fafb;
}

.section-heading {
    text-align: center;
    margin-bottom: 48px;
}

.section-heading h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.section-heading p {
    font-size: 16px;
    color: var(--gray);
}

.feature-card {
    background: white;
    border-radius: 10px;
    padding: 28px 24px;
    height: 100%;
    border: 1px solid #e5e7eb;
}

.feature-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.feature-card h5 {
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 8px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    padding: 88px 0 72px;
    background: white;
    position: relative;
    overflow: hidden;
}

/* Subtle radial decoration behind the cards */
.pricing-bg-decoration {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(59,130,246,0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Cards ──────────────────────────────────────── */
.pricing-card {
    border-radius: 20px;
    padding: 40px 36px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s;
}

/* Featured (gradient blue) */
.pricing-card-featured {
    background: linear-gradient(145deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 24px 64px rgba(30,58,138,0.28);
}

.pricing-card-featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 80px rgba(30,58,138,0.36);
}

/* Renewal (white with green top accent) */
.pricing-card-renewal {
    background: white;
    border: 1px solid #e5e7eb;
    border-top: 4px solid var(--accent);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.pricing-card-renewal:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

/* ── Ribbon (featured card) ──────────────────────── */
.pricing-ribbon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.35);
    color: white;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 24px;
    width: fit-content;
}

.pricing-ribbon i { font-size: 11px; color: #fbbf24; }

/* ── Labels ─────────────────────────────────────── */
.pricing-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: rgba(255,255,255,0.75);
    margin: 0 0 8px;
}

.pricing-label-muted {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: var(--gray);
    margin: 0 0 8px;
}

/* ── Price numbers ──────────────────────────────── */
.pricing-amount {
    font-size: 64px;
    font-weight: 900;
    color: white;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 4px;
}

.pricing-amount-dark {
    color: var(--dark);
}

.pricing-currency {
    font-size: 30px;
    font-weight: 700;
    vertical-align: top;
    margin-top: 12px;
    display: inline-block;
    letter-spacing: 0;
}

.pricing-currency-dark {
    color: var(--gray);
}

.pricing-period {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    margin: 4px 0 0;
}

.pricing-period-muted {
    color: var(--gray);
}

/* "then K8,000/yr" note inside featured card */
.pricing-renewal-note {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    margin: 12px 0 28px;
}

/* Spacer keeps the renewal card features aligned with the featured card */
.pricing-renewal-spacer { height: 55px; }

/* ── Feature lists ──────────────────────────────── */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li i {
    color: #34d399;   /* bright green on blue bg */
    font-size: 15px;
    flex-shrink: 0;
}

/* Renewal card features (dark text) */
.pricing-features-light li {
    color: #374151;
    border-bottom-color: #f1f5f9;
}

.pricing-features-light li i {
    color: var(--accent);
}

/* ── Buttons ─────────────────────────────────────── */
.btn-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    margin-top: auto;
    transition: all 0.2s;
    text-align: center;
}

.btn-pricing-green {
    background: #10b981;
    color: white;
    box-shadow: 0 4px 14px rgba(16,185,129,0.4);
}

.btn-pricing-green:hover {
    background: #059669;
    color: white;
    box-shadow: 0 6px 20px rgba(16,185,129,0.5);
    transform: translateY(-1px);
}

.btn-pricing-outline {
    background: white;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-pricing-outline:hover {
    background: var(--primary);
    color: white;
}

/* ── Trust strip ─────────────────────────────────── */
.pricing-trust-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #f1f5f9;
    font-size: 13px;
    color: var(--gray);
}

.pricing-trust-strip span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.pricing-trust-strip i {
    color: var(--accent);
    font-size: 16px;
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 768px) {
    .pricing-renewal-spacer { display: none; }
}

@media (max-width: 576px) {
    .pricing-section { padding: 56px 0 48px; }
    .pricing-card { padding: 28px 22px; }
    .pricing-amount { font-size: 52px; }
    .pricing-trust-strip { gap: 20px; font-size: 12px; }
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: white;
}

.step-card { text-align: center; padding: 16px; }

.step-number {
    width: 52px;
    height: 52px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-card h5 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark);
}

.step-card p {
    color: var(--gray);
    font-size: 14px;
    max-width: 260px;
    margin: 0 auto;
    line-height: 1.6;
}

/* CTA */
.cta-section {
    padding: 64px 0;
    background: var(--primary);
    color: white;
    text-align: center;
}

.cta-section h2 { font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.cta-section p { font-size: 16px; opacity: 0.85; margin-bottom: 24px; }

/* Footer */
.footer {
    background: var(--dark);
    color: #94a3b8;
    padding: 48px 0 24px;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}

.footer h6 {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-brand p {
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-brand .phone {
    color: #cbd5e1;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 8px; }

.footer-links a {
    color: #94a3b8;
    font-size: 14px;
}

.footer-links a:hover { color: white; }

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p { margin: 0; }

@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* Mobile nav */
.nav-mobile {
    display: none;
    padding: 12px 0;
}

.nav-mobile.show { display: block; }

.nav-mobile a {
    display: block;
    padding: 10px 0;
    color: #374151;
    font-weight: 500;
    border-bottom: 1px solid #f1f5f9;
}

.nav-mobile .btn-nav { display: block; text-align: center; margin-top: 8px; }

/* Responsive */
@media (max-width: 991px) {
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    .hero { padding: 110px 0 60px; }
    .hero h1 { font-size: 32px; }
    .hero .lead { font-size: 16px; }
    .hero-stats { gap: 16px; flex-wrap: wrap; }
    .hero-stat h3 { font-size: 22px; }
    .step-card { padding: 12px 8px; }
}

@media (max-width: 576px) {
    .hero { padding: 100px 0 48px; }
    .hero h1 { font-size: 26px; }
    .section-heading h2 { font-size: 24px; }
    .features, .how-it-works { padding: 48px 0; }
    .cta-section { padding: 48px 0; }
    .cta-section h2 { font-size: 24px; }
}
