:root {
    --bg: #f5f7ff;
    --surface: #ffffff;
    --ink: #101426;
    --muted: #53607a;
    --brand: #1f67ff;
    --brand-strong: #1348b5;
    --brand-soft: #dfeaff;
    --line: #d9e2f5;
    --accent: #14b8a6;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 8px 22px rgba(14, 42, 96, 0.08);
    --shadow-md: 0 18px 50px rgba(13, 35, 79, 0.14);
    --container: 1160px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--ink);
    background: radial-gradient(circle at 12% 8%, #e7efff 0, #f7f9ff 40%, #f5f7ff 75%);
    line-height: 1.55;
}

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

img {
    max-width: 100%;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    background: #000;
    color: #fff;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    z-index: 1000;
}

.container {
    width: min(calc(100% - 2.5rem), var(--container));
    margin: 0 auto;
}

.section {
    padding: 5.5rem 0;
}

.section-head {
    margin-bottom: 2.2rem;
    max-width: 680px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-weight: 700;
    color: var(--brand-strong);
    background: var(--brand-soft);
    border-radius: 999px;
    padding: 0.3rem 0.8rem;
    margin-bottom: 0.9rem;
}

h1,
h2,
h3,
h4 {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.15;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.1rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.7rem, 3.8vw, 2.6rem);
}

p {
    color: var(--muted);
    margin: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.94rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.72rem 1.2rem;
    border: 1px solid transparent;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
    background: linear-gradient(140deg, #1f67ff, #316dff 60%, #5a89ff);
    color: #fff;
    box-shadow: 0 10px 22px rgba(31, 103, 255, 0.29);
}

.btn-outline {
    border-color: #b8c9ef;
    color: #17336f;
    background: #fff;
}

.btn-ghost {
    color: #2e4474;
    background: transparent;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    border-bottom: 1px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
    background: rgba(247, 250, 255, 0.88);
    backdrop-filter: blur(8px);
    border-color: #d8e3fb;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.68rem;
    font-weight: 800;
    color: #111e3d;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    background: linear-gradient(145deg, #0e49c4, #2f77ff);
    color: #fff;
    box-shadow: 0 8px 20px rgba(23, 87, 225, 0.28);
}

.main-nav {
    margin-left: auto;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.2rem;
}

.nav-item {
    position: relative;
}

.nav-link,
.nav-button {
    color: #1f2d4e;
    font-weight: 600;
    font-size: 0.94rem;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0.3rem 0.1rem;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 0;
    min-width: 230px;
    border: 1px solid #d8e3fb;
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow-md);
    padding: 0.5rem;
    display: grid;
    gap: 0.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: 0.17s ease;
}

.nav-dropdown a {
    font-size: 0.9rem;
    color: #1f3666;
    padding: 0.55rem 0.6rem;
    border-radius: 8px;
}

.nav-dropdown a:hover {
    background: #eef4ff;
}

.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown.is-open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
}

.menu-toggle,
.mobile-nav {
    display: none;
}

.hero {
    padding: 3.1rem 0 4.2rem;
}

.hero-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1.03fr 0.97fr;
    align-items: center;
}

.hero-copy p {
    max-width: 56ch;
    font-size: 1.06rem;
}

.hero-actions {
    margin: 1.7rem 0 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    font-size: 0.88rem;
    color: #23447d;
}

.trust-points span {
    background: #eaf1ff;
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
}

.placeholder {
    border: 1.5px dashed #93addd;
    border-radius: var(--radius-md);
    display: grid;
    place-items: center;
    padding: 1rem;
    color: #2f4a80;
    text-align: center;
    font-weight: 700;
    background: linear-gradient(160deg, #f6f9ff, #ebf2ff);
}

.placeholder small {
    margin-top: 0.45rem;
    font-weight: 500;
    color: #49659d;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual img {
    display: block;
    width: min(100%, 640px);
    height: auto;
    object-fit: contain;
}

.audience-section {
    padding: 1.1rem 0 3rem;
}

.audience-head {
    max-width: 720px;
}

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

.audience-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.98));
    border: 1px solid #d9e3f7;
    border-radius: 20px;
    padding: 1.2rem;
    box-shadow: 0 10px 28px rgba(14, 42, 96, 0.06);
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.audience-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgba(31, 103, 255, 0.95), rgba(20, 184, 166, 0.7));
    opacity: 0;
    transition: opacity 0.18s ease;
}

.audience-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 38px rgba(16, 48, 111, 0.1);
    border-color: #bfd0f5;
}

.audience-card:hover::before {
    opacity: 1;
}

.audience-card h3 {
    font-size: 1.06rem;
    margin-bottom: 0.42rem;
}

.audience-card p {
    font-size: 0.95rem;
    line-height: 1.58;
}

.audience-icon {
    margin-bottom: 0.95rem;
    width: 46px;
    height: 46px;
    border-style: solid;
    border-color: #d4e1fb;
    background: linear-gradient(180deg, #fdfefe, #ebf3ff);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.audience-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.4rem;
    padding: 1.1rem 1.25rem;
    border: 1px solid #d9e3f7;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(248, 251, 255, 0.95), rgba(240, 245, 255, 0.95));
}

.audience-cta p {
    color: #223d72;
    font-weight: 600;
}

.audience-cta-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

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

.feature-card,
.integration-card,
.testimonial-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 1.15rem;
    box-shadow: var(--shadow-sm);
}

