* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, sans-serif;
}

body {
    background: white;
    color: #050816;
}

main {
    max-width: 1180px;
    margin: 0 auto;
    padding: 72px 40px;
}

.mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.section-head {
    margin-bottom: 22px;
}

.section-head h2 {
    font-size: 2rem;
    line-height: 1.15;
}

.section-head p {
    margin-top: 10px;
    color: #64748b;
    line-height: 1.6;
}

/* =======================
HERO
======================= */

.hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 34px;
    align-items: start;
    margin: 0 auto 84px auto;
}

.hero h1 {
    font-size: 3.6rem;
    line-height: 1.03;
    margin-bottom: 22px;
}

.hero h1 span {
    color: #14b814;
}

.tagline {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #64748b;
    margin-bottom: 26px;
    max-width: 42rem;
}

.actions {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.primary {
    padding: 14px 20px;
    background: #050816;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
}

.secondary {
    padding: 14px 20px;
    border: 1px solid #ddd;
    color: #050816;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.badge {
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #0f172a;
    padding: 8px 10px;
    border-radius: 999px;
    font-size: 0.95rem;
}

/* =======================
SNIPPET
======================= */

.snippet {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    background: white;
}

.bar {
    padding: 12px 16px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 0.95rem;
}

pre {
    padding: 18px 16px;
    line-height: 1.7;
    overflow: auto;
    font-size: 0.95rem;
}

pre code {
    display: block;
    white-space: pre;
}

.snippet-note {
    padding: 12px 16px;
    border-top: 1px solid #e2e8f0;
    background: #fff;
    color: #475569;
    font-size: 0.95rem;
}

/* =======================
STEPS
======================= */

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 86px;
}

.steps span {
    color: #14b814;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.steps h3 {
    margin: 12px 0 8px 0;
}

.steps p {
    color: #64748b;
    line-height: 1.6;
}

/* =======================
FEATURES
======================= */

.features {
    margin-bottom: 86px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.feature {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 18px;
    background: #fff;
}

.feature h3 {
    margin-bottom: 8px;
}

.feature p {
    color: #64748b;
    line-height: 1.6;
}

/* =======================
PRICING
======================= */

.pricing {
    margin-bottom: 86px;
}

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

.card {
    position: relative;
    padding: 26px;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.plan {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.card h2 {
    font-size: 2.6rem;
    line-height: 1;
    margin-bottom: 18px;
}

.card h2 span {
    font-size: 0.45em;
    color: #64748b;
    font-weight: 600;
}

.list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #0f172a;
    margin-bottom: 18px;
}

.list li {
    color: #475569;
    line-height: 1.5;
}

.plan-cta {
    margin-top: auto;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #dbe2ea;
    color: #050816;
    font-weight: 700;
}

.pro {
    border: 2px solid #14b814;
    background: #f8fff8;
}

.pro::after {
    content: "MOST POPULAR";
    position: absolute;
    top: 18px;
    right: 18px;
    color: #14b814;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.mini-note {
    margin-top: 10px;
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.45;
}

/* =======================
FAQ
======================= */

.faq {
    margin-bottom: 40px;
}

details {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 14px 16px;
    margin-top: 12px;
}

details summary {
    cursor: pointer;
    font-weight: 700;
    color: #0f172a;
}

details p {
    margin-top: 10px;
    color: #64748b;
    line-height: 1.6;
}

/* =======================
MOBILE
======================= */

@media (max-width: 1000px) {
    .hero {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    main {
        padding: 40px 24px;
    }

    .hero h1 {
        font-size: 2.6rem;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .actions {
        flex-direction: column;
    }
}


/* =======================
COMPARE
======================= */

.compare{
    margin-bottom: 86px;
}

.compare-table{
    border:1px solid #e2e8f0;
    border-radius: 16px;
    overflow:hidden;
    background:#fff;
}

.compare-table .row{
    display:grid;
    grid-template-columns: 1.3fr 0.7fr 1fr;
    gap: 12px;
    padding: 12px 14px;
    border-top: 1px solid #e2e8f0;
}

.compare-table .row.head{
    border-top: 0;
    background: #f8fafc;
    font-weight: 800;
    color:#0f172a;
}

.compare-table .cell{
    color:#475569;
    line-height: 1.4;
}

.compare-table .row.head .cell{
    color:#0f172a;
}

.compare-note{
    margin-top: 12px;
    color:#64748b;
    line-height: 1.6;
}

@media (max-width: 768px){
    .compare-table .row{
        grid-template-columns: 1fr;
    }
}
