/* Homepage */

.home-page {
    background:
        radial-gradient(circle at top left, rgba(79, 70, 229, 0.16), transparent 32%),
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.18), transparent 30%),
        #f8fafc;
}

.home-nav {
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-logo img {
    width: 210px;
    background: #0f172a;
    padding: 10px 14px;
    border-radius: 16px;
}

.home-nav nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.home-nav a {
    color: #334155;
    font-weight: 700;
}

.nav-cta {
    background: #4f46e5;
    color: white !important;
    padding: 12px 18px;
    border-radius: 999px;
}

.hero-v2 {
    max-width: 1180px;
    margin: 40px auto 70px;
    padding: 40px 28px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 50px;
    align-items: center;
}

.badge {
    display: inline-flex;
    background: white;
    border: 1px solid #e2e8f0;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 800;
    color: #4f46e5;
    margin-bottom: 22px;
}

.hero-left h1 {
    font-size: 72px;
    line-height: 0.95;
    letter-spacing: -4px;
    margin: 0;
}

.hero-left p {
    font-size: 21px;
    line-height: 1.7;
    color: #475569;
    margin: 26px 0;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin: 32px 0;
}

.primary-btn,
.secondary-btn {
    display: inline-block;
    font-weight: 900;
    padding: 16px 22px;
    border-radius: 14px;
}

.primary-btn {
    background: #4f46e5;
    color: white;
    box-shadow: 0 18px 35px rgba(79, 70, 229, 0.25);
}

.secondary-btn {
    background: white;
    color: #0f172a;
    border: 1px solid #e2e8f0;
}

.trust-row {
    color: #64748b;
    font-weight: 700;
}

.preview-window {
    background: #0f172a;
    color: white;
    border-radius: 30px;
    padding: 24px;
    box-shadow: 0 40px 90px rgba(15, 23, 42, 0.32);
    border: 1px solid rgba(255,255,255,0.08);
}

.preview-top {
    display: flex;
    gap: 8px;
    margin-bottom: 22px;
}

.preview-top span {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: #334155;
}

.preview-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 22px;
    padding: 22px;
}

.preview-label {
    color: #38bdf8;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 900;
    margin: 0 0 8px;
}

.preview-card h3 {
    margin: 0 0 12px;
    font-size: 26px;
}

.preview-card p {
    color: #cbd5e1;
    line-height: 1.6;
}

.preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 14px;
}

.preview-grid div {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    padding: 18px;
}

.preview-grid p {
    color: #94a3b8;
    margin: 0 0 8px;
}

.section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 70px 28px;
}

.section-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 38px;
}

.section-title span,
.small-label {
    color: #4f46e5;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
}

.section-title h2,
.how-section h2 {
    font-size: 44px;
    letter-spacing: -1.5px;
    margin: 12px 0 0;
}

.feature-grid-v2,
.pricing-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.feature-box,
.pricing-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 26px;
    padding: 30px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #eef2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.feature-box p,
.pricing-card p,
.how-section p {
    color: #64748b;
    line-height: 1.7;
}

.how-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    align-items: center;
}

.steps-v2 {
    display: grid;
    gap: 14px;
}

.steps-v2 div {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 18px;
    border-radius: 18px;
    display: flex;
    gap: 16px;
    align-items: center;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.05);
}

.steps-v2 strong {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #4f46e5;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price {
    font-size: 42px;
    font-weight: 900;
    color: #0f172a;
    margin: 12px 0;
}

.pricing-card a {
    display: inline-block;
    margin-top: 14px;
    background: #0f172a;
    color: white;
    padding: 13px 18px;
    border-radius: 12px;
    font-weight: 900;
}

.featured-price {
    border-color: #4f46e5;
    transform: translateY(-8px);
}

.featured-price a {
    background: #4f46e5;
}

.final-cta {
    max-width: 1120px;
    margin: 50px auto;
    padding: 80px 28px;
    text-align: center;
    background: #0f172a;
    color: white;
    border-radius: 34px;
}

.final-cta h2 {
    font-size: 46px;
    margin: 0;
}

.final-cta p {
    color: #cbd5e1;
    font-size: 19px;
    margin-bottom: 28px;
}

.home-footer {
    text-align: center;
    padding: 30px;
    color: #64748b;
}

@media (max-width: 900px) {
    .home-nav,
    .home-nav nav,
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-v2,
    .how-section,
    .feature-grid-v2,
    .pricing-grid-v2 {
        grid-template-columns: 1fr;
    }

    .hero-left h1 {
        font-size: 46px;
        letter-spacing: -2px;
    }
}

/* =========================
   About Preview
========================= */

.about-preview {
    padding: 110px 24px;
    background: #ffffff;
}

.about-preview-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.about-preview h2 {
    margin: 18px 0 24px;
    color: #0f172a;
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.about-preview p {
    max-width: 720px;
    margin: 0 auto 18px;
    color: #64748b;
    font-size: 18px;
    line-height: 1.75;
}

.about-preview .primary-btn {
    display: inline-flex;
    margin-top: 16px;
}

@media (max-width: 768px) {
    .about-preview {
        padding: 80px 24px;
    }

    .about-preview h2 {
        font-size: 36px;
    }

    .about-preview p {
        font-size: 16px;
    }
}