:root {
    --blue-900: #34466A;
    --blue-800: #445A81;
    --blue-700: #5673A6;
    --blue-600: #3671D4;
    --blue-500: #6B8FCB;
    --blue-100: #DDE7F4;
    --blue-050: #E7ECF6;
    --green-700: #8FAD72;
    --green-600: #A9C48C;
    --green-100: #ECF2DE;
    --gold-700: #EEA21B;
    --gold-100: #FDF3E1;
    --teal-600: #14B8A6;
    --purple-600: #8B5CF6;
    --red-600: #DC2626;
    --ink: #1F2937;
    --ink-2: #475569;
    --muted: #64748B;
    --muted-2: #94A3B8;
    --line: #DDE3EE;
    --line-strong: #C2CCDB;
    --surface: #FFFFFF;
    --bg: #E7ECF6;
    --bg-soft: #F4F7FB;
    --shadow-sm: 0 2px 4px rgba(51, 65, 85, 0.05);
    --shadow-md: 0 14px 36px rgba(51, 65, 85, 0.10);
    --shadow-lg: 0 36px 90px rgba(45, 63, 95, 0.18);
    --shadow-glow: 0 0 28px rgba(86, 115, 166, 0.28);
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: Inter, "Segoe UI", system-ui, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }

h1, h2, h3, h4, h5, p { margin: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.01em; }
a { color: inherit; }
button { font: inherit; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 6px 14px;
    color: #5A7A3D;
    background: #ECF2DE;
    border: 1px solid rgba(169, 196, 140, 0.55);
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #A9C48C;
    box-shadow: 0 0 0 3px rgba(169, 196, 140, 0.34);
    animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(169, 196, 140, 0.34); }
    50%      { box-shadow: 0 0 0 7px rgba(169, 196, 140, 0.14); }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform 280ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 260ms ease, background 240ms ease, border-color 240ms ease;
    white-space: nowrap;
}

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

.btn-sm { min-height: 38px; padding: 0 14px; font-size: 0.86rem; }
.btn-lg { min-height: 52px; padding: 0 22px; font-size: 0.98rem; }

.btn-primary {
    color: #FFFFFF;
    background: #445A81;
    box-shadow: 0 10px 24px rgba(68, 90, 129, 0.32);
}

.btn-primary:hover {
    background: #34466A;
    box-shadow: 0 14px 32px rgba(52, 70, 106, 0.40);
}

.btn-secondary {
    color: var(--blue-800);
    background: #FFFFFF;
    border-color: var(--line-strong);
}

.btn-secondary:hover { border-color: var(--blue-600); color: var(--blue-700); }

.btn-light { color: var(--blue-800); background: #FFFFFF; }
.btn-light:hover { background: var(--blue-050); }

.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(228, 233, 242, 0.70);
    backdrop-filter: saturate(180%) blur(18px);
    transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 26px rgba(22, 32, 51, 0.08);
}