.feature-card h3,
.integration-card h3,
.testimonial-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-tag {
    margin-top: 0.7rem;
    display: inline-flex;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.45rem;
    border-radius: 6px;
    background: #f3f7ff;
    color: #305595;
    border: 1px solid #d5e2fd;
}

.icon-placeholder {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px dashed #9cb4e3;
    display: grid;
    place-items: center;
    margin-bottom: 0.8rem;
    color: #3a5a96;
    background: linear-gradient(180deg, #f8fbff, #eef4ff);
}

.icon-placeholder svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.05;
}

.learn-link {
    margin-top: 0.85rem;
    display: inline-block;
    color: #1e53c3;
    font-weight: 700;
    font-size: 0.88rem;
}

.cta-banner {
    margin-top: 2rem;
    background: linear-gradient(140deg, #0f2c63, #1d4ea2 55%, #2f6be0);
    border-radius: var(--radius-lg);
    color: #fff;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cta-banner p {
    color: #d8e4ff;
    max-width: 64ch;
}

.cta-banner .btn-outline {
    border-color: rgba(255, 255, 255, 0.48);
    color: #fff;
    background: transparent;
}

.product-proof-layout {
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
    align-items: stretch;
}

.product-demo-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.98));
    border: 1px solid #d7e3fb;
    border-radius: 28px;
    padding: 1.25rem;
    box-shadow: 0 18px 48px rgba(15, 42, 96, 0.09);
}

.demo-stage {
    position: relative;
    border-radius: 20px;
    padding: 1rem;
    min-height: 360px;
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 173, 65, 0.26), transparent 22%),
        radial-gradient(circle at 72% 28%, rgba(31, 103, 255, 0.16), transparent 26%),
        linear-gradient(180deg, #f8fbff, #eaf1ff);
    border: 1px solid #d5e1f8;
    overflow: hidden;
}

.demo-stage::after {
    content: "";
    position: absolute;
    inset: 18px 22px auto auto;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.16), transparent 72%);
    pointer-events: none;
}

.demo-browser {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(191, 208, 245, 0.95);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 32px rgba(19, 48, 106, 0.12);
}

.demo-browser-bar {
    display: flex;
    gap: 0.35rem;
    padding: 0.7rem 0.85rem;
    background: linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(234, 241, 255, 0.96));
    border-bottom: 1px solid #dce6fb;
}

.demo-browser-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #bfd1f5;
}

.demo-browser-bar span:first-child {
    background: #ffb15c;
}

.demo-browser-bar span:nth-child(2) {
    background: #67d6bf;
}

.demo-browser-bar span:nth-child(3) {
    background: #7fa9ff;
}

.demo-browser-body {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    min-height: 250px;
}

.demo-sidebar {
    padding: 0.95rem 0.7rem;
    background: linear-gradient(180deg, #153266, #1f468d);
}

.demo-side-chip {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    margin-bottom: 1rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08));
}

.demo-side-line {
    height: 8px;
    border-radius: 999px;
    margin-bottom: 0.7rem;
    background: rgba(215, 228, 255, 0.4);
}

.demo-side-line.short {
    width: 70%;
}

.demo-content {
    padding: 1rem;
}

.demo-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 0.9rem;
}

.demo-toolbar-line,
.demo-copy-line,
.analytics-kicker,
.analytics-label,
.demo-hero-block {
    background: linear-gradient(90deg, #dfe8fb, #edf3ff);
}

.demo-toolbar-line {
    width: 42%;
    height: 12px;
    border-radius: 999px;
}

.demo-toolbar-pill {
    width: 72px;
    height: 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, #1f67ff, #5c89ff);
}

.demo-page-grid {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: minmax(0, 1.55fr) 150px;
    align-items: start;
}

.demo-page-main {
    position: relative;
    min-height: 182px;
    padding: 1rem 1rem 0.8rem;
    border: 1px solid #d8e3f8;
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.96)),
        linear-gradient(140deg, rgba(31, 103, 255, 0.06), rgba(20, 184, 166, 0.05));
    overflow: hidden;
}

.demo-hero-block {
    width: 76%;
    height: 44px;
    border-radius: 12px;
    margin-bottom: 0.7rem;
}

.demo-copy-line {
    width: 88%;
    height: 10px;
    border-radius: 999px;
    margin-bottom: 0.5rem;
}

.demo-copy-line.wide {
    width: 64%;
}

.demo-button-row {
    display: flex;
    gap: 0.45rem;
    margin-top: 0.7rem;
}

.demo-button {
    display: block;
    width: 76px;
    height: 28px;
    border-radius: 999px;
}

