:root {
      --bg: #f7f9fc;
      --surface: #ffffff;
      --surface-soft: #f0f4ff;
      --text: #152033;
      --muted: #667085;
      --border: #dfe5ef;
      --primary: #2563eb;
      --primary-dark: #1d4ed8;
      --primary-soft: #eaf2ff;
      --accent: #12a594;
      --success: #1f9d6a;
      --warning: #f6b84b;
      --shadow: 0 18px 50px rgba(39, 50, 86, 0.12);
      --radius-sm: 12px;
      --radius-md: 20px;
      --radius-lg: 30px;
      --max-width: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family:
        Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.6;
    }

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

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

    button,
    input {
      font: inherit;
    }

    .container {
      width: min(calc(100% - 40px), var(--max-width));
      margin-inline: auto;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 12px;
      border-radius: 999px;
      color: var(--primary-dark);
      background: var(--primary-soft);
      font-size: 0.82rem;
      font-weight: 800;
      letter-spacing: 0.02em;
    }

    .section {
      padding: 88px 0;
    }

    .section-soft {
      background: var(--surface);
    }

    .section-heading {
      max-width: 720px;
      margin-bottom: 44px;
    }

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

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      margin-bottom: 24px;
      font-size: clamp(2.75rem, 7vw, 5.4rem);
      line-height: 0.98;
      letter-spacing: -0.065em;
    }

    h2 {
      margin-bottom: 18px;
      font-size: clamp(2rem, 4vw, 3.35rem);
      line-height: 1.05;
      letter-spacing: -0.045em;
    }

    h3 {
      margin-bottom: 10px;
      font-size: 1.2rem;
      line-height: 1.25;
    }

    .lead {
      max-width: 690px;
      color: var(--muted);
      font-size: clamp(1.05rem, 2vw, 1.25rem);
    }

    .muted {
      color: var(--muted);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 1px solid rgba(223, 229, 239, 0.75);
      background: rgba(247, 249, 252, 0.92);
      backdrop-filter: blur(16px);
    }

    .header-inner {
      display: flex;
      min-height: 76px;
      align-items: center;
      justify-content: space-between;
      gap: 26px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      font-size: 1.08rem;
      font-weight: 900;
      letter-spacing: -0.025em;
    }

    .brand-mark {
      display: grid;
      width: 38px;
      height: 38px;
      place-items: center;
      border-radius: 12px;
      color: #fff;
      background:
        linear-gradient(135deg, var(--primary), #60a5fa);
      box-shadow: 0 9px 25px rgba(37, 99, 235, 0.28);
      font-size: 0.9rem;
      font-weight: 900;
      overflow: hidden;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 26px;
      color: #3d4759;
      font-size: 0.94rem;
      font-weight: 700;
    }

    .desktop-nav a:hover {
      color: var(--primary);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .button {
      display: inline-flex;
      min-height: 48px;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 0 20px;
      border: 1px solid transparent;
      border-radius: 12px;
      cursor: pointer;
      font-weight: 800;
      transition:
        transform 160ms ease,
        background 160ms ease,
        border-color 160ms ease,
        box-shadow 160ms ease;
    }

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

    .button-primary {
      color: #fff;
      background: var(--primary);
      box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25);
    }

    .button-primary:hover {
      background: var(--primary-dark);
    }

    .button-secondary {
      border-color: var(--border);
      color: var(--text);
      background: var(--surface);
    }

    .button-light {
      color: var(--primary-dark);
      background: #fff;
    }

    .button-text {
      padding-inline: 6px;
      color: var(--primary-dark);
      background: transparent;
    }

    .hero {
      overflow: hidden;
      padding: 88px 0 76px;
      background:
        radial-gradient(circle at 78% 15%, rgba(37, 99, 235, 0.14), transparent 34%),
        linear-gradient(180deg, #fbfcff 0%, #f7f9fc 100%);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
      align-items: center;
      gap: 72px;
    }

    .hero-copy p {
      margin-bottom: 30px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 26px;
    }

    .microproof {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 20px;
      color: var(--muted);
      font-size: 0.9rem;
      font-weight: 700;
    }

    .microproof span::before {
      content: "✓";
      margin-right: 7px;
      color: var(--success);
      font-weight: 900;
    }

    .product-window {
      position: relative;
      border: 1px solid #d8deec;
      border-radius: 26px;
      background: var(--surface);
      box-shadow: var(--shadow);
      transform: rotate(1deg);
    }

    .product-window::before {
      content: "";
      position: absolute;
      inset: -20px -20px auto auto;
      width: 145px;
      height: 145px;
      border-radius: 50%;
      background: rgba(18, 165, 148, 0.13);
      filter: blur(2px);
      z-index: -1;
    }


    .preview-label {
      position: absolute;
      top: 18px;
      right: 18px;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 7px 11px;
      border: 1px solid rgba(37, 99, 235, 0.18);
      border-radius: 999px;
      color: var(--primary-dark);
      background: rgba(255, 255, 255, 0.94);
      box-shadow: 0 8px 22px rgba(39, 50, 86, 0.08);
      font-size: 0.74rem;
      font-weight: 900;
      letter-spacing: 0.02em;
    }

    .company-line {
      margin-top: 14px;
      padding: 10px 12px;
      border-radius: 10px;
      color: #40506b;
      background: #f4f6fa;
      font-size: 0.78rem;
      font-weight: 800;
    }

    .premium-note {
      display: block;
      margin-top: 5px;
      color: var(--muted);
      font-size: 0.7rem;
      font-weight: 600;
    }

    .window-bar {
      display: flex;
      min-height: 54px;
      align-items: center;
      gap: 7px;
      padding: 0 18px;
      border-bottom: 1px solid var(--border);
    }

    .window-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #d2d8e3;
    }

    .window-content {
      padding: 22px;
    }

    .search-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 10px;
      margin-bottom: 18px;
    }

    .fake-input {
      display: flex;
      min-height: 46px;
      align-items: center;
      padding: 0 14px;
      border: 1px solid var(--border);
      border-radius: 10px;
      color: var(--muted);
      background: #fbfcfe;
      font-size: 0.9rem;
    }

    .filter-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 18px;
    }

    .pill {
      padding: 7px 10px;
      border: 1px solid var(--border);
      border-radius: 999px;
      color: #4d586a;
      background: #fff;
      font-size: 0.78rem;
      font-weight: 700;
    }

    .job-card {
      padding: 18px;
      border: 1px solid var(--border);
      border-radius: 16px;
      background: #fff;
    }

    .job-card + .job-card {
      margin-top: 12px;
    }

    .job-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 20px;
    }

    .job-title {
      margin-bottom: 5px;
      font-size: 1rem;
      font-weight: 900;
    }

    .job-meta {
      color: var(--muted);
      font-size: 0.82rem;
    }

    .score {
      display: grid;
      min-width: 62px;
      height: 62px;
      place-items: center;
      border: 7px solid #d9f4ed;
      border-top-color: var(--accent);
      border-radius: 50%;
      color: #087b6d;
      font-size: 0.95rem;
      font-weight: 900;
    }

    .skill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-top: 15px;
    }

    .skill-tag {
      padding: 5px 8px;
      border-radius: 8px;
      color: #40506b;
      background: #f1f4f9;
      font-size: 0.72rem;
      font-weight: 800;
    }

    .stats-strip {
      padding: 26px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: var(--surface);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      text-align: center;
    }

    .stat strong {
      display: block;
      margin-bottom: 3px;
      color: var(--primary-dark);
      font-size: clamp(1.55rem, 3vw, 2.25rem);
      line-height: 1;
    }

    .stat span {
      color: var(--muted);
      font-size: 0.9rem;
      font-weight: 700;
    }

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

    .card {
      padding: 28px;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      background: var(--surface);
      box-shadow: 0 10px 30px rgba(39, 50, 86, 0.05);
    }

    .icon {
      display: grid;
      width: 46px;
      height: 46px;
      margin-bottom: 20px;
      place-items: center;
      border-radius: 16px;
      color: var(--primary-dark);
      background: var(--primary-soft);
      font-weight: 900;
    }

    .process {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      counter-reset: step;
    }

    .process-card {
      position: relative;
      padding: 28px 24px;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      background: var(--surface);
    }

    .process-card::before {
      counter-increment: step;
      content: "0" counter(step);
      display: block;
      margin-bottom: 24px;
      color: var(--primary);
      font-size: 0.83rem;
      font-weight: 900;
      letter-spacing: 0.08em;
    }

    .split {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      align-items: center;
      gap: 72px;
    }

    .split.reverse {
      grid-template-columns: 1.08fr 0.92fr;
    }

    .visual-card {
      overflow: hidden;
      padding: 26px;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      background:
        linear-gradient(145deg, #ffffff 0%, #f5f7ff 100%);
      box-shadow: var(--shadow);
    }

    .match-summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 20px;
    }

    .large-score {
      display: grid;
      width: 96px;
      height: 96px;
      flex: 0 0 96px;
      place-items: center;
      border: 10px solid #daf5ed;
      border-top-color: var(--accent);
      border-right-color: var(--accent);
      border-radius: 50%;
      color: #087b6d;
      font-size: 1.25rem;
      font-weight: 900;
    }

    .skill-list {
      display: grid;
      gap: 10px;
    }

    .skill-list-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 12px 14px;
      border-radius: 12px;
      background: #fff;
      font-size: 0.88rem;
      font-weight: 800;
    }

    .matched {
      color: var(--success);
    }

    .missing {
      color: #b16b15;
    }

    .bars {
      display: grid;
      gap: 16px;
    }

    .bar-row {
      display: grid;
      grid-template-columns: 90px 1fr 48px;
      align-items: center;
      gap: 14px;
      font-size: 0.84rem;
      font-weight: 800;
    }

    .bar-track {
      overflow: hidden;
      height: 12px;
      border-radius: 999px;
      background: #e8ecf3;
    }

    .bar-fill {
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--primary), #60a5fa);
    }

    .workflow-card {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 15px;
      padding: 18px;
      border: 1px solid var(--border);
      border-radius: 15px;
      background: #fff;
    }

    .workflow-card + .workflow-card {
      margin-top: 12px;
    }

    .workflow-number {
      display: grid;
      width: 34px;
      height: 34px;
      place-items: center;
      border-radius: 10px;
      color: var(--primary-dark);
      background: var(--primary-soft);
      font-size: 0.82rem;
      font-weight: 900;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 430px));
      justify-content: center;
      gap: 22px;
    }

    .pricing-card {
      position: relative;
      padding: 34px;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      background: var(--surface);
    }

    .pricing-card.featured {
      border: 2px solid var(--primary);
      box-shadow: var(--shadow);
    }

    .popular {
      position: absolute;
      top: 20px;
      right: 20px;
      padding: 6px 10px;
      border-radius: 999px;
      color: #fff;
      background: var(--primary);
      font-size: 0.72rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .price {
      margin: 20px 0 5px;
      font-size: 2.5rem;
      font-weight: 900;
      letter-spacing: -0.05em;
    }

    .price-note {
      margin-bottom: 24px;
      color: var(--muted);
      font-size: 0.88rem;
    }

    .check-list {
      display: grid;
      gap: 13px;
      padding: 0;
      margin: 24px 0 30px;
      list-style: none;
    }

    .check-list li {
      position: relative;
      padding-left: 25px;
      color: #475266;
    }

    .check-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--success);
      font-weight: 900;
    }

    .trust-box {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 36px;
      padding: 38px;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      background: #11192b;
      color: #fff;
    }

    .trust-box .muted {
      color: #b8c1d1;
    }

    .trust-points {
      display: grid;
      gap: 14px;
    }

    .trust-point {
      padding: 16px 18px;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 14px;
      background: rgba(255,255,255,0.06);
    }

    .faq-list {
      max-width: 840px;
      margin-inline: auto;
    }

    details {
      border-bottom: 1px solid var(--border);
    }

    summary {
      position: relative;
      padding: 22px 42px 22px 0;
      cursor: pointer;
      list-style: none;
      font-weight: 850;
    }

    summary::-webkit-details-marker {
      display: none;
    }

    summary::after {
      content: "+";
      position: absolute;
      top: 19px;
      right: 2px;
      color: var(--primary);
      font-size: 1.5rem;
    }

    details[open] summary::after {
      content: "–";
    }

    details p {
      padding: 0 0 22px;
      color: var(--muted);
    }

    .final-cta {
      padding: 80px 0;
    }

    .cta-panel {
      padding: 64px 30px;
      border-radius: var(--radius-lg);
      text-align: center;
      color: #fff;
      background:
        radial-gradient(circle at 15% 20%, rgba(255,255,255,0.16), transparent 28%),
        linear-gradient(135deg, var(--primary-dark), var(--primary));
      box-shadow: var(--shadow);
    }

    .cta-panel h2 {
      max-width: 760px;
      margin-inline: auto;
    }

    .cta-panel p {
      max-width: 650px;
      margin: 0 auto 28px;
      color: #dbeafe;
    }

    .site-footer {
      padding: 58px 0 28px;
      border-top: 1px solid var(--border);
      background: var(--surface);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr repeat(3, 1fr);
      gap: 40px;
    }

    .footer-brand p {
      max-width: 320px;
      margin-top: 18px;
      color: var(--muted);
      font-size: 0.9rem;
    }

    .footer-column h3 {
      margin-bottom: 16px;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .footer-column a {
      display: block;
      margin-bottom: 10px;
      color: var(--muted);
      font-size: 0.9rem;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      margin-top: 42px;
      padding-top: 24px;
      border-top: 1px solid var(--border);
      color: var(--muted);
      font-size: 0.82rem;
    }

    .mobile-menu-button {
      display: none;
      min-width: 44px;
      min-height: 44px;
      border: 1px solid var(--border);
      border-radius: 10px;
      background: #fff;
      cursor: pointer;
    }

    .mobile-nav {
      display: none;
      padding: 0 20px 20px;
      border-top: 1px solid var(--border);
      background: var(--surface);
    }

    .mobile-nav.open {
      display: grid;
      gap: 12px;
    }

    .mobile-nav a {
      padding: 8px 0;
      font-weight: 750;
    }


    .brand-logo {
      display: inline-flex;
      align-items: center;
      flex: 0 0 auto;
    }

    .brand-logo img {
      display: block;
      width: 220px;
      height: auto;
      max-height: 52px;
      object-fit: contain;
      object-position: left center;
    }


    .proof-strip {
      padding: 30px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: var(--surface);
    }

    .proof-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
    }

    .proof-item {
      display: grid;
      grid-template-columns: 46px 1fr;
      align-items: start;
      gap: 14px;
    }

    .proof-icon {
      display: grid;
      width: 46px;
      height: 46px;
      place-items: center;
      border-radius: 14px;
      color: var(--primary-dark);
      background: var(--primary-soft);
      font-size: 1.15rem;
      font-weight: 900;
    }

    .proof-item strong {
      display: block;
      margin-bottom: 3px;
      font-size: 0.98rem;
      line-height: 1.25;
    }

    .proof-item span {
      display: block;
      color: var(--muted);
      font-size: 0.82rem;
      line-height: 1.45;
    }


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

    .classification-item {
      display: grid;
      grid-template-columns: 46px 1fr;
      align-items: center;
      gap: 15px;
      padding: 17px 18px;
      border: 1px solid var(--border);
      border-radius: 14px;
      background: #fff;
    }

    .classification-symbol {
      display: grid;
      width: 42px;
      height: 42px;
      place-items: center;
      border-radius: 50%;
      font-size: 1.2rem;
      font-weight: 900;
    }

    .classification-item.excluded {
      border-color: #fecaca;
      background: #fffafa;
    }

    .classification-item.excluded .classification-symbol {
      color: #b91c1c;
      background: #fee2e2;
    }

    .classification-item.accepted {
      border-color: #bbf7d0;
      background: #f8fff9;
    }

    .classification-item.accepted .classification-symbol {
      color: #15803d;
      background: #dcfce7;
    }

    .classification-item h3 {
      margin: 0 0 4px;
      font-size: 1rem;
    }

    .classification-item p {
      margin: 0;
    }

    .pipeline-wrap {
      position: relative;
      padding: 34px;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
      box-shadow: var(--shadow);
    }

    .pipeline {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
      position: relative;
    }

    .pipeline::before {
      content: "";
      position: absolute;
      top: 26px;
      left: 12.5%;
      right: 12.5%;
      height: 2px;
      background: linear-gradient(90deg, #bfdbfe, var(--primary), #bfdbfe);
      z-index: 0;
    }

    .pipeline-step {
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .pipeline-icon {
      display: grid;
      width: 54px;
      height: 54px;
      margin: 0 auto 18px;
      place-items: center;
      border: 2px solid #fff;
      border-radius: 16px;
      color: #fff;
      background: linear-gradient(135deg, var(--primary), #60a5fa);
      box-shadow: 0 10px 24px rgba(37, 99, 235, 0.2);
      font-size: 1.1rem;
      font-weight: 900;
    }

    .pipeline-step h3 {
      margin-bottom: 6px;
    }

    .showcase {
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      background: linear-gradient(145deg, #ffffff 0%, #f5f7ff 100%);
      box-shadow: var(--shadow);
    }

    .showcase-toolbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 18px 22px;
      border-bottom: 1px solid var(--border);
      background: rgba(255,255,255,0.8);
    }

    .showcase-body {
      padding: 24px;
    }

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

    .match-panel {
      padding: 20px;
      border: 1px solid var(--border);
      border-radius: 16px;
      background: #fff;
    }

    .locked-score {
      display: grid;
      min-height: 150px;
      place-items: center;
      border: 1px dashed #bfdbfe;
      border-radius: 14px;
      background: #f8fbff;
      text-align: center;
      padding: 20px;
    }

    .locked-score strong {
      display: block;
      margin-bottom: 6px;
      color: var(--primary-dark);
    }

    .demand-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: 14px;
      background: #fff;
    }

    .demand-table th,
    .demand-table td {
      padding: 13px 14px;
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      text-align: center;
      font-size: 0.82rem;
    }

    .demand-table th:first-child,
    .demand-table td:first-child {
      text-align: left;
      font-weight: 800;
    }

    .demand-table th:last-child,
    .demand-table td:last-child {
      border-right: 0;
    }

    .demand-table tr:last-child td {
      border-bottom: 0;
    }

    .demand-table th {
      color: #40506b;
      background: #f5f7fb;
      font-weight: 800;
    }

    .demand-cell {
      color: var(--primary-dark);
      background: #eef4ff;
      font-weight: 900;
    }

    .saved-search-panel {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 24px;
      padding: 30px;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      background: #fff;
      box-shadow: var(--shadow);
    }

    .saved-search-card {
      padding: 24px;
      border-radius: 18px;
      background: #f7f9fc;
      border: 1px solid var(--border);
    }

    .saved-search-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 18px;
    }

    .saved-search-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 14px;
    }

    .alert-status {
      display: grid;
      gap: 10px;
    }

    .alert-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 14px 16px;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: #fff;
      font-size: 0.86rem;
      font-weight: 800;
    }

    .comparison-section {
      padding: 76px 0;
      background: #11192b;
      color: #fff;
    }

    .comparison-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      align-items: center;
      gap: 54px;
    }

    .comparison-section .lead {
      color: #b8c1d1;
    }

    .comparison-table {
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 18px;
      background: rgba(255,255,255,0.05);
    }

    .comparison-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .comparison-row:last-child {
      border-bottom: 0;
    }

    .comparison-cell {
      padding: 18px 20px;
      font-size: 0.9rem;
    }

    .comparison-cell:first-child {
      color: #b8c1d1;
      border-right: 1px solid rgba(255,255,255,0.1);
    }

    .comparison-cell:last-child {
      color: #fff;
      font-weight: 800;
    }

    .comparison-head {
      background: rgba(255,255,255,0.07);
      font-weight: 900;
    }

    @media (max-width: 980px) {
      .brand-logo img { width: 190px; }

      .desktop-nav,
      .header-actions .button-text {
        display: none;
      }

      .mobile-menu-button {
        display: inline-grid;
        place-items: center;
      }

      .hero-grid,
      .split,
      .split.reverse,
      .trust-box {
        grid-template-columns: 1fr;
      }

      .hero-grid {
        gap: 50px;
      }

      .hero-copy {
        text-align: center;
      }

      .hero-copy .lead,
      .hero-actions,
      .microproof {
        margin-inline: auto;
        justify-content: center;
      }

      .product-window {
        max-width: 720px;
        margin-inline: auto;
        transform: none;
      }

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

      .proof-grid,
      .pipeline,
      .match-grid,
      .saved-search-panel,
      .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .pipeline::before {
        display: none;
      }

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

      .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
      }

      .footer-column:last-child {
        grid-column: 2 / 4;
      }
    }

    @media (max-width: 700px) {
      .container {
        width: min(calc(100% - 26px), var(--max-width));
      }

      .section {
        padding: 68px 0;
      }

      .hero {
        padding-top: 62px;
      }

      .header-actions .button-primary {
        display: none;
      }

      .hero-actions {
        display: grid;
      }

      .hero-actions .button {
        width: 100%;
      }

      .search-row {
        grid-template-columns: 1fr;
      }

      .proof-grid,
      .stats-grid,
      .proof-grid,
      .pipeline,
      .match-grid,
      .saved-search-panel,
      .comparison-grid,
      .difference-grid,
      .feature-grid,
      .process,
      .pricing-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .proof-grid { gap: 14px; }

      .proof-item {
        min-height: 96px;
        justify-content: flex-start;
        text-align: left;
      }

      .stats-grid {
        gap: 22px;
      }

      .stat {
        padding-bottom: 22px;
        border-bottom: 1px solid var(--border);
      }

      .stat:last-child {
        padding-bottom: 0;
        border-bottom: 0;
      }

      .match-summary {
        align-items: flex-start;
      }

      .bar-row {
        grid-template-columns: 70px 1fr 40px;
      }

      .trust-box,
      .cta-panel {
        padding: 34px 22px;
      }

      .footer-column:last-child {
        grid-column: auto;
      }

      .footer-bottom {
        flex-direction: column;
      }
    }


