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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1a1a2e;
    line-height: 1.6;
    background: #fff;
}

/* ── Nav ── */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 5%;
    background: #1a1a2e;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.logo-icon {
    color: #f59e0b;
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

nav a {
    text-decoration: none;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
    font-size: 0.92rem;
    transition: color 0.2s;
}

nav a:hover {
    color: #fff;
}

.nav-cta {
    padding: 0.5rem 1.3rem;
    background: #f59e0b;
    color: #1a1a2e !important;
    border-radius: 7px;
    font-weight: 700;
    font-size: 0.88rem;
    transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
    background: #fbbf24;
    transform: translateY(-1px);
}

/* ── Hero ── */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    padding: 5rem 5%;
    background: #1a1a2e;
    color: #fff;
    min-height: 520px;
}

.hero-text {
    max-width: 540px;
}

.hero-badge {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    background: rgba(245,158,11,0.15);
    color: #fbbf24;
    border: 1px solid rgba(245,158,11,0.3);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    letter-spacing: -0.03em;
}

.hero h1 em {
    font-style: normal;
    color: #f59e0b;
}

.hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 460px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: #f59e0b;
    color: #1a1a2e;
    border-radius: 9px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.cta-button:hover {
    background: #fbbf24;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245,158,11,0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 0.85rem 2rem;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 9px;
    transition: border-color 0.2s, color 0.2s;
}

.cta-secondary:hover {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    max-width: 380px;
    backdrop-filter: blur(8px);
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-card-header svg {
    color: #f59e0b;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.stat-value.positive {
    color: #34d399;
}

.stat-value.amber {
    color: #fbbf24;
}

/* ── How It Works ── */
.how-it-works {
    padding: 5rem 5%;
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #f59e0b;
    margin-bottom: 0.8rem;
}

.how-it-works h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.how-it-works > p {
    color: #64748b;
    max-width: 520px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 960px;
    margin: 0 auto;
}

.step {
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #fef3c7;
    color: #b45309;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.step p {
    color: #64748b;
    font-size: 0.93rem;
}

/* ── Features ── */
.features {
    padding: 5rem 5%;
    background: #fafaf9;
    text-align: center;
}

.features h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.features > p {
    color: #64748b;
    max-width: 520px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.25rem;
    max-width: 1020px;
    margin: 0 auto;
}

.feature-card {
    padding: 1.8rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e7e5e4;
    text-align: left;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.06);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.feature-icon.orange { background: #fef3c7; color: #b45309; }
.feature-icon.blue   { background: #dbeafe; color: #2563eb; }
.feature-icon.green  { background: #d1fae5; color: #059669; }
.feature-icon.purple { background: #ede9fe; color: #7c3aed; }
.feature-icon.rose   { background: #ffe4e6; color: #e11d48; }
.feature-icon.teal   { background: #ccfbf1; color: #0d9488; }

.feature-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    color: #1a1a2e;
}

.feature-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ── Pricing ── */
.pricing {
    padding: 5rem 5%;
    text-align: center;
}

.pricing h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.pricing > p {
    color: #64748b;
    max-width: 480px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 920px;
    margin: 0 auto;
}

.pricing-card {
    padding: 2.5rem 2rem;
    background: #fff;
    border: 1px solid #e7e5e4;
    border-radius: 14px;
    text-align: left;
    position: relative;
    transition: transform 0.2s;
}

.pricing-card:hover {
    transform: translateY(-3px);
}

.pricing-card.featured {
    border: 2px solid #f59e0b;
    box-shadow: 0 8px 32px rgba(245,158,11,0.1);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #f59e0b;
    color: #1a1a2e;
    padding: 0.25rem 1rem;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.price {
    font-size: 2.6rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 0.2rem;
}

.price span {
    font-size: 1rem;
    font-weight: 500;
    color: #94a3b8;
}

.price-desc {
    color: #94a3b8;
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-card li {
    padding: 0.4rem 0;
    color: #475569;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-card li::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background: #fef3c7;
    border-radius: 50%;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23b45309'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

.pricing-cta {
    display: block;
    padding: 0.75rem 2rem;
    border: 2px solid #e7e5e4;
    color: #1a1a2e;
    border-radius: 9px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.pricing-card.featured .pricing-cta {
    background: #f59e0b;
    border-color: #f59e0b;
    color: #1a1a2e;
}

.pricing-cta:hover {
    background: #1a1a2e;
    border-color: #1a1a2e;
    color: #fff;
}

.pricing-card.featured .pricing-cta:hover {
    background: #d97706;
    border-color: #d97706;
}

/* ── Get Started ── */
.get-started {
    padding: 5rem 5%;
    text-align: center;
    background: #1a1a2e;
    color: #fff;
}

.get-started h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.get-started p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.get-started form {
    display: flex;
    gap: 0.75rem;
    max-width: 440px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.get-started input {
    flex: 1;
    min-width: 230px;
    padding: 0.8rem 1.2rem;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 9px;
    font-size: 0.95rem;
    font-family: inherit;
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.get-started input::placeholder {
    color: rgba(255,255,255,0.35);
}

.get-started input:focus {
    outline: none;
    border-color: #f59e0b;
}

.get-started button {
    padding: 0.8rem 1.8rem;
    background: #f59e0b;
    color: #1a1a2e;
    border: none;
    border-radius: 9px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.15s, background 0.2s;
}

.get-started button:hover {
    transform: translateY(-2px);
    background: #fbbf24;
}

/* ── Footer ── */
footer {
    background: #111122;
    color: rgba(255,255,255,0.5);
    padding: 3rem 5% 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-size: 0.88rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-links h4 {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.8rem;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.88rem;
    padding: 0.2rem 0;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.82rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 3.5rem 5% 3rem;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero p {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        gap: 2rem;
    }
}