.demo-button.primary {
    background: linear-gradient(135deg, #ff9058, #ffb35b);
}

.demo-button.secondary {
    background: linear-gradient(135deg, #e2ebff, #f4f7ff);
    border: 1px solid #d9e4fb;
}

.cursor-trail {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.cursor-trail path {
    fill: none;
    stroke: rgba(42, 157, 143, 0.55);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 8 8;
}

.cursor-dot {
    position: absolute;
    top: 31%;
    left: 71%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #1f67ff;
    box-shadow: 0 0 0 5px rgba(31, 103, 255, 0.16);
}

.heat-spot {
    position: absolute;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 90, 58, 0.96) 0, rgba(255, 198, 72, 0.88) 34%, rgba(255, 230, 128, 0.42) 56%, rgba(255, 230, 128, 0) 72%);
    filter: blur(0.2px);
}

.heat-spot-one {
    top: 34%;
    left: 18%;
}

.heat-spot-two {
    top: 21%;
    left: 64%;
}

.heat-spot-three {
    top: 64%;
    left: 40%;
}

.demo-analytics-panel {
    border: 1px solid #d9e3f8;
    border-radius: 16px;
    padding: 0.9rem;
    background: linear-gradient(180deg, #fdfefe, #f3f7ff);
}

.analytics-kicker {
    width: 68%;
    height: 10px;
    border-radius: 999px;
    margin-bottom: 0.9rem;
}

.analytics-stat {
    margin-bottom: 0.75rem;
}

.analytics-value {
    display: block;
    width: 52px;
    height: 20px;
    border-radius: 8px;
    margin-bottom: 0.35rem;
    background: linear-gradient(135deg, rgba(31, 103, 255, 0.18), rgba(20, 184, 166, 0.16));
}

.analytics-value.short {
    width: 40px;
}

.analytics-label {
    display: block;
    width: 76%;
    height: 9px;
    border-radius: 999px;
}

.analytics-chart {
    display: grid;
    align-items: end;
    gap: 0.35rem;
    grid-template-columns: repeat(5, 1fr);
    height: 68px;
    margin: 0.9rem 0;
}

.analytics-chart span {
    border-radius: 8px 8px 3px 3px;
    background: linear-gradient(180deg, #69a0ff, #2a67df);
}

.analytics-chart span:first-child {
    height: 38%;
}

.analytics-chart span:nth-child(2) {
    height: 72%;
}

.analytics-chart span:nth-child(3) {
    height: 52%;
}

.analytics-chart span:nth-child(4) {
    height: 88%;
}

.analytics-chart span:nth-child(5) {
    height: 64%;
}

.analytics-events {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.analytics-events span {
    display: block;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(90deg, #dfe8fb, #edf3ff);
}

.analytics-events span:first-child {
    width: 88%;
}

.analytics-events span:nth-child(2) {
    width: 74%;
}

.analytics-events span:nth-child(3) {
    width: 81%;
}

.demo-replay-bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.8rem;
    padding: 0.85rem 1rem 1rem;
    border-top: 1px solid #dce6fb;
    background: linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(240, 245, 255, 0.94));
}

.replay-controls {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.replay-play {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1f67ff, #5d8cff);
}

.replay-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff9d5e;
}

.replay-track {
    position: relative;
    height: 8px;
    border-radius: 999px;
    background: #d8e4fb;
}

.replay-progress {
    position: absolute;
    inset: 0 auto 0 0;
    width: 58%;
    border-radius: inherit;
    background: linear-gradient(90deg, #1f67ff, #50b8d0);
}

.event-marker {
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 10px rgba(17, 46, 102, 0.14);
}

.event-marker.one {
    left: 22%;
    background: #ff9a52;
}

.event-marker.two {
    left: 49%;
    background: #15b7a5;
}

.event-marker.three {
    left: 77%;
    background: #ff6860;
}

.replay-time {
    width: 58px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, #dfe8fb, #edf3ff);
}

.product-demo-copy {
    padding: 1rem 0.2rem 0.1rem;
}

.demo-label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.7rem;
    padding: 0.28rem 0.72rem;
    border-radius: 999px;
    background: #e8f0ff;
    color: #1d4ea2;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-demo-copy h3 {
    margin-bottom: 0.55rem;
    font-size: 1.35rem;
}

.product-demo-copy p {
    max-width: 60ch;
}

.demo-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 0.95rem;
}

.demo-chips span {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.72rem;
    border-radius: 999px;
    border: 1px solid #d7e3fb;
    background: #fff;
    color: #23447d;
    font-size: 0.84rem;
    font-weight: 700;
}

.demo-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1rem;
}

.product-benefit-stack {
    display: grid;
    gap: 1rem;
}

.product-benefit-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.96));
    border: 1px solid #d8e3f8;
    border-radius: 22px;
    padding: 1.15rem;
    box-shadow: 0 12px 30px rgba(14, 42, 96, 0.07);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.product-benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(16, 48, 111, 0.1);
    border-color: #bfd0f5;
}

.product-benefit-card h3 {
    font-size: 1.08rem;
    margin-bottom: 0.48rem;
}

.product-benefit-card p {
    font-size: 0.95rem;
}

