:root {
    --bg-900: #f2f6ff;
    --bg-800: #dbe7ff;
    --bg-700: #d3e0ff;
    --card: rgba(255, 255, 255, 0.88);
    --card-strong: rgba(255, 255, 255, 0.95);
    --card-border: rgba(126, 158, 224, 0.34);
    --text-main: #1d2745;
    --text-soft: #5c6f9a;
    --brand: #4e9bff;
    --brand-2: #00d8ff;
    --brand-3: #6c63ff;
    --ok: #61f0be;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    min-height: 100%;
}

body {
    font-family: "Outfit", "Noto Sans", sans-serif;
    color: var(--text-main);
    background:
        radial-gradient(circle at 14% 10%, rgba(112, 161, 255, 0.42), rgba(112, 161, 255, 0) 42%),
        radial-gradient(circle at 82% 18%, rgba(157, 132, 255, 0.30), rgba(157, 132, 255, 0) 44%),
        radial-gradient(circle at 70% 86%, rgba(94, 219, 255, 0.25), rgba(94, 219, 255, 0) 43%),
        linear-gradient(150deg, var(--bg-900), var(--bg-800) 45%, var(--bg-700));
    overflow-x: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(92px);
    z-index: -1;
    pointer-events: none;
    animation: orbFloat 12s ease-in-out infinite alternate;
}

body::before {
    left: -160px;
    top: -120px;
    background: rgba(61, 139, 255, 0.36);
}

body::after {
    right: -160px;
    bottom: -140px;
    background: rgba(0, 210, 255, 0.24);
    animation-delay: 1.7s;
}

@keyframes orbFloat {
    from { transform: translateY(0px) scale(1); }
    to { transform: translateY(36px) scale(1.08); }
}

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

.marketing-shell {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.top-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.76);
    border-bottom: 1px solid rgba(126, 160, 224, 0.32);
}

.top-nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Plus Jakarta Sans", "Noto Sans", sans-serif;
    font-weight: 800;
    letter-spacing: 0.2px;
    font-size: 1.38rem;
}

.brand-logo {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.brand span {
    background: linear-gradient(100deg, var(--brand), var(--brand-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.nav-links a {
    position: relative;
    padding: 6px 10px;
    border-radius: 8px;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}

.nav-links a:hover {
    color: #0e2f73;
    background: rgba(111, 171, 255, 0.25);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid transparent;
    padding: 11px 20px;
    font-weight: 700;
    font-size: 0.93rem;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

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

.btn-primary {
    color: #ffffff;
    background: linear-gradient(95deg, #2e7eff, #5f63ff);
    box-shadow: 0 8px 26px rgba(70, 120, 255, 0.42);
}

.btn-ghost {
    border-color: rgba(122, 152, 214, 0.62);
    color: #203058;
    background: rgba(255, 255, 255, 0.65);
}

.hero {
    padding: 72px 0 30px;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 30px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    color: #2651a2;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(104, 146, 227, 0.52);
    font-size: .82rem;
    margin-bottom: 16px;
}

h1 {
    margin: 0;
    font-family: "Plus Jakarta Sans", "Noto Sans", sans-serif;
    font-size: clamp(2.2rem, 5vw, 4.1rem);
    line-height: 1.03;
    letter-spacing: -0.045em;
}

h1 .accent {
    background: linear-gradient(90deg, #386dd8, #17a8d8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    margin-top: 16px;
    color: var(--text-soft);
    line-height: 1.66;
    max-width: 560px;
    font-size: 1.02rem;
}

.feature-list {
    margin: 22px 0;
    padding: 0;
    list-style: none;
}

.feature-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 10px;
    color: #2f3f66;
}

.feature-list li::before {
    content: "✓";
    color: var(--ok);
    font-weight: 700;
}

.hero-card {
    border: 1px solid var(--card-border);
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.92), rgba(238, 245, 255, 0.92));
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 20px 44px rgba(63, 98, 168, 0.26);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0, rgba(0, 224, 255, 0.18), transparent 44%);
    pointer-events: none;
}

.chat-line {
    position: relative;
    margin: 14px 0;
    border-radius: 14px;
    padding: 11px 14px;
    max-width: 88%;
    line-height: 1.5;
    color: #1d2d53;
    font-size: .95rem;
}

.chat-line.client {
    background: rgba(230, 239, 255, 0.95);
}

.chat-line.crm {
    margin-left: auto;
    background: rgba(179, 212, 255, 0.94);
}

.kpi-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.kpi {
    border: 1px solid rgba(132, 174, 255, 0.3);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.86);
    padding: 16px;
    box-shadow: inset 0 1px 0 rgba(173, 211, 255, 0.12);
}

.kpi strong {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.kpi span {
    color: var(--text-soft);
    font-size: .86rem;
}

.section {
    margin-top: 28px;
    border: 1px solid rgba(128, 169, 243, 0.26);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.8);
    padding: 28px;
}

.section h2 {
    margin-top: 0;
    margin-bottom: 18px;
    font-family: "Plus Jakarta Sans", "Noto Sans", sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    letter-spacing: -0.03em;
}

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

.cap-card {
    border: 1px solid rgba(131, 171, 245, 0.3);
    border-radius: 16px;
    background: rgba(246, 250, 255, 0.92);
    padding: 16px;
}

.cap-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.03rem;
}

.cap-card p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.58;
    font-size: .92rem;
}

