:root {
    --brand:      #f97316;
    --brand-dark: #ea580c;
    --dark:       #1e293b;
    --darker:     #0f172a;
    --light:      #f8fafc;
}

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

body {
    font-family: 'Segoe UI', sans-serif;
    background: #fff;
    color: #1e293b;
}

/* ── Nav ── */
.home-nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 2rem;
    background: rgba(15, 23, 42, .95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.home-nav .brand {
    font-weight: 800; font-size: 1.25rem;
    color: var(--brand); text-decoration: none;
    display: flex; align-items: center; gap: .5rem;
}
.home-nav .nav-links { display: flex; gap: 1.5rem; align-items: center; }
.home-nav .nav-links a {
    color: #94a3b8; text-decoration: none;
    font-size: .9rem; font-weight: 500;
    transition: color .15s;
}
.home-nav .nav-links a:hover { color: #fff; }
.btn-nav {
    background: var(--brand); color: #fff !important;
    padding: .45rem 1.2rem; border-radius: 8px;
    font-weight: 600 !important; font-size: .85rem !important;
    transition: background .15s !important;
}
.btn-nav:hover { background: var(--brand-dark) !important; }

/* ── Hero ── */
.hero {
    min-height: 100vh;
    background: linear-gradient(160deg, var(--darker) 0%, var(--dark) 60%, #1a2744 100%);
    display: flex; align-items: center;
    padding: 6rem 2rem 4rem;
    position: relative; overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(249,115,22,.12) 0%, transparent 60%);
    pointer-events: none;
}
.hero-content {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(249,115,22,.15); color: var(--brand);
    border: 1px solid rgba(249,115,22,.3);
    padding: .35rem 1rem; border-radius: 20px;
    font-size: .8rem; font-weight: 600;
    margin-bottom: 1.5rem;
}
.hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800; color: #fff; line-height: 1.15;
    margin-bottom: 1.25rem;
}
.hero h1 span { color: var(--brand); }
.hero p {
    color: #94a3b8; font-size: 1.1rem; line-height: 1.7;
    margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary-hero {
    background: var(--brand); color: #fff;
    padding: .8rem 2rem; border-radius: 10px;
    font-weight: 700; text-decoration: none;
    font-size: 1rem; transition: all .2s;
    display: inline-flex; align-items: center; gap: .5rem;
    border: none; cursor: pointer;
}
.btn-primary-hero:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249,115,22,.35);
}
.hero-stats {
    display: flex; gap: 2rem; margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.08);
}
.hero-stat .number {
    font-size: 1.6rem; font-weight: 800; color: var(--brand);
}
.hero-stat .label { font-size: .78rem; color: #64748b; margin-top: .1rem; }

.hero-visual {
    position: relative;
}
.hero-mockup {
    background: var(--dark);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,.5);
}
.mockup-bar {
    background: #0f172a;
    padding: .75rem 1rem;
    display: flex; align-items: center; gap: .5rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.mockup-dot {
    width: 10px; height: 10px; border-radius: 50%;
}
.mockup-content {
    padding: 1.5rem;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.mockup-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px; padding: 1rem;
}
.mockup-card .mc-label { font-size: .65rem; color: #64748b; text-transform: uppercase; letter-spacing: .05em; }
.mockup-card .mc-value { font-size: 1.3rem; font-weight: 700; color: #fff; margin-top: .2rem; }
.mockup-card .mc-sub { font-size: .65rem; color: #10b981; margin-top: .15rem; }
.mockup-chart {
    grid-column: span 2;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px; padding: 1rem;
    display: flex; align-items: flex-end; gap: 6px; height: 80px;
}
.mockup-bar-item {
    flex: 1; border-radius: 4px 4px 0 0;
    background: rgba(249,115,22,.4);
    transition: height .3s;
}
.mockup-bar-item.highlight { background: var(--brand); }

/* ── Sections ── */
section { padding: 5rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
    display: inline-block;
    background: rgba(249,115,22,.1); color: var(--brand);
    padding: .3rem .9rem; border-radius: 20px;
    font-size: .78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .08em;
    margin-bottom: 1rem;
}
.section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800; color: var(--dark);
    margin-bottom: 1rem; line-height: 1.2;
}
.section-title span { color: var(--brand); }
.section-sub {
    color: #64748b; font-size: 1rem; line-height: 1.7;
    max-width: 560px;
}

/* ── Features ── */
.features-bg { background: var(--light); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem; margin-top: 3rem;
}
.feature-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px; padding: 1.75rem;
    transition: all .2s;
}
.feature-card:hover {
    border-color: var(--brand);
    box-shadow: 0 8px 32px rgba(249,115,22,.1);
    transform: translateY(-3px);
}
.feature-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, rgba(249,115,22,.15), rgba(249,115,22,.05));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--brand);
    margin-bottom: 1.25rem;
}
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.feature-card p { font-size: .88rem; color: #64748b; line-height: 1.6; }

/* ── Pricing ── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem; margin-top: 3rem; align-items: start;
}
.pricing-card {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 16px; padding: 2rem;
    position: relative; transition: all .2s;
}
.pricing-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.1); }
.pricing-card.popular {
    border-color: var(--brand);
    box-shadow: 0 8px 40px rgba(249,115,22,.2);
}
.popular-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--brand); color: #fff;
    padding: .3rem 1.2rem; border-radius: 20px;
    font-size: .75rem; font-weight: 700; white-space: nowrap;
}
.pricing-plan { font-size: .8rem; font-weight: 700; color: #64748b; text-transform: uppercase; letter-spacing: .08em; }
.pricing-price {
    font-size: 2.8rem; font-weight: 800; color: var(--dark);
    margin: .75rem 0 .25rem; line-height: 1;
}
.pricing-price sup { font-size: 1.2rem; vertical-align: super; }
.pricing-price sub { font-size: .9rem; color: #94a3b8; font-weight: 400; }
.pricing-desc { font-size: .85rem; color: #64748b; margin-bottom: 1.5rem; }
.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li {
    display: flex; align-items: center; gap: .6rem;
    font-size: .88rem; color: #475569;
    padding: .4rem 0;
    border-bottom: 1px solid #f1f5f9;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { color: #10b981; font-size: .9rem; flex-shrink: 0; }
.pricing-features li.disabled { color: #cbd5e1; }
.pricing-features li.disabled i { color: #cbd5e1; }
.btn-plan {
    display: block; width: 100%; text-align: center;
    padding: .85rem; border-radius: 10px;
    font-weight: 700; font-size: .95rem;
    text-decoration: none; transition: all .2s;
    border: 2px solid var(--brand); color: var(--brand);
    background: transparent;
    cursor: pointer;
}
.btn-plan:hover { background: var(--brand); color: #fff; }
.btn-plan.filled { background: var(--brand); color: #fff; }
.btn-plan.filled:hover { background: var(--brand-dark); border-color: var(--brand-dark); }

/* ── Footer ── */
.home-footer {
    background: var(--darker);
    color: #94a3b8; padding: 3rem 2rem;
    border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; flex-wrap: wrap;
    justify-content: space-between; align-items: flex-start;
    gap: 2rem;
}
.footer-brand .brand-name {
    font-size: 1.2rem; font-weight: 800; color: var(--brand);
    display: flex; align-items: center; gap: .5rem;
    margin-bottom: .5rem;
}
.footer-brand p { font-size: .83rem; color: #64748b; max-width: 280px; line-height: 1.6; }
.footer-col h6 { color: #fff; font-size: .85rem; font-weight: 700; margin-bottom: 1rem; }
.footer-col a {
    display: block; color: #64748b; text-decoration: none;
    font-size: .83rem; margin-bottom: .5rem; transition: color .15s;
}
.footer-col a:hover { color: var(--brand); }
.footer-bottom {
    max-width: 1200px; margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.06);
    display: flex; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
    font-size: .78rem; color: #475569;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .hero-content { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .home-nav .nav-links { gap: .75rem; }
    .footer-inner { flex-direction: column; }
    .footer-bottom { flex-direction: column; text-align: center; }
}