/* Dropdown — bridge gap so mouse can travel from trigger to menu */

/* Hamburger */

/* Mobile nav drawer */

/* PAGES */

/* HERO */

/* DASHBOARD MOCK */

/* LOGOS */

/* SPLIT VISUAL */

/* ELIM ROWS */

/* PULSE */

/* AUDIENCE CARD */

/* TESTIMONIAL */

/* PRICING */

/* TRIAL BADGE */

/* FAQ */

/* SECURITY */

/* INTEGRATION PAGE */

/* PARTNER */

/* VALUE CARD */

/* DEMO PAGE */

/* ── RESPONSIVE ── */

/* Architecture contrast section mobile */

/* ── Scroll-triggered animations ── */

/* ── Newsletter modal ── */
/* ── Landing page layout ── */

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

    /* ── NAV ── */

    .nav-logo-icon {
      width: 28px; height: 28px;
      background: var(--accent);
      border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      font-size: 14px; font-weight: 800; color: white;
    }

    .nav-links a {
      color: #2c484c;
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      transition: color 0.15s;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-cta {
      background: var(--accent);
      color: var(--white) !important;
      padding: 7px 16px;
      border-radius: 6px;
      font-weight: 600 !important;
      transition: background 0.15s !important;
    }
    .nav-cta:hover { background: var(--accent-dark) !important; color: var(--white) !important; }

    /* ── HERO ── */

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(13,115,119,0.2);
      border: 1px solid rgba(13,115,119,0.35);
      color: #0d7377;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 20px;
      margin-bottom: 28px;
    }

    .hero-trust {
      font-size: 12.5px;
      color: #5b7a7e;
    }

    /* ── ENTITY FLOW DIAGRAM ── */
    .entity-flow {
      max-width: 720px;
      margin: 0 auto 16px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 16px;
    }
    .entity-boxes {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .entity-box {
      background: #e8f5f4;
      border: 1px solid #e8f5f4;
      border-radius: 8px;
      padding: 10px 14px;
      text-align: left;
      font-size: 12.5px;
    }
    .entity-box-name {
      font-weight: 600;
      color: #0c1a1c;
      margin-bottom: 2px;
      font-size: 12px;
    }
    .entity-box-meta {
      color: #5b7a7e;
      font-size: 11px;
    }
    .entity-box-badge {
      display: inline-block;
      background: rgba(13,115,119,0.25);
      color: #0d7377;
      font-size: 10px;
      font-weight: 600;
      padding: 1px 6px;
      border-radius: 4px;
      margin-top: 4px;
    }
    .flow-arrow {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
    }
    .flow-arrow-label {
      font-size: 10px;
      font-weight: 600;
      color: #5b7a7e;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }
    .flow-arrow svg { opacity: 0.5; }
    .consol-panel {
      background: rgba(13,115,119,0.12);
      border: 1px solid rgba(13,115,119,0.3);
      border-radius: 12px;
      padding: 16px 18px;
      text-align: left;
    }
    .consol-panel-header {
      font-size: 10px;
      font-weight: 700;
      color: #0d7377;
      text-transform: uppercase;
      letter-spacing: 0.09em;
      margin-bottom: 12px;
    }
    .consol-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding: 5px 0;
      border-bottom: 1px solid #e8f5f4;
      font-size: 12px;
    }
    .consol-row:last-child { border-bottom: none; }
    .consol-row-label { color: #2c484c; }
    .consol-row-value { font-weight: 700; color: var(--white); }
    .consol-row-value.positive { color: #4ADE80; }
    .consol-row-value.negative { color: #F87171; }
    .consol-eliminated {
      margin-top: 10px;
      padding-top: 8px;
      border-top: 1px solid #e8f5f4;
      font-size: 10.5px;
      color: #5b7a7e;
    }

    /* ── SECTION WRAPPER ── */

    .section-inner { max-width: 1060px; margin: 0 auto; }
    .section-eyebrow {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.09em;
      color: var(--accent);
      margin-bottom: 12px;
    }
    .section-h2 {
      font-size: clamp(26px, 3.5vw, 38px);
      font-weight: 800;
      line-height: 1.18;
      letter-spacing: -0.5px;
      color: var(--text);
      margin-bottom: 16px;
    }
    .section-lead {
      font-size: 17px;
      color: var(--text-muted);
      max-width: 620px;
      line-height: 1.7;
    }
    .section-divider {
      border: none;
      border-top: 1px solid var(--border);
    }

    /* ── PROBLEM BAR ── */
    .problem-bar {
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 48px 32px;
    }
    .problem-grid {
      max-width: 1060px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      margin-top: 40px;
    }
    .problem-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 24px;
    }
    .problem-icon {
      width: 36px; height: 36px;
      background: #FEF2F2;
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
      margin-bottom: 14px;
    }
    .problem-card h3 {
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 8px;
      line-height: 1.35;
    }
    .problem-card p {
      font-size: 13.5px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* ── FEATURE GRID ── */
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 48px;
    }
    .feature-card {
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 28px;
      background: var(--white);
      transition: box-shadow 0.15s, border-color 0.15s;
    }
    .feature-card:hover {
      box-shadow: 0 4px 20px rgba(0,0,0,0.07);
      border-color: #C7D9FD;
    }
    .feature-card-icon {
      font-size: 22px;
      margin-bottom: 14px;
      display: block;
    }
    .feature-card h3 {
      font-size: 16px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 8px;
      line-height: 1.35;
    }
    .feature-card p {
      font-size: 13.5px;
      color: var(--text-muted);
      line-height: 1.65;
    }
    .feature-card .tag {
      display: inline-block;
      margin-top: 12px;
      background: var(--accent-bg);
      color: var(--accent);
      font-size: 11px;
      font-weight: 600;
      padding: 3px 9px;
      border-radius: 20px;
    }

    /* ── OUTPUTS TABLE ── */
    .outputs-section { background: var(--surface); }
    .outputs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 44px;
    }
    .output-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 22px;
    }
    .output-card h4 {
      font-size: 14.5px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 6px;
    }
    .output-card p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }
    .output-check {
      width: 28px; height: 28px;
      background: var(--green-bg);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 13px;
      margin-bottom: 12px;
      color: var(--green);
    }

    /* ── HOW IT WORKS ── */
    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-top: 48px;
      position: relative;
    }
    .steps::before {
      content: '';
      position: absolute;
      top: 22px; left: calc(16.66% + 22px);
      width: calc(66.66% - 44px);
      height: 1px;
      background: linear-gradient(to right, var(--accent), var(--accent));
      opacity: 0.25;
    }
    .step {
      text-align: left;
    }
    .step-num {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--accent);
      color: var(--white);
      font-size: 16px;
      font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
    }
    .step h3 {
      font-size: 16px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 8px;
    }
    .step p {
      font-size: 13.5px;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* ── CAPABILITY BREAKDOWN ── */
    .capability-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 44px;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--border);
    }
    .capability-table thead th {
      background: var(--navy);
      color: var(--white);
      padding: 14px 20px;
      text-align: left;
      font-size: 12.5px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .capability-table tbody tr:nth-child(even) {
      background: var(--surface);
    }
    .capability-table tbody td {
      padding: 14px 20px;
      font-size: 13.5px;
      color: var(--text);
      border-bottom: 1px solid var(--border);
      vertical-align: top;
    }
    .capability-table tbody tr:last-child td { border-bottom: none; }
    .capability-table tbody td:first-child {
      font-weight: 600;
      color: var(--text);
      white-space: nowrap;
    }
    .status-yes {
      color: var(--green);
      font-weight: 600;
      font-size: 13px;
    }
    .status-no {
      color: #DC2626;
      font-weight: 600;
      font-size: 13px;
    }

    /* ── FAQ ── */
    .faq-list {
      margin-top: 44px;
      display: flex;
      flex-direction: column;
      gap: 0;
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
    }

    .faq-item:last-child { border-bottom: none; }
    .faq-q:hover { background: var(--surface); }
    .faq-q[aria-expanded="true"] { background: var(--accent-bg); color: var(--accent); }
    .faq-icon {
      flex-shrink: 0;
      width: 22px; height: 22px;
      border-radius: 50%;
      background: var(--surface);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px;
      font-weight: 400;
      color: var(--text-muted);
      transition: transform 0.2s;
    }
    .faq-q[aria-expanded="true"] .faq-icon {
      transform: rotate(45deg);
      background: var(--accent-bg);
      color: var(--accent);
    }

    .faq-a.open {
      max-height: 300px;
      padding: 4px 24px 20px;
    }

    /* ── CTA BANNER ── */
    .cta-banner {
      background: linear-gradient(135deg, var(--navy) 0%, #2c484c 100%);
      padding: 72px 32px;
      text-align: center;
    }
    .cta-banner h2 {
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 800;
      color: var(--white);
      letter-spacing: -0.5px;
      margin-bottom: 16px;
      line-height: 1.18;
    }
    .cta-banner p {
      font-size: 17px;
      color: #2c484c;
      margin-bottom: 36px;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
    }
    .cta-trust {
      margin-top: 20px;
      font-size: 12.5px;
      color: #5b7a7e;
    }

    /* ── FOOTER ── */

    /* ── KEYWORD RICHNESS SECTION ── */
    .keyword-intro {
      background: var(--white);
      padding: 60px 32px;
    }
    .keyword-intro-inner {
      max-width: 1060px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: start;
    }
    .keyword-intro-text h2 {
      font-size: clamp(24px, 3vw, 34px);
      font-weight: 800;
      color: var(--text);
      letter-spacing: -0.4px;
      line-height: 1.22;
      margin-bottom: 20px;
    }
    .keyword-intro-text p {
      font-size: 14.5px;
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 16px;
    }
    .check-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 8px;
    }
    .check-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13.5px;
      color: var(--text);
      line-height: 1.5;
    }
    .check-list li::before {
      content: '✓';
      color: var(--green);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .zoho-limitation-box {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 24px;
    }
    .zoho-limitation-box h3 {
      font-size: 14px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 16px;
    }
    .limitation-row {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 10px 0;
      border-bottom: 1px solid var(--border);
      font-size: 13px;
    }
    .limitation-row:last-child { border-bottom: none; }
    .limitation-x {
      color: #DC2626;
      font-weight: 700;
      flex-shrink: 0;
      font-size: 15px;
    }
    .limitation-text { color: var(--text-muted); line-height: 1.5; }
    .limitation-text strong { color: var(--text); }

    /* ── BREADCRUMB ── */

    .breadcrumb a {
      color: var(--text-muted);
      text-decoration: none;
    }
    .breadcrumb a:hover { color: var(--accent); }
    .breadcrumb span { margin: 0 6px; }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
.problem-grid { grid-template-columns: 1fr; }
      .feature-grid { grid-template-columns: 1fr; }
      .outputs-grid { grid-template-columns: 1fr 1fr; }
      .steps { grid-template-columns: 1fr; }
      .steps::before { display: none; }
      .entity-flow { display: none; }
      .keyword-intro-inner { grid-template-columns: 1fr; gap: 32px; }

      .capability-table { display: block; overflow-x: auto; }
}
    @media (max-width: 520px) {
.outputs-grid { grid-template-columns: 1fr; }
}

/* ── LIGHT THEME OVERRIDES ── */
