
    /* ══════════════════════════════════════
       LEDGERTECH DESIGN SYSTEM v3.0
    ══════════════════════════════════════ */
    :root {
      --navy:           #0D1B2A;
      --navy-mid:       #162536;
      --navy-deep:      #0A1520;
      --cream:          #F5F0EB;
      --greige:         #EDE8E1;
      --ivory:          #FAF8F4;
      --parchment:      #E6DFD3;
      --terra:          #A0522D;
      --terra-light:    #C4714A;
      --terra-dark:     #7A3B1E;
      --gold:           #C9A96E;
      --gold-light:     #E8C98A;
      --gold-dark:      #A8873E;
      --text-heading:   #0D1B2A;
      --text-body:      #2A3040;
      --text-muted:     #7A8090;
      --text-on-dark:   #FAF8F4;
      --text-dark-mid:  rgba(250,248,244,0.75);
      --text-dark-low:  rgba(250,248,244,0.45);
      --border-terra:       rgba(160,82,45,0.22);
      --border-terra-hover: rgba(160,82,45,0.55);
      --border-gold:        rgba(201,169,110,0.25);
      --border-gold-hover:  rgba(201,169,110,0.60);
      --border-light:       #DDD6CC;
      --font-heading:   'Cormorant Garamond';
      --font-body:      'DM Sans';
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: DM Sans;
      background: var(--greige);
      color: var(--text-body);
      font-size: 1.125rem;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }

    .container { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }

    .section         { padding: 3.5rem 2.5rem; }
    .section--greige { background: var(--greige); }
    .section--cream  { background: var(--cream); }
    .section--dark   { background: var(--navy); }

    /* ── Eyebrow ── */
    .eyebrow {
      font-family: DM Sans;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--terra);
      display: block;
      margin-bottom: 0.8rem;
    }
    .eyebrow--dark { color: var(--gold); }

    .eyebrow--lined {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.65rem;
    }
    .eyebrow--lined::before,
    .eyebrow--lined::after {
      content: '';
      width: 28px;
      height: 1.5px;
      background: var(--terra);
      flex-shrink: 0;
    }

    h2.section-title {
      font-family: Cormorant Garamond;
      font-size: clamp(2.6rem, 4.5vw, 3.5rem);
      font-weight: 400;
      color: var(--text-heading);
      line-height: 1.12;
      margin-bottom: 0.6rem;
    }
    h2.section-title em          { font-style: italic; color: var(--terra); }
    h2.section-title--dark       { color: var(--ivory); }
    h2.section-title--dark em    { color: var(--gold); }

    .section-intro {
      font-size: 1.15rem;
      color: var(--text-body);
      line-height: 1.75;
    }
    .section-intro--dark { color: var(--text-dark-mid); }
    .section-header { margin-bottom: 2rem; }

    .btn {
      display: block;
      font-family: DM Sans;
      font-weight: 600;
      font-size: 1rem;
      border-radius: 4px;
      padding: 0.85rem 1.5rem;
      cursor: pointer;
      transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
      text-decoration: none;
      border: 1px solid transparent;
      text-align: center;
      width: 100%;
    }
    .btn + .btn { margin-top: 0.65rem; }

    .btn-primary     { background: var(--terra);  color: var(--ivory); border-color: var(--terra); }
    .btn-primary:hover { background: var(--terra-light); border-color: var(--terra-light); }

    .btn-primary-dark { background: var(--gold); color: var(--navy); border-color: var(--gold); }
    .btn-primary-dark:hover { background: var(--gold-light); }

    .btn-soft { background: transparent; color: var(--terra); border-color: rgba(160,82,45,0.38); }
    .btn-soft:hover { border-color: var(--terra); background: rgba(160,82,45,0.05); }

    .btn-ghost-dark {
      display: block; width: 100%; margin-top: 0.65rem;
      font-family: DM Sans; font-weight: 600; font-size: 1rem;
      border-radius: 4px; padding: 0.85rem 1.5rem;
      background: transparent; color: var(--ivory);
      border: 1px solid rgba(250,248,244,0.28);
      text-decoration: none; text-align: center;
      transition: border-color 0.25s ease, color 0.25s ease;
    }
    .btn-ghost-dark:hover { border-color: var(--gold); color: var(--gold); }

    .arr {
      display: inline-block;
      width: 17px; height: 17px;
      flex-shrink: 0;
      margin-top: 3px;
    }

    .page-hero {
      background: var(--greige);
      padding: 3.5rem 2.5rem 3rem;
      text-align: center;
    }
    .page-hero h1 {
      font-family: Cormorant Garamond;
      font-size: clamp(3.2rem, 6vw, 5rem);
      font-weight: 400;
      color: var(--text-heading);
      line-height: 1.08;
      margin-bottom: 1.1rem;
    }
    .page-hero h1 em { font-style: italic; color: var(--terra); }
    .page-hero p {
      font-size: 1.2rem;
      color: var(--text-body);
      max-width: 100%;
      margin: 0 0 1.75rem 0;
      line-height: 1.7;
    }
    .hero-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 3rem;
    }
    .hero-btn-primary {
      display: inline-block;
      font-family: DM Sans; font-weight: 600; font-size: 1rem;
      border-radius: 4px; padding: 0.9rem 2.25rem;
      background: var(--terra); color: var(--ivory);
      border: 1px solid var(--terra); text-decoration: none;
      transition: background 0.25s ease;
    }
    .hero-btn-primary:hover { background: var(--terra-light); }

    .hero-btn-ghost {
      display: inline-block;
      font-family: DM Sans; font-weight: 600; font-size: 1rem;
      border-radius: 4px; padding: 0.9rem 2.25rem;
      background: transparent; color: var(--terra);
      border: 1px solid rgba(160,82,45,0.40);
      text-decoration: none;
      transition: border-color 0.25s ease, color 0.25s ease;
    }
    .hero-btn-ghost:hover { border-color: var(--terra); color: var(--terra-light); }

    .trust-ticker {
      overflow: hidden;
      width: 100%;
      margin-top: 1.75rem;
      position: relative;
    }
    .trust-ticker::before,
    .trust-ticker::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      width: 80px;
      z-index: 2;
      pointer-events: none;
    }
    .trust-ticker::before {
      left: 0;
      background: linear-gradient(to right, var(--greige), transparent);
    }
    .trust-ticker::after {
      right: 0;
      background: linear-gradient(to left, var(--greige), transparent);
    }
    .trust-ticker-track {
      display: flex;
      width: max-content;
      animation: ticker-scroll 40s linear infinite;
      gap: 0.75rem;
    }
    .trust-ticker:hover .trust-ticker-track {
      animation-play-state: paused;
    }
    @keyframes ticker-scroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .trust-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      color: var(--ivory);
      border: 1px solid rgba(250,248,244,0.15);
      padding: 0.5rem 1.2rem;
      border-radius: 5px;
      background: var(--navy-mid);
      white-space: nowrap;
      flex-shrink: 0;
    }
    .trust-pill svg {
      width: 13px;
      height: 13px;
      flex-shrink: 0;
      opacity: 0.75;
    }
    .pill-pound {
      font-size: 0.85rem;
      font-weight: 700;
      line-height: 1;
      flex-shrink: 0;
      opacity: 0.85;
    }

    .filter-bar {
      display: flex; flex-wrap: wrap;
      gap: 0.55rem; margin-bottom: 3rem;
    }
    .filter-btn {
      font-family: DM Sans; font-size: 0.92rem; font-weight: 500;
      padding: 0.5rem 1.3rem; border-radius: 20px;
      border: 1px solid rgba(201,169,110,0.35);
      background: transparent; color: var(--ivory);
      cursor: pointer; transition: all 0.2s ease;
    }
    .filter-btn:hover   { border-color: var(--gold); color: var(--gold); }
    .filter-btn.active  { background: var(--terra); color: var(--ivory); border-color: var(--terra); }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 1.5rem;
    }

    .service-card {
      perspective: 1200px;
      height: 460px;
      cursor: pointer;
    }

    .card-inner {
      position: relative;
      width: 100%; height: 100%;
      transform-style: preserve-3d;
      transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
      border-radius: 8px;
    }
    .service-card.flipped .card-inner {
      transform: rotateX(180deg);
    }

    .card-front,
    .card-back {
      position: absolute;
      inset: 0;
      border-radius: 8px;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      overflow: hidden;
      padding: 1.85rem 2rem;
      display: flex;
      flex-direction: column;
    }

    .card-front {
      background: var(--cream);
      border: 1px solid var(--border-terra);
      justify-content: space-between;
    }

    .card-back {
      background: var(--navy-mid);
      border: 1px solid var(--border-gold);
      transform: rotateX(180deg);
      justify-content: flex-start;
      gap: 0.9rem;
    }

    .card-eyebrow {
      font-size: 0.74rem; font-weight: 600;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--terra); display: block; margin-bottom: 0.4rem;
    }
    .card-front h3 {
      font-family: Cormorant Garamond;
      font-size: 1.9rem; font-weight: 400;
      color: var(--text-heading);
      line-height: 1.15; flex: 1;
    }
    .card-price-block {
      border-top: 1px solid var(--border-light);
      padding-top: 1rem; margin-bottom: 1rem;
    }
    .card-price {
      font-family: Cormorant Garamond;
      font-size: 2.6rem; font-weight: 400;
      color: var(--text-heading); line-height: 1;
    }
    .card-price-period { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.2rem; }
    .card-price-note   { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.35rem; font-style: italic; }
    .card-buttons { display: flex; flex-direction: column; gap: 0.55rem; }

    .card-back-eyebrow {
      font-size: 0.74rem; font-weight: 600;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--gold); display: block;
    }
    .card-back h3 {
      font-family: Cormorant Garamond;
      font-size: 1.6rem; font-weight: 400;
      color: var(--ivory); line-height: 1.15;
    }
    .card-desc {
      font-size: 0.92rem; color: var(--text-dark-mid);
      line-height: 1.65; flex-shrink: 0;
    }
    .card-features {
      list-style: none; flex: 1;
      display: flex; flex-direction: column; gap: 0.42rem;
      overflow: hidden;
    }
    .card-features li {
      font-size: 0.88rem; color: var(--text-dark-mid);
      display: flex; align-items: flex-start;
      gap: 0.5rem; line-height: 1.45;
    }
    .card-features li .arr { flex-shrink: 0; margin-top: 2px; }

    .card-flip-hint {
      font-size: 0.75rem;
      color: var(--terra);
      opacity: 0.7;
      text-align: right;
      margin-top: auto;
      padding-top: 0.5rem;
      letter-spacing: 0.04em;
    }
    .card-back-hint {
      font-size: 0.78rem;
      color: var(--gold);
      opacity: 0.75;
      margin-top: auto;
      padding-top: 0.5rem;
      cursor: pointer;
      letter-spacing: 0.04em;
    }
    .card-front > div:first-child { cursor: pointer; }
    .card-back { cursor: pointer; }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem; align-items: start;
    }
    @media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

    .pricing-card {
      background: var(--cream);
      border: 1px solid var(--border-terra);
      border-radius: 8px; padding: 2.1rem;
      display: flex; flex-direction: column;
      position: relative;
      transition: border-color 0.25s ease, box-shadow 0.25s ease;
    }
    .pricing-card:hover {
      border-color: var(--border-terra-hover);
      box-shadow: 0 6px 24px rgba(13,27,42,0.07);
    }
    .pricing-card--featured {
      background: var(--navy);
      border-color: var(--border-gold);
    }
    .pricing-card--featured:hover { border-color: var(--border-gold-hover); }

    .badge-popular {
      position: absolute; top: -14px;
      left: 50%; transform: translateX(-50%);
      background: var(--terra); color: var(--ivory);
      font-family: DM Sans; font-size: 0.72rem;
      font-weight: 700; letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.28rem 1rem; border-radius: 20px; white-space: nowrap;
    }
    .plan-label {
      font-family: DM Sans; font-size: 0.78rem;
      font-weight: 600; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--terra); margin-bottom: 1rem;
    }
    .pricing-card--featured .plan-label { color: var(--gold); }

    .plan-price {
      font-family: Cormorant Garamond;
      font-size: 4.75rem;
      font-weight: 400;
      color: var(--text-heading);
      line-height: 1; margin-bottom: 0.25rem;
    }
    .plan-price sup {
      font-size: 2.1rem; vertical-align: top;
      margin-top: 0.7rem; display: inline-block;
    }
    .pricing-card--featured .plan-price { color: var(--gold); }

    .plan-period {
      font-size: 0.92rem; color: var(--text-muted); margin-bottom: 1.6rem;
    }
    .pricing-card--featured .plan-period { color: var(--text-dark-low); }

    .plan-divider {
      border: none; border-top: 1px solid var(--border-light); margin-bottom: 1.35rem;
    }
    .pricing-card--featured .plan-divider { border-top-color: rgba(201,169,110,0.20); }

    .plan-features {
      list-style: none;
      display: flex; flex-direction: column;
      gap: 0.65rem; margin-bottom: 1.85rem; flex: 1;
    }
    .plan-features li {
      font-size: 1rem; color: var(--text-body);
      display: flex; align-items: flex-start;
      gap: 0.65rem; line-height: 1.55;
    }
    .pricing-card--featured .plan-features li { color: var(--text-dark-mid); }

    .plan-best {
      font-size: 0.92rem; color: var(--text-muted); margin-bottom: 1.35rem;
    }
    .pricing-card--featured .plan-best { color: var(--text-dark-low); }
    .pricing-footnote {
      text-align: center; font-size: 0.88rem; color: var(--text-muted);
      margin-top: 1.75rem; letter-spacing: 0.01em;
    }

    .client-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.35rem;
    }
    @media (max-width: 900px) { .client-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 580px)  { .client-grid { grid-template-columns: 1fr; } }
    .client-card {
      border-radius: 12px;
      padding: 2.25rem 1.75rem 2rem;
      text-align: center;
      transition: transform 0.2s ease, box-shadow 0.25s ease;
      display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
    }
    .client-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(13,27,42,0.18);
    }
    .client-card:nth-child(odd)  { background: var(--cream);    border: 1px solid var(--border-terra); }
    .client-card:nth-child(even) { background: var(--navy);     border: 1px solid rgba(201,169,110,0.25); }
    .client-card-icon {
      width: 52px; height: 52px; border-radius: 10px;
      background: var(--navy); display: flex; align-items: center; justify-content: center;
      margin-bottom: 0.25rem; flex-shrink: 0;
    }
    .client-card:nth-child(even) .client-card-icon {
      background: var(--ivory);
    }
    .client-card-icon svg { width: 24px; height: 24px; stroke: var(--gold); }
    .client-card:nth-child(even) .client-card-icon svg { stroke: var(--terra); }
    .client-card h3 {
      font-family: Cormorant Garamond;
      font-size: 1.6rem; font-weight: 400;
      color: var(--text-heading);
      margin-bottom: 0; line-height: 1.2;
    }
    .client-card:nth-child(even) h3 { color: var(--gold); }
    .client-card p {
      font-size: 0.97rem; color: var(--text-body);
      line-height: 1.7; margin: 0;
    }
    .client-card:nth-child(even) p { color: var(--cream); }

    .compare-wrap { overflow-x: visible; }
    .compare-table {
      width: 100%; border-collapse: collapse;
      table-layout: fixed; font-size: 0.78rem;
    }
    .compare-table thead tr { border-bottom: 2px solid var(--border-light); }
    .compare-table th {
      font-family: DM Sans; font-size: 0.65rem;
      font-weight: 600; letter-spacing: 0.07em;
      text-transform: uppercase; color: var(--terra);
      padding: 0.7rem 0.3rem; text-align: center;
      white-space: normal; line-height: 1.35; word-break: break-word;
    }
    .compare-table th:first-child {
      text-align: left; width: 16%; padding-left: 0;
    }
    .compare-table th:not(:first-child) { width: 7%; }
    .compare-table td {
      padding: 0.65rem 0.3rem; border-bottom: 1px solid var(--border-light);
      color: var(--text-body); text-align: center; vertical-align: middle;
    }
    .compare-table td:first-child {
      text-align: left; font-weight: 500;
      color: var(--text-heading); font-size: 0.82rem;
      padding-left: 0;
    }
    .compare-table tr:last-child td { border-bottom: none; }
    .compare-table tbody tr:hover td { background: rgba(160,82,45,0.03); }
    .ct { color: var(--terra); font-weight: 600; font-size: 0.95rem; }
    .cd { color: var(--border-light); font-size: 0.95rem; }
    .compare-table tbody tr:nth-child(even) td { background: rgba(160,82,45,0.025); }
    .compare-table tbody tr:nth-child(even):hover td { background: rgba(160,82,45,0.05); }

    /* ══════════════════════════════════
       CTA STRIP — terra band
    ══════════════════════════════════ */
    .cta-strip {
      background: var(--terra);
      padding: 3.5rem 2.5rem;
    }
    .cta-strip-inner {
      display: flex; align-items: center; justify-content: space-between;
      gap: 2rem; flex-wrap: wrap; max-width: 1200px; margin: 0 auto;
    }
    .cta-strip-left { flex: 1; min-width: 260px; }
    .cta-strip h2 {
      font-family: Cormorant Garamond;
      font-size: clamp(1.7rem, 2.5vw, 2.4rem);
      font-weight: 400; color: var(--text-on-dark); line-height: 1.15; margin-bottom: 0.4rem;
    }
    .cta-strip h2 em { font-style: italic; color: var(--gold-light); }
    .cta-strip p {
      font-size: 0.95rem; color: rgba(250,248,244,0.85);
      margin: 0.4rem 0 0; line-height: 1.6;
    }
    .cta-actions { display: flex; gap: 0.75rem; flex-shrink: 0; flex-wrap: wrap; align-items: center; }
    .btn-terra-filled {
      display: inline-flex; align-items: center; gap: 0.6rem;
      padding: 1rem 2.25rem; border: none; border-radius: 10px;
      font-size: 1rem; font-weight: 700; letter-spacing: 0.02em;
      color: var(--navy); background: var(--gold);
      text-decoration: none; cursor: pointer;
      transition: background 0.25s;
      white-space: nowrap; font-family: DM Sans;
    }
    .btn-terra-filled:hover { background: var(--gold-light); }
    .btn-terra-outline {
      display: inline-flex; align-items: center; gap: 0.4rem;
      padding: 1rem 0.5rem; border: none;
      background: transparent;
      font-size: 1rem; font-weight: 500; letter-spacing: 0.01em;
      color: var(--gold-light);
      text-decoration: none; cursor: pointer;
      transition: color 0.25s;
      white-space: nowrap; font-family: DM Sans;
    }
    .btn-terra-outline:hover { color: var(--ivory); }

    /* ── Compliance footer ── */
    .compliance-footer {
      background: var(--navy); border-top: 1px solid rgba(201,169,110,0.18);
      padding: 1.25rem 1.35rem;
    }
    .compliance-footer p {
      font-size: 0.82rem; color: var(--text-dark-low);
      text-align: center; max-width: 860px; margin: 0 auto;
      line-height: 1.65; letter-spacing: 0.01em;
    }

    @media (max-width: 640px) {
      .services-grid { grid-template-columns: 1fr; }
      .section       { padding: 2.5rem 1.35rem; }
      .page-hero     { padding: 2.5rem 1.35rem 2rem; }
      .cta-strip-inner { flex-direction: column; align-items: flex-start; }
    }
 

  <!-- ═══════════════════════════════════════
       CUSTOM CURSOR v3 — Ledgertech stock-chart arrow
  ═══════════════════════════════════════ -->
 
    /* ── CUSTOM CURSOR ── */
    #lt-cursor-arrow {
      position: fixed; top: 0; left: 0;
      width: 14px; height: 14px;
      pointer-events: none; z-index: 999999;
      transform: translate(-50%, -50%);
      will-change: left, top;
      transition: transform 0.2s cubic-bezier(.25,.46,.45,.94), opacity 0.3s;
    }
    #lt-cursor-ring {
      position: fixed; top: 0; left: 0;
      width: 28px; height: 28px;
      border-radius: 50%;
      border: 1px solid rgba(201,169,110,0.55);
      pointer-events: none; z-index: 999998;
      transform: translate(-50%, -50%);
      will-change: left, top;
      transition: width 0.35s cubic-bezier(.25,.46,.45,.94), height 0.35s cubic-bezier(.25,.46,.45,.94), border-color 0.35s, opacity 0.3s;
    }
    body.cursor-hover #lt-cursor-ring { width: 42px; height: 42px; border-color: rgba(201,169,110,0.9); }
    body.cursor-hover #lt-cursor-arrow { transform: translate(-50%,-50%) scale(1.1); }
    body.cursor-click #lt-cursor-ring { width: 18px; height: 18px; border-color: rgba(201,169,110,1); }
    @media (hover: none) { #lt-cursor-arrow, #lt-cursor-ring { display: none; } body { cursor: auto !important; } }
    @media (hover: hover) and (pointer: fine) { body { } }


/* ═══════════════════════════════════════════════════
   SERVICES PAGE — MOBILE RESPONSIVE OVERRIDES
   Add this AFTER services.css
   Breakpoints: 1024px, 900px, 768px, 640px, 400px
═══════════════════════════════════════════════════ */

/* ── GLOBAL ── */
@media (max-width: 768px) {
  html { font-size: 15px; }
  body { font-size: 1rem; }
  .container { padding: 0 1.25rem; }
  .section { padding: 2rem 1.25rem; }
}
@media (max-width: 400px) {
  html { font-size: 14px; }
  .container { padding: 0 1rem; }
  .section { padding: 1.75rem 1rem; }
}

/* ═══════════ NAV — MOBILE ═══════════ */
@media (max-width: 768px) {
  .nav-inner { height: 60px; padding: 0 1.25rem; }
  .nav-logo-mark { width: 36px; height: 36px; font-size: .95rem; }
  .nav-logo-nm  { font-size: 1rem; }
  .nav-logo-sub { font-size: .65rem; }
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .burger    { display: flex; }
  .mob-nav a { font-size: 1.8rem; }
}

/* ═══════════ PAGE HERO — MOBILE ═══════════ */
@media (max-width: 768px) {
  .page-hero { padding: 2.25rem 1.25rem 1.75rem; text-align: left; }
  .page-hero h1 { font-size: clamp(2.4rem, 8vw, 3.5rem); margin-bottom: .85rem; }
  .page-hero p  { font-size: 1.05rem; margin-bottom: 1.35rem; }
  .hero-actions { justify-content: flex-start; gap: .75rem; flex-direction: column; align-items: stretch; margin-bottom: 2rem; }
  .hero-btn-primary,
  .hero-btn-ghost { text-align: center; padding: .85rem 1.5rem; }
  .eyebrow--lined { justify-content: flex-start; }
  .eyebrow--lined::before { display: none; }
}
@media (max-width: 400px) {
  .page-hero h1 { font-size: clamp(2rem, 9vw, 3rem); }
}

/* ═══════════ TRUST TICKER — MOBILE ═══════════ */
@media (max-width: 768px) {
  .trust-ticker { margin-top: 1.25rem; }
  .trust-pill { font-size: .75rem; padding: .4rem 1rem; }
}

/* ═══════════ FILTER BAR — MOBILE ═══════════ */
@media (max-width: 768px) {
  .filter-bar { gap: .45rem; margin-bottom: 2rem; }
  .filter-btn  { font-size: .82rem; padding: .45rem 1rem; }
}
@media (max-width: 400px) {
  .filter-btn { font-size: .78rem; padding: .4rem .85rem; }
}

/* ═══════════ SERVICES FLIP-CARD GRID — MOBILE ═══════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .service-card  { height: 440px; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .service-card  { height: 420px; }
}
@media (max-width: 400px) {
  .service-card { height: 400px; }
  .card-front,
  .card-back    { padding: 1.5rem 1.4rem; }
  .card-front h3 { font-size: 1.65rem; }
  .card-price    { font-size: 2.2rem; }
}

/* ═══════════ PRICING GRID — MOBILE ═══════════ */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 768px) {
  .pricing-card { padding: 1.75rem 1.5rem; }
  .plan-price   { font-size: 3.8rem; }
  .plan-price sup { font-size: 1.8rem; }
  .plan-features li { font-size: .93rem; }
  .pricing-footnote { font-size: .82rem; }
}

