:root {
    --brand-orange: #ff7a18;
    --brand-orange-dark: #e66300;
    --brand-ink: #1f1b24;
    --brand-muted: #6b6b6b;
    --brand-cream: #fff8f0;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--brand-cream);
    color: var(--brand-ink);
    min-height: 100vh;
}

.bg-orange {
    --bs-bg-opacity: 1;
    background-color: var(--brand-orange) !important;
}

.navbar.bg-orange {
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-orange-dark));
    box-shadow: 0 8px 24px rgba(255, 122, 24, 0.25);
}

.navbar-brand img {
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.nav-link {
    color: #fff !important;
    font-weight: 600;
    letter-spacing: .02em;
}

.nav-link:hover {
    color: #ffe7d3 !important;
}

.hero {
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.2), transparent),
        linear-gradient(135deg, var(--brand-orange-dark), var(--brand-orange));
    color: #fff;
    border-radius: 32px;
    padding: 3.5rem;
    box-shadow: 0 30px 60px rgba(255, 122, 24, 0.35);
}

.hero .badge {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    border: none;
    font-weight: 600;
    padding: .6rem 1.2rem;
    border-radius: 999px;
    letter-spacing: .08em;
}

.hero h1 {
    font-size: clamp(2.5rem, 4vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
}

.hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-brand {
    background: #fff;
    color: var(--brand-orange-dark);
    border: none;
    font-weight: 600;
    padding: .85rem 1.8rem;
    border-radius: 999px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.btn-brand:hover {
    background: #fee6d1;
    color: var(--brand-orange-dark);
}

.btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
    padding: .85rem 1.5rem;
    border-radius: 999px;
}

.text-orange {
    color: var(--brand-orange-dark) !important;
}

.feature-card {
    border: none;
    border-radius: 24px;
    padding: 2rem;
    background: #fff;
    box-shadow: 0 18px 45px rgba(26, 15, 0, 0.08);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 122, 24, 0.12);
    color: var(--brand-orange-dark);
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.metrics-card {
    background: linear-gradient(135deg, #fff, #ffe4cc);
    border-radius: 24px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 25px 55px rgba(255, 122, 24, 0.18);
}

.metrics-card h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0;
}

.timeline {
    border-left: 2px solid rgba(0, 0, 0, 0.08);
    padding-left: 1.5rem;
    margin-left: 1.5rem;
}

.timeline-step {
    position: relative;
    margin-bottom: 1.5rem;
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: -2.03rem;
    top: .4rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--brand-orange);
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px rgba(255, 122, 24, 0.2);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 30px 60px rgba(15, 6, 0, 0.12);
    backdrop-filter: blur(8px);
}

.footer-cta {
    background: #fff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 14px 45px rgba(18, 13, 8, 0.12);
}
