/* Page-specific styles */
    .eyebrow { font-family: "DM Sans", sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-mid); margin-bottom: 14px; }
    .btn { display: inline-block; padding: 11px 22px; border-radius: 7px; font-family: "DM Sans", sans-serif; font-size: 13.5px; font-weight: 600; cursor: pointer; transition: opacity 0.15s, transform 0.1s; white-space: nowrap; }
    .btn:hover { opacity: 0.88; transform: translateY(-1px); }

    .btn-outline { background: transparent; color: var(--dark); border: 1.5px solid var(--dark); }
    .btn-outline-light { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }

    /* Hero */

    .xero-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--xero); flex-shrink: 0; }

    .hero-ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
    .hero-note { margin-top: 14px; font-size: 12.5px; color: var(--muted); }
    .hero-note::before { content: "✓  "; }

    /* Xero flow diagram */
    .xero-flow { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 28px; box-shadow: 0 8px 40px rgba(13,115,119,0.08); }
    .flow-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 20px; }
    .flow-orgs { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
    .flow-org { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 8px; background: var(--off); border: 1px solid var(--border); font-size: 13px; font-weight: 600; }
    .xero-badge { font-size: 10px; font-weight: 700; background: var(--xero); color: white; border-radius: 4px; padding: 2px 7px; margin-left: auto; }
    .flow-arrow { text-align: center; font-size: 18px; color: var(--teal-mid); margin: 4px 0; }
    .flow-result { background: var(--teal); color: white; border-radius: 10px; padding: 16px 18px; }
    .flow-result-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.7; margin-bottom: 6px; }
    .flow-result-val { font-size: 22px; font-weight: 700; font-family: "DM Sans", sans-serif; }
    .flow-result-sub { font-size: 12px; opacity: 0.75; margin-top: 4px; }

    /* Dark band */
    .band-dark { background: var(--dark); padding: 72px 0; text-align: center; }
    .band-dark .eyebrow { color: var(--teal-light); }
    .band-dark h2 { font-size: 40px; color: var(--white); max-width: 760px; margin: 0 auto 20px; }
    .band-dark p { font-size: 16px; color: rgba(255,255,255,0.65); max-width: 600px; margin: 0 auto; line-height: 1.7; }

    /* What xero can't do */
    .what-is { background: var(--white); padding: 88px 0; }
    .what-is-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
    .what-is h2 { font-size: 40px; margin-bottom: 20px; }
    .what-is p { font-size: 16px; color: var(--mid); line-height: 1.75; margin-bottom: 16px; }
    .check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
    .check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--mid); }
    .check-list li::before { content: "✓"; color: var(--teal-mid); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
    .info-box { background: var(--teal-pale); border-left: 3px solid var(--teal); border-radius: 0 10px 10px 0; padding: 28px; }
    .info-box h3 { font-size: 20px; margin-bottom: 12px; }
    .info-box p { font-size: 15px; color: var(--mid); line-height: 1.7; margin-bottom: 16px; }
    .info-box p:last-child { margin-bottom: 0; }

    /* Pain points */
    .pain { background: var(--off); padding: 88px 0; }
    .section-header { text-align: center; margin-bottom: 56px; }
    .section-header h2 { font-size: 40px; margin-bottom: 12px; }
    .section-header p { font-size: 16px; color: var(--muted); }
    .pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .pain-card { border: 1px solid var(--border); border-radius: 12px; padding: 28px 24px; background: var(--white); }
    .pain-accent { display: block; width: 3px; height: 28px; border-radius: 2px; margin-bottom: 18px; }
    .pain-card h3 { font-size: 17px; margin-bottom: 10px; font-weight: 700; }
    .pain-card p { font-size: 14.5px; color: var(--muted); line-height: 1.65; }

    /* How it works */
    .how { background: var(--white); padding: 88px 0; }
    .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
    .step-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--teal); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
    .step-icon svg { width: 24px; height: 24px; color: var(--white); }
    .step-num { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-mid); margin-bottom: 6px; }
    .step h3 { font-size: 20px; margin-bottom: 10px; }
    .step p { font-size: 15px; color: var(--muted); line-height: 1.65; }
    .how-cta { text-align: center; margin-top: 56px; }

    /* Feature list */
    .features { background: var(--off); padding: 88px 0; }
    .features-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
    .feature-item { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 28px; }
    .feature-item h3 { font-size: 18px; margin-bottom: 10px; font-weight: 700; }
    .feature-item p { font-size: 14.5px; color: var(--muted); line-height: 1.65; }
    .feature-tag { display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; background: var(--teal-pale); color: var(--teal); border-radius: 4px; padding: 2px 8px; margin-bottom: 12px; }

    /* Testimonial */
    .testimonial { background: var(--white); padding: 72px 0; }
    .testimonial-inner { max-width: 740px; margin: 0 auto; background: var(--off); border-radius: 16px; padding: 48px; position: relative; }
    .quote-mark { font-size: 72px; line-height: 1; color: var(--teal-light); font-family: "DM Serif Display", serif; position: absolute; top: 20px; left: 40px; }
    .testimonial-text { font-size: 19px; font-style: italic; color: var(--dark); font-family: "DM Serif Display", serif; line-height: 1.6; margin-bottom: 24px; padding-top: 20px; }
    .testimonial-author { font-size: 13.5px; font-weight: 600; color: var(--teal); }
    .testimonial-role { font-size: 13px; color: var(--muted); margin-top: 2px; }

    /* FAQ */
    .faq { background: var(--off); padding: 88px 0; }
    .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 900px; margin: 0 auto; }

    /* CTA */
    .cta-dark { background: var(--dark); padding: 96px 0; text-align: center; }
    .cta-dark h2 { font-size: 44px; color: var(--white); max-width: 680px; margin: 0 auto 16px; }
    .cta-dark p { font-size: 16px; color: rgba(255,255,255,0.6); margin-bottom: 40px; }
    .cta-note { margin-top: 16px; font-size: 12.5px; color: rgba(255,255,255,0.45); }
    .cta-note::before { content: "✓  "; color: var(--teal-light); }

    @media (max-width: 900px) {
.hero-inner, .what-is-inner, .features-inner { grid-template-columns: 1fr; }
      .xero-flow { display: none; }
      .pain-grid, .steps { grid-template-columns: 1fr 1fr; }
      .faq-grid { grid-template-columns: 1fr; }
      h1 { font-size: 40px !important; } h2 { font-size: 32px !important; }
}
    @media (max-width: 600px) {
.pain-grid, .steps { grid-template-columns: 1fr; }
}

/* ── Video section ── */
.video-thumb-btn {
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  background: #0f1720;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(13,115,119,.15);
  cursor: pointer;
  position: relative;
}
.video-thumb-btn:focus-visible { outline: 2px solid #0d7377; outline-offset: 3px; }
.btn-watch-video {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #0c1a1c;
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .18s;
  width: 100%;
  justify-content: center;
  max-width: 280px;
}
.btn-watch-video:hover { background: #0d7377; }
.btn-watch-video:focus-visible { outline: 2px solid #0d7377; outline-offset: 2px; background: #0d7377; }