.cta-strip {
    background: linear-gradient(160deg, #edf3ff, #e3ecff);
    border-top: 1px solid #d2dff8;
    border-bottom: 1px solid #d2dff8;
}

.cta-strip .container {
    padding: 3.3rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-footer {
    background: #0d1631;
    color: #e8efff;
    padding: 4rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1.3fr repeat(4, minmax(0, 1fr));
}

.footer-grid h3 {
    font-size: 0.93rem;
    color: #fff;
    margin-bottom: 0.55rem;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.44rem;
}

.footer-grid a {
    color: #bdc9e9;
    font-size: 0.9rem;
}

.footer-copy {
    color: #b7c4e4;
    max-width: 34ch;
}

.footer-brand {
    margin-bottom: 0.75rem;
}

.footer-bottom {
    margin-top: 2rem;
    border-top: 1px solid rgba(183, 198, 230, 0.22);
    padding-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-bottom p {
    color: #a8b7da;
    font-size: 0.88rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom-links a {
    font-size: 0.88rem;
    color: #d8e4ff;
}

.stub-main {
    min-height: 60vh;
    display: grid;
    place-items: center;
    padding: 4rem 0;
}

.stub-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 760px;
    box-shadow: var(--shadow-sm);
}

.stub-actions {
    margin-top: 1.2rem;
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

@media (max-width: 1080px) {
    .site-header {
        position: sticky;
    }

    .main-nav,
    .header-actions {
        display: none;
    }

    .header-inner {
        position: relative;
        z-index: 2;
    }

    .site-header {
        position: sticky;
    }

    .menu-toggle {
        margin-left: auto;
        width: 42px;
        height: 42px;
        display: grid;
        place-items: center;
        border: 1px solid #c5d4f3;
        border-radius: 12px;
        background: #fff;
        cursor: pointer;
        gap: 4px;
        transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .menu-toggle span {
        display: block;
        width: 19px;
        height: 2px;
        background: #1f325e;
        border-radius: 999px;
        transform-origin: center;
        transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
    }

    .menu-toggle[aria-expanded="true"] {
        background: linear-gradient(180deg, #fefeff, #eef4ff);
        border-color: #a9c0ee;
        box-shadow: 0 12px 28px rgba(16, 48, 111, 0.12);
    }

    .menu-toggle:focus-visible,
    .mobile-nav__accordion:focus-visible,
    .mobile-nav__single-link:focus-visible,
    .mobile-nav__links a:focus-visible,
    .mobile-nav__login:focus-visible,
    .mobile-nav__actions .btn:focus-visible {
        outline: 2px solid rgba(31, 103, 255, 0.42);
        outline-offset: 2px;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .mobile-nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(10, 22, 50, 0.26);
        backdrop-filter: blur(4px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.22s ease;
        z-index: 88;
    }

    .mobile-nav-overlay.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-nav {
        display: grid;
        gap: 1.15rem;
        position: absolute;
        top: calc(100% + 0.65rem);
        left: 50%;
        width: min(calc(100% - 2rem), 420px);
        transform: translate(-50%, -8px);
        padding: 1rem;
        border: 1px solid #d7e2fb;
        border-radius: 22px;
        background: rgba(251, 253, 255, 0.98);
        box-shadow: 0 20px 50px rgba(16, 48, 111, 0.14);
        backdrop-filter: blur(10px);
        pointer-events: none;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.22s ease, opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    }

    .mobile-nav.is-open {
        max-height: min(78vh, 720px);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate(-50%, 0);
        overflow-y: auto;
        z-index: 89;
    }

    .mobile-nav__primary {
        display: grid;
        gap: 0.8rem;
    }

    .mobile-nav__section {
        display: grid;
        gap: 0.5rem;
    }

    .mobile-nav__accordion,
    .mobile-nav__single-link {
        width: 100%;
        min-height: 54px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 0.95rem 1rem;
        border: 1px solid #dce6fb;
        border-radius: 16px;
        background: linear-gradient(180deg, #ffffff, #f5f8ff);
        color: #183268;
        font-size: 1rem;
        font-weight: 700;
        box-shadow: 0 8px 20px rgba(17, 45, 108, 0.05);
    }

    .mobile-nav__accordion {
        cursor: pointer;
    }

    .mobile-nav__chevron {
        width: 11px;
        height: 11px;
        border-right: 2px solid #44639e;
        border-bottom: 2px solid #44639e;
        transform: rotate(45deg);
        transition: transform 0.2s ease;
        flex: 0 0 auto;
        margin-right: 0.15rem;
    }

    .mobile-nav__accordion[aria-expanded="true"] .mobile-nav__chevron {
        transform: rotate(225deg);
    }

    .mobile-nav__panel {
        overflow: hidden;
    }

    .mobile-nav__links {
        display: grid;
        gap: 0.22rem;
        padding: 0.15rem 0 0 0.4rem;
    }

    .mobile-nav__links a {
        display: block;
        padding: 0.7rem 0.9rem;
        border-radius: 12px;
        color: #244074;
        font-size: 0.94rem;
        font-weight: 600;
        line-height: 1.35;
    }

    .mobile-nav__single-link {
        text-decoration: none;
    }

    .mobile-nav__accordion:hover,
    .mobile-nav__single-link:hover,
    .mobile-nav__links a:hover {
        background: #eef4ff;
    }

    .mobile-nav__actions {
        display: grid;
        gap: 0.65rem;
        padding-top: 1rem;
        border-top: 1px solid #e2eafc;
    }

    .mobile-nav__actions .btn {
        width: 100%;
        min-height: 48px;
    }

    .mobile-nav__login {
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
        min-height: 24px;
        color: #28457d;
        font-size: 0.95rem;
        font-weight: 700;
    }

    .hero-grid,
    .footer-grid,
    .cta-strip .container {
        grid-template-columns: 1fr;
    }

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

    .product-proof-layout,
    .demo-page-grid,
    .demo-browser-body {
        grid-template-columns: 1fr;
    }

    .demo-sidebar {
        display: none;
    }

    .demo-stage {
        min-height: auto;
    }
}

@media (max-width: 720px) {
    .section {
        padding: 4.2rem 0;
    }

    .mobile-nav {
        width: min(calc(100% - 1rem), 420px);
        padding: 0.95rem;
    }

    .card-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner,
    .cta-strip .container,
    .footer-bottom,
    .audience-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero {
        padding-top: 2rem;
    }

    .audience-cta {
        padding: 1rem;
    }

    .product-demo-card {
        padding: 1rem;
    }

    .demo-stage {
        padding: 0.75rem;
    }

    .demo-content,
    .demo-replay-bar {
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }

    .product-demo-copy h3 {
        font-size: 1.2rem;
    }
}

.feature-page {
    padding-bottom: 0;
}

.feature-hero {
    padding: 2.8rem 0 1.8rem;
}

.feature-hero-grid,
.workflow-grid {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: 1.03fr 0.97fr;
    align-items: center;
}

.feature-hero-grid p {
    max-width: 58ch;
    font-size: 1.05rem;
}

.feature-visual-placeholder {
    min-height: 320px;
}

.feature-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-visual-media {
    min-height: 320px;
    padding: 0.5rem;
}

.feature-visual-media img {
    display: block;
    width: min(100%, 680px);
    height: auto;
    object-fit: contain;
}

.benefit-grid,
.use-case-grid,
.related-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-workflow {
    background: linear-gradient(170deg, #eff4ff, #f8faff);
    border-top: 1px solid #d8e4fa;
    border-bottom: 1px solid #d8e4fa;
}

.workflow-steps {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.1rem;
}

.workflow-step {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #d4e0f8;
    border-radius: 14px;
    padding: 0.9rem;
}

.workflow-step span {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #edf3ff;
    color: #1e53c3;
    font-weight: 800;
    flex-shrink: 0;
}

.workflow-step h3 {
    margin-bottom: 0.35rem;
    font-size: 1.02rem;
}

.workflow-cards-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1.1rem;
}

.workflow-card {
    min-height: 100%;
}

.workflow-card-numbered {
    position: relative;
    padding-top: 1.2rem;
}

.workflow-card__badge {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    margin-bottom: 0.8rem;
    border-radius: 8px;
    background: #edf3ff;
    color: #1e53c3;
    font-weight: 800;
}

.workflow-card h3 {
    margin-bottom: 0.45rem;
    font-size: 1.03rem;
}

.workflow-grid-single {
    grid-template-columns: minmax(0, 1160px);
    justify-content: start;
}

.related-section {
    padding-top: 4.7rem;
}

.related-link-card {
    background: #fff;
    border: 1px solid #d4e0f8;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 1rem;
    transition: transform 0.18s ease;
}

.related-link-card:hover {
    transform: translateY(-2px);
}

.related-link-card h3 {
    margin-bottom: 0.45rem;
    font-size: 1.03rem;
}

.integration-row {
    margin-top: 1rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
}

.integration-workflow-visual {
    min-height: 100%;
    padding: 0;
}

.integration-workflow-visual img {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}

@media (max-width: 1080px) {
    .feature-hero-grid,
    .workflow-grid,
    .integration-row {
        grid-template-columns: 1fr;
    }

    .benefit-grid,
    .use-case-grid,
    .related-grid,
    .workflow-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .benefit-grid,
    .use-case-grid,
    .related-grid,
    .workflow-cards-grid {
        grid-template-columns: 1fr;
    }
}

.page-hero {
    padding: 2.8rem 0 1.6rem;
}

.page-hero p {
    max-width: 68ch;
    font-size: 1.03rem;
}

.resource-hub-grid,
.article-grid,
.guides-grid,
.help-category-grid,
.docs-grid,
.company-values-grid,
.contact-grid,
.contact-quick-links,
.faq-grid {
    display: grid;
    gap: 1rem;
}

.resource-hub-grid,
.guides-grid,
.help-category-grid,
.docs-grid,
.company-values-grid,
.contact-quick-links,
.faq-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.resource-card,
.article-card,
.help-category,
.docs-card,
.company-value,
.contact-panel,
.faq-card,
.contact-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 1rem;
}

.resource-card h3,
.article-card h3,
.help-category h3,
.docs-card h3,
.company-value h3,
.contact-panel h3,
.faq-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.docs-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f6ff;
    border: 1px solid #dbe5ff;
    color: #3b82f6;
    margin-bottom: 12px;
}

.docs-card__icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.featured-resource {
    margin-top: 1rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: 1.1fr 0.9fr;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 1.2rem;
}

.blog-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.1rem;
}

.filter-chip {
    border: 1px dashed #9db4e2;
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    font-size: 0.82rem;
    color: #2d4a82;
    background: #f4f8ff;
}

.article-meta {
    margin-top: 0.7rem;
    font-size: 0.82rem;
    color: #496090;
}

.article-thumb {
    min-height: 140px;
    margin-bottom: 0.75rem;
}

.help-search {
    margin-top: 1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    padding: 0.8rem;
    display: flex;
    gap: 0.6rem;
}

.help-search input {
    flex: 1;
    border: 1px solid #c8d7f5;
    border-radius: 10px;
    padding: 0.62rem 0.7rem;
    font: inherit;
}

.help-search-status {
    margin: 0.7rem 0 0;
    color: var(--muted);
    min-height: 1.25rem;
}

.help-search-status.is-empty {
    color: #b42318;
}

.help-category.is-filtered-out,
[data-help-card].is-filtered-out {
    display: none;
}

.feature-resource-media {
    min-height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dbe5ff;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, #f8fbff 0%, #f2f6ff 100%);
    padding: 1rem;
    overflow: hidden;
}

.feature-resource-media img {
    display: block;
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
}

.help-category ul {
    margin: 0.7rem 0 0;
    padding-left: 1rem;
    color: var(--muted);
}

.help-category li {
    margin-bottom: 0.35rem;
}

.help-category a {
    color: inherit;
}

.help-category a:hover {
    color: var(--primary);
}

.help-article-meta {
    margin-top: 0.85rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.help-breadcrumb {
    color: var(--primary);
    font-weight: 600;
}

.help-article-layout {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 280px minmax(0, 1fr);
    align-items: start;
}

.help-article-sidebar {
    display: grid;
    gap: 1rem;
    position: sticky;
    top: 96px;
}

.help-article-panel,
.help-intro-card,
.help-event-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.help-article-panel,
.help-intro-card {
    padding: 1rem;
}

.help-anchor-list,
.help-event-steps {
    margin: 0.85rem 0 0;
    padding-left: 1.1rem;
    color: var(--muted);
}

.help-anchor-list li,
.help-event-steps li {
    margin-bottom: 0.48rem;
}

.help-anchor-list a {
    color: inherit;
}

.help-anchor-list a:hover {
    color: var(--primary);
}

.help-event-grid {
    margin-top: 1rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.help-event-card {
    padding: 1.05rem;
}

.help-event-card h3 {
    margin: 0.45rem 0 0.55rem;
    font-size: 1.08rem;
}

.help-event-card p {
    margin: 0;
}

.help-event-tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: #eef4ff;
    border: 1px solid #d7e3fb;
    color: #1d4ed8;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.help-event-article-list {
    margin-top: 1rem;
    display: grid;
    gap: 1.1rem;
}

.help-event-article {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 1.2rem;
}

.help-event-article__head {
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: start;
}

.help-event-article__head h2 {
    margin: 0.45rem 0 0.55rem;
}

.help-image-placeholder {
    min-height: 210px;
    border: 1px dashed #9bb5e7;
    border-radius: 16px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
    color: #35558f;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    font-weight: 600;
}

.help-field-grid {
    margin-top: 1rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.help-field-card {
    border: 1px solid #dbe5ff;
    border-radius: 14px;
    background: #f8fbff;
    padding: 1rem;
}

.help-field-card h3 {
    margin-bottom: 0.55rem;
}

.help-example-list {
    margin: 0.75rem 0 0;
    padding-left: 1.1rem;
    color: var(--muted);
}

.help-example-list li {
    margin-bottom: 0.48rem;
}

.help-article-content {
    display: grid;
    gap: 1rem;
}

.docs-code {
    margin-top: 0.75rem;
    border: 1px dashed #90a9dc;
    border-radius: 10px;
    background: #f2f7ff;
    padding: 0.75rem;
    color: #2f4d86;
    font-size: 0.84rem;
    line-height: 1.45;
}

.about-story-layout {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1.1fr 0.9fr;
}

.about-team-media {
    margin: 0;
    min-height: 300px;
    border: 1px solid #c7d5f3;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(180deg, #f7faff 0%, #edf3ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 45px rgba(56, 88, 152, 0.1);
}

.about-team-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-timeline-media {
    margin: 0;
    min-height: 220px;
    border: 1px solid #c7d5f3;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(180deg, #f7faff 0%, #edf3ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-timeline-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.legal-shell {
    max-width: 1120px;
}

.legal-hero p {
    max-width: 780px;
}

.legal-meta {
    margin-top: 0.9rem;
    font-size: 0.92rem;
    color: #6178a8;
}

.legal-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.legal-sidebar {
    position: sticky;
    top: 100px;
}

.legal-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.7rem;
}

.legal-nav a {
    color: #334a78;
    text-decoration: none;
}

.legal-nav a:hover,
.legal-nav a:focus-visible {
    color: #1d4ed8;
}

.legal-card {
    padding: 1.5rem;
}

.legal-section + .legal-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #d9e4fb;
}

.legal-section h2 {
    margin-bottom: 0.75rem;
}

.legal-section h3 {
    margin: 1rem 0 0.55rem;
    font-size: 1.05rem;
    color: #152956;
}

.legal-section p,
.legal-section li {
    color: #435a87;
    line-height: 1.7;
}

.legal-section ul {
    margin: 0.8rem 0 0;
    padding-left: 1.2rem;
}

.contact-grid {
    grid-template-columns: 1.05fr 0.95fr;
}

.contact-form form {
    display: grid;
    gap: 0.8rem;
}

.form-row {
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field {
    display: grid;
    gap: 0.35rem;
}

.form-field label {
    font-size: 0.86rem;
    color: #1f3666;
    font-weight: 700;
}

.form-field input,
.form-field textarea,
.form-field select {
    border: 1px solid #c7d5f3;
    border-radius: 10px;
    padding: 0.62rem 0.7rem;
    font: inherit;
    color: #1f2d4e;
    background: #fff;
}

.form-field textarea {
    resize: vertical;
    min-height: 140px;
}

.form-note {
    font-size: 0.84rem;
    color: #4f648f;
}

.form-status {
    margin-bottom: 0.8rem;
    border-radius: 10px;
    padding: 0.7rem 0.8rem;
    font-size: 0.88rem;
    border: 1px solid transparent;
}

.form-status.success {
    background: #e9faef;
    border-color: #9ad6ac;
    color: #1b5f31;
}

.form-status.error {
    background: #fff1f1;
    border-color: #efb8b8;
    color: #932e2e;
}

@media (max-width: 1080px) {
    .resource-hub-grid,
    .article-grid,
    .guides-grid,
    .help-category-grid,
    .docs-grid,
    .company-values-grid,
    .contact-quick-links,
    .faq-grid,
    .form-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .featured-resource,
    .about-story-layout,
    .contact-grid,
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .help-article-layout {
        grid-template-columns: 1fr;
    }

    .help-article-sidebar {
        position: static;
    }

    .legal-sidebar {
        position: static;
    }

    .help-event-grid {
        grid-template-columns: 1fr;
    }

    .help-event-article__head,
    .help-field-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .resource-hub-grid,
    .article-grid,
    .guides-grid,
    .help-category-grid,
    .docs-grid,
    .company-values-grid,
    .contact-quick-links,
    .faq-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .help-search {
        flex-direction: column;
    }

    .help-article-panel,
    .help-intro-card,
    .help-event-card {
        padding: 0.95rem;
    }
}

.pricing-grid,
.compare-grid {
    display: grid;
    gap: 1rem;
}

.pricing-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.pricing-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 1rem;
    display: grid;
    gap: 0.75rem;
}

.pricing-card.is-featured {
    border-color: #8cb0ff;
    box-shadow: 0 14px 26px rgba(31, 103, 255, 0.16);
}

.plan-price {
    color: #0f2e66;
    font-weight: 800;
    font-size: 1.5rem;
    margin: 0;
}

.plan-price small {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 600;
}

.pricing-card ul,
.compare-grid ul {
    margin: 0;
    padding-left: 1rem;
    color: var(--muted);
}

.pricing-card li,
.compare-grid li {
    margin-bottom: 0.3rem;
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.compare-table th,
.compare-table td {
    padding: 0.72rem;
    border-bottom: 1px solid #dee7fa;
    text-align: left;
    font-size: 0.9rem;
}

.compare-table th {
    background: #f2f7ff;
    color: #17366f;
    font-weight: 700;
}

.pricing-illustration {
    margin: 1rem 0 0;
    padding: 1.4rem;
    border: 1px solid #d9e3f7;
    border-radius: 24px;
    background: linear-gradient(180deg, #f8fbff, #eef4ff);
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: center;
}

.pricing-illustration img {
    display: block;
    width: min(100%, 1120px);
    height: auto;
    border-radius: 16px;
}

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

.faq-group {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 1rem;
}

.faq-group h2 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
}

.faq-item {
    border: 1px solid #dae5fb;
    border-radius: 10px;
    padding: 0.7rem 0.8rem;
    margin-bottom: 0.65rem;
    background: #fcfdff;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    color: #18366d;
}

.faq-item p {
    margin-top: 0.6rem;
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

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

@media (max-width: 720px) {
    .pricing-grid,
    .compare-grid {
        grid-template-columns: 1fr;
    }
}

.checkout-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 120;
}

.checkout-modal.is-open {
    display: block;
}

.checkout-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 45, 0.55);
}

.checkout-modal-dialog {
    position: relative;
    width: min(680px, calc(100% - 2rem));
    margin: 4vh auto;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    max-height: 92vh;
    overflow: auto;
}

.checkout-modal-body {
    padding: 1.2rem;
}

.checkout-close {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    border: 1px solid #d0ddf8;
    background: #fff;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.checkout-summary {
    margin: 1rem 0;
    padding: 0.8rem;
    border: 1px solid #d6e2fb;
    border-radius: 12px;
    background: #f7faff;
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkout-summary h3 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.checkout-controls {
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkout-total {
    background: #eef4ff;
}

@media (max-width: 720px) {
    .checkout-summary,
    .checkout-controls {
        grid-template-columns: 1fr;
    }
}

.pricing-builder-modal {
    position: fixed;
    inset: 0;
    z-index: 140;
    display: none;
}

.pricing-builder-modal.is-open {
    display: block;
}

.pricing-builder-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 22, 48, 0.6);
}

.pricing-builder-dialog {
    position: relative;
    width: min(1080px, calc(100% - 1.5rem));
    margin: 2vh auto;
    max-height: 96vh;
    overflow: auto;
    border-radius: 24px;
    border: 1px solid #d9e4fb;
    background: #fff;
    box-shadow: 0 30px 70px rgba(7, 21, 51, 0.32);
}

.pricing-builder-close {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    border: 1px solid #d5e2fb;
    background: #fff;
    color: #1e3f79;
    font-weight: 700;
    cursor: pointer;
}

.pricing-builder-header {
    padding: 1.3rem 1.3rem 0.8rem;
    border-bottom: 1px solid #e1e9fb;
}

.pricing-builder-header h2 {
    margin-bottom: 0.65rem;
    font-size: 1.5rem;
}

.pricing-builder-steps {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.pricing-step {
    border: 1px solid #d4e1fb;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-weight: 700;
    color: #4f648e;
    padding: 0.25rem 0.6rem 0.25rem 0.3rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.pricing-step span {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: #edf3ff;
    color: #2d4f95;
    display: grid;
    place-items: center;
    font-size: 0.75rem;
}

.pricing-step.is-current {
    background: #1f67ff;
    border-color: #1f67ff;
    color: #fff;
}

.pricing-step.is-current span,
.pricing-step.is-complete span {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.pricing-step.is-complete {
    background: #2f7d4f;
    border-color: #2f7d4f;
    color: #fff;
}

.pricing-builder-layout {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1.2fr 0.8fr;
    padding: 1.2rem;
}

.pricing-builder-main h3 {
    font-size: 0.85rem;
    color: #1f4ea2;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    margin-bottom: 0.55rem;
}

.session-grid {
    margin-top: 0.8rem;
    display: grid;
    gap: 0.65rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.session-option {
    border: 1px solid #cddbf8;
    background: #fff;
    border-radius: 12px;
    min-height: 54px;
    font: inherit;
    font-weight: 700;
    color: #1a3771;
    cursor: pointer;
}

.session-option.is-selected {
    border-color: #1f67ff;
    background: #eaf2ff;
    color: #1245b2;
}

.mini-faq {
    margin-top: 1rem;
    display: grid;
    gap: 0.55rem;
}

.mini-faq details {
    border: 1px solid #d7e2fb;
    border-radius: 10px;
    padding: 0.6rem 0.72rem;
    background: #fcfdff;
}

.mini-faq summary {
    cursor: pointer;
    font-weight: 700;
    color: #21437f;
}

.mini-faq p {
    margin-top: 0.55rem;
    font-size: 0.9rem;
}

.pricing-builder-footer {
    border-top: 1px solid #e1e9fb;
    padding: 0.95rem 1.2rem 1.2rem;
    display: flex;
    gap: 0.6rem;
    align-items: center;
    justify-content: flex-end;
}

.pricing-builder-summary {
    background: linear-gradient(170deg, #f7faff, #eef4ff);
    border: 1px solid #d6e2fb;
    border-radius: 16px;
    padding: 1rem;
    height: fit-content;
    position: sticky;
    top: 0.8rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 0.7rem;
    align-items: baseline;
    margin-bottom: 0.8rem;
}

.summary-row span {
    color: #4b618d;
    font-size: 0.88rem;
}

.summary-row strong {
    color: #11326d;
}

.summary-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    align-items: end;
}

.summary-controls label {
    font-size: 0.78rem;
    color: #355082;
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
}

.summary-controls select {
    width: 100%;
    border: 1px solid #c6d6f6;
    border-radius: 9px;
    padding: 0.45rem 0.55rem;
    font: inherit;
}

.summary-total {
    padding-top: 0.65rem;
    border-top: 1px solid #cfdcf7;
}

@media (max-width: 980px) {
    .pricing-builder-layout {
        grid-template-columns: 1fr;
    }

    .pricing-builder-summary {
        position: static;
    }
}

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

    .summary-controls {
        grid-template-columns: 1fr;
    }

    .pricing-builder-footer {
        flex-wrap: wrap;
    }
}

.guide-animation {
    min-height: 140px;
    max-height: 140px;
    height: 140px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px dashed #aac2f7;
    border-radius: 20px;
    background:
        radial-gradient(circle at top left, rgba(61, 120, 255, 0.12), transparent 42%),
        radial-gradient(circle at bottom right, rgba(83, 193, 255, 0.12), transparent 38%),
        linear-gradient(180deg, #f8fbff 0%, #f2f7ff 100%);
}

.guide-animation svg {
    width: 100%;
    height: 100%;
    max-height: 140px;
}

.guide-animation.is-loaded {
    border-style: solid;
    border-color: #d7e4ff;
}

@media (max-width: 640px) {
    .guide-animation {
        height: 132px;
        min-height: 132px;
        max-height: 132px;
    }
}