.price-head {
    text-align: center;
    margin: 52px 0 18px;
}

.price-head p {
    color: var(--text-soft);
}

.billing-toggle {
    margin: 22px auto 30px;
    width: fit-content;
    display: flex;
    background: rgba(19, 35, 85, 0.68);
    border: 1px solid rgba(122, 166, 243, 0.38);
    border-radius: 999px;
    padding: 5px;
    gap: 4px;
}

.billing-toggle button {
    border: 0;
    border-radius: 999px;
    padding: 9px 16px;
    font-weight: 700;
    color: #d7e5ff;
    background: transparent;
    cursor: pointer;
}

.billing-toggle button.active {
    color: #061434;
    background: linear-gradient(95deg, #87c9ff, #7df5ff);
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.price-card {
    border: 1px solid rgba(129, 173, 248, 0.3);
    border-radius: 20px;
    background: var(--card-strong);
    padding: 18px;
    display: flex;
    flex-direction: column;
    box-shadow: inset 0 1px 0 rgba(181, 215, 255, 0.12);
}

.price-card.popular {
    border-color: rgba(128, 230, 255, 0.8);
    background: linear-gradient(165deg, rgba(244, 250, 255, 0.97), rgba(234, 246, 255, 0.97));
    box-shadow: 0 20px 40px rgba(44, 151, 255, 0.18);
}

.plan {
    font-family: "Plus Jakarta Sans", "Noto Sans", sans-serif;
    font-size: 1.45rem;
    margin: 0;
}

.plan-sub {
    color: var(--text-soft);
    font-size: .86rem;
    min-height: 38px;
    margin: 9px 0;
}

.price {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.price small {
    font-size: 1rem;
    color: var(--text-soft);
}

.tag {
    align-self: flex-start;
    margin-bottom: 12px;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: .74rem;
    color: #08214a;
    background: linear-gradient(90deg, #97d4ff, #8fffe9);
    font-weight: 700;
}

.list {
    list-style: none;
    padding: 0;
    margin: 14px 0 18px;
    flex: 1;
}

.list li {
    color: #2e3f69;
    margin-bottom: 9px;
    font-size: .9rem;
    display: flex;
    gap: 8px;
}

.list li::before {
    content: "✓";
    color: #8bf5ce;
    font-weight: 700;
}

.footer-note {
    margin-top: 20px;
    font-size: .86rem;
    color: #6077a8;
    text-align: center;
}

.legal-footer {
    margin: 28px 0 4px;
    text-align: center;
    color: #415a8f;
    font-size: 14px;
}

.legal-footer a {
    color: #2f4f95;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-footer .divider {
    color: #8da4d5;
    margin: 0 8px;
}

@media (max-width: 1080px) {
    .price-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .cap-grid,
    .kpi-grid,
    .price-grid {
        grid-template-columns: 1fr;
    }

    .top-nav-inner {
        padding: 12px 14px;
    }

    .marketing-shell {
        padding: 0 14px 40px;
    }

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