.header-inner {
    max-width: 1180px;
    height: 72px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.brand-mark {
    width: 40px; height: 40px;
    display: grid;
    place-items: center;
    color: #FFFFFF;
    background: linear-gradient(135deg, #445A81 0%, #3671D4 100%);
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(68, 90, 129, 0.32);
}

.brand-mark svg { width: 20px; height: 20px; }
.brand-name { font-size: 1.32rem; }

.nav, .header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav a, .link-login {
    color: var(--ink-2);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.nav a:hover, .link-login:hover { color: var(--blue-700); }

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

.nav-toggle {
    width: 42px; height: 42px;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    background: #FFFFFF;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--ink);
    border-radius: 999px;
}

/* ----- HERO ----- */
.hero {
    padding: 156px 28px 48px;
    background: #E7ECF6;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -25%;
    right: -8%;
    width: 680px;
    height: 680px;
    background: radial-gradient(circle, rgba(54, 113, 212, 0.16) 0%, rgba(231, 236, 246, 0) 60%);
    border-radius: 50%;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    align-items: center;
    gap: 64px;
}

.hero h1 {
    max-width: 560px;
    font-size: 3.15rem;
    font-weight: 800;
    letter-spacing: -0.028em;
    line-height: 1.05;
    color: #445A81;
}

.hero h1 .hl {
    background: linear-gradient(180deg, transparent 0%, transparent 62%, rgba(169, 196, 140, 0.55) 62%, rgba(169, 196, 140, 0.55) 96%, transparent 96%);
    padding: 0 4px;
}

.hero-lead {
    max-width: 540px;
    margin-top: 20px;
    color: var(--ink-2);
    font-size: 1.06rem;
    line-height: 1.6;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-meta {
    margin: 36px 0 0;
    padding: 22px 0 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
}

.hero-meta li {
    padding: 0 22px;
    border-left: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.35;
}

.hero-meta li:first-child {
    padding-left: 0;
    border-left: 0;
}

.hero-meta strong {
    display: block;
    margin-bottom: 4px;
    color: #445A81;
    font-weight: 800;
    font-size: 1.08rem;
    letter-spacing: -0.015em;
}

/* ----- App window (frame compartilhado pelos mockups) ----- */
.product-shot, .showcase-shot { min-width: 0; }

.app-window {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
    box-shadow: 0 24px 60px rgba(45, 63, 95, 0.12), 0 4px 12px rgba(45, 63, 95, 0.04);
}

.app-topbar {
    height: 38px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    background: #FFFFFF;
    border-bottom: 1px solid var(--line);
}

.app-dot { width: 10px; height: 10px; border-radius: 50%; background: #CED6E2; }
.app-dot:first-child { background: #E96D5C; }
.app-dot:nth-child(2) { background: #E3B341; }
.app-dot:nth-child(3) { background: #45B47E; }

.app-path {
    margin-left: 8px;
    color: var(--muted-2);
    font-family: ui-monospace, "SF Mono", Consolas, monospace;
    font-size: 0.72rem;
}

/* ----- Mockup base (conteúdo dentro de .app-window) ----- */
.mock {
    padding: 18px;
    background: var(--bg);
    min-height: 460px;
}

.mock-card-panel {
    padding: 18px;
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-radius: 12px;
}

.mock-panel-title {
    margin-bottom: 12px;
    color: var(--muted-2);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.mock-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.74rem;
    font-weight: 700;
    background: #FFFFFF;
    border: 1px solid var(--line-strong);
    color: var(--ink-2);
}

.mock-btn.primary { background: var(--blue-700); border-color: var(--blue-700); color: #FFFFFF; }
.mock-btn.danger { background: var(--blue-800); border-color: var(--blue-800); color: #FFFFFF; }
.mock-btn.ghost { background: #FFFFFF; }

.mock-input, .mock-select {
    display: inline-flex;
    align-items: center;
    height: 32px;
    padding: 0 12px;
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 600;
}

.mock-select::after {
    content: "";
    margin-left: 10px;
    width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid var(--muted-2);
}

/* ----- Pipeline mockup (hero) ----- */
.mock-pipeline { padding: 22px; background: #E7ECF6; min-height: 440px; }

.mock-pipeline-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(68, 90, 129, 0.06);
}

.mock-pipeline-title {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.mock-rocket {
    flex-shrink: 0;
    width: 40px; height: 40px;
    display: grid;
    place-items: center;
    color: #FFFFFF;
    background: linear-gradient(135deg, #445A81 0%, #3671D4 100%);
    border-radius: 10px;
    box-shadow: 0 6px 14px rgba(68, 90, 129, 0.32);
}

.mock-rocket svg { width: 18px; height: 18px; }

.mock-pipeline-title h4 {
    color: #445A81;
    font-size: 1.04rem;
    font-weight: 800;
    letter-spacing: -0.015em;
    line-height: 1.2;
}

.mock-pipeline-sub {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 500;
}

.mock-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #A9C48C;
    box-shadow: 0 0 0 3px rgba(169, 196, 140, 0.28);
    animation: pulse 2.4s ease-in-out infinite;
}

.mock-pipeline-aside {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    line-height: 1.1;
}

.mock-pipeline-totallabel {
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.mock-pipeline-total {
    color: #445A81;
    font-size: 1.28rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.mock-pipeline-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 0 16px;
}

.mock-pipeline-filters svg {
    flex-shrink: 0;
    width: 13px;
    height: 13px;
    color: var(--muted-2);
}

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

.mock-col {
    padding: 14px;
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-radius: 10px;
    min-height: 220px;
    box-shadow: 0 2px 6px rgba(31, 42, 68, 0.05);
}

.mock-col-head {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    font-size: 0.84rem;
    font-weight: 600;
}

.mock-col-name {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mock-col-head .dot {
    flex-shrink: 0;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--muted-2);
    display: inline-block;
}

.dot.blue { background: #445A81; }
.dot.purple { background: #3671D4; }
.dot.teal { background: #A9C48C; }
.dot.gold { background: var(--gold-700); }
.dot.green { background: var(--green-600); }
.dot.red { background: #EF4444; }

.mock-col-head .count {
    flex-shrink: 0;
    padding: 2px 8px;
    color: var(--muted);
    background: var(--bg-soft);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
}

.mock-card {
    margin-top: 14px;
    padding: 13px 14px;
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(31, 42, 68, 0.04);
    transition: border-color 200ms ease, box-shadow 200ms ease;
}

.mock-card.selected {
    border-color: rgba(54, 113, 212, 0.55);
    box-shadow: 0 8px 22px rgba(54, 113, 212, 0.22);
}

.mock-card-top {
    color: var(--ink);
    font-size: 0.85rem;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mock-card-top b {
    font-weight: 600;
}

.mock-card small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mock-tag {
    display: inline-block;
    margin-top: 8px;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mock-tag.tag-high {
    color: #FFFFFF;
    background: #3671D4;
    box-shadow: 0 2px 6px rgba(54, 113, 212, 0.32);
}

.mock-card-foot {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mock-avatar {
    width: 22px; height: 22px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: #445A81;
    color: #FFFFFF;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0;
}

.mock-avatar.avatar-2 { background: #A9C48C; }

.mock-money { color: var(--ink); font-size: 0.78rem; font-weight: 600; }
.mock-due { color: #DC2626; font-size: 0.74rem; font-weight: 600; }

.mock-pipeline .mock-input,
.mock-pipeline .mock-select {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 32px;
    padding: 0 12px;
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 500;
    box-shadow: 0 1px 2px rgba(31, 42, 68, 0.04);
}

.mock-pipeline .mock-input { flex: 1; min-width: 160px; }
.mock-pipeline .mock-select { justify-content: space-between; min-width: 120px; }
.mock-pipeline .mock-select::after { content: none; }

/* ----- Lead detail mockup ----- */
.mock-lead { padding: 18px; }

.mock-lead-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 2px 4px 16px;
    border-bottom: 1px solid var(--line);
}

.mock-lead-id { display: flex; align-items: center; gap: 12px; }

.lead-avatar {
    width: 38px; height: 38px;
    background: var(--blue-100);
    border-radius: 12px;
    color: var(--blue-700);
}

.lead-avatar svg { width: 20px; height: 20px; }

.mock-kicker {
    display: block;
    color: var(--muted-2);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.mock-lead-id strong {
    display: block;
    margin-top: 3px;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.01em;
}

.mock-lead-actions { display: flex; gap: 8px; }

.mock-lead-meta {
    margin-top: 14px;
    padding: 16px 18px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-radius: 12px;
}

.mock-lead-meta div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mock-lead-meta span {
    color: var(--muted-2);
    font-size: 0.60rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.mock-lead-meta b {
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 700;
}

.chip {
    display: inline-block;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    font-style: normal;
}

.chip-cool { color: #1D4ED8; background: var(--blue-100); }
.chip-mute { color: var(--muted); background: var(--bg-soft); border: 1px solid var(--line); }
.chip-ok   { color: var(--green-700); background: var(--green-100); }

.mock-lead-pipe {
    margin-top: 12px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-radius: 12px;
}

.mock-lead-steps {
    flex: 1;
    display: flex;
    align-items: stretch;
    gap: 2px;
    min-width: 0;
}

.step {
    flex: 1;
    min-width: 0;
    padding: 6px 16px 6px 20px;
    color: var(--muted);
    background: #EEF2F7;
    font-size: 0.72rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.01em;
    white-space: nowrap;
    clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 50%, calc(100% - 9px) 100%, 0 100%, 9px 50%);
}

.step:first-child {
    padding-left: 12px;
    clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 50%, calc(100% - 9px) 100%, 0 100%);
}

.step:last-of-type {
    padding-right: 12px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 9px 50%);
}

.step.done {
    color: #FFFFFF;
    background: var(--green-600);
}

.step.active {
    color: #FFFFFF;
    background: var(--blue-600);
}

.mock-lead-pipe .mock-btn { padding: 6px 14px; border-radius: 999px; font-size: 0.72rem; }
.mock-lead-pipe .mock-btn + .mock-btn { margin-left: 0; }
.mock-lead-pipe .mock-btn.primary {
    background: var(--blue-600);
    border-color: var(--blue-600);
    color: #FFFFFF;
}
.mock-lead-pipe .mock-btn.danger {
    background: var(--blue-800);
    border-color: var(--blue-800);
    color: #FFFFFF;
}

.mock-lead-grid {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 12px;
}

.mock-form, .mock-keys {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
}

.mock-form > div, .mock-keys > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mock-form span, .mock-keys span {
    color: var(--muted);
    font-size: 0.70rem;
    font-weight: 700;
}

.mock-input-row {
    height: 32px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.01em;
}

.mock-input-row.dim { color: var(--muted-2); font-weight: 600; }

.mock-keys b {
    color: var(--ink);
    font-size: 0.84rem;
    font-weight: 800;
}

.mock-tabs {
    margin-top: 12px;
    padding: 6px;
    display: flex;
    gap: 2px;
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    flex-wrap: wrap;
}

.mock-tabs span {
    padding: 8px 14px;
    color: var(--muted);
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 600;
}

.mock-tabs span.active {
    color: var(--blue-700);
    background: var(--blue-100);
    font-weight: 700;
}

/* ----- Activity Manager mockup ----- */
.mock-activity { padding: 16px; }

.mock-activity-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.mock-activity-title { display: flex; align-items: center; gap: 10px; }

.mock-bolt {
    width: 28px; height: 28px;
    display: grid;
    place-items: center;
    color: var(--gold-700);
    background: var(--gold-100);
    border-radius: 8px;
}

.mock-bolt svg { width: 16px; height: 16px; }

.mock-activity-title h4 {
    color: var(--ink);
    font-size: 1.18rem;
    font-weight: 800;
}

.mock-activity-actions { display: flex; gap: 8px; }

.mock-activity-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 0;
}

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

.kpi-card {
    padding: 12px 14px;
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.kpi-card span {
    color: var(--muted-2);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.kpi-card strong {
    color: var(--ink);
    font-size: 1.78rem;
    font-weight: 800;
    line-height: 1;
}

.kpi-card strong.ok { color: var(--green-700); }

.kpi-card em {
    color: var(--muted);
    font-size: 0.70rem;
    font-style: normal;
    font-weight: 600;
}

.kpi-card em.kpi-down { color: var(--red-600); font-weight: 800; }

.mock-activity-grid {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 10px;
}

.heatmap-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.heatmap-name {
    color: var(--ink-2);
    font-size: 0.74rem;
    font-weight: 700;
}

.heatmap-cells {
    display: grid;
    grid-template-columns: repeat(24, 1fr);
    gap: 2px;
}

.heatmap-cells span {
    height: 14px;
    background: #EEF2F7;
    border-radius: 2px;
}

.heatmap-cells .h1 { background: #BFD3EE; }
.heatmap-cells .h2 { background: #5673A6; }
.heatmap-cells .h3 { background: var(--blue-800); }

.donut-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

.donut {
    position: relative;
    width: 130px; height: 130px;
    margin: 8px auto 16px;
    border-radius: 50%;
    background: conic-gradient(
        var(--blue-600) 0 45%,
        var(--green-600) 45% 72%,
        var(--gold-700) 72% 90%,
        #EF4444 90% 100%
    );
}

.donut::before {
    content: "";
    position: absolute;
    inset: 22px;
    background: #FFFFFF;
    border-radius: 50%;
}

.donut-center {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--ink);
    font-size: 1.4rem;
    font-weight: 800;
}

.donut-legend {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    display: grid;
    gap: 6px;
}

.donut-legend li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ink-2);
    font-size: 0.78rem;
    font-weight: 700;
}

.donut-legend li b {
    margin-left: auto;
    color: var(--ink);
    font-weight: 800;
}

.donut-legend .dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}

/* ----- Trust strip ----- */
.trust-strip {
    padding: 28px 28px 36px;
    background: #E7ECF6;
    border-bottom: 1px solid var(--line-strong);
}

.trust-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.trust-inner span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: #445A81;
    background: #FFFFFF;
    border: 1px solid rgba(68, 90, 129, 0.20);
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(68, 90, 129, 0.08);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.trust-inner span::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}

.trust-inner span:nth-child(1)::before { background: #445A81; box-shadow: 0 0 0 3px rgba(68, 90, 129, 0.22); }
.trust-inner span:nth-child(2)::before { background: #3671D4; box-shadow: 0 0 0 3px rgba(54, 113, 212, 0.22); }
.trust-inner span:nth-child(3)::before { background: #A9C48C; box-shadow: 0 0 0 3px rgba(169, 196, 140, 0.30); }
.trust-inner span:nth-child(4)::before { background: #445A81; box-shadow: 0 0 0 3px rgba(68, 90, 129, 0.22); }
.trust-inner span:nth-child(5)::before { background: #3671D4; box-shadow: 0 0 0 3px rgba(54, 113, 212, 0.22); }

.trust-inner span:hover {
    transform: translateY(-2px);
    border-color: rgba(54, 113, 212, 0.45);
    box-shadow: 0 10px 24px rgba(54, 113, 212, 0.16);
}

/* ----- Sections ----- */
.section { padding: 92px 28px; }
.section-inner { max-width: 1180px; margin: 0 auto; }

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

.section-heading h2,
.section-copy h2,
.outcome-panel h2,
.cta-panel h2 {
    color: var(--ink);
    font-size: 2.6rem;
    font-weight: 800;
    text-wrap: balance;
}

.section-heading p,
.section-copy p,
.cta-panel p {
    margin-top: 16px;
    color: var(--ink-2);
    font-size: 1.05rem;
    line-height: 1.7;
    text-wrap: pretty;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
    gap: 56px;
    align-items: center;
}

.section-subhead {
    color: var(--ink);
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.2;
}

.section-problem { background: #FFFFFF; }

.problem-list {
    display: grid;
    gap: 14px;
}

.problem-list article {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    padding: 22px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 12px;
    transition: border-color 240ms ease, transform 240ms ease;
}

.problem-list article:hover {
    border-color: var(--blue-500);
    transform: translateY(-2px);
}

.problem-list article > span {
    width: 42px; height: 42px;
    display: grid;
    place-items: center;
    color: var(--blue-700);
    background: var(--blue-050);
    border-radius: 10px;
    font-weight: 800;
}

.problem-list h3,
.flow-card h3,
.feature-card h3,
.price-card h3 {
    font-size: 1.18rem;
    font-weight: 800;
}

.problem-list p,
.flow-card p,
.feature-card p,
.price-card p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.section-platform { background: var(--bg); }

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

.flow-card, .feature-card, .price-card {
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    transition: transform 280ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 260ms ease, border-color 240ms ease;
}

.flow-card { padding: 26px; }

.flow-card span {
    display: inline-grid;
    place-items: center;
    width: 38px; height: 38px;
    margin-bottom: 22px;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--blue-700), var(--blue-800));
    border-radius: 10px;
    font-weight: 800;
}

.section-features { background: #FFFFFF; }

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

.feature-card { padding: 28px; }

.feature-card:hover,
.price-card:hover,
.flow-card:hover {
    transform: translateY(-6px);
    border-color: rgba(86, 115, 166, 0.45);
    box-shadow: var(--shadow-md);
}

.feature-card.featured {
    border-color: rgba(86, 115, 166, 0.55);
    background: linear-gradient(180deg, #FFFFFF 0%, #F3F8FF 100%);
}

.feature-icon {
    width: 46px; height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--blue-700), var(--blue-800));
    border-radius: 10px;
}

.feature-icon svg { width: 22px; height: 22px; }

/* ----- Showcase sections (Lead detail / Activity Manager) ----- */
.section-showcase { background: var(--bg); padding: 96px 28px; }
.section-showcase.showcase-activity { background: var(--bg-soft); }

.showcase-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
    gap: 56px;
    align-items: center;
}

.showcase-inner.reverse { grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr); }

.showcase-list {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.showcase-list li {
    position: relative;
    padding: 12px 14px 12px 36px;
    color: var(--ink-2);
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
}

.showcase-list li::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    width: 16px; height: 16px;
    margin-top: -8px;
    background: var(--green-600);
    border-radius: 50%;
    background-image: linear-gradient(135deg, var(--green-600), var(--green-700));
}

.showcase-list li::after {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    width: 8px; height: 4px;
    margin-top: -3px;
    border-left: 2px solid #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
    transform: rotate(-45deg);
}

/* ----- Outcome ----- */
.section-outcome { background: var(--bg); }

.outcome-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
    gap: 48px;
    align-items: center;
    padding: 46px;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-900) 100%);
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.outcome-panel::after {
    content: "";
    position: absolute;
    top: -40%; right: -10%;
    width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, transparent 70%);
    border-radius: 50%;
}

.outcome-panel > * { position: relative; z-index: 1; }

.outcome-panel .eyebrow,
.cta-panel .eyebrow {
    color: #BBE5C7;
    background: rgba(111, 226, 184, 0.14);
    border-color: rgba(111, 226, 184, 0.30);
}

.outcome-panel .eyebrow::before,
.cta-panel .eyebrow::before {
    background: #6FE2B8;
    box-shadow: 0 0 0 3px rgba(111, 226, 184, 0.22);
}

.outcome-panel h2 { color: #FFFFFF; }

.outcome-stamp {
    margin-top: 22px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: rgba(111, 226, 184, 0.10);
    border: 1px solid rgba(111, 226, 184, 0.32);
    border-left: 4px solid #6FE2B8;
    border-radius: 12px;
}

.outcome-stamp-label {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.outcome-stamp-word {
    color: #BBE5C7;
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.outcome-panel ul {
    margin: 0; padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.outcome-panel li {
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    font-weight: 700;
}

/* ----- Pricing ----- */
.section-pricing { background: #FFFFFF; }

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

.price-card {
    position: relative;
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.price-card.highlighted {
    border-color: rgba(86, 115, 166, 0.55);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.plan-label {
    position: absolute;
    top: 18px; right: 18px;
    padding: 5px 11px;
    color: var(--green-700);
    background: var(--green-100);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
}

.plan-eyebrow {
    display: block;
    margin-bottom: 16px;
    color: var(--blue-700);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
    margin: 22px 0 8px;
    color: var(--ink);
    line-height: 1.1;
}

.price-amount {
    color: var(--ink);
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.price-custom {
    color: var(--ink);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.price-period {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 600;
}

.price-prefix {
    flex-basis: 100%;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 600;
}

.price-setup {
    display: block;
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 600;
}

.price-card ul {
    margin: 0 0 26px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 11px;
}

.price-card li {
    position: relative;
    padding-left: 24px;
    color: var(--ink-2);
    font-size: 0.94rem;
    font-weight: 600;
}

.price-card li::before {
    content: "";
    position: absolute;
    left: 0; top: 7px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--green-100);
}

.price-card li::after {
    content: "";
    position: absolute;
    left: 4px; top: 11px;
    width: 6px; height: 3px;
    border-left: 2px solid var(--green-700);
    border-bottom: 2px solid var(--green-700);
    transform: rotate(-45deg);
}

.price-card .btn { margin-top: auto; }

/* ----- CTA ----- */
.section-cta { padding-top: 20px; background: #FFFFFF; }

.cta-panel {
    padding: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-900) 100%);
    border-radius: 14px;
    position: relative;
    overflow: hidden;
}

.cta-panel::after {
    content: "";
    position: absolute;
    bottom: -50%; left: -10%;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(111, 226, 184, 0.14) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-panel > * { position: relative; z-index: 1; }

.cta-panel h2 { max-width: 720px; color: #FFFFFF; }
.cta-panel p { max-width: 660px; color: rgba(255, 255, 255, 0.82); }

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex-shrink: 0;
}

/* ----- Footer ----- */
.footer {
    color: rgba(255, 255, 255, 0.74);
    background: #0A1424;
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 50px 28px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.8fr);
    gap: 56px;
}

.brand-light { color: #FFFFFF; }

.brand-light .brand-mark {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: none;
}

.footer-brand p {
    max-width: 430px;
    margin-top: 16px;
    line-height: 1.7;
}

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

.footer-cols h5 {
    margin: 0 0 12px;
    color: #FFFFFF;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-cols a {
    display: block;
    margin: 9px 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
    text-decoration: none;
}

.footer-cols a:hover { color: #FFFFFF; }

.footer-bottom {
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 28px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: rgba(255, 255, 255, 0.54);
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    font-size: 0.82rem;
}

/* ----- Reveal animation ----- */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ----- Responsive ----- */
@media (max-width: 1100px) {
    .hero-inner,
    .split-layout,
    .outcome-panel,
    .footer-inner,
    .showcase-inner,
    .showcase-inner.reverse {
        grid-template-columns: 1fr;
    }

    .showcase-inner.reverse .showcase-shot { order: 2; }
    .showcase-inner.reverse .section-copy { order: 1; }

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

    .product-shot, .showcase-shot { max-width: 780px; }

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

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

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

@media (max-width: 900px) {
    .header-actions { display: none; }

    .nav-toggle { display: block; }

    .nav {
        position: fixed;
        top: 72px;
        left: 16px;
        right: 16px;
        display: none;
        padding: 18px;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        background: #FFFFFF;
        border: 1px solid var(--line);
        border-radius: 12px;
        box-shadow: var(--shadow-md);
    }

    .nav.open { display: flex; }
    .nav a { padding: 11px 12px; }

    .mobile-only { display: inline-flex; }

    .hero { padding-top: 112px; }
    .hero-inner { gap: 40px; }
    .hero h1 { font-size: 2.7rem; }

    .hero-proof,
    .mock-kanban,
    .mock-kpis,
    .mock-activity-grid,
    .flow-grid,
    .feature-grid,
    .footer-cols {
        grid-template-columns: 1fr 1fr;
    }

    .mock-lead-grid { grid-template-columns: 1fr; }

    .cta-panel {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* ----- Contact page ----- */
.contact-page { background: var(--bg); }

.contact-hero {
    padding: 132px 28px 36px;
    background: #E7ECF6;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -10%;
    width: 540px;
    height: 540px;
    background: radial-gradient(circle, rgba(54, 113, 212, 0.16) 0%, rgba(231, 236, 246, 0) 60%);
    border-radius: 50%;
    z-index: 0;
}

.contact-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    text-align: left;
}

.contact-hero h1 {
    max-width: 760px;
    font-size: 2.65rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.08;
    color: #445A81;
}

.contact-hero p {
    max-width: 680px;
    margin-top: 16px;
    color: var(--ink-2);
    font-size: 1.04rem;
    line-height: 1.65;
    font-weight: 500;
}

.contact-section {
    padding: 56px 28px 96px;
    background: var(--bg);
}

.contact-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 40px;
    align-items: start;
}

.contact-aside {
    position: sticky;
    top: 96px;
    padding: 32px;
    background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-900) 100%);
    color: #FFFFFF;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.contact-aside::after {
    content: "";
    position: absolute;
    bottom: -50%; right: -30%;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(111, 226, 184, 0.16) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-aside > * { position: relative; z-index: 1; }

.contact-aside h2 {
    margin-bottom: 22px;
    color: #FFFFFF;
    font-size: 1.34rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.contact-expect {
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 18px;
}

.contact-expect li {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 14px;
    align-items: start;
}

.expect-num {
    width: 36px; height: 36px;
    display: grid;
    place-items: center;
    color: #BBE5C7;
    background: rgba(111, 226, 184, 0.14);
    border: 1px solid rgba(111, 226, 184, 0.30);
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 800;
}

.contact-expect strong {
    display: block;
    margin-bottom: 4px;
    color: #FFFFFF;
    font-size: 0.98rem;
    font-weight: 800;
}

.contact-expect p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
    line-height: 1.55;
}

.contact-direct {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-direct h3 {
    margin-bottom: 6px;
    color: #FFFFFF;
    font-size: 0.98rem;
    font-weight: 800;
}

.contact-direct p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
    line-height: 1.55;
}

.contact-direct a {
    color: #BBE5C7;
    font-weight: 700;
    text-decoration: none;
}

.contact-direct a:hover { text-decoration: underline; }

.contact-form-wrap {
    padding: 36px;
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-md);
}

.form-title {
    color: var(--ink);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.form-sub {
    margin-top: 6px;
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 500;
}

.req {
    color: var(--red-600);
    font-weight: 800;
}

.optional {
    color: var(--muted);
    font-weight: 500;
    font-size: 0.85em;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.field { display: flex; flex-direction: column; gap: 8px; }

.field-full { grid-column: 1 / -1; }

.field label {
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.005em;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field textarea {
    width: 100%;
    padding: 11px 14px;
    color: var(--ink);
    background: #FFFFFF;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field input::placeholder,
.field textarea::placeholder {
    color: var(--muted-2);
    font-weight: 500;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--blue-600);
    box-shadow: 0 0 0 4px rgba(54, 113, 212, 0.14);
}

.field input.invalid,
.field textarea.invalid {
    border-color: var(--red-600);
    background: #FFF5F5;
}

.field input.invalid:focus,
.field textarea.invalid:focus {
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.14);
}

.field textarea {
    resize: vertical;
    min-height: 96px;
    line-height: 1.55;
}

.field-hint {
    align-self: flex-end;
    color: var(--muted-2);
    font-size: 0.76rem;
    font-weight: 600;
}

.field-hint.field-hint-left {
    align-self: flex-start;
    color: var(--muted);
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.radio-pill {
    position: relative;
    cursor: pointer;
}

.radio-pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.radio-pill span {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    color: var(--ink-2);
    background: #FFFFFF;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: border-color 180ms ease, color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.radio-pill:hover span {
    border-color: var(--blue-500);
    color: var(--blue-700);
}

.radio-pill input:checked + span {
    color: #FFFFFF;
    background: var(--blue-700);
    border-color: var(--blue-700);
    box-shadow: 0 6px 16px rgba(86, 115, 166, 0.30);
}

.radio-pill input:focus-visible + span {
    box-shadow: 0 0 0 4px rgba(54, 113, 212, 0.20);
}

.checkbox {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 12px;
    align-items: start;
    color: var(--ink-2);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.5;
    cursor: pointer;
}

.checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--blue-700);
    cursor: pointer;
}

.form-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.form-actions .btn { flex-shrink: 0; }

.form-actions [data-submit-btn][disabled] {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-note {
    flex: 1;
    min-width: 220px;
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.55;
}

.form-error {
    margin-top: 18px;
    padding: 14px 16px;
    color: #991B1B;
    background: #FEF2F2;
    border: 1px solid #FCA5A5;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

.form-error a {
    color: #991B1B;
    font-weight: 800;
}

/* ----- Thanks page ----- */
.thanks-page {
    min-height: calc(100vh - 72px);
    background: var(--bg);
    display: flex;
    align-items: center;
}

.thanks-section {
    flex: 1;
    padding: 132px 28px 80px;
}

.thanks-card {
    max-width: 760px;
    margin: 0 auto;
    padding: 48px;
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.thanks-check {
    width: 64px; height: 64px;
    margin: 0 auto 22px;
    display: grid;
    place-items: center;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--green-600), var(--green-700));
    border-radius: 50%;
    box-shadow: 0 12px 28px rgba(143, 173, 114, 0.35);
}

.thanks-check svg { width: 30px; height: 30px; }

.thanks-card .eyebrow { margin-bottom: 16px; }

.thanks-card h1 {
    color: var(--ink);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.thanks-lead {
    max-width: 580px;
    margin: 14px auto 32px;
    color: var(--ink-2);
    font-size: 1.04rem;
    line-height: 1.65;
}

.thanks-steps {
    max-width: 580px;
    margin: 0 auto 36px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
    text-align: left;
}

.thanks-steps li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 12px;
}

.step-num {
    width: 42px; height: 42px;
    display: grid;
    place-items: center;
    color: var(--blue-700);
    background: var(--blue-050);
    border-radius: 10px;
    font-weight: 800;
}

.thanks-steps strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ink);
    font-size: 0.96rem;
    font-weight: 800;
}

.thanks-steps p {
    color: var(--ink-2);
    font-size: 0.9rem;
    line-height: 1.55;
}

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

.thanks-note {
    color: var(--muted);
    font-size: 0.9rem;
}

.thanks-note a {
    color: var(--blue-700);
    font-weight: 700;
    text-decoration: none;
}

.thanks-note a:hover { text-decoration: underline; }

@media (max-width: 1100px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-aside { position: static; }
}

@media (max-width: 640px) {
    .header-inner,
    .hero,
    .section,
    .trust-strip,
    .footer-inner,
    .footer-bottom {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero { padding-bottom: 64px; }
    .hero h1 { font-size: 2.2rem; }

    .hero-lead,
    .section-heading p,
    .section-copy p,
    .cta-panel p { font-size: 1rem; }

    .section { padding-top: 70px; padding-bottom: 70px; }

    .section-heading h2,
    .section-copy h2,
    .outcome-panel h2,
    .cta-panel h2 { font-size: 1.92rem; }

    .btn,
    .hero-actions,
    .cta-actions { width: 100%; }

    .hero-proof,
    .mock-kanban,
    .mock-kpis,
    .flow-grid,
    .feature-grid,
    .footer-cols { grid-template-columns: 1fr; }

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

    .mock-form, .mock-keys { grid-template-columns: 1fr; }

    .problem-list article { grid-template-columns: 1fr; }

    .flow-card, .feature-card, .price-card,
    .outcome-panel, .cta-panel { padding: 24px; }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-hero { padding-top: 100px; padding-bottom: 24px; }
    .contact-hero h1 { font-size: 1.92rem; }
    .contact-section { padding: 36px 18px 64px; }
    .contact-aside,
    .contact-form-wrap { padding: 24px; }
    .form-grid { grid-template-columns: 1fr; gap: 14px; }
    .form-actions { flex-direction: column; align-items: stretch; }
    .form-actions .btn { width: 100%; }
    .thanks-section { padding: 100px 18px 56px; }
    .thanks-card { padding: 28px; }
    .thanks-card h1 { font-size: 1.7rem; }
}
