:root {
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --text: #0f172a;
    --muted: #475569;
    --line: #e2e8f0;
    --brand: #0f172a;
    --brand-2: #2563eb;
    --accent: #eff6ff;
    --success: #dcfce7;
    --radius: 18px;
    --shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo span {
    color: var(--brand-2);
}

.main-nav {
    display: flex;
    gap: 1.25rem;
    font-weight: 600;
}

.main-nav a:hover,
.site-footer a:hover {
    color: var(--brand-2);
}

.hero {
    padding: 5rem 0 3rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: start;
}

.eyebrow {
    display: inline-flex;
    margin: 0 0 1rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: var(--accent);
    color: var(--brand-2);
    font-weight: 700;
    font-size: 0.92rem;
}

h1, h2, h3, h4 {
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-top: 0;
}

h1 {
    font-size: clamp(2.4rem, 5vw, 4.25rem);
    margin-bottom: 1rem;
}

h1 span,
.price,
.single-plan-price strong {
    color: var(--brand-2);
}

h2 {
    font-size: clamp(1.85rem, 3.2vw, 2.8rem);
    margin-bottom: 0.75rem;
}

.lead,
.section-heading p,
.card p,
.step p,
.feature-box p,
.single-plan p,
.faq p,
.site-footer p,
.site-bottom p {
    color: var(--muted);
}

.hero-actions,
.cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0.9rem 1.2rem;
    border-radius: 14px;
    font-weight: 700;
    transition: 0.25s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--brand-2);
    color: #fff;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25);
}

.btn-secondary {
    border: 1px solid var(--line);
    background: #fff;
}

.btn-block {
    width: 100%;
}

.price-card,
.card,
.feature-box,
.single-plan,
.cta-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.price-card {
    padding: 2rem;
    position: sticky;
    top: 6rem;
}

.mini-title,
.tiny-note,
.muted {
    color: var(--muted);
}

.price-line {
    display: flex;
    align-items: flex-end;
    gap: 0.6rem;
    margin: 1rem 0 0.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.term {
    font-weight: 600;
    color: var(--muted);
}

.check-list,
.single-plan ul,
.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 0;
}

.check-list li,
.single-plan li,
.site-footer li {
    position: relative;
    padding-left: 1.7rem;
    margin-bottom: 0.8rem;
}

.check-list li::before,
.single-plan li::before,
.site-footer li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #16a34a;
    font-weight: 800;
}

.compact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.3rem 1rem;
    max-width: 42rem;
}

.trust-bar {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 1rem 0;
    text-align: center;
    font-weight: 700;
    color: var(--muted);
}

.section {
    padding: 5rem 0;
}

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

.section-heading {
    max-width: 760px;
    margin-bottom: 2rem;
}

.section-heading.center {
    text-align: center;
    margin-inline: auto;
}

.cards.three-up {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.card {
    padding: 1.6rem;
}

.two-col {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: start;
}

.steps {
    display: grid;
    gap: 1rem;
}

.step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}

.step span {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #dbeafe;
    color: var(--brand-2);
    font-weight: 800;
    font-size: 1.1rem;
}

.feature-box {
    padding: 2rem;
}

.single-plan {
    display: grid;
    grid-template-columns: 1.2fr 0.6fr 1fr;
    gap: 1.5rem;
    padding: 2rem;
    align-items: start;
}

.single-plan-price {
    text-align: center;
    align-self: center;
}

.single-plan-price strong {
    display: block;
    font-size: 2.6rem;
    line-height: 1;
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1rem 1.2rem;
}

.faq summary {
    cursor: pointer;
    font-weight: 700;
}

.cta-box {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, #eff6ff, #ffffff);
}

.site-footer {
    padding: 3rem 0 2rem;
    background: #0f172a;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 2rem;
}

.site-footer p,
.site-footer li,
.site-bottom p {
    color: rgba(255,255,255,0.8);
}

.site-bottom {
    background: #020617;
    color: #fff;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.bottom-wrap {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    flex-wrap: wrap;
}

@media (max-width: 960px) {
    .hero-grid,
    .two-col,
    .single-plan,
    .footer-grid,
    .cards.three-up,
    .trust-items {
        grid-template-columns: 1fr;
    }

    .price-card {
        position: static;
    }

    .cta-box,
    .nav-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: 3.5rem;
    }

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

    .container {
        width: min(100% - 1.2rem, 1120px);
    }

    .section {
        padding: 3.5rem 0;
    }
}
.header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
}
.btn {
    background: #ff6b00;
    color: #fff;
    padding: 12px 25px;
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 50px;
}

.logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}
.cta-nav {
    background: #ff6b00;
    color: #fff !important;
    padding: 8px 15px;
    border-radius: 5px;
}