/* ═══════════ WHO WE WORK WITH (CLIENT CARDS) — MOBILE ═══════════ */
@media (max-width: 900px) {
  .client-grid { grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
  .client-card { padding: 1.75rem 1.5rem 1.65rem; }
}
@media (max-width: 580px) {
  .client-grid { grid-template-columns: 1fr; gap: .9rem; }
  .client-card { padding: 1.6rem 1.35rem; }
  .client-card h3 { font-size: 1.4rem; }
  .client-card p  { font-size: .92rem; }
}

/* ═══════════ COMPARISON TABLE — MOBILE ═══════════ */
@media (max-width: 900px) {
  .compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .compare-table { min-width: 640px; font-size: .72rem; }
  .compare-table th { font-size: .58rem; padding: .6rem .25rem; }
  .compare-table td { padding: .55rem .25rem; }
  .compare-table td:first-child { font-size: .75rem; }
  .ct, .cd { font-size: .85rem; }
}
@media (max-width: 640px) {
  .compare-table { min-width: 560px; }
  .compare-table th:first-child { width: 22%; }
  .compare-table th:not(:first-child) { width: auto; }
}

/* ═══════════ CTA STRIP — MOBILE ═══════════ */
@media (max-width: 768px) {
  .cta-strip { padding: 2rem 1.25rem; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .cta-strip h2 { font-size: clamp(1.5rem, 5.5vw, 2rem); }
  .cta-strip p  { font-size: .92rem; }
  .cta-actions  { width: 100%; flex-direction: column; gap: .65rem; }
  .btn-terra-filled { width: 100%; justify-content: center; padding: .9rem 1.5rem; }
  .btn-terra-outline { padding: .5rem 0; }
}

/* ═══════════ SECTION TITLES — MOBILE ═══════════ */
@media (max-width: 768px) {
  h2.section-title { font-size: clamp(2rem, 7vw, 2.8rem); }
  .section-intro    { font-size: 1.05rem; }
  .section-header   { margin-bottom: 1.5rem; }
}

/* ═══════════ COMPLIANCE FOOTER — MOBILE ═══════════ */
@media (max-width: 768px) {
  .compliance-footer { padding: 1rem 1.25rem; }
  .compliance-footer p { font-size: .76rem; }
}

/* ═══════════ CUSTOM CURSOR — TOUCH HIDE ═══════════ */
@media (hover: none) {
  #lt-cursor-arrow,
  #lt-cursor-ring { display: none !important; }
  body { cursor: auto !important; }
}

/* ═══════════ OVERFLOW SAFETY ═══════════ */
@media (max-width: 768px) {
  body { overflow-x: hidden; }
}

/* ==========================================================
   Ledgertech — Self-hosted fonts (PECR / UK GDPR compliant)
   No external requests. All files served from /fonts/
   Generated from Fontsource (identical to Google Fonts data).
   ========================================================== */

/* ── Cormorant Garamond ── */

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('cormorant-garamond-latin-300-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url('cormorant-garamond-latin-300-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('cormorant-garamond-latin-400-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('cormorant-garamond-latin-400-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('cormorant-garamond-latin-500-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('cormorant-garamond-latin-500-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('cormorant-garamond-latin-600-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url('cormorant-garamond-latin-600-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── DM Sans ── */

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('dm-sans-latin-300-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('dm-sans-latin-400-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('dm-sans-latin-500-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('dm-sans-latin-600-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('dm-sans-latin-700-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── DM Mono ── */

@font-face {
  font-family: 'DM Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('dm-mono-latin-400-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'DM Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('dm-mono-latin-500-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

 