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

  .skip-link {
    position: absolute;
    left: -9999px;
    z-index: 9999;
    padding: 12px 16px;
    background: var(--teal);
    color: var(--navy);
    font-weight: 700;
    text-decoration: none;
    border-radius: 0 0 8px 0;
  }

  .skip-link:focus {
    left: 0;
    top: 0;
    outline: 2px solid #fff;
    outline-offset: 2px;
  }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }

  a:focus-visible,
  button:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 2px;
  }

  :root {
    --navy: #0B1628;
    --navy-mid: #152040;
    --teal: #C9A96E;            /* champagne gold — replaces teal */
    --teal-dim: rgba(201,169,110,0.12);
    --blue-accent: #3B82F6;
    --off-white: #F5F7FA;
    --muted: #8A96AA;
    --text: #1C2535;
    --card-bg: #FFFFFF;
    --border: rgba(11,22,40,0.08);
  }

  html { font-size: 15px; }

  body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--off-white);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
  }

  /* ── PAGE SHELL ── */
  .page {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 0 80px rgba(0,0,0,0.1);
    overflow-x: hidden;
  }

  html, body { overflow-x: hidden; }

  img, picture, video { max-width: 100%; height: auto; }

  /* ── HERO ── */
  .hero {
    background: var(--navy);
    padding: 80px 72px 72px;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -120px; right: -80px;
    width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(201,169,110,0.14) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -60px; left: 40%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(180,130,60,0.09) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-label {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 28px;
  }

  .hero-label .hero-logo {
    height: 3rem;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
  }

  .hero-label .dot {
    width: 6px; height: 6px;
    background: var(--teal);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
  }

  .hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1.08;
    color: #fff;
    max-width: 620px;
    margin-bottom: 20px;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--teal);
  }

  .hero h2.hero-tagline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    max-width: 580px;
    margin-top: 0.85rem;
    margin-bottom: 0;
    letter-spacing: -0.01em;
  }

  .hero h2.hero-tagline em {
    font-style: italic;
    color: var(--teal);
  }

  .hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    max-width: 520px;
    line-height: 1.7;
  }

  /* ── INTEGRATION STRIP ── */
  .integrations {
    background: var(--navy-mid);
    padding: 14px 72px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .int-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
    margin-right: 6px;
  }

  .int-chip {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
  }

  /* ── FLOW DIAGRAM ── */
  .flow-section {
    position: relative;
    padding: 100px 72px 104px;
    min-height: 62vh;
    background-color: var(--off-white);
    overflow: hidden;
  }

  .flow-section > picture {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: block;
  }

  .flow-section-bg-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
  }

  .flow-section-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(rgba(245, 247, 250, 0.35), rgba(245, 247, 250, 0.5));
  }

  .flow-section > *:not(picture):not(.flow-section-scrim) {
    position: relative;
    z-index: 2;
  }

  /* ── SECTION EYEBROW (luxury decorative line) ── */
  .section-eyebrow {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .section-eyebrow::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 1.5px;
    background: var(--teal);
    opacity: 0.8;
    flex-shrink: 0;
    border-radius: 1px;
  }

  .section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 40px;
    line-height: 1.2;
  }

  .flow {
    display: flex;
    align-items: stretch;
    gap: 0;
  }

  .flow-step {
    flex: 1;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 26px 22px;
    position: relative;
    transition: box-shadow 0.25s, transform 0.25s;
  }

  .flow-step:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.1), 0 4px 16px rgba(0,0,0,0.06);
    transform: translateY(-2px);
  }

  .flow-arrow {
    display: flex;
    align-items: center;
    padding: 0 6px;
    flex-shrink: 0;
  }

  .flow-arrow svg {
    color: var(--teal);
  }

  .step-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 10px;
  }

  .step-icon {
    width: 36px; height: 36px;
    background: var(--teal-dim);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
  }

  .step-icon svg { color: var(--teal); }

  .flow-step h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.25;
  }

  .flow-step p {
    font-size: 0.8rem;
    color: #5A6478;
    line-height: 1.6;
  }

  /* ── THREE OUTCOMES ── */
  .outcomes-section {
    padding: 80px 72px;
    background: #fff;
  }

  .outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 32px;
  }

  .outcome-card {
    border-radius: 14px;
    padding: 32px 26px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
  }

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

  .outcome-card.teal {
    background: var(--navy);
    box-shadow: 0 8px 32px rgba(11,22,40,0.2);
  }

  .outcome-card.teal:hover {
    box-shadow: 0 16px 48px rgba(11,22,40,0.28);
  }

  .outcome-card.slate {
    background: var(--off-white);
    border: 1px solid var(--border);
  }

  .outcome-card.slate:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  }

  .outcome-card.blue {
    background: linear-gradient(135deg, #1e3a5f 0%, #0B1628 100%);
    box-shadow: 0 8px 32px rgba(11,22,40,0.2);
  }

  .outcome-card.blue:hover {
    box-shadow: 0 16px 48px rgba(11,22,40,0.28);
  }

  .outcome-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 140px; height: 140px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
  }

  .outcome-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
  }

  .outcome-card.teal .outcome-number,
  .outcome-card.blue .outcome-number { color: var(--teal); }
  .outcome-card.slate .outcome-number { color: var(--navy); }

  .outcome-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .outcome-card.teal h3,
  .outcome-card.blue h3 { color: #fff; }
  .outcome-card.slate h3 { color: var(--navy); }

  .outcome-card p {
    font-size: 0.78rem;
    line-height: 1.6;
  }

  .outcome-card.teal p,
  .outcome-card.blue p { color: rgba(255,255,255,0.55); }
  .outcome-card.slate p { color: #5A6478; }

  /* ── COMPARISON TABLE ── */
  .section-divider {
    border: 0;
    border-top: 1px solid var(--border);
    margin: 0;
  }

  .compare-section {
    padding: 80px 72px;
    background: var(--off-white);
  }

  .compare-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 32px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  }

  .compare-table thead tr {
    background: var(--navy);
  }

  .compare-table thead th {
    padding: 14px 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .compare-table thead th:first-child { color: #fff; text-align: left; }
  .compare-table thead th:nth-child(2) { color: #C97A7A; text-align: center; }
  .compare-table thead th:nth-child(3) { color: var(--teal); text-align: center; }

  .compare-table tbody tr {
    border-bottom: 1px solid var(--border);
  }

  .compare-table tbody tr:last-child { border-bottom: none; }

  .compare-table tbody tr:hover { background: var(--off-white); }

  .compare-table tbody td,
  .compare-table tbody th {
    padding: 13px 20px;
    font-size: 0.82rem;
    white-space: normal;
    word-break: break-word;
  }

  .compare-table tbody th[scope="row"] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--navy);
    text-align: left;
  }

  .compare-table td:nth-child(2) {
    text-align: center;
    color: #8A96AA;
    font-size: 0.79rem;
  }

  .compare-table td:nth-child(3) {
    text-align: center;
    color: #9A7030;
    font-weight: 500;
    font-size: 0.79rem;
  }

  /* ── SAMPLE CALL RECORDINGS ── */
  .recordings-section {
    padding: 80px 72px;
    background: #fff;
  }

  .recordings-intro {
    margin-top: -8px;
    margin-bottom: 20px;
    font-size: 0.86rem;
    color: #6d7890;
    line-height: 1.6;
    max-width: 620px;
  }

  .recordings-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  }

  .recordings-table thead tr {
    background: var(--navy);
  }

  .recordings-table thead th {
    padding: 13px 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
    text-align: left;
  }

  .recordings-table tbody tr {
    border-bottom: 1px solid var(--border);
  }

  .recordings-table tbody tr:last-child {
    border-bottom: none;
  }

  .recordings-table tbody td,
  .recordings-table tbody th {
    padding: 12px 14px;
    font-size: 0.82rem;
    color: #3e4960;
    vertical-align: middle;
  }

  .recordings-table tbody th[scope="row"] {
    font-weight: 400;
    text-align: left;
  }

  .recordings-type {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--navy);
    text-transform: capitalize;
  }

  .recordings-type svg {
    width: 17px;
    height: 17px;
    color: var(--teal);
    flex-shrink: 0;
  }

  .recordings-desc {
    font-size: 0.8rem;
    color: #67748e;
    line-height: 1.45;
  }

  .recordings-duration {
    white-space: nowrap;
    font-weight: 700;
    color: var(--navy);
  }

  .recordings-action button {
    background: var(--teal);
    color: var(--navy);
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    min-width: 84px;
    transition: background 0.15s, box-shadow 0.15s;
  }

  .recordings-action button:hover {
    background: #D4B87A;
    box-shadow: 0 4px 14px rgba(201,169,110,0.35);
  }

  /* ── ONBOARDING ── */
  .onboarding-section {
    padding: 80px 72px;
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .onboarding-intro {
    max-width: 700px;
    margin-top: -8px;
    color: #62718c;
    font-size: 0.86rem;
    line-height: 1.6;
  }

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

  .onboarding-card {
    position: relative;
    display: grid;
    grid-template-columns: 44px 76px 1fr;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    padding: 16px 16px 16px 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s, transform 0.2s;
  }

  .onboarding-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.09);
    transform: translateY(-1px);
  }

  .onboarding-arrow {
    width: 32px;
    height: 32px;
    color: var(--teal);
    animation: onboardingPulse 1.8s ease-in-out infinite;
  }

  .onboarding-icon {
    width: 76px;
    height: 76px;
    border-radius: 10px;
    background: rgba(201,169,110,0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #8A6535;
  }

  .onboarding-icon svg {
    width: 40px;
    height: 40px;
  }

  .onboarding-copy h3 {
    display: block;
    margin: 0 0 4px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--navy);
  }

  .onboarding-copy p {
    margin: 0;
    font-size: 0.83rem;
    line-height: 1.6;
    color: #5f6f8b;
  }

  @keyframes onboardingPulse {
    0% { transform: translateX(0); opacity: 0.65; }
    50% { transform: translateX(4px); opacity: 1; }
    100% { transform: translateX(0); opacity: 0.65; }
  }

  /* ── SCREENSHOTS ── */
  .screenshots-section {
    padding: 80px 72px;
    background: #fff;
    border-top: 1px solid var(--border);
  }

  .screenshots-intro {
    max-width: 760px;
    margin-top: -8px;
    color: #62718c;
    font-size: 0.86rem;
    line-height: 1.6;
  }

  .screenshots-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 14px;
    grid-auto-flow: dense;
  }

  .screenshot-card {
    grid-column: span 6;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: box-shadow 0.2s, transform 0.2s;
  }

  .screenshot-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.11);
    transform: translateY(-2px);
  }

  .screenshot-card.shot-actionlog {
    grid-column: span 8;
  }

  .screenshot-card.shot-transcript {
    grid-column: span 4;
  }

  .screenshot-card img {
    display: block;
    width: 100%;
    height: auto;
    background: #eef2f9;
    cursor: zoom-in;
  }

  .screenshot-caption {
    padding: 11px 13px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #5b6780;
  }

  .screenshot-lightbox {
    width: min(96vw, 1280px);
    max-height: 92vh;
    margin: auto;
    border: none;
    border-radius: 14px;
    padding: 12px;
    background: #0b1628;
    color: #fff;
  }

  .screenshot-lightbox::backdrop {
    background: rgba(4, 9, 20, 0.88);
    backdrop-filter: blur(4px);
  }

  .screenshot-lightbox-inner {
    margin: 0;
  }

  .screenshot-lightbox-img {
    display: block;
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 10px;
    background: #0f1a31;
  }

  .screenshot-lightbox-caption {
    margin-top: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.82);
  }

  .screenshot-lightbox-close {
    position: absolute;
    top: 8px;
    right: 8px;
    border: 0;
    border-radius: 999px;
    width: 34px;
    height: 34px;
    cursor: pointer;
    background: rgba(255,255,255,0.14);
    color: #fff;
    font-size: 1.35rem;
    line-height: 1;
  }

  .screenshot-lightbox-close:hover {
    background: rgba(255,255,255,0.24);
  }

  /* ── PRICING ── */
  .pricing-section {
    padding: 80px 72px;
    background: #fff;
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 32px;
  }

  .price-card {
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 32px 24px;
    position: relative;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  }

  .price-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    transform: translateY(-2px);
  }

  .price-card.featured {
    border-color: var(--teal);
    box-shadow: 0 0 0 2px rgba(201,169,110,0.25), 0 12px 40px rgba(0,0,0,0.1);
  }

  .price-card.featured::before {
    content: 'Recommended';
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: var(--navy);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 20px;
    white-space: nowrap;
  }

  .price-tier {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 6px;
  }

  .price-amount {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 2px;
  }

  .price-period {
    font-size: 0.75rem;
    color: var(--muted);
    margin-bottom: 16px;
  }

  .price-detail {
    font-size: 0.78rem;
    color: #5A6478;
    line-height: 1.7;
  }

  .price-detail span {
    display: block;
  }

  .price-detail strong {
    color: var(--navy);
    font-weight: 500;
  }

  .price-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 14px 0;
  }

  /* ── CTA / FOOTER ── */
  .cta-section {
    background: var(--navy);
    padding: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .cta-left h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .cta-left p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
  }

  .cta-btn {
    background: var(--teal);
    color: var(--navy);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    display: inline-block;
    transition: background 0.15s, box-shadow 0.15s, transform 0.15s;
    box-shadow: 0 4px 20px rgba(201,169,110,0.3);
  }

  .cta-btn:hover {
    background: #D4B87A;
    box-shadow: 0 8px 32px rgba(201,169,110,0.45);
    transform: translateY(-1px);
  }

  .footer-bar {
    background: #060E1A;
    padding: 16px 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-brand {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.06em;
  }

  .footer-brand span { color: var(--teal); }

  .footer-note {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.2);
    font-style: italic;
  }

  .footer-note a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-style: normal;
  }

  .footer-note a:hover {
    color: #fff;
    text-decoration: underline;
  }

  /* ── CHECK / CROSS ICONS ── */
  .check { color: var(--teal); }
  .cross { color: #C97A7A; }

  /* ── PRINT / PDF ── */
  @media print {
    @page {
      size: letter portrait;
      margin: 0;
    }

    html, body {
      width: 8.5in;
      font-size: 11px;
      background: #fff;
    }

    .page {
      max-width: 100%;
      box-shadow: none;
      width: 8.5in;
    }

    .hero                { padding: 32px 44px 28px; }
    .integrations        { padding: 10px 44px; }
    .flow-section        { padding: 48px 44px 40px; min-height: auto; }
    .outcomes-section    { padding: 24px 44px; }
    .compare-section     { padding: 24px 44px; }
    .pricing-section     { padding: 24px 44px; }
    .onboarding-section  { padding: 24px 44px; }
    .screenshots-section { padding: 24px 44px; }
    .cta-section         { padding: 24px 44px; }
    .footer-bar          { padding: 10px 44px; }

    .flow-section,
    .flow-section > picture,
    .flow-section-bg-img,
    .flow-section-scrim {
      -webkit-print-color-adjust: exact !important;
      print-color-adjust: exact !important;
      color-adjust: exact;
    }

    .outcomes-grid       { gap: 12px; margin-top: 16px; }
    .pricing-grid        { gap: 12px; margin-top: 16px; }
    .outcome-card        { padding: 18px 16px; }
    .price-card          { padding: 18px 16px; }

    .flow                { gap: 0; }
    .flow-step           { padding: 16px 14px; }
    .section-title       { margin-bottom: 20px; }

    .hero h1             { font-size: 2rem; }
    .hero h2.hero-tagline { font-size: 1.15rem; }
    .section-eyebrow     { font-size: 0.78rem; }
    .section-title       { font-size: 1.2rem; }
    .outcome-number      { font-size: 1.8rem; }
    .price-amount        { font-size: 1.7rem; }
    .cta-left h2         { font-size: 1.2rem; }

    * {
      -webkit-print-color-adjust: exact;
      print-color-adjust: exact;
    }

    .flow-section, .outcomes-section, .compare-section,
    .pricing-section, .onboarding-section, .screenshots-section, .cta-section {
      break-inside: avoid;
    }

    .hero::before, .hero::after { display: none; }

    .dot { animation: none !important; }
    .hero-cta-eyebrow .cta-pulse,
    .hero-cta-eyebrow .cta-live-label { animation: none !important; }

    .outcome-card::before { display: none; }

    .section-eyebrow::before { display: none; }
  }

  /* ── HERO CTA WIDGET ── */
  .hero-cta-widget {
    position: absolute;
    top: 36px;
    right: 48px;
    z-index: 10;
    background: rgba(255,255,255,0.055);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 18px;
    padding: 22px 24px 18px;
    width: 278px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.35), 0 2px 8px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.12);
  }

  .hero-cta-eyebrow {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 10px;
  }

  .hero-cta-eyebrow .cta-pulse {
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
  }

  .hero-cta-eyebrow .cta-live-label {
    animation: pulse 2s ease-in-out infinite;
  }

  .hero-cta-headline {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.25;
    letter-spacing: -0.01em;
  }

  .hero-cta-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin-bottom: 16px;
  }

  .hero-cta-input-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 8px;
  }

  .hero-cta-input {
    width: 100%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 10px;
    padding: 11px 15px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    outline: none;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    letter-spacing: 0.03em;
    margin-bottom: 10px;
    display: block;
  }

  .hero-cta-input::placeholder {
    color: rgba(255,255,255,0.28);
    font-weight: 400;
  }

  .hero-cta-input:focus {
    border-color: var(--teal);
    background: rgba(201,169,110,0.07);
    box-shadow: 0 0 0 3px rgba(201,169,110,0.18);
  }

  .hero-cta-btn {
    width: 100%;
    background: linear-gradient(135deg, #D4AF70 0%, #C09040 100%);
    color: #0B1628;
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    box-shadow: 0 4px 20px rgba(201,169,110,0.45), 0 1px 3px rgba(0,0,0,0.2);
    margin-bottom: 12px;
  }

  .hero-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201,169,110,0.6), 0 2px 6px rgba(0,0,0,0.2);
  }

  .hero-cta-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 12px rgba(201,169,110,0.35);
  }

  .hero-cta-btn svg {
    flex-shrink: 0;
  }

  .hero-cta-note {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.28);
    text-align: center;
    line-height: 1.55;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1200px) {
    .page {
      max-width: 100%;
      box-shadow: none;
    }

    .hero,
    .integrations,
    .flow-section,
    .outcomes-section,
    .compare-section,
    .recordings-section,
    .pricing-section,
    .onboarding-section,
    .screenshots-section,
    .vs-section,
    .cta-section,
    .footer-bar {
      padding-left: 32px;
      padding-right: 32px;
    }

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

    .hero-cta-widget {
      position: static;
      width: 100%;
      max-width: 420px;
      margin-top: 28px;
      margin-left: 0;
      right: auto;
      top: auto;
    }

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

  @media (max-width: 768px) {
    html { font-size: 14px; }

    .hero h1 {
      font-size: 2.6rem;
      line-height: 1.12;
      max-width: none;
    }

    .hero h2.hero-tagline {
      font-size: 1.3rem;
      max-width: none;
    }

    .hero-sub { max-width: none; }

    .hero-label {
      font-size: 0.95rem;
      letter-spacing: 0.1em;
      gap: 10px;
    }

    .hero-label .hero-logo { height: 2.25rem; }

    .integrations {
      flex-wrap: wrap;
      row-gap: 8px;
      padding-top: 12px;
      padding-bottom: 12px;
    }

    .flow {
      flex-direction: column;
      gap: 12px;
    }

    .flow-arrow { display: none; }

    .section-title {
      font-size: 1.45rem;
      margin-bottom: 24px;
    }

    .outcomes-grid,
    .pricing-grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .pricing-grid {
      justify-items: center;
      gap: 22px;
    }

    .price-card {
      width: min(100%, 340px);
      padding: 20px 16px;
    }

    .price-card.featured::before {
      top: 10px;
      right: 12px;
      left: auto;
      transform: none;
      font-size: 0.56rem;
      padding: 2px 8px;
    }

    .price-card.featured .price-tier {
      margin-top: 14px;
    }

    .compare-table {
      border-collapse: separate;
      border-spacing: 0;
      box-shadow: none;
      background: transparent;
      margin-top: 18px;
    }

    .compare-table thead {
      display: none;
    }

    .compare-table tbody {
      display: grid;
      gap: 12px;
    }

    .compare-table tbody tr {
      display: block;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: #fff;
      overflow: hidden;
    }

    .compare-table tbody td,
    .compare-table tbody th {
      display: block;
      text-align: left !important;
      padding: 10px 14px;
      border-bottom: 1px solid var(--border);
      font-size: 0.8rem;
    }

    .compare-table tbody tr > td:last-child {
      border-bottom: none;
    }

    .compare-table tbody th:first-child {
      background: var(--navy);
      color: #fff;
      font-size: 0.78rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      font-weight: 700;
    }

    .compare-table td:nth-child(2)::before,
    .compare-table td:nth-child(3)::before {
      display: block;
      margin-bottom: 4px;
      font-size: 0.62rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 700;
      opacity: 0.8;
    }

    .compare-table td:nth-child(2)::before {
      content: "Standard IVR";
      color: #C97A7A;
    }

    .compare-table td:nth-child(3)::before {
      content: "Garda AI Voice";
      color: var(--teal);
    }

    .recordings-table {
      border-collapse: separate;
      border-spacing: 0;
      box-shadow: none;
      background: transparent;
    }

    .recordings-table thead {
      display: none;
    }

    .recordings-table tbody {
      display: grid;
      gap: 12px;
    }

    .recordings-table tbody tr {
      display: grid;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: #fff;
      overflow: hidden;
    }

    .recordings-table tbody td,
    .recordings-table tbody th {
      display: block;
      padding: 10px 12px;
      border-bottom: 1px solid var(--border);
    }

    .recordings-table tbody tr > td:last-child {
      border-bottom: none;
    }

    .recordings-table td:nth-child(2)::before,
    .recordings-table td:nth-child(3)::before {
      display: block;
      margin-bottom: 4px;
      font-size: 0.62rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 700;
      color: #7a869d;
    }

    .recordings-table td:nth-child(2)::before {
      content: "Call Summary";
    }

    .recordings-table td:nth-child(3)::before {
      content: "Duration";
    }

    .onboarding-steps {
      grid-template-columns: 1fr;
    }

    .onboarding-card {
      grid-template-columns: 28px 52px 1fr;
      gap: 10px;
      padding: 14px 12px;
    }

    .onboarding-icon {
      width: 52px;
      height: 52px;
    }

    .onboarding-icon svg {
      width: 28px;
      height: 28px;
    }

    .onboarding-arrow {
      width: 24px;
      height: 24px;
    }

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

    .screenshot-card,
    .screenshot-card.shot-transcript {
      grid-column: span 3;
    }

    .screenshot-card.shot-actionlog {
      grid-column: span 6;
    }

    .cta-section {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
    }

    .cta-btn {
      width: 100%;
      text-align: center;
      padding: 14px 20px;
    }

    .footer-bar {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }

    /* tighten vertical padding on small screens */
    .hero               { padding-top: 44px; padding-bottom: 36px; }
    .flow-section       { padding-top: 56px; padding-bottom: 56px; min-height: auto; }
    .outcomes-section,
    .compare-section,
    .recordings-section,
    .pricing-section,
    .onboarding-section,
    .screenshots-section,
    .vs-section,
    .int-highlight-section { padding-top: 56px; padding-bottom: 56px; }
    .cta-section        { padding-top: 48px; padding-bottom: 48px; }

    /* vs-callouts collapse to single column on tablet/mobile */
    .vs-callouts {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .vs-callout {
      padding: 22px 20px;
    }

    .vs-intro {
      margin-bottom: 24px;
    }

    .vs-table {
      margin-bottom: 32px;
    }

    /* vs-table: stack each row as a card on mobile */
    .vs-table {
      border-collapse: separate;
      border-spacing: 0;
      box-shadow: none;
      background: transparent;
    }

    .vs-table thead {
      display: none;
    }

    .vs-table tbody {
      display: grid;
      gap: 12px;
    }

    .vs-table tbody tr {
      display: block;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: #fff;
      overflow: hidden;
    }

    .vs-table tbody tr:hover {
      background: #fff;
    }

    .vs-table tbody td,
    .vs-table tbody th[scope="row"] {
      display: block;
      width: auto;
      padding: 12px 14px;
      border-bottom: 1px solid var(--border);
      text-align: left !important;
      font-size: 0.82rem;
      line-height: 1.55;
    }

    .vs-table tbody tr > td:last-child {
      border-bottom: none;
    }

    .vs-table tbody th[scope="row"] {
      background: var(--navy);
      color: #fff;
      font-size: 0.78rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      font-weight: 700;
    }

    .vs-table td:nth-child(2)::before,
    .vs-table td:nth-child(3)::before {
      display: block;
      margin-bottom: 4px;
      font-size: 0.62rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 700;
      opacity: 0.85;
    }

    .vs-table td:nth-child(2)::before {
      content: "Other AI Receptionists";
      color: #C97A7A;
    }

    .vs-table td:nth-child(3)::before {
      content: "Garda AI Voice";
      color: var(--teal);
    }

    /* hero CTA widget centered + responsive on mobile */
    .hero-cta-widget {
      margin-left: auto;
      margin-right: auto;
    }

    /* prevent any oversize section title from overflowing */
    .section-title,
    .vs-intro .section-title,
    .hero h1,
    .hero h2.hero-tagline {
      overflow-wrap: anywhere;
      word-break: normal;
      hyphens: auto;
    }
  }

  @media (max-width: 520px) {
    .hero,
    .integrations,
    .flow-section,
    .outcomes-section,
    .compare-section,
    .recordings-section,
    .pricing-section,
    .onboarding-section,
    .screenshots-section,
    .vs-section,
    .cta-section,
    .footer-bar {
      padding-left: 18px;
      padding-right: 18px;
    }

    .hero {
      padding-top: 34px;
      padding-bottom: 32px;
    }

    .hero h1 { font-size: 2.1rem; }
    .hero h2.hero-tagline { font-size: 1.1rem; }

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

    .screenshot-card,
    .screenshot-card.shot-transcript,
    .screenshot-card.shot-actionlog {
      grid-column: span 1;
    }

    .hero-label {
      font-size: 0.82rem;
      letter-spacing: 0.08em;
      margin-bottom: 18px;
    }

    .hero-label .hero-logo { height: 1.9rem; }

    .hero-cta-widget {
      margin-top: 20px;
      border-radius: 14px;
      padding: 16px 14px 14px;
    }

    .flow-step,
    .outcome-card,
    .price-card {
      padding: 16px 14px;
    }

    .vs-callout {
      padding: 18px 16px;
    }

    .vs-callout h3 { font-size: 0.95rem; }
    .vs-callout p { font-size: 0.8rem; }

    .hero-cta-widget {
      max-width: 100%;
    }

    .recordings-action button {
      width: 100%;
      min-width: 0;
    }

    .footer-bar {
      padding-top: 14px;
      padding-bottom: 14px;
    }

    .footer-note {
      font-size: 0.66rem;
      line-height: 1.5;
    }
  }

  /* ── GARDA VS COMPETITORS ── */
  .vs-section {
    padding: 80px 72px 88px;
    background: #fff;
  }

  .vs-intro {
    max-width: 680px;
    margin-bottom: 40px;
  }

  .vs-intro .section-eyebrow {
    margin-bottom: 10px;
  }

  .vs-intro .section-title {
    margin-bottom: 16px;
  }

  .vs-intro p {
    font-size: 0.92rem;
    color: #5A6478;
    line-height: 1.7;
  }

  .vs-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(11,22,40,0.1);
    margin-bottom: 52px;
  }

  .vs-table thead tr {
    background: var(--navy);
  }

  .vs-table thead th {
    padding: 16px 22px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .vs-table thead th:first-child {
    color: rgba(255,255,255,0.35);
    text-align: left;
    width: 28%;
  }

  .vs-table thead th:nth-child(2) {
    color: #C97A7A;
    text-align: center;
    width: 36%;
  }

  .vs-table thead th:nth-child(3) {
    color: var(--teal);
    text-align: center;
    width: 36%;
  }

  .vs-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
  }

  .vs-table tbody tr:last-child {
    border-bottom: none;
  }

  .vs-table tbody tr:hover {
    background: #F8FAFC;
  }

  .vs-table tbody th[scope="row"] {
    padding: 15px 22px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--navy);
    text-align: left;
    vertical-align: middle;
  }

  .vs-table tbody td {
    padding: 15px 22px;
    font-size: 0.8rem;
    vertical-align: middle;
    line-height: 1.55;
  }

  .vs-table td:nth-child(2) {
    text-align: center;
    color: #8A96AA;
  }

  .vs-table td:nth-child(3) {
    text-align: left;
    color: #9A7030;
    font-weight: 500;
  }

  .vs-table .vs-no::before {
    content: '✗  ';
    color: #C97A7A;
    font-weight: 700;
  }

  .vs-table .vs-yes::before {
    content: '✓  ';
    color: var(--teal);
    font-weight: 700;
  }

  /* Callout cards */
  .vs-callouts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 4px;
  }

  .vs-callout {
    background: var(--navy);
    border-radius: 14px;
    padding: 30px 26px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    transition: box-shadow 0.2s, transform 0.2s;
  }

  .vs-callout:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.24);
    transform: translateY(-2px);
  }

  .vs-callout::after {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 140px; height: 140px;
    border-radius: 50%;
    background: rgba(201,169,110,0.08);
    pointer-events: none;
  }

  .vs-callout-icon {
    width: 38px; height: 38px;
    background: rgba(201,169,110,0.12);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }

  .vs-callout-icon svg {
    color: var(--teal);
  }

  .vs-callout h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .vs-callout p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
  }

  .vs-callout .vs-callout-quote {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--teal);
    letter-spacing: 0.02em;
    margin-bottom: 10px;
    font-style: italic;
  }

  /* Late overrides for the Garda-vs-competitors block.
     The base styles live after the main responsive block, so these rules
     must stay here to win the cascade. */
  @media (max-width: 980px) {
    .vs-section {
      padding: 56px 32px;
    }

    .vs-intro {
      margin-bottom: 28px;
    }

    .vs-callouts {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .vs-callout {
      padding: 24px 22px;
    }

    .vs-callout h3 {
      font-size: 1.05rem;
    }

    .vs-callout p,
    .vs-callout .vs-callout-quote {
      font-size: 0.88rem;
      line-height: 1.65;
    }

    .vs-table {
      border-collapse: separate;
      border-spacing: 0;
      box-shadow: none;
      background: transparent;
      margin-bottom: 36px;
    }

    .vs-table thead {
      display: none;
    }

    .vs-table tbody {
      display: grid;
      gap: 12px;
    }

    .vs-table tbody tr {
      display: block;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: #fff;
      overflow: hidden;
    }

    .vs-table tbody tr:hover {
      background: #fff;
    }

    .vs-table tbody th[scope="row"],
    .vs-table tbody td {
      display: block;
      width: auto;
      padding: 12px 14px;
      border-bottom: 1px solid var(--border);
      text-align: left !important;
      font-size: 0.82rem;
      line-height: 1.55;
    }

    .vs-table tbody tr > td:last-child {
      border-bottom: none;
    }

    .vs-table tbody th[scope="row"] {
      background: var(--navy);
      color: #fff;
      font-size: 0.78rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      font-weight: 700;
    }

    .vs-table td:nth-child(2)::before,
    .vs-table td:nth-child(3)::before {
      display: block;
      margin-bottom: 4px;
      font-size: 0.62rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 700;
      opacity: 0.85;
    }

    .vs-table td:nth-child(2)::before {
      content: "Other AI Receptionists";
      color: #C97A7A;
    }

    .vs-table td:nth-child(3)::before {
      content: "Garda AI Voice";
      color: var(--teal);
    }
  }

  @media (max-width: 520px) {
    .vs-section {
      padding: 48px 18px;
    }

    .vs-callout {
      padding: 20px 18px;
    }
  }
