:root {
    --bg: #f7f7f5;
    --surface: #ffffff;
    --text: #171717;
    --muted: #63635f;
    --line: #e5e5df;
    --line-dark: #d8d8d2;
    --primary: #111111;
    --radius: 16px;
    --shadow: 0 8px 24px rgba(17, 17, 17, 0.05);
}

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

html,
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid var(--line-dark);
    background: rgba(247, 247, 245, 0.9);
    backdrop-filter: blur(10px);
}

.nav-wrap {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-weight: 700;
}

.brand img {
    width: 340px;
    height: 88px;
    object-fit: contain;
    object-position: left center;
}

@media (max-width: 1200px) {
    .nav-wrap {
        min-height: 86px;
    }

    .brand img {
        width: 280px;
        height: 72px;
    }

    .main-nav a {
        padding: 6px 10px;
        font-size: 13px;
    }

    .nav-actions .btn {
        padding: 8px 11px;
        font-size: 13px;
    }

    .footer-logo {
        width: 250px;
        height: 66px;
    }
}

.main-nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #f1f1ec;
}

.main-nav a {
    color: var(--muted);
    padding: 7px 12px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 14px;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--text);
    background: #ffffff;
    box-shadow: inset 0 0 0 1px var(--line);
}

.nav-actions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid transparent;
    padding: 9px 14px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-lg {
    padding: 11px 18px;
    font-size: 15px;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
    border-color: #0f0f0f;
}

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

.btn-ghost {
    border-color: var(--line-dark);
    background: #ffffff;
    color: var(--text);
}

.btn-ghost:hover {
    background: #f8f8f6;
}

.btn-block {
    width: 100%;
}

.hero {
    padding: 80px 0 34px;
}

.hero-illustration-wrap {
    margin-top: 26px;
}

.hero-illustration {
    background: #ffffff;
    border: 1px solid var(--line-dark);
    border-radius: 22px;
    box-shadow: 0 16px 34px rgba(17, 17, 17, 0.09);
    overflow: hidden;
}

.hero-illustration img {
    width: 100%;
    display: block;
}

.hero-centered {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.eyebrow {
    color: #4b4b47;
    font-weight: 600;
    margin-bottom: 10px;
}

h1 {
    font-size: clamp(2.1rem, 5.3vw, 4.2rem);
    line-height: 1.05;
    letter-spacing: -0.038em;
    margin-bottom: 18px;
}

.lead {
    color: var(--muted);
    font-size: clamp(1rem, 1.7vw, 1.22rem);
    max-width: 760px;
    margin: 0 auto 24px;
}

.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 12px;
}

.subtle {
    color: var(--muted);
    font-size: 0.94rem;
}

.hero-panel,
.card,
.mini-card,
.cta-box {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.trust-strip {
    padding: 18px 0 10px;
}

.trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--muted);
    flex-wrap: wrap;
    font-size: 14px;
}

.trust-pills {
    display: inline-flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-pills span {
    padding: 6px 10px;
    border: 1px solid var(--line-dark);
    background: #fff;
    border-radius: 999px;
}

.hero-panel {
    padding: 24px;
}

.hero-panel h3 {
    margin-bottom: 12px;
}

.hero-panel ul,
.card ul {
    padding-left: 18px;
}

.hero-panel li,
.card li {
    margin-bottom: 8px;
}

.section {
    padding: 68px 0;
}

.page-vector-wrap {
    margin-top: 18px;
}

.page-vector-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.page-vector-card img {
    width: 100%;
    display: block;
}

.pricing-illustration-section {
    margin-top: 8px;
}

.section-soft {
    background: #efefea;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

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

h2 {
    font-size: clamp(1.7rem, 3.1vw, 2.8rem);
    line-height: 1.13;
    letter-spacing: -0.025em;
    margin-bottom: 12px;
}

h3 {
    font-size: 1.18rem;
    margin-bottom: 8px;
}

.section-head p,
.card p,
.split p,
.page-hero p {
    color: var(--muted);
}

.cards {
    display: grid;
    gap: 18px;
}

.cards.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.card {
    padding: 22px;
}

.icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid transparent;
}

.icon-badge i {
    font-size: 19px;
    line-height: 1;
}

.icon-blue {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-color: #93c5fd;
    color: #1d4ed8;
}

.icon-cyan {
    background: linear-gradient(135deg, #cffafe, #bae6fd);
    border-color: #67e8f9;
    color: #0e7490;
}

.icon-green {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border-color: #86efac;
    color: #15803d;
}

.icon-amber {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-color: #fcd34d;
    color: #b45309;
}

.icon-purple {
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
    border-color: #c4b5fd;
    color: #6d28d9;
}

.icon-rose {
    background: linear-gradient(135deg, #ffe4e6, #fecdd3);
    border-color: #fda4af;
    color: #be123c;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.bento {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.bento.large {
    grid-column: span 2;
    min-height: 220px;
}

.split {
    display: grid;
    gap: 22px;
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.stack {
    display: grid;
    gap: 12px;
}

.mini-card {
    padding: 16px 16px;
    display: grid;
    gap: 4px;
}

.mini-card span {
    color: var(--muted);
    font-size: 0.95rem;
}

.page-hero {
    padding: 72px 0 8px;
}

.page-hero .container {
    text-align: center;
    max-width: 860px;
}

.feature-card ul {
    margin-top: 10px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    margin: 6px 0;
}

.price span {
    font-size: 1rem;
    color: var(--muted);
    font-weight: 500;
}

.pricing-card {
    position: relative;
}

.highlight {
    border-color: #1c1c1c;
    box-shadow: 0 14px 30px rgba(17, 17, 17, 0.09);
}

.badge-pill {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    background: #171717;
    padding: 3px 10px;
    border-radius: 999px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.cta {
    padding: 18px 0 74px;
}

.cta-box {
    padding: 34px;
    text-align: center;
}

.cta-box p {
    color: var(--muted);
    margin-bottom: 16px;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #f2f2ee;
    margin-top: 24px;
}

.footer-grid {
    padding: 34px 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 18px;
}

.footer-grid h4,
.footer-grid h5 {
    margin-bottom: 8px;
}

.footer-logo {
    width: 300px;
    height: 78px;
    object-fit: contain;
    object-position: left center;
    margin-bottom: 8px;
}

.footer-grid p,
.footer-grid a {
    color: var(--muted);
    display: block;
    margin-bottom: 6px;
}

.footer-grid a:hover {
    color: var(--text);
}

.footer-bottom {
    border-top: 1px solid var(--line);
    padding: 14px 0 22px;
    color: var(--muted);
    font-size: 0.92rem;
}

@media (max-width: 980px) {
    .nav-wrap {
        min-height: 74px;
    }

    .brand img {
        width: 220px;
        height: 56px;
    }

    .footer-logo {
        width: 220px;
        height: 58px;
    }

    .main-nav {
        display: none;
    }

    .nav-actions .btn:nth-child(2) {
        display: none;
    }

    .bento-grid,
    .cards.three,
    .cards.two,
    .split,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .bento.large {
        grid-column: auto;
        min-height: 190px;
    }

    .hero {
        padding-top: 56px;
    }
}
