:root {
    --mkt-bg: #ffffff;
    --mkt-bg-alt: #f6f8fc;
    --mkt-text: #1a1f36;
    --mkt-text-muted: #5b6472;
    --mkt-primary: #2f6fed;
    --mkt-primary-dark: #1f52c9;
    --mkt-border: #e6e9f0;
    --mkt-success: #17803d;
    --mkt-radius: 14px;
}

* {
    box-sizing: border-box;
}

.mkt-body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--mkt-text);
    background: var(--mkt-bg);
    line-height: 1.5;
}

.mkt-body a {
    color: var(--mkt-primary);
    text-decoration: none;
}

.mkt-section-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Nav */
.mkt-nav {
    border-bottom: 1px solid var(--mkt-border);
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    z-index: 10;
}

.mkt-nav-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.mkt-logo {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--mkt-text) !important;
}

.mkt-nav-links {
    display: flex;
    gap: 1.75rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.mkt-nav-links a {
    color: var(--mkt-text-muted) !important;
}

.mkt-nav-links a:hover {
    color: var(--mkt-text) !important;
}

.mkt-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* Buttons */
.mkt-body .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.3rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
}

.mkt-body .btn-primary {
    background: var(--mkt-primary);
    color: #fff !important;
}

.mkt-body .btn-primary:hover {
    background: var(--mkt-primary-dark);
}

.mkt-body .btn-secondary {
    background: transparent;
    color: var(--mkt-text) !important;
    border: 1px solid var(--mkt-border);
}

.mkt-body .btn-secondary:hover {
    background: var(--mkt-bg-alt);
}

.mkt-body .btn-ghost {
    background: transparent;
    color: var(--mkt-text) !important;
    text-decoration: underline;
}

.mkt-body .btn-lg {
    padding: 0.9rem 1.75rem;
    font-size: 1.05rem;
    border-radius: 10px;
}

/* Hero */
.mkt-hero {
    padding: 4.5rem 0 5rem;
    background: linear-gradient(180deg, #f6f8fc 0%, #ffffff 100%);
}

.mkt-hero-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.mkt-eyebrow {
    display: inline-block;
    color: var(--mkt-primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
}

.mkt-hero-text h1 {
    font-size: 2.75rem;
    line-height: 1.15;
    margin: 0 0 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.mkt-hero-sub {
    font-size: 1.15rem;
    color: var(--mkt-text-muted);
    max-width: 560px;
    margin: 0 0 2rem;
}

.mkt-hero-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.mkt-hero-note {
    color: var(--mkt-text-muted);
    font-size: 0.9rem;
}

.mkt-hero-note i {
    color: var(--mkt-success);
    margin-right: 0.15rem;
}

/* Hero visual mockup */
.mkt-hero-visual {
    display: flex;
    justify-content: center;
}

.mkt-mock-card {
    width: 100%;
    max-width: 380px;
    background: #fff;
    border: 1px solid var(--mkt-border);
    border-radius: var(--mkt-radius);
    box-shadow: 0 20px 50px -20px rgba(26, 31, 54, 0.25);
    padding: 1.5rem;
}

.mkt-mock-header {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.mkt-mock-header span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--mkt-border);
}

.mkt-mock-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f1f2f5;
}

.mkt-mock-row-title .mkt-mock-bar {
    background: #d7ddf5;
}

.mkt-mock-bar {
    height: 10px;
    border-radius: 5px;
    background: #eef0f4;
}

.mkt-mock-bar.w40 { width: 40%; }
.mkt-mock-bar.w60 { width: 55%; }
.mkt-mock-bar.w70 { width: 65%; }
.mkt-mock-bar.w80 { width: 75%; }

.mkt-mock-pill {
    background: var(--mkt-success);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
}

.mkt-mock-pill-open {
    background: var(--mkt-primary);
}

.mkt-mock-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--mkt-border);
    font-size: 0.9rem;
    color: var(--mkt-text-muted);
}

.mkt-mock-total strong {
    color: var(--mkt-text);
    font-size: 1.1rem;
}

/* Sections */
.mkt-section {
    padding: 5rem 0;
}

.mkt-section-alt {
    background: var(--mkt-bg-alt);
}

.mkt-h2 {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 0.75rem;
    letter-spacing: -0.01em;
}

.mkt-h2-sub {
    text-align: center;
    color: var(--mkt-text-muted);
    max-width: 640px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
}

/* Features */
.mkt-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.mkt-feature {
    background: #fff;
    border: 1px solid var(--mkt-border);
    border-radius: var(--mkt-radius);
    padding: 1.75rem;
}

.mkt-feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: #eaf0fe;
    color: var(--mkt-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.mkt-feature h3 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
}

.mkt-feature p {
    margin: 0;
    color: var(--mkt-text-muted);
    font-size: 0.95rem;
}

/* Pricing */
.mkt-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.mkt-price-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--mkt-border);
    border-radius: var(--mkt-radius);
    padding: 1.75rem 1.5rem;
    text-align: center;
}

.mkt-price-card-highlight {
    border: 2px solid var(--mkt-primary);
    background: #f8faff;
}

.mkt-price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--mkt-primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    white-space: nowrap;
}

.mkt-price-label {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.mkt-price-amount {
    font-size: 2rem;
    font-weight: 800;
}

.mkt-price-sub {
    color: var(--mkt-text-muted);
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.mkt-price-desc {
    color: var(--mkt-text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.mkt-pricing-note {
    text-align: center;
    color: var(--mkt-text-muted);
    font-size: 0.95rem;
}

.mkt-pricing-note i {
    color: var(--mkt-primary);
    margin-right: 0.35rem;
}

/* Free tier card */
.mkt-free-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    background: #fff;
    border: 2px solid var(--mkt-success);
    border-radius: var(--mkt-radius);
    padding: 2rem 2.5rem;
    margin-bottom: 2rem;
}

.mkt-free-badge {
    position: absolute;
    top: -14px;
    left: 2.5rem;
    background: var(--mkt-success);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
}

.mkt-free-content {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    width: 100%;
    flex-wrap: wrap;
}

.mkt-free-heading {
    flex-shrink: 0;
    text-align: center;
}

.mkt-free-heading .mkt-price-amount {
    color: var(--mkt-success);
}

.mkt-free-desc {
    flex-grow: 1;
}

.mkt-free-desc p {
    margin: 0 0 0.6rem;
    font-weight: 600;
}

.mkt-free-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1.5rem;
    color: var(--mkt-text-muted);
    font-size: 0.92rem;
}

.mkt-free-list i {
    color: var(--mkt-success);
    margin-right: 0.4rem;
}

.mkt-pricing-transition {
    text-align: center;
    font-weight: 600;
    margin: 0 0 1.5rem;
}

/* Steps */
.mkt-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mkt-step {
    text-align: center;
}

.mkt-step-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--mkt-primary);
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.mkt-step h3 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
}

.mkt-step p {
    color: var(--mkt-text-muted);
    margin: 0;
    font-size: 0.95rem;
}

/* FAQ */
.mkt-faq-inner {
    max-width: 760px;
}

.mkt-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mkt-faq-item {
    background: #fff;
    border: 1px solid var(--mkt-border);
    border-radius: 10px;
    padding: 1rem 1.25rem;
}

.mkt-faq-item summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

.mkt-faq-item summary::-webkit-details-marker {
    display: none;
}

.mkt-faq-item summary::after {
    content: "+";
    float: right;
    font-weight: 400;
    color: var(--mkt-text-muted);
}

.mkt-faq-item[open] summary::after {
    content: "\2212";
}

.mkt-faq-item p {
    color: var(--mkt-text-muted);
    margin: 0.85rem 0 0.25rem;
    font-size: 0.95rem;
}

/* Final CTA */
.mkt-cta {
    padding: 4.5rem 0;
    background: linear-gradient(135deg, #2f6fed, #1f52c9);
    color: #fff;
    text-align: center;
}

.mkt-cta h2 {
    margin: 0 0 0.75rem;
    font-size: 1.9rem;
}

.mkt-cta p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 1.75rem;
}

.mkt-cta .btn-primary {
    background: #fff;
    color: var(--mkt-primary) !important;
}

.mkt-cta .btn-primary:hover {
    background: #eef0f4;
}

/* Footer */
.mkt-footer {
    padding: 2rem 0;
    border-top: 1px solid var(--mkt-border);
}

.mkt-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--mkt-text-muted);
    font-size: 0.9rem;
}

.mkt-footer-links {
    display: flex;
    gap: 1.5rem;
}

/* Responsive */
@media (max-width: 900px) {
    .mkt-hero-inner {
        grid-template-columns: 1fr;
    }

    .mkt-hero-visual {
        order: -1;
    }

    .mkt-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mkt-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mkt-steps {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .mkt-nav-links {
        display: none;
    }

    .mkt-free-card,
    .mkt-free-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .mkt-free-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .mkt-hero-text h1 {
        font-size: 2.1rem;
    }

    .mkt-features-grid {
        grid-template-columns: 1fr;
    }

    .mkt-pricing-grid {
        grid-template-columns: 1fr;
    }

    .mkt-footer-inner {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}