/* Inner pages */
.page-hero {
  padding: 88px 0 64px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 80% 10%, rgba(37, 99, 235, 0.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.page-hero .lead {
  max-width: 760px;
}

.content-section {
  padding: 72px 0;
}

.content-narrow {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
}

.prose {
  color: var(--text);
}

.prose h2 {
  margin-top: 42px;
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.prose h3 {
  margin-top: 28px;
  margin-bottom: 10px;
}

.prose p,
.prose li {
  color: #4b5870;
  line-height: 1.75;
}

.prose ul {
  padding-left: 1.25rem;
}

.info-panel {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 12px 35px rgba(39, 50, 86, 0.08);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  font-size: 0.88rem;
  font-weight: 800;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #cfd7e5;
  border-radius: 11px;
  color: var(--text);
  background: #fff;
  font: inherit;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: 3px solid rgba(37, 99, 235, 0.14);
  border-color: var(--primary);
}

.form-row textarea {
  min-height: 170px;
  resize: vertical;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.86rem;
}

.active-nav {
  color: var(--primary-dark) !important;
}

@media (max-width: 760px) {
  .page-hero {
    padding: 66px 0 46px;
  }

  .content-section {
    padding: 54px 0;
  }

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


/* Cookie consent */
.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000;
  width: min(430px, calc(100% - 32px));
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.22);
}

.cookie-banner[hidden] { display: none; }

.cookie-banner h2 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.cookie-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.cookie-actions .button {
  width: 100%;
  min-height: 44px;
}

.cookie-settings-link {
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  text-align: left;
}

.cookie-settings-link:hover { color: var(--primary); }

@media (max-width: 520px) {
  .cookie-banner {
    right: 16px;
    bottom: 16px;
  }

  .cookie-actions {
    grid-template-columns: 1fr;
  }
}
