/* ---- Extracted style block 1 from lp-v4_4.html ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
  --cream: #f0f8ff;
  --cream-dark: #e0f5fd;
  --ink: #003a66;
  --teal: #006599;
  --teal-light: #cceeff;
  --teal-mid: #02aaf1;
  --sand: #0077aa;
  --sand-light: #e0f5fd;
  --warm: #004f80;
  --white: #f8fdff;
  --hero-grid: rgba(0, 50, 150, 0.05);
  --hero-surface: rgba(255, 255, 255, 0.72);
  --hero-surface-border: rgba(255, 255, 255, 0.96);
  --hero-shadow: 0 8px 32px rgba(0, 30, 80, 0.08);
    }

    html { scroll-behavior: smooth; overflow-x: hidden; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--ink);
      overflow-x: hidden;
      cursor: auto;
    }

    /* ── CUSTOM CURSOR ── */
    #cursor {
      position: fixed; top: 0; left: 0;
      width: 12px; height: 12px;
      background: var(--teal);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transition: transform 0.15s ease, background 0.2s ease, width 0.25s ease, height 0.25s ease;
      transform: translate(-50%, -50%);
      mix-blend-mode: multiply;
    }
    #cursor-ring {
      position: fixed; top: 0; left: 0;
      width: 44px; height: 44px;
      border: 1.5px solid var(--teal);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
      opacity: 0.5;
    }
    body:hover #cursor-ring { opacity: 0.8; }
    .cursor-expand #cursor { width: 48px; height: 48px; background: rgba(11,106,111,0.12); }
    .cursor-expand #cursor-ring { width: 0px; height: 0px; opacity: 0; }

    /* ── NOISE OVERLAY ── */
    body::before {
      content: '';
      position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      background-size: 200px 200px;
      pointer-events: none;
      z-index: 100;
      opacity: 0.6;
    }

    /* ── NAV ── */
    nav,
    .site-header {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 500;
      padding: 1.5rem 4rem;
      display: flex; align-items: center; justify-content: space-between;
      transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    }
    nav.scrolled,
    .site-header.scrolled {
      background: rgba(255,255,255,0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      padding: 1rem 4rem;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      box-shadow: 0 10px 30px rgba(0, 30, 80, 0.05);
    }
    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      letter-spacing: -0.02em;
      color: var(--ink);
      text-decoration: none;
      display: flex; align-items: center; gap: 0.6rem;
    }
    .nav-logo-dot {
      width: 8px; height: 8px;
      background: var(--teal);
      border-radius: 50%;
      transition: transform 0.3s ease;
    }
    .nav-logo:hover .nav-logo-dot { transform: scale(1.8); }
    .nav-links {
      display: flex; gap: 2.5rem; list-style: none;
    }
    .nav-links a {
      font-size: 0.85rem; font-weight: 500;
      color: #64748b; text-decoration: none;
      letter-spacing: 0.02em;
      position: relative;
      transition: color 0.3s ease;
    }
    .nav-links a::after {
      content: '';
      position: absolute; bottom: -3px; left: 0;
      width: 0; height: 1px;
      background: var(--teal);
      transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    }
    .nav-links a:hover { color: var(--ink); }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta {
      font-size: 0.82rem; font-weight: 500;
      padding: 0.65rem 1.4rem;
      border: 1px solid var(--ink);
      border-radius: 100px;
      text-decoration: none; color: var(--ink);
      transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
      letter-spacing: 0.02em;
    }
    .nav-cta:hover { background: var(--ink); color: var(--cream); }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: grid; place-items: center;
      position: relative;
      overflow: hidden;
      padding: 8rem 4rem 4rem;
      background:
        radial-gradient(circle at top right, rgba(2, 170, 241, 0.12), transparent 34%),
        linear-gradient(180deg, #f8fbff 0%, #f7fbff 58%, #ffffff 100%);
    }

    /* Morphing gradient blobs */
    .hero-blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      pointer-events: none;
      will-change: transform;
    }
    .hero-blob-1 {
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(11,106,111,0.18) 0%, transparent 70%);
      top: -200px; right: -150px;
      animation: blob1 14s ease-in-out infinite alternate;
    }
    .hero-blob-2 {
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(200,184,154,0.35) 0%, transparent 70%);
      bottom: -100px; left: -100px;
      animation: blob2 18s ease-in-out infinite alternate;
    }
    .hero-blob-3 {
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(124,79,42,0.1) 0%, transparent 70%);
      top: 50%; left: 40%;
      animation: blob3 22s ease-in-out infinite alternate;
    }
    @keyframes blob1 { 0%{transform:translate(0,0) scale(1)} 100%{transform:translate(-80px,60px) scale(1.2)} }
    @keyframes blob2 { 0%{transform:translate(0,0) scale(1)} 100%{transform:translate(60px,-80px) scale(1.15)} }
    @keyframes blob3 { 0%{transform:translate(0,0) scale(1) rotate(0deg)} 100%{transform:translate(-40px,40px) scale(0.9) rotate(30deg)} }

    /* Grid lines background */
    .hero-grid-bg {
      position: absolute; inset: 0;
      z-index: 0;
      -webkit-mask-image: linear-gradient(to bottom, black 0%, black 68%, transparent 100%);
      mask-image: linear-gradient(to bottom, black 0%, black 68%, transparent 100%);
      pointer-events: none;
    }
    .hero-grid-bg::after {
      content: '';
      position: absolute;
      inset: auto 0 0 0;
      height: 32%;
      background: linear-gradient(to bottom, rgba(248, 251, 255, 0), #ffffff 85%);
    }
    .hero-grid-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 1;
      opacity: 1;
      -webkit-mask-image: linear-gradient(to bottom, black 0%, black 68%, transparent 100%);
      mask-image: linear-gradient(to bottom, black 0%, black 68%, transparent 100%);
    }

    .hero-inner {
      position: relative; z-index: 2;
      max-width: 1100px; width: 100%;
      display: grid; grid-template-columns: 1fr 1fr; gap: 7.5rem; align-items: center;
    }

    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 0.5rem;
      font-size: 0.72rem; font-weight: 600;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: #64748b;
      margin-bottom: 1.5rem;
      opacity: 0; transform: translateY(20px);
      animation: fadeUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.2s forwards;
    }
    .hero-eyebrow-line {
      width: 28px; height: 1px; background: #64748b;
    }

    h1,
    .heading-editorial {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3.2rem, 5.5vw, 5.5rem);
      line-height: 1.02;
      letter-spacing: -0.02em;
      color: var(--ink);
      opacity: 0; transform: translateY(30px);
      animation: fadeUp 1s cubic-bezier(0.23, 1, 0.32, 1) 0.4s forwards;
    }
    h1 em {
      font-style: italic;
      color: var(--teal);
      position: relative;
    }
    .text-gradient {
      background: linear-gradient(135deg, #0a2540 0%, #005a9c 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
      display: inline-block;
    }
    h1 em::after {
      content: '';
      position: absolute; bottom: 2px; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--teal), transparent);
    }

    .hero-desc {
      font-size: 1.05rem; line-height: 1.7;
      color: rgba(26,23,16,0.6);
      margin-top: 1.5rem; max-width: 44ch;
      opacity: 0; transform: translateY(20px);
      animation: fadeUp 0.9s cubic-bezier(0.23, 1, 0.32, 1) 0.6s forwards;
    }

    .hero-actions {
      display: flex; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap;
      opacity: 0; transform: translateY(20px);
      animation: fadeUp 0.9s cubic-bezier(0.23, 1, 0.32, 1) 0.8s forwards;
    }

    .btn-primary-hero {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--ink); color: var(--cream);
      padding: 0.9rem 1.8rem;
      border-radius: 100px;
      font-size: 0.88rem; font-weight: 500;
      text-decoration: none;
      transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
      position: relative; overflow: hidden;
      will-change: transform;
      justify-content: center;
    }
    .btn-primary-hero::before {
      content: '';
      position: absolute; inset: 0;
      background: var(--teal);
      transform: translateX(-101%);
      transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
      border-radius: inherit;
    }
    .btn-primary-hero:hover::before { transform: translateX(0); }
    .btn-primary-hero span { position: relative; z-index: 1; }
    .btn-primary-hero .arrow { position: relative; z-index: 1; transition: transform 0.3s ease; }
    .btn-primary-hero .arrow {
      display: block;
      align-self: center;
      transform: translateY(1px);
    }
    .btn-primary-hero:hover .arrow { transform: translate(3px, -3px); }

    .btn-ghost {
      display: inline-flex; align-items: center; gap: 0.5rem;
      color: var(--ink);
      padding: 0.9rem 0;
      font-size: 0.88rem; font-weight: 400;
      text-decoration: none;
      border-bottom: 1px solid rgba(26,23,16,0.25);
      transition: all 0.3s ease;
    }
    .btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

    /* ── HERO RIGHT — FLOATING CARD ── */
    .hero-right {
      opacity: 0; transform: translateX(40px);
      animation: fadeLeft 1.1s cubic-bezier(0.23, 1, 0.32, 1) 0.5s forwards;
      overflow: visible;
    }

    .hero-card-main {
      background: var(--hero-surface);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid var(--hero-surface-border);
      border-radius: 24px;
      padding: 2.5rem;
      box-shadow: 0 20px 40px rgba(0, 50, 150, 0.08), 0 32px 80px rgba(0, 30, 80, 0.12);
      position: relative;
      transform-style: preserve-3d;
      transition: transform 0.14s ease, box-shadow 0.3s ease;
      z-index: 1;
    }
    .hero-card-badge {
      position: absolute; top: -14px; right: 2rem;
      background: var(--teal); color: white;
      font-size: 0.72rem; font-weight: 500;
      letter-spacing: 0.06em; text-transform: uppercase;
      padding: 0.4rem 0.9rem; border-radius: 100px;
    }
    .hero-stats {
      display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
      background: rgba(26,23,16,0.08);
      border-radius: 14px; overflow: hidden; margin-top: 1.5rem;
    }
    .hero-stat {
      background: var(--white);
      padding: 1.25rem 1rem;
    }
    .hero-stat strong {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: 2rem; line-height: 1;
      color: var(--ink);
    }
    .hero-stat span { font-size: 0.78rem; color: rgba(26,23,16,0.5); margin-top: 0.3rem; display: block; }

    /* Floating small cards */
    .float-tag,
    .trust-badge {
      position: absolute;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #eef5ff;
      color: #005a9c;
      border: 1px solid rgba(0, 90, 156, 0.1);
      border-radius: 100px;
      padding: 0.5rem 1rem;
      font-size: 0.82rem;
      font-weight: 600;
      box-shadow: 0 10px 24px rgba(0, 30, 80, 0.08);
      white-space: nowrap;
      z-index: 3;
    }
    .float-tag-1 { top: -20px; left: -24px; animation: floatA 6s ease-in-out infinite; }
    .float-tag-2 { bottom: 30px; left: -32px; animation: floatB 8s ease-in-out infinite; }
    @keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
    @keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

    /* ── MARQUEE STRIP ── */
    .marquee-section {
      padding: 2rem 0;
      border-top: 1px solid rgba(26,23,16,0.08);
      border-bottom: 1px solid rgba(26,23,16,0.08);
      overflow: hidden;
      background: var(--sand-light);
      width: 100%;
      white-space: nowrap;
      position: relative;
      -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
      mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    }
    .marquee-track {
      display: inline-flex;
      gap: 3rem;
      width: max-content;
      padding-left: 100%;
      animation: marquee 30s linear infinite;
      will-change: transform;
    }
    .marquee-item {
      display: flex; align-items: center; gap: 0.75rem;
      font-size: 0.82rem; font-weight: 500;
      color: rgba(26,23,16,0.5); letter-spacing: 0.04em; white-space: nowrap;
    }
    .marquee-dot { width: 5px; height: 5px; background: var(--teal); border-radius: 50%; flex-shrink: 0; }
    .marquee-section:hover .marquee-track { animation-play-state: paused; }
    @keyframes marquee {
      0% { transform: translate3d(0, 0, 0); }
      100% { transform: translate3d(-50%, 0, 0); }
    }

    /* ── SECTION BASE ── */
    section { padding: clamp(5rem, 10vw, 9rem) 4rem; }
    .container { max-width: 1180px; margin: 0 auto; }

    .section-label {
      display: inline-flex; align-items: center; gap: 0.6rem;
      font-size: 0.72rem; font-weight: 500;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--teal); margin-bottom: 1.5rem;
    }
    .section-label-line { width: 22px; height: 1px; background: var(--teal); }

    h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 4vw, 4rem);
      line-height: 1.0; letter-spacing: -0.03em;
      color: var(--ink);
    }
    h2 em { font-style: italic; color: var(--teal); }

    /* ── REVEAL ANIMATIONS ── */
    .reveal {
      opacity: 0; transform: translateY(40px);
      transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1), transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-up {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
      will-change: opacity, transform;
    }
    .reveal-up.is-visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ── SERVICES ── */
    .services-section {
      background: var(--ink);
      color: var(--cream);
      padding-top: clamp(6rem, 10vw, 8rem);
    }
    .services-section h2 { color: var(--cream); }
    .services-section .section-label { color: var(--teal-mid); }
    .services-section .section-label-line { background: var(--teal-mid); }

    .services-header {
      display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 4rem;
    }
    .scroll-scrub-text {
      font-size: clamp(1.3rem, 2vw, 2.1rem);
      line-height: 1.35;
      color: rgba(245, 240, 232, 0.24);
      max-width: 24ch;
      font-weight: 500;
      letter-spacing: -0.02em;
    }
    .scroll-scrub-text span {
      color: rgba(245, 240, 232, 0.24);
      transition: color 0.12s ease;
    }
    .scroll-scrub-text span.is-active {
      color: rgba(255, 255, 255, 0.98);
    }

    .services-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px;
      background: rgba(255,255,255,0.06);
      border-radius: 20px; overflow: hidden;
    }
    .dark-service-card {
      position: relative;
      background-color: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      overflow: hidden;
      --mouse-x: 50%;
      --mouse-y: 50%;
    }
    .dark-service-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(
        800px circle at var(--mouse-x) var(--mouse-y),
        rgba(0, 120, 255, 0.08),
        transparent 50%
      );
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
      z-index: 0;
      mix-blend-mode: screen;
    }
    .dark-service-card:hover::before {
      opacity: 1;
    }
    .dark-service-card > * {
      position: relative;
      z-index: 1;
    }
    .animated-divider {
      position: relative;
    }
    .animated-divider::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background-color: rgba(255, 255, 255, 0.12);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
      z-index: 2;
    }
    .animated-divider.is-visible::after {
      transform: scaleX(1);
    }
    .service-card {
      background: #1e1c18;
      padding: 2.5rem 2rem;
      position: relative; overflow: hidden;
      cursor: pointer;
      transition: background 0.4s ease;
    }
    .service-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--teal), var(--teal-mid));
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    }
    .service-card:hover { background: #272420; }
    .service-card:hover::before { transform: scaleX(1); }
    .service-num {
      font-size: 0.72rem; font-weight: 500;
      letter-spacing: 0.1em; color: rgba(245,240,232,0.25);
      margin-bottom: 2rem;
    }
    .service-icon {
      width: 40px; height: 40px;
      border: 1px solid rgba(245,240,232,0.1);
      border-radius: 10px;
      display: grid; place-items: center;
      margin-bottom: 1.25rem;
      transition: border-color 0.3s ease, background 0.3s ease;
    }
    .service-card:hover .service-icon {
      border-color: var(--teal);
      background: rgba(11,106,111,0.15);
    }
    .service-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem; line-height: 1.2;
      color: var(--cream); margin-bottom: 0.75rem;
    }
    .service-card p { font-size: 0.88rem; line-height: 1.65; color: rgba(245,240,232,0.5); }
    .service-link {
      display: inline-flex; align-items: center; gap: 0.4rem;
      font-size: 0.82rem; color: var(--teal-mid);
      margin-top: 1.5rem; text-decoration: none;
      opacity: 0; transform: translateX(-8px);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .service-card:hover .service-link { opacity: 1; transform: translateX(0); }

    /* ── FEATURED SERVICE ── */
    .service-card-featured {
      grid-column: span 3;
      background: linear-gradient(135deg, rgba(11,106,111,0.25) 0%, rgba(26,23,16,0) 60%), #1e1c18;
      padding: 3rem;
      display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
    }
    .service-card-featured h3 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.1;
      color: var(--cream);
    }
    .reveal-blur {
      opacity: 0;
      transform: translateY(30px);
      filter: blur(10px);
      transition:
        opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.8s cubic-bezier(0.25, 1, 0.5, 1),
        filter 0.8s cubic-bezier(0.25, 1, 0.5, 1);
      will-change: opacity, transform, filter;
    }
    .reveal-blur.is-visible {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0px);
    }

    /* ── INDUSTRIES ── */
    .industries-section { background: var(--sand-light); }

    .industries-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 3rem;
    }
    .industry-card {
      background: var(--white);
      border: 1px solid rgba(26,23,16,0.06);
      border-radius: 18px; padding: 2rem 1.5rem;
      position: relative; overflow: hidden;
      transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
      cursor: pointer;
    }
    .industry-card::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(11,106,111,0.05), transparent);
      opacity: 0; transition: opacity 0.4s ease;
    }
    .industry-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(26,23,16,0.1); }
    .industry-card:hover::after { opacity: 1; }
    .industry-num {
      font-size: 0.7rem; font-weight: 500;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--teal); margin-bottom: 1.5rem;
    }
    .industry-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem; line-height: 1.1; margin-bottom: 0.75rem;
    }
    .industry-card p { font-size: 0.85rem; line-height: 1.65; color: rgba(26,23,16,0.55); }
    .industry-arrow {
      position: absolute; bottom: 1.5rem; right: 1.5rem;
      width: 32px; height: 32px;
      border: 1px solid rgba(26,23,16,0.1);
      border-radius: 50%;
      display: grid; place-items: center;
      opacity: 0; transform: scale(0.8);
      transition: opacity 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    }
    .industry-card:hover .industry-arrow { opacity: 1; transform: scale(1); border-color: var(--teal); }

    /* ── SPLIT STORY ── */
    .story-section { background: var(--cream); overflow: hidden; }
    .story-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch;
      background: var(--white);
      border-radius: 28px; overflow: hidden;
      box-shadow: 0 30px 80px rgba(26,23,16,0.1);
      border: 1px solid rgba(26,23,16,0.06);
    }
    .story-image-panel {
      position: relative; min-height: 560px; overflow: hidden;
      background: #c5bba8;
    }
    .story-image-panel img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
      display: block;
    }
    .story-grid:hover .story-image-panel img { transform: scale(1.04); }
    .story-image-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(11,106,111,0.5) 0%, transparent 60%);
    }
    .story-image-caption {
      position: absolute; bottom: 2rem; left: 2rem;
      font-size: 0.82rem; color: rgba(255,255,255,0.8);
    }
    .story-content {
      padding: 4rem;
      display: flex; flex-direction: column; justify-content: center;
    }
    .story-points { display: grid; gap: 1.25rem; margin-top: 2rem; }
    .story-point {
      display: flex; gap: 1rem; align-items: flex-start;
      padding: 1.25rem;
      border-radius: 12px;
      border: 1px solid transparent;
      transition: border-color 0.3s ease, background 0.3s ease;
    }
    .story-point:hover { border-color: rgba(11,106,111,0.15); background: rgba(11,106,111,0.03); }
    .story-point-icon {
      width: 36px; height: 36px; flex-shrink: 0;
      background: var(--teal-light);
      border-radius: 8px;
      display: grid; place-items: center;
    }
    .story-point-text strong { display: block; font-weight: 500; margin-bottom: 0.25rem; font-size: 0.95rem; }
    .story-point-text p { font-size: 0.85rem; color: rgba(26,23,16,0.55); line-height: 1.6; }

    /* ── PROCESS ── */
    .process-section { background: var(--cream-dark); }
    .process-grid {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      margin-top: 3rem;
      padding-bottom: 4rem;
    }
    .process-step {
      position: sticky;
      top: 100px;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(0, 90, 156, 0.08);
      border-radius: 24px;
      padding: 2.5rem 2rem;
      text-align: left;
      box-shadow: 0 -10px 30px rgba(0, 30, 80, 0.05), 0 18px 45px rgba(0, 30, 80, 0.08);
      position: sticky; z-index: 1;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .process-step:nth-child(1) { top: 100px; z-index: 1; }
    .process-step:nth-child(2) { top: 120px; z-index: 2; }
    .process-step:nth-child(3) { top: 140px; z-index: 3; }
    .process-step:nth-child(4) { top: 160px; z-index: 4; }
    .process-step:hover {
      transform: translateY(-4px);
      box-shadow: 0 -12px 34px rgba(0, 30, 80, 0.06), 0 26px 60px rgba(0, 30, 80, 0.12);
    }
    .process-step-num {
      width: 48px; height: 48px; margin: 0 0 1.5rem;
      background: var(--white);
      border: 1.5px solid var(--teal);
      border-radius: 50%;
      display: grid; place-items: center;
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem; color: var(--teal);
      transition: all 0.3s ease;
      box-shadow: 0 0 0 0 rgba(11,106,111,0.3);
    }
    .process-step:hover .process-step-num {
      background: var(--teal); color: white;
      box-shadow: 0 0 0 8px rgba(11,106,111,0.1);
    }
    .process-step h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem; margin-bottom: 0.6rem;
    }
    .process-step p { font-size: 0.84rem; color: rgba(26,23,16,0.55); line-height: 1.65; }

    /* ── CTA ── */
    .cta-section {
      padding: 6rem 4rem;
      background: var(--ink);
      position: relative; overflow: hidden;
    }
    .cta-bg-mesh {
      position: absolute; inset: 0;
      background: 
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(11,106,111,0.2) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 20% 80%, rgba(124,79,42,0.15) 0%, transparent 60%);
      pointer-events: none;
    }
    .cta-inner {
      max-width: 1180px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: center;
      position: relative; z-index: 1;
    }
    .cta-inner h2 {
      color: var(--cream);
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      max-width: 14ch;
    }
    .cta-inner h2 em { color: var(--teal-mid); }
    .cta-actions { display: flex; flex-direction: column; gap: 1rem; align-items: flex-end; }
    .btn-cta {
      display: inline-flex; align-items: center; gap: 0.6rem;
      padding: 1rem 2rem;
      background: white; color: var(--ink);
      border-radius: 100px;
      font-size: 0.9rem; font-weight: 500;
      text-decoration: none;
      white-space: nowrap;
      transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    }
    .btn-cta:hover { background: var(--teal); color: white; transform: scale(1.03); }
    .btn-cta-ghost {
      font-size: 0.84rem; color: rgba(245,240,232,0.5);
      text-decoration: none; text-align: right;
      border-bottom: 1px solid rgba(245,240,232,0.15);
      padding-bottom: 2px;
      transition: color 0.3s ease, border-color 0.3s ease;
    }
    .btn-cta-ghost:hover { color: var(--cream); border-color: rgba(245,240,232,0.4); }

    /* ── FOOTER ── */
    footer {
      background: var(--ink);
      border-top: 1px solid rgba(245,240,232,0.06);
      padding: 3rem 4rem;
    }
    .footer-inner {
      max-width: 1180px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
    }
    .footer-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1rem; color: rgba(245,240,232,0.4);
    }
    .footer-links {
      display: flex; gap: 2rem; list-style: none;
    }
    .footer-links a {
      font-size: 0.8rem; color: rgba(245,240,232,0.3);
      text-decoration: none; transition: color 0.3s ease;
    }
    .footer-links a:hover { color: var(--cream); }

    /* ── KEYFRAMES ── */
    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeLeft {
      to { opacity: 1; transform: translateX(0); }
    }

    /* ── SCROLLBAR ── */
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--cream); }
    ::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 2px; }

    /* ── MAGNETIC BTN CLASS ── */
    .magnetic,
    .magnetic-btn {
      transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
      will-change: transform;
    }
    .magnetic-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }


    /* ── PHOTO INDUSTRY CARDS ── */
    .industry-card-photo {
      background: var(--white);
      border: 1px solid rgba(26,23,16,0.06);
      border-radius: 18px;
      overflow: hidden;
      position: relative;
      transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
      cursor: pointer;
      display: flex; flex-direction: column;
    }
    .industry-card-photo:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(26,23,16,0.14); }
    .industry-photo-img {
      width: 100%; height: 200px; object-fit: cover;
      display: block;
      transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    }
    .industry-card-photo:hover .industry-photo-img { transform: scale(1.05); }
    .industry-photo-body {
      padding: 1.5rem;
      flex: 1; display: flex; flex-direction: column;
    }
    .industry-photo-body .industry-num { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.6rem; }
    .industry-photo-body h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; line-height: 1.15; margin-bottom: 0.6rem; }
    .industry-photo-body p { font-size: 0.85rem; line-height: 1.65; color: rgba(26,23,16,0.55); flex: 1; }
    .industry-photo-arrow {
      display: inline-flex; align-items: center; gap: 0.4rem;
      font-size: 0.78rem; color: var(--teal); font-weight: 500;
      margin-top: 1rem;
      opacity: 0; transform: translateX(-6px);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .industry-card-photo:hover .industry-photo-arrow { opacity: 1; transform: translateX(0); }

    @media (max-width: 1024px) {
      nav { padding: 1.5rem 2rem; }
      nav.scrolled { padding: 1rem 2rem; }
      section { padding: 5rem 2rem; }
      .hero { padding: 8rem 2rem 4rem; }
      .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
      .services-header { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .service-card-featured { grid-column: span 2; grid-template-columns: 1fr; gap: 2rem; }
      .industries-grid { grid-template-columns: 1fr 1fr; }
      .story-grid { grid-template-columns: 1fr; }
      .story-image-panel { min-height: 320px; }
      .process-grid { gap: 1.5rem; }
      .cta-inner { grid-template-columns: 1fr; }
      .cta-actions { align-items: flex-start; }
      .footer-inner { flex-direction: column; gap: 2rem; text-align: center; }
      .footer-links { flex-wrap: wrap; justify-content: center; }
    }
    @media (max-width: 640px) {
      .nav-links, .nav-cta { display: none; }
      .services-grid, .industries-grid { grid-template-columns: 1fr; }
      .service-card-featured { grid-column: span 1; }
      h1 { font-size: 3rem; }
      .process-step,
      .process-step:nth-child(1),
      .process-step:nth-child(2),
      .process-step:nth-child(3),
      .process-step:nth-child(4) {
        position: relative;
        top: 0;
      }
      .float-tag-1,
      .float-tag-2 {
        position: static;
        margin-bottom: 0.75rem;
      }
      .hero-right {
        display: grid;
        gap: 0.75rem;
      }
    }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
      .marquee-track { transform: translate3d(0, 0, 0); }
      .scroll-scrub-text,
      .scroll-scrub-text span,
      .scroll-scrub-text span.is-active {
        color: rgba(255, 255, 255, 0.98);
      }
      .reveal-blur,
      .reveal-blur.is-visible {
        opacity: 1;
        transform: none;
        filter: none;
      }
    }
  
    /* ── PHONE IN NAV ── */
    .nav-phone {
      display: flex; align-items: center; gap: 0.4rem;
      font-size: 0.82rem; font-weight: 500;
      color: var(--teal); text-decoration: none;
      letter-spacing: 0.01em;
      transition: color 0.3s ease;
    }
    .nav-phone:hover { color: var(--ink); }
    .nav-phone svg { flex-shrink: 0; }

    /* ── MOBILE HAMBURGER ── */
    .nav-hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 4px; background: none; border: none;
    }
    .nav-hamburger span {
      display: block; width: 22px; height: 1.5px;
      background: var(--ink);
      transition: all 0.3s cubic-bezier(0.23,1,0.32,1);
      transform-origin: center;
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* ── MOBILE MENU DRAWER ── */
    .mobile-drawer {
      display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
      background: var(--white); z-index: 450;
      padding: 6rem 2.5rem 3rem;
      flex-direction: column; gap: 0;
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
    }
    .mobile-drawer.open { transform: translateX(0); }
    .mobile-drawer a {
      display: block; font-family: 'Playfair Display', serif;
      font-size: 2rem; color: var(--ink); text-decoration: none;
      padding: 0.75rem 0;
      border-bottom: 1px solid rgba(26,23,16,0.06);
      transition: color 0.2s ease;
    }
    .mobile-drawer a:hover { color: var(--teal); }
    .mobile-drawer-phone {
      margin-top: 2rem;
      font-size: 0.9rem; color: var(--teal); font-weight: 500;
    }
    .mobile-drawer-login {
      display: flex; gap: 1rem; margin-top: 1.5rem;
    }
    .mobile-drawer-login a {
      font-family: 'DM Sans', sans-serif; font-size: 0.82rem;
      color: rgba(26,23,16,0.5); padding: 0;
      border: none; border-bottom: 1px solid rgba(26,23,16,0.15);
      border-radius: 0;
    }

    /* ── QUOTE MODAL ── */
    .modal-overlay {
      position: fixed; inset: 0;
      background: rgba(0,26,46,0.72);
      backdrop-filter: blur(8px);
      z-index: 800; display: none;
      align-items: center; justify-content: center;
      padding: 1.25rem;
      overflow-y: auto;
    }
    .modal-overlay.open { display: flex; }
    .modal-box {
      background: var(--white);
      border-radius: 20px;
      width: 100%; max-width: 520px;
      padding: 2rem 2rem 1.75rem;
      position: relative;
      box-shadow: 0 32px 80px rgba(0,26,46,0.35);
      animation: modalIn 0.35s cubic-bezier(0.23,1,0.32,1);
      margin: auto;
      flex-shrink: 0;
    }
    @keyframes modalIn {
      from { opacity:0; transform: translateY(24px) scale(0.97); }
      to   { opacity:1; transform: translateY(0) scale(1); }
    }
    .modal-close {
      position: absolute; top: 1.25rem; right: 1.25rem;
      width: 32px; height: 32px; border-radius: 50%;
      background: rgba(26,23,16,0.06); border: none; cursor: pointer;
      display: grid; place-items: center;
      transition: background 0.2s ease;
    }
    .modal-close:hover { background: rgba(26,23,16,0.12); }
    .modal-eyebrow {
      font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--teal); margin-bottom: 0.5rem;
    }
    .modal-box h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem; line-height: 1.1; margin-bottom: 0.35rem;
    }
    .modal-box p { font-size: 0.84rem; color: rgba(26,23,16,0.55); margin-bottom: 0; line-height: 1.55; }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; }
    .form-field { display: flex; flex-direction: column; gap: 0.3rem; }
    .form-field.full { grid-column: span 2; }
    .form-field label { font-size: 0.72rem; font-weight: 500; color: rgba(26,23,16,0.55); letter-spacing: 0.03em; }
    .form-field input, .form-field select, .form-field textarea {
      padding: 0.55rem 0.8rem;
      border: 1px solid rgba(26,23,16,0.14);
      border-radius: 8px;
      font-size: 0.85rem; font-family: 'DM Sans', sans-serif;
      background: var(--white); color: var(--ink);
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
      outline: none;
      -webkit-appearance: none; appearance: none;
      width: 100%;
    }
    .form-field input:focus, .form-field select:focus, .form-field textarea:focus {
      border-color: var(--teal);
      box-shadow: 0 0 0 3px rgba(0,92,143,0.08);
    }
    .form-field textarea { resize: vertical; min-height: 64px; }
    .form-submit {
      width: 100%; padding: 0.8rem;
      background: var(--ink); color: var(--cream);
      border: none; border-radius: 100px;
      font-size: 0.88rem; font-weight: 500; font-family: 'DM Sans', sans-serif;
      cursor: pointer; margin-top: 1rem;
      transition: background 0.3s ease, transform 0.2s ease;
    }
    .form-submit:hover { background: var(--teal); transform: translateY(-1px); }
    .form-success {
      text-align: center; padding: 2rem 0;
      display: none;
    }
    .form-success-icon {
      width: 56px; height: 56px; border-radius: 50%;
      background: rgba(0,92,143,0.1);
      display: grid; place-items: center; margin: 0 auto 1rem;
    }
    .form-success h4 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 0.5rem; }
    .form-success p { font-size: 0.88rem; color: rgba(26,23,16,0.55); }

    /* ── TESTIMONIALS ── */
    .testimonials-section { background: var(--ink); padding: clamp(5rem,10vw,9rem) 4rem; }
    .testimonials-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem;
    }
    .testimonial-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 20px; padding: 2rem;
      transition: border-color 0.3s ease, background 0.3s ease;
    }
    .testimonial-card:hover {
      border-color: rgba(0,170,241,0.3);
      background: rgba(255,255,255,0.06);
    }
    .testimonial-stars { display: flex; gap: 3px; margin-bottom: 1.25rem; }
    .testimonial-star {
      width: 12px; height: 12px;
      background: var(--teal-mid); clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
    }
    .testimonial-card blockquote {
      font-size: 0.95rem; line-height: 1.75;
      color: rgba(245,240,232,0.75); font-style: italic;
      margin-bottom: 1.5rem;
    }
    .testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
    .testimonial-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      background: linear-gradient(135deg, var(--teal), var(--teal-mid));
      display: grid; place-items: center;
      font-size: 0.85rem; font-weight: 500; color: white; flex-shrink: 0;
    }
    .testimonial-author-name { font-size: 0.88rem; font-weight: 500; color: var(--cream); }
    .testimonial-author-role { font-size: 0.78rem; color: rgba(245,240,232,0.4); margin-top: 0.15rem; }

    /* ── FAQ ── */
    .faq-section { background: var(--cream-dark); padding: clamp(5rem,10vw,9rem) 4rem; }
    .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 3rem; }
    .faq-item {
      background: var(--white);
      border: 1px solid rgba(26,23,16,0.06);
      border-radius: 16px; overflow: hidden;
      transition: box-shadow 0.3s ease;
    }
    .faq-item:hover { box-shadow: 0 8px 30px rgba(26,23,16,0.07); }
    .faq-question {
      width: 100%; padding: 1.25rem 1.5rem;
      display: flex; justify-content: space-between; align-items: center;
      background: none; border: none; cursor: pointer; text-align: left;
      font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 500;
      color: var(--ink);
    }
    .faq-icon {
      width: 22px; height: 22px; flex-shrink: 0;
      border: 1px solid rgba(26,23,16,0.15); border-radius: 50%;
      display: grid; place-items: center;
      transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    }
    .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--teal); border-color: var(--teal); }
    .faq-item.open .faq-icon svg { stroke: white; }
    .faq-answer {
      max-height: 0; overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.23,1,0.32,1), padding 0.3s ease;
      padding: 0 1.5rem;
      font-size: 0.88rem; line-height: 1.75; color: rgba(26,23,16,0.6);
    }
    .faq-item.open .faq-answer { max-height: 300px; padding: 0 1.5rem 1.25rem; }

    /* ── BLOG SECTION ── */
    .blog-section { background: var(--sand-light); padding: clamp(5rem,10vw,9rem) 4rem; }
    .blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
    .blog-card {
      background: var(--white); border: 1px solid rgba(26,23,16,0.06);
      border-radius: 18px; overflow: hidden;
      transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), box-shadow 0.4s ease;
      cursor: pointer;
    }
    .blog-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(26,23,16,0.1); }
    .blog-card-img {
      height: 160px; background: var(--teal-light);
      display: grid; place-items: center; position: relative; overflow: hidden;
    }
    .blog-card-img-label {
      font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--teal);
      background: white; padding: 0.3rem 0.75rem; border-radius: 100px;
    }
    .blog-card-body { padding: 1.5rem; }
    .blog-card-tag { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.6rem; }
    .blog-card-body h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; line-height: 1.3; margin-bottom: 0.6rem; }
    .blog-card-body p { font-size: 0.84rem; color: rgba(26,23,16,0.55); line-height: 1.65; }
    .blog-card-read { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.8rem; color: var(--teal); margin-top: 1rem; text-decoration: none; font-weight: 500; }

    /* ── CERT BADGES ── */
    .cert-strip { background: var(--white); border-top: 1px solid rgba(26,23,16,0.06); border-bottom: 1px solid rgba(26,23,16,0.06); padding: 1.5rem 4rem; }
    .cert-inner { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; justify-content: center; }
    .cert-badge {
      display: flex; align-items: center; gap: 0.6rem;
      padding: 0.5rem 1.1rem; border-radius: 100px;
      border: 1px solid rgba(26,23,16,0.1);
      font-size: 0.78rem; font-weight: 500; color: rgba(26,23,16,0.6);
      transition: border-color 0.3s ease, color 0.3s ease;
    }
    .cert-badge:hover { border-color: var(--teal); color: var(--teal); }
    .cert-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }

    /* ── SERVICE FINDER ── */
    .finder-section { background: linear-gradient(135deg, var(--ink) 0%, #002a4a 100%); padding: clamp(5rem,10vw,9rem) 4rem; }
    .finder-box {
      max-width: 760px; margin: 3rem auto 0;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 28px; padding: 3rem;
    }
    .finder-step { display: none; }
    .finder-step.active { display: block; animation: finderIn 0.4s cubic-bezier(0.23,1,0.32,1); }
    @keyframes finderIn { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }
    .finder-question { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--cream); line-height: 1.2; margin-bottom: 2rem; }
    .finder-options { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
    .finder-option {
      padding: 1.25rem 1.5rem;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 14px; cursor: pointer;
      transition: all 0.3s cubic-bezier(0.23,1,0.32,1);
      text-align: left;
    }
    .finder-option:hover { background: rgba(0,170,241,0.15); border-color: rgba(0,170,241,0.4); transform: translateY(-2px); }
    .finder-option.selected { background: rgba(0,170,241,0.2); border-color: var(--teal-mid); }
    .finder-option-title { font-size: 0.95rem; font-weight: 500; color: var(--cream); margin-bottom: 0.25rem; }
    .finder-option-desc { font-size: 0.8rem; color: rgba(245,240,232,0.5); line-height: 1.5; }
    .finder-result {
      background: rgba(0,170,241,0.1); border: 1px solid rgba(0,170,241,0.3);
      border-radius: 16px; padding: 1.75rem;
    }
    .finder-result-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-mid); margin-bottom: 0.75rem; }
    .finder-result h4 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--cream); margin-bottom: 0.6rem; }
    .finder-result p { font-size: 0.88rem; color: rgba(245,240,232,0.65); line-height: 1.7; margin-bottom: 1.25rem; }
    .finder-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
    .finder-btn-primary {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: white; color: var(--ink);
      padding: 0.75rem 1.5rem; border-radius: 100px;
      font-size: 0.85rem; font-weight: 500; border: none; cursor: pointer;
      transition: background 0.3s ease, transform 0.2s ease;
    }
    .finder-btn-primary:hover { background: var(--teal-mid); color: white; }
    .finder-btn-ghost {
      display: inline-flex; align-items: center; gap: 0.5rem;
      color: rgba(245,240,232,0.5); font-size: 0.85rem;
      background: none; border: none; cursor: pointer;
      border-bottom: 1px solid rgba(245,240,232,0.2);
      padding: 0 0 2px; transition: color 0.3s ease;
    }
    .finder-btn-ghost:hover { color: var(--cream); }
    .finder-progress { display: flex; gap: 6px; margin-bottom: 2rem; }
    .finder-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.2); transition: background 0.3s ease; }
    .finder-dot.active { background: var(--teal-mid); }

    /* ── LOGIN LINKS ── */
    .login-links { display: flex; gap: 1rem; align-items: center; }
    .login-link {
      font-size: 0.75rem; font-weight: 500; color: rgba(26,23,16,0.4);
      text-decoration: none; letter-spacing: 0.03em;
      padding: 0.4rem 0.75rem;
      border: 1px solid rgba(26,23,16,0.12);
      border-radius: 100px;
      transition: all 0.3s ease;
    }
    .login-link:hover { color: var(--teal); border-color: var(--teal); }

    /* ── MOBILE OVERRIDES ── */
    @media (max-width: 900px) {
      .nav-links, .login-links, .nav-cta { display: none !important; }
      .nav-hamburger { display: flex !important; }
      .nav-phone { font-size: 0.78rem; }
      .mobile-drawer { display: flex; }
      .testimonials-grid, .blog-grid { grid-template-columns: 1fr; }
      .faq-grid { grid-template-columns: 1fr; }
      .finder-options { grid-template-columns: 1fr; }
      .cert-strip { padding: 1.5rem 1.5rem; }
      .testimonials-section, .faq-section, .blog-section, .finder-section { padding: 4rem 1.5rem; }
    }
    @media (max-width: 640px) {
      .form-grid { grid-template-columns: 1fr; }
      .form-field.full { grid-column: span 1; }
      .modal-box { padding: 1.5rem 1.25rem; }
    }


/* ---- Extracted style block 2 from lp-v4_4.html ---- */
@keyframes pulse-dot {
  0%,100%{box-shadow:0 0 0 3px rgba(2,170,241,0.2);}
  50%{box-shadow:0 0 0 6px rgba(2,170,241,0.08);}
}

/* =========================================================
   WordPress full-site templates
   Extends homepage design language to pages, posts, archives.
   ========================================================= */

.lp-site-header {
  z-index: 90;
}

.lp-nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.lp-nav-item {
  position: relative;
}

.lp-dropdown {
  position: absolute;
  top: calc(100% + 0.9rem);
  left: -1rem;
  min-width: 270px;
  padding: 0.7rem;
  border: 1px solid rgba(0, 70, 111, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(0, 40, 70, 0.12);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
  backdrop-filter: blur(18px);
}

.lp-nav-item:hover .lp-dropdown,
.lp-nav-item:focus-within .lp-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lp-dropdown a {
  display: block;
  padding: 0.72rem 0.8rem;
  border-radius: 12px;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.86rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.lp-dropdown a:hover {
  background: rgba(2, 170, 241, 0.08);
  color: var(--teal);
  transform: translateX(3px);
}

.lp-page-main {
  min-height: 70vh;
  background:
    radial-gradient(circle at top right, rgba(2, 170, 241, 0.12), transparent 34rem),
    linear-gradient(180deg, rgba(239, 248, 255, 0.9), rgba(255, 255, 255, 1) 28rem);
  overflow: hidden;
}

.lp-page-shell {
  padding-top: 7.5rem;
}

.lp-inner-hero {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: 580px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  position: relative;
  isolation: isolate;
  padding: clamp(2rem, 5vw, 4.5rem) 0;
}

.lp-inner-hero::before {
  content: "";
  position: absolute;
  inset: -8rem -12vw auto -12vw;
  height: 120%;
  background-image:
    linear-gradient(rgba(0, 76, 120, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 76, 120, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  z-index: -2;
}

.lp-inner-hero::after {
  content: "";
  position: absolute;
  top: 18%;
  right: -8%;
  width: 38rem;
  height: 38rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(2, 170, 241, 0.13), transparent 62%);
  filter: blur(4px);
  z-index: -1;
}

.lp-inner-grid {
  display: none;
}

.lp-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.6rem;
  color: rgba(0, 64, 102, 0.55);
  font-size: 0.82rem;
}

.lp-breadcrumbs a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 700;
}

.lp-inner-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(3.4rem, 8vw, 7.7rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.lp-hero-summary {
  max-width: 700px;
  margin: 1.55rem 0 0;
  color: rgba(26, 23, 16, 0.62);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.85;
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.lp-inner-hero-card {
  position: relative;
  border: 1px solid rgba(0, 70, 111, 0.1);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 36px 90px rgba(0, 50, 90, 0.12);
  backdrop-filter: blur(18px);
  padding: clamp(1.6rem, 3vw, 2.7rem);
  min-height: 300px;
}

.lp-inner-hero-card p {
  color: rgba(26, 23, 16, 0.64);
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0 0 1.7rem;
}

.lp-floating-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--teal);
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 800;
}

.lp-stat-grid-small {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(0, 70, 111, 0.08);
  border-radius: 22px;
  overflow: hidden;
}

.lp-stat-grid-small div {
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.55);
  border-right: 1px solid rgba(0, 70, 111, 0.08);
  border-bottom: 1px solid rgba(0, 70, 111, 0.08);
}

.lp-stat-grid-small div:nth-child(2n) {
  border-right: 0;
}

.lp-stat-grid-small div:nth-last-child(-n+2) {
  border-bottom: 0;
}

.lp-stat-grid-small strong {
  display: block;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1;
}

.lp-stat-grid-small span {
  display: block;
  margin-top: 0.4rem;
  color: rgba(26, 23, 16, 0.48);
  font-size: 0.76rem;
}

.lp-content-layout {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto clamp(4rem, 9vw, 8rem);
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.lp-page-aside {
  display: grid;
  gap: 1rem;
  position: relative;
}

.lp-sticky-card,
.lp-service-index-card,
.lp-related-panel,
.lp-editorial-card,
.lp-post-card {
  border: 1px solid rgba(0, 70, 111, 0.11);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 80px rgba(0, 50, 90, 0.075);
  backdrop-filter: blur(18px);
}

.lp-sticky-card {
  position: sticky;
  top: 6.5rem;
  padding: 1.4rem;
}

.lp-card-kicker {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.lp-sticky-card h3,
.lp-service-index-card h3,
.lp-related-panel h2 {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1.05;
  margin: 0 0 0.65rem;
}

.lp-sticky-card p,
.lp-service-index-card p,
.lp-related-panel p {
  color: rgba(26, 23, 16, 0.58);
  line-height: 1.65;
  margin: 0 0 1rem;
}

.lp-sticky-card a {
  display: block;
  padding: 0.78rem 0;
  color: var(--navy);
  text-decoration: none;
  font-weight: 800;
  border-top: 1px solid rgba(0, 70, 111, 0.1);
}

.lp-sticky-card a:hover {
  color: var(--teal);
}

.lp-service-index-card {
  padding: 1.4rem;
}

.lp-mini-link-grid {
  display: grid;
  gap: 0.45rem;
  max-height: 360px;
  overflow: auto;
  padding-right: 0.3rem;
}

.lp-mini-link-grid a {
  display: block;
  padding: 0.72rem 0.78rem;
  border-radius: 13px;
  background: rgba(239, 248, 255, 0.75);
  color: rgba(0, 64, 102, 0.82);
  text-decoration: none;
  font-weight: 750;
  font-size: 0.86rem;
}

.lp-mini-link-grid a:hover,
.lp-mini-link-grid a.is-active {
  background: var(--navy);
  color: white;
}

.lp-content-column {
  min-width: 0;
  display: grid;
  gap: 1.3rem;
}

.lp-featured-image {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(0, 50, 90, 0.09);
}

.lp-featured-image img,
.lp-inner-hero-image img,
.lp-post-thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.lp-editorial-card {
  padding: clamp(1.5rem, 4vw, 3.25rem);
}

.lp-editorial-card > *:first-child {
  margin-top: 0;
}

.lp-editorial-card > *:last-child {
  margin-bottom: 0;
}

.lp-editorial-card h1,
.lp-editorial-card h2,
.lp-editorial-card h3,
.lp-editorial-card h4 {
  color: var(--navy);
  font-family: var(--serif);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 1.65em 0 0.55em;
}

.lp-editorial-card h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
.lp-editorial-card h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.lp-editorial-card h3 { font-size: clamp(1.45rem, 2.8vw, 2.1rem); }
.lp-editorial-card h4 { font-size: 1.2rem; font-family: var(--sans); letter-spacing: 0; }

.lp-editorial-card p,
.lp-editorial-card li {
  color: rgba(26, 23, 16, 0.7);
  font-size: 1.02rem;
  line-height: 1.86;
}

.lp-editorial-card a {
  color: var(--teal);
  font-weight: 800;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.lp-editorial-card ul,
.lp-editorial-card ol {
  padding-left: 1.15rem;
}

.lp-editorial-card li + li {
  margin-top: 0.5rem;
}

.lp-editorial-card blockquote {
  margin: 2rem 0;
  padding: 1.5rem 1.7rem;
  border-left: 4px solid var(--teal);
  border-radius: 18px;
  background: rgba(239, 248, 255, 0.9);
}

.lp-editorial-card img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

.lp-editorial-card .wp-block-button__link,
.lp-editorial-card input[type="submit"],
.lp-editorial-card button[type="submit"] {
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.25rem;
  background: var(--navy);
  color: white;
  font-weight: 800;
  text-decoration: none;
}

.lp-editorial-card input,
.lp-editorial-card textarea,
.lp-editorial-card select {
  width: 100%;
  max-width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(0, 70, 111, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--navy);
  font: inherit;
}

.lp-editorial-card label {
  color: var(--navy);
  font-weight: 800;
}

.lp-related-panel {
  padding: clamp(1.4rem, 3vw, 2rem);
}

.lp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.lp-related-grid a {
  display: block;
  min-height: 130px;
  padding: 1rem;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(239, 248, 255, 0.92), rgba(255, 255, 255, 0.72));
  color: var(--navy);
  text-decoration: none;
  border: 1px solid rgba(0, 70, 111, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.lp-related-grid a:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 50, 90, 0.1);
}

.lp-related-grid span {
  display: block;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lp-related-grid strong {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.05;
}

.lp-cta-band {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto clamp(4rem, 8vw, 6rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: clamp(1.7rem, 4vw, 3rem);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(2, 170, 241, 0.16), transparent 22rem),
    var(--navy);
  color: white;
  box-shadow: 0 30px 90px rgba(0, 48, 84, 0.18);
}

.lp-cta-band h2 {
  margin: 0 0 0.7rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.lp-cta-band p {
  margin: 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.lp-cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

.lp-cta-band .btn-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.lp-site-footer {
  padding: clamp(3rem, 6vw, 5rem) max(1rem, calc((100vw - 1180px) / 2)) 2rem;
  background: #021d31;
  color: white;
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.8fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.lp-site-footer .nav-logo {
  color: white;
  text-decoration: none;
}

.lp-footer-brand p,
.lp-site-footer p {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.7;
}

.lp-footer-small {
  font-size: 0.82rem;
}

.lp-site-footer h4 {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.lp-site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-site-footer li + li {
  margin-top: 0.65rem;
}

.lp-site-footer a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
}

.lp-site-footer a:hover {
  color: white;
}

.lp-footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}

.lp-post-grid-wrap {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto clamp(4rem, 8vw, 7rem);
}

.lp-blog-main {
  padding-top: 7.5rem;
}

.lp-blog-main .lp-inner-hero {
  min-height: 420px;
}

.lp-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.lp-post-card {
  overflow: hidden;
}

.lp-post-thumb {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.lp-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.lp-post-card:hover .lp-post-thumb img {
  transform: scale(1.04);
}

.lp-post-card-body {
  padding: 1.25rem;
}

.lp-post-date {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-post-card h2 {
  margin: 0 0 0.7rem;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 2.15rem);
  line-height: 1.05;
}

.lp-post-card h2 a,
.lp-read-more {
  color: var(--navy);
  text-decoration: none;
}

.lp-post-card p {
  color: rgba(26, 23, 16, 0.63);
  line-height: 1.7;
}

.lp-read-more {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--teal);
  font-weight: 850;
}

.lp-pagination {
  margin-top: 2rem;
}

.lp-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.lp-pagination a,
.lp-pagination span {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(0, 70, 111, 0.12);
  color: var(--navy);
  text-decoration: none;
  font-weight: 800;
}

.lp-pagination .current {
  background: var(--navy);
  color: white;
}

.lp-inner-hero-image {
  margin: 0;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 36px 90px rgba(0, 50, 90, 0.12);
}

@media (max-width: 1050px) {
  .lp-primary-nav,
  .lp-nav-actions .nav-phone,
  .lp-nav-actions .login-links,
  .lp-nav-actions .nav-cta {
    display: none;
  }

  .lp-page-shell,
  .lp-blog-main {
    padding-top: 5.5rem;
  }

  .lp-inner-hero,
  .lp-content-layout,
  .lp-footer-grid {
    grid-template-columns: 1fr;
  }

  .lp-inner-hero {
    min-height: auto;
    padding-top: 4rem;
  }

  .lp-sticky-card {
    position: relative;
    top: auto;
  }

  .lp-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .lp-cta-band-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .lp-inner-hero {
    width: min(100% - 1rem, 1180px);
    gap: 1.2rem;
  }

  .lp-inner-hero h1 {
    font-size: clamp(3rem, 17vw, 5rem);
  }

  .lp-content-layout,
  .lp-post-grid-wrap,
  .lp-cta-band {
    width: min(100% - 1rem, 1180px);
  }

  .lp-editorial-card,
  .lp-related-panel,
  .lp-sticky-card,
  .lp-service-index-card {
    border-radius: 22px;
  }

  .lp-related-grid,
  .lp-post-grid,
  .lp-stat-grid-small {
    grid-template-columns: 1fr;
  }

  .lp-stat-grid-small div,
  .lp-stat-grid-small div:nth-child(2n),
  .lp-stat-grid-small div:nth-last-child(-n+2) {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 70, 111, 0.08);
  }

  .lp-stat-grid-small div:last-child {
    border-bottom: 0;
  }

  .lp-footer-grid {
    gap: 2rem;
  }
}


/* ---- Full-site consistency pass v3 ---- */
:root {
  --navy: var(--ink);
  --serif: 'Playfair Display', serif;
  --sans: 'DM Sans', sans-serif;
  --page-glass: rgba(255, 255, 255, 0.72);
  --page-border: rgba(0, 70, 111, 0.1);
  --page-shadow: 0 28px 90px rgba(0, 50, 90, 0.1);
}

body,
button,
input,
textarea,
select {
  font-family: var(--sans);
}

.lp-fullsite-main {
  background:
    radial-gradient(circle at 85% 10%, rgba(2, 170, 241, 0.16), transparent 30rem),
    radial-gradient(circle at 10% 42%, rgba(204, 238, 255, 0.7), transparent 24rem),
    linear-gradient(180deg, var(--cream) 0%, #f8fdff 42%, var(--cream) 100%);
}

.lp-designed-hero {
  min-height: 640px;
}

.lp-designed-hero .section-eyebrow {
  color: rgba(0, 58, 102, 0.58);
}

.lp-designed-hero .section-eyebrow span {
  background: rgba(0, 58, 102, 0.42);
}

.lp-designed-hero h1 {
  font-family: var(--serif);
  color: var(--ink);
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.lp-designed-orbit-card {
  overflow: visible;
}

.lp-designed-orbit-card::before,
.lp-designed-orbit-card::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.lp-designed-orbit-card::before {
  width: 7rem;
  height: 7rem;
  top: -2rem;
  right: -1.6rem;
  background: rgba(204, 238, 255, 0.82);
  border: 1px solid rgba(0, 101, 153, 0.12);
  z-index: -1;
}

.lp-designed-orbit-card::after {
  width: 3.2rem;
  height: 3.2rem;
  left: -1rem;
  bottom: 2rem;
  background: rgba(2, 170, 241, 0.14);
  border: 1px solid rgba(2, 170, 241, 0.18);
}

.lp-signature-section {
  width: min(1180px, calc(100% - 2rem));
  margin: -2rem auto clamp(4rem, 8vw, 7rem);
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
  position: relative;
}

.lp-signature-section::before {
  content: '';
  position: absolute;
  inset: -3rem -8vw;
  background:
    linear-gradient(rgba(0, 76, 120, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 76, 120, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  z-index: 0;
  pointer-events: none;
}

.lp-signature-copy,
.lp-signature-card-grid {
  position: relative;
  z-index: 1;
}

.lp-signature-copy {
  padding: clamp(1.8rem, 4vw, 3rem);
  border-radius: 34px;
  background: var(--ink);
  box-shadow: 0 34px 100px rgba(0, 40, 70, 0.16);
  color: var(--cream);
}

.lp-signature-copy .section-label {
  color: rgba(240, 248, 255, 0.62);
}

.lp-signature-copy .section-label-line {
  background: rgba(240, 248, 255, 0.35);
}

.lp-signature-copy h2 {
  margin: 1rem 0 1rem;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: var(--cream);
  text-wrap: balance;
}

.lp-signature-copy p {
  color: rgba(240, 248, 255, 0.68);
  line-height: 1.82;
  font-size: 1.02rem;
  max-width: 58ch;
}

.lp-signature-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.lp-signature-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.2rem, 2.6vw, 1.7rem);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--page-shadow);
  backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
}

.lp-signature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(204, 238, 255, 0.95), transparent 13rem),
    linear-gradient(180deg, rgba(255,255,255,0.25), rgba(255,255,255,0));
  pointer-events: none;
}

.lp-signature-card > * {
  position: relative;
  z-index: 1;
}

.lp-signature-card span {
  align-self: flex-start;
  margin-bottom: auto;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(0, 101, 153, 0.08);
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lp-signature-card h3 {
  margin: 2.6rem 0 0.65rem;
  font-family: var(--serif);
  color: var(--ink);
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.lp-signature-card p {
  color: rgba(0, 58, 102, 0.62);
  font-size: 0.94rem;
  line-height: 1.72;
}

.lp-designed-content-layout {
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.lp-designed-editorial-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.83), rgba(255,255,255,0.68)),
    radial-gradient(circle at top right, rgba(204, 238, 255, 0.7), transparent 24rem);
}

.lp-designed-editorial-card::before {
  content: '';
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(0, 70, 111, 0.06);
  border-radius: 22px;
  pointer-events: none;
}

.lp-editorial-intro-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
  color: rgba(0, 58, 102, 0.46);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lp-editorial-intro-label::before {
  content: '';
  width: 2.2rem;
  height: 1px;
  background: rgba(0, 58, 102, 0.3);
}

.lp-designed-featured-image {
  border: 1px solid rgba(255,255,255,0.8);
}

.lp-designed-process {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto clamp(4rem, 8vw, 7rem);
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 38px;
  background:
    radial-gradient(circle at top left, rgba(2, 170, 241, 0.13), transparent 25rem),
    #021d31;
  box-shadow: 0 34px 100px rgba(0, 29, 49, 0.2);
  color: var(--cream);
}

.lp-designed-process h2 {
  max-width: 820px;
  margin: 1rem auto 2.5rem;
  color: var(--cream);
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.lp-designed-process .section-label {
  color: rgba(240, 248, 255, 0.55);
}

.lp-designed-process .section-label-line {
  background: rgba(240, 248, 255, 0.3);
}

.lp-page-process-grid {
  margin-top: 0;
}

.lp-page-process-grid .process-step {
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: none;
}

.lp-page-process-grid .process-step h3 {
  color: var(--cream);
}

.lp-page-process-grid .process-step p {
  color: rgba(240, 248, 255, 0.62);
}

.lp-designed-related {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto clamp(4rem, 8vw, 7rem);
}

.lp-designed-related h2 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.lp-action-card {
  background: rgba(255, 255, 255, 0.76);
}

.lp-action-card::before {
  content: '';
  display: block;
  width: 3.8rem;
  height: 3.8rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(2, 170, 241, 0.4), rgba(204, 238, 255, 0.86));
  border: 1px solid rgba(0, 101, 153, 0.14);
}

.lp-editorial-card table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
}

.lp-editorial-card th,
.lp-editorial-card td {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(0, 70, 111, 0.1);
  text-align: left;
}

.lp-editorial-card th {
  background: rgba(204, 238, 255, 0.45);
  color: var(--ink);
}

.lp-editorial-card .nf-form-cont,
.lp-editorial-card form {
  margin-top: 1.4rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  border-radius: 24px;
  background: rgba(240, 248, 255, 0.72);
  border: 1px solid rgba(0, 70, 111, 0.08);
}

@media (max-width: 1080px) {
  .lp-signature-section,
  .lp-signature-card-grid {
    grid-template-columns: 1fr;
  }

  .lp-signature-card {
    min-height: 230px;
  }
}

@media (max-width: 760px) {
  .lp-designed-hero {
    min-height: auto;
  }

  .lp-signature-section {
    margin-top: 0;
  }

  .lp-signature-copy,
  .lp-designed-process {
    border-radius: 28px;
  }

  .lp-signature-card-grid,
  .lp-page-process-grid {
    grid-template-columns: 1fr;
  }

  .lp-signature-card {
    min-height: auto;
  }
}

/* =========================================================
   V4 full-site consistency lock
   Source of truth: lp-v4_4.html homepage system.
   Purpose: make every public WordPress page share the same
   type scale, spacing, buttons, cards, contact details, and flow.
   ========================================================= */

:root {
  --navy: var(--ink);
  --serif: 'Playfair Display', serif;
  --sans: 'DM Sans', sans-serif;
  --lp-radius-lg: 32px;
  --lp-radius-md: 24px;
  --lp-container: 1180px;
  --lp-glass: rgba(255, 255, 255, 0.72);
  --lp-glass-strong: rgba(255, 255, 255, 0.88);
  --lp-border: rgba(0, 70, 111, 0.1);
  --lp-shadow: 0 24px 80px rgba(0, 50, 90, 0.1);
}

body,
button,
input,
textarea,
select {
  font-family: var(--sans);
}

.lp-guide-main {
  background:
    radial-gradient(circle at 88% 6%, rgba(2, 170, 241, 0.15), transparent 32rem),
    radial-gradient(circle at 8% 38%, rgba(204, 238, 255, 0.75), transparent 26rem),
    linear-gradient(180deg, var(--cream) 0%, #f8fdff 42%, var(--cream) 100%);
  overflow: hidden;
}

.lp-guide-page {
  background: transparent;
}

.lp-guide-hero {
  min-height: clamp(720px, 92vh, 920px);
  padding-bottom: clamp(5rem, 9vw, 8rem);
}

.lp-guide-hero-inner {
  max-width: var(--lp-container);
}

.lp-guide-breadcrumbs {
  margin: 0 0 1.1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.35s forwards;
}

.lp-guide-breadcrumbs,
.lp-guide-breadcrumbs a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(0, 58, 102, 0.55);
  text-decoration: none;
}

.lp-guide-breadcrumbs a:hover {
  color: var(--teal);
}

.lp-guide-hero-desc {
  max-width: 48ch;
}

.lp-guide-visual-card {
  padding: 1rem;
  overflow: visible;
}

.lp-guide-visual-card::before,
.lp-guide-visual-card::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
}

.lp-guide-visual-card::before {
  width: 7rem;
  height: 7rem;
  top: -2rem;
  right: -1.4rem;
  background: rgba(204, 238, 255, 0.82);
  border: 1px solid rgba(0, 101, 153, 0.12);
}

.lp-guide-visual-card::after {
  width: 3.3rem;
  height: 3.3rem;
  left: -1.2rem;
  bottom: 2.2rem;
  background: rgba(2, 170, 241, 0.14);
  border: 1px solid rgba(2, 170, 241, 0.18);
}

.lp-guide-visual-image {
  margin: 0;
  height: 270px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--teal-light);
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.lp-guide-visual-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.lp-guide-card-content {
  padding: 1.35rem 1.35rem 1.5rem;
}

.lp-guide-card-content h3 {
  margin: 0.35rem 0 1.2rem;
  font-family: var(--serif);
  color: var(--ink);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.lp-guide-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lp-guide-services-strip {
  position: relative;
  margin-top: 0;
  padding-bottom: clamp(5rem, 9vw, 7rem);
}

.lp-guide-services-header h2,
.lp-guide-service-directory h2,
.lp-guide-process-section h2,
.lp-guide-next-section h2 {
  font-family: var(--serif);
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.lp-guide-services-header .scroll-scrub-text span {
  color: rgba(245, 240, 232, 0.72);
}

.lp-guide-card-grid .service-card {
  min-height: 260px;
}

.lp-guide-card-grid .service-num {
  color: var(--teal-mid);
}

.lp-guide-service-directory {
  padding: clamp(5rem, 9vw, 7rem) 4rem;
  background:
    radial-gradient(circle at top right, rgba(2, 170, 241, 0.13), transparent 27rem),
    linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}

.lp-guide-service-directory h2 {
  max-width: 850px;
  margin: 1rem 0 3rem;
  color: var(--ink);
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.lp-guide-light-service-grid {
  background: transparent;
  gap: 1rem;
  border-radius: 0;
  overflow: visible;
}

.lp-guide-light-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.6rem;
  border-radius: var(--lp-radius-md);
  border: 1px solid rgba(0, 70, 111, 0.1);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--lp-shadow);
  color: var(--ink);
  text-decoration: none;
  backdrop-filter: blur(18px);
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.lp-guide-light-card:hover {
  transform: translateY(-5px);
  border-color: rgba(2, 170, 241, 0.28);
  box-shadow: 0 32px 90px rgba(0, 50, 90, 0.14);
}

.lp-guide-light-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: auto;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 101, 153, 0.08);
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lp-guide-light-card h3 {
  margin: 3rem 0 0.75rem;
  font-family: var(--serif);
  color: var(--ink);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.lp-guide-light-card p {
  margin: 0 0 1.25rem;
  color: rgba(0, 58, 102, 0.62);
  font-size: 0.94rem;
  line-height: 1.7;
}

.lp-guide-light-card strong {
  margin-top: auto;
  color: var(--teal);
  font-size: 0.85rem;
}

.lp-guide-content-section {
  padding: clamp(5rem, 9vw, 8rem) 4rem;
  background:
    linear-gradient(rgba(0, 76, 120, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 76, 120, 0.04) 1px, transparent 1px),
    var(--white);
  background-size: 42px 42px, 42px 42px, auto;
}

.lp-guide-story-grid {
  align-items: start;
}

.lp-guide-editorial-shell {
  max-width: none;
}

.lp-guide-editorial-card {
  position: relative;
  margin-top: 1.3rem;
  padding: clamp(1.5rem, 4vw, 3.25rem);
  border-radius: var(--lp-radius-lg);
  border: 1px solid var(--lp-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at top right, rgba(204, 238, 255, 0.7), transparent 24rem);
  box-shadow: var(--lp-shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.lp-guide-editorial-card::before {
  content: '';
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(0, 70, 111, 0.06);
  border-radius: 22px;
  pointer-events: none;
}

.lp-guide-editorial-card > * {
  position: relative;
  z-index: 1;
}

.lp-guide-editorial-card h1,
.lp-guide-editorial-card h2,
.lp-guide-editorial-card h3,
.lp-guide-editorial-card h4 {
  font-family: var(--serif);
  color: var(--ink);
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin: 1.5em 0 0.55em;
}

.lp-guide-editorial-card h1:first-child,
.lp-guide-editorial-card h2:first-child,
.lp-guide-editorial-card h3:first-child,
.lp-guide-editorial-card p:first-child {
  margin-top: 0;
}

.lp-guide-editorial-card h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
.lp-guide-editorial-card h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.lp-guide-editorial-card h3 { font-size: clamp(1.45rem, 2.8vw, 2.1rem); }
.lp-guide-editorial-card h4 { font-family: var(--sans); font-size: 1.1rem; letter-spacing: 0; }

.lp-guide-editorial-card p,
.lp-guide-editorial-card li {
  color: rgba(0, 58, 102, 0.72);
  font-size: 1.02rem;
  line-height: 1.86;
}

.lp-guide-editorial-card p + p,
.lp-guide-editorial-card ul + p,
.lp-guide-editorial-card ol + p {
  margin-top: 1rem;
}

.lp-guide-editorial-card ul,
.lp-guide-editorial-card ol {
  padding-left: 1.25rem;
  margin: 1rem 0;
}

.lp-guide-editorial-card a {
  color: var(--teal);
  font-weight: 800;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.lp-guide-editorial-card img {
  max-width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0, 50, 90, 0.1);
}

.lp-guide-editorial-card .wp-block-button__link,
.lp-guide-editorial-card input[type='submit'],
.lp-guide-editorial-card button[type='submit'],
.lp-guide-editorial-card .button,
.lp-guide-editorial-card .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.86rem 1.35rem;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream) !important;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: none;
}

.lp-guide-editorial-card input,
.lp-guide-editorial-card textarea,
.lp-guide-editorial-card select {
  width: 100%;
  max-width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(0, 70, 111, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font: inherit;
}

.lp-guide-editorial-card label {
  color: var(--ink);
  font-weight: 800;
}

.lp-guide-editorial-card table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
}

.lp-guide-editorial-card th,
.lp-guide-editorial-card td {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(0, 70, 111, 0.1);
  text-align: left;
}

.lp-guide-editorial-card th {
  background: rgba(204, 238, 255, 0.45);
  color: var(--ink);
}

.lp-guide-editorial-card .sharedaddy,
.lp-guide-editorial-card .addtoany_share_save_container,
.lp-guide-editorial-card .heateor_sss_sharing_container,
.lp-guide-editorial-card .ssba,
.lp-guide-editorial-card .et_social_inline,
.lp-guide-editorial-card .post-share,
.lp-guide-editorial-card .share-this,
.lp-guide-editorial-card .sharedaddy + p {
  display: none !important;
}

.lp-guide-aside-card {
  position: sticky;
  top: 7rem;
}

.lp-guide-contact-card {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-radius: var(--lp-radius-lg);
  border: 1px solid rgba(0, 70, 111, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--lp-shadow);
  backdrop-filter: blur(18px);
}

.lp-guide-contact-card h3 {
  margin: 0 0 0.7rem;
  font-family: var(--serif);
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.lp-guide-contact-card > p {
  color: rgba(0, 58, 102, 0.62);
  line-height: 1.75;
}

.lp-guide-contact-card a {
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
}

.lp-guide-process-section {
  padding: clamp(5rem, 9vw, 8rem) 4rem;
}

.lp-guide-process-section h2 {
  max-width: 860px;
  margin: 1rem 0 3rem;
  color: var(--ink);
  font-size: clamp(2.5rem, 5vw, 5.1rem);
}

.lp-guide-process-grid {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.lp-guide-next-section {
  position: relative;
  overflow: hidden;
}

.lp-guide-next-section .container {
  position: relative;
  z-index: 1;
}

.lp-guide-next-section h2 {
  max-width: 850px;
  margin: 1rem auto;
  color: var(--cream);
  text-align: center;
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.lp-guide-next-section .section-label {
  justify-content: center;
  color: var(--teal-mid);
}

.lp-guide-next-section .section-label-line {
  background: var(--teal-mid);
}

.finder-intro {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  color: rgba(240, 248, 255, 0.66);
  text-align: center;
  line-height: 1.75;
}

.lp-guide-next-grid {
  max-width: 920px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lp-guide-next-grid .finder-option {
  min-height: 150px;
  text-decoration: none;
}

/* Keep global public details consistent across header, footer, and page cards. */
.nav-phone,
.mobile-drawer-phone a,
.lp-site-footer a[href^='tel'],
.lp-guide-contact-card a[href^='tel'] {
  white-space: nowrap;
}

/* Protect the new design from old builder/plugin leftovers. */
.lp-guide-page .entry-title,
.lp-guide-page .page-title,
.lp-guide-page .post-navigation,
.lp-guide-page .comments-area,
.lp-guide-page .sidebar,
.lp-guide-page #secondary {
  display: none !important;
}

@media (max-width: 1050px) {
  .lp-guide-hero-inner,
  .lp-guide-story-grid {
    grid-template-columns: 1fr;
  }

  .lp-guide-aside-card {
    position: relative;
    top: auto;
  }

  .lp-guide-next-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .lp-guide-hero,
  .lp-guide-service-directory,
  .lp-guide-content-section,
  .lp-guide-process-section,
  .finder-section {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .lp-guide-hero {
    min-height: auto;
    padding-top: 7.5rem;
  }

  .lp-guide-visual-image {
    height: 220px;
  }

  .lp-guide-card-grid,
  .lp-guide-light-service-grid {
    grid-template-columns: 1fr;
  }

  .lp-guide-light-card,
  .lp-guide-contact-card,
  .lp-guide-editorial-card {
    border-radius: 24px;
  }
}

/* ─────────────────────────────────────────────────────────────
   V5 DESIGN-TOKEN + COMPONENT CONSISTENCY LOCK
   Source of truth: lp-v4_4.html :root and homepage component rhythm.
   This section intentionally overrides later WordPress/plugin/browser drift.
───────────────────────────────────────────────────────────── */
:root {
  --cream: #f0f8ff;
  --cream-dark: #e0f5fd;
  --ink: #003a66;
  --teal: #006599;
  --teal-light: #cceeff;
  --teal-mid: #02aaf1;
  --sand: #0077aa;
  --sand-light: #e0f5fd;
  --warm: #004f80;
  --white: #f8fdff;
  --hero-grid: rgba(0, 50, 150, 0.05);
  --hero-surface: rgba(255, 255, 255, 0.72);
  --hero-surface-border: rgba(255, 255, 255, 0.96);
  --hero-shadow: 0 8px 32px rgba(0, 30, 80, 0.08);

  --navy: var(--ink);
  --serif: 'Playfair Display', serif;
  --sans: 'DM Sans', sans-serif;
  --lp-radius-xl: 34px;
  --lp-radius-lg: 28px;
  --lp-radius-md: 24px;
  --lp-container: 1180px;
  --lp-section-x: clamp(1.25rem, 4vw, 4rem);
  --lp-section-y: clamp(5rem, 9vw, 8rem);
  --lp-glass: var(--hero-surface);
  --lp-glass-strong: rgba(255, 255, 255, 0.88);
  --lp-border: rgba(0, 70, 111, 0.1);
  --lp-border-strong: rgba(255, 255, 255, 0.96);
  --lp-shadow: 0 24px 80px rgba(0, 50, 90, 0.1);
  --lp-shadow-deep: 0 30px 90px rgba(0, 48, 84, 0.18);
}

body,
.lp-page-main,
.lp-guide-main {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
}

/* Button system: one source for every CTA-like element. */
.btn,
.lp-btn,
.nav-cta,
.btn-primary-hero,
.finder-btn-primary,
.form-submit,
.wp-block-button__link,
.lp-guide-editorial-card input[type='submit'],
.lp-guide-editorial-card button[type='submit'],
.nf-form-cont input[type='button'],
.nf-form-cont input[type='submit'],
.nf-form-cont button[type='submit'] {
  appearance: none;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.86rem 1.55rem !important;
  border-radius: 100px !important;
  border: 1px solid var(--ink);
  font-family: var(--sans) !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: 0.01em;
  text-decoration: none !important;
  box-shadow: none;
  cursor: pointer;
  transition: transform 0.28s cubic-bezier(0.23, 1, 0.32, 1), background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

.btn-primary-hero,
.finder-btn-primary,
.form-submit,
.wp-block-button__link,
.lp-guide-editorial-card input[type='submit'],
.lp-guide-editorial-card button[type='submit'],
.nf-form-cont input[type='button'],
.nf-form-cont input[type='submit'],
.nf-form-cont button[type='submit'] {
  background: var(--ink) !important;
  color: var(--cream) !important;
  border-color: var(--ink) !important;
}

.btn-primary-hero:hover,
.finder-btn-primary:hover,
.form-submit:hover,
.wp-block-button__link:hover,
.lp-guide-editorial-card input[type='submit']:hover,
.lp-guide-editorial-card button[type='submit']:hover,
.nf-form-cont input[type='button']:hover,
.nf-form-cont input[type='submit']:hover,
.nf-form-cont button[type='submit']:hover {
  transform: translateY(-2px);
  background: var(--teal) !important;
  border-color: var(--teal) !important;
  color: var(--cream) !important;
}

.btn-ghost,
.lp-link-on-dark,
.finder-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 0;
  border: 0;
  border-bottom: 1px solid rgba(0, 58, 102, 0.25);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none !important;
  transition: color 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}

.btn-ghost:hover,
.lp-link-on-dark:hover,
.finder-btn-ghost:hover {
  color: var(--teal-mid);
  border-color: var(--teal-mid);
  transform: translateY(-1px);
}

/* Dark CTA must not inherit browser-default blue links. */
.lp-cta-band {
  width: min(var(--lp-container), calc(100% - 2rem));
  margin: clamp(4rem, 7vw, 6rem) auto clamp(4rem, 8vw, 6rem) !important;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.6rem, 5vw, 4.5rem) !important;
  border-radius: var(--lp-radius-xl);
  background:
    radial-gradient(circle at 84% 16%, rgba(2, 170, 241, 0.18), transparent 28rem),
    linear-gradient(135deg, var(--ink), #002a4a);
  color: var(--cream) !important;
  box-shadow: var(--lp-shadow-deep);
  overflow: hidden;
}

.lp-cta-band .lp-card-kicker,
.lp-cta-band .section-label {
  color: var(--teal-mid) !important;
}

.lp-cta-band h2 {
  display: block !important;
  max-width: 760px;
  margin: 0 0 1rem !important;
  color: var(--cream) !important;
  font-family: var(--serif) !important;
  font-size: clamp(2.7rem, 5vw, 5rem) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.055em !important;
}

.lp-cta-band p {
  max-width: 680px;
  color: rgba(240, 248, 255, 0.74) !important;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.8;
}

.lp-cta-band-actions {
  min-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.lp-cta-band a {
  text-decoration: none !important;
}

.lp-cta-band .btn,
.lp-cta-band .btn-dark,
.lp-cta-band .lp-btn-on-dark {
  background: var(--cream) !important;
  color: var(--ink) !important;
  border-color: rgba(255, 255, 255, 0.92) !important;
}

.lp-cta-band .btn:hover,
.lp-cta-band .btn-dark:hover,
.lp-cta-band .lp-btn-on-dark:hover {
  background: var(--teal-mid) !important;
  color: var(--ink) !important;
  border-color: var(--teal-mid) !important;
  transform: translateY(-2px);
}

.lp-cta-band .btn-ghost,
.lp-cta-band .lp-link-on-dark {
  color: var(--cream) !important;
  border-color: rgba(240, 248, 255, 0.32) !important;
}

/* Footer consistency: same editorial-dark family, no default blue links. */
.lp-site-footer {
  padding: clamp(4rem, 7vw, 6rem) max(1.25rem, calc((100vw - var(--lp-container)) / 2)) 2rem !important;
  background:
    radial-gradient(circle at top left, rgba(2, 170, 241, 0.12), transparent 26rem),
    linear-gradient(180deg, #002a4a 0%, #021d31 100%) !important;
  color: var(--cream) !important;
}

.lp-site-footer .nav-logo,
.lp-site-footer h4 {
  color: var(--cream) !important;
  font-family: var(--serif) !important;
  letter-spacing: -0.03em;
}

.lp-site-footer p,
.lp-site-footer li,
.lp-footer-small,
.lp-footer-contact-stack span {
  color: rgba(240, 248, 255, 0.72) !important;
}

.lp-site-footer a,
.lp-footer-bottom a {
  color: rgba(240, 248, 255, 0.86) !important;
  text-decoration: none !important;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.lp-site-footer a:hover,
.lp-footer-bottom a:hover {
  color: var(--teal-mid) !important;
  border-color: rgba(2, 170, 241, 0.45);
}

.lp-footer-grid {
  align-items: start;
}

.lp-footer-contact-stack {
  line-height: 1.85 !important;
}

/* Inner pages must use homepage spacing rhythm, not a loose legacy content drop. */
.lp-guide-hero {
  background:
    radial-gradient(circle at top right, rgba(2, 170, 241, 0.12), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #f7fbff 58%, #ffffff 100%) !important;
}

.lp-guide-hero h1,
.lp-guide-page h1,
.lp-guide-page h2,
.lp-guide-page h3 {
  font-family: var(--serif) !important;
  color: var(--ink);
}

.lp-guide-content-section {
  padding: clamp(4.5rem, 7vw, 6.5rem) var(--lp-section-x) clamp(4.5rem, 7vw, 6rem) !important;
}

.lp-guide-story-grid {
  max-width: var(--lp-container);
  margin: 0 auto;
  gap: clamp(1.5rem, 4vw, 3rem) !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.lp-guide-editorial-card,
.lp-guide-contact-card,
.lp-guide-light-card,
.service-card,
.process-step,
.finder-option {
  border-radius: var(--lp-radius-md) !important;
}

.lp-guide-editorial-card {
  margin-top: 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at top right, rgba(204, 238, 255, 0.7), transparent 24rem) !important;
  border-color: var(--lp-border) !important;
  box-shadow: var(--lp-shadow) !important;
}

.lp-guide-editorial-card a:not(.btn):not(.wp-block-button__link),
.lp-guide-contact-card a:not(.btn),
.story-point-text a:not(.btn) {
  color: var(--teal) !important;
  font-weight: 700;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(0, 101, 153, 0.24);
}

.lp-guide-editorial-card a:not(.btn):not(.wp-block-button__link):hover,
.lp-guide-contact-card a:not(.btn):hover,
.story-point-text a:not(.btn):hover {
  color: var(--teal-mid) !important;
  border-color: var(--teal-mid);
}

/* Service cards and next-step cards stay in the homepage card family. */
.lp-guide-light-card,
.finder-option {
  color: var(--ink) !important;
  text-decoration: none !important;
}

.lp-guide-light-card strong,
.finder-option-title {
  color: var(--ink) !important;
  font-family: var(--serif);
}

.finder-section.lp-guide-next-section {
  padding: clamp(5rem, 9vw, 8rem) var(--lp-section-x) !important;
}

.lp-guide-next-section .finder-option {
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--cream) !important;
  border-color: rgba(255, 255, 255, 0.13) !important;
}

.lp-guide-next-section .finder-option-title {
  color: var(--cream) !important;
}

.lp-guide-next-section .finder-option-desc {
  color: rgba(240, 248, 255, 0.66) !important;
}

/* Prevent legacy WP blue links/buttons from escaping in common plugin wrappers. */
.entry-content a,
.wp-block-post-content a,
.nf-form-cont a,
.wpforms-container a {
  color: var(--teal) !important;
}

.entry-content .wp-block-button__link,
.wp-block-post-content .wp-block-button__link,
.nf-form-cont input[type='button'],
.nf-form-cont input[type='submit'] {
  color: var(--cream) !important;
}

@media (max-width: 900px) {
  .lp-cta-band {
    grid-template-columns: 1fr;
  }
  .lp-cta-band-actions {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 760px) {
  .lp-cta-band {
    width: min(100% - 1.5rem, var(--lp-container));
    border-radius: 26px;
  }
  .lp-cta-band h2 {
    font-size: clamp(2.2rem, 11vw, 3.5rem) !important;
  }
  .lp-footer-grid {
    gap: 2rem;
  }
}

/* ─────────────────────────────────────────────────────────────
   V6 CONSISTENCY LOCK
   Homepage lp-v4_4 is the visual source of truth. This lock forces
   every public page to reuse the same typography, color, spacing,
   button, CTA, footer, and card language.
───────────────────────────────────────────────────────────── */
:root {
  --cream: #f0f8ff;
  --cream-dark: #e0f5fd;
  --ink: #003a66;
  --teal: #006599;
  --teal-light: #cceeff;
  --teal-mid: #02aaf1;
  --sand: #0077aa;
  --sand-light: #e0f5fd;
  --warm: #004f80;
  --white: #f8fdff;
  --hero-grid: rgba(0, 50, 150, 0.05);
  --hero-surface: rgba(255, 255, 255, 0.72);
  --hero-surface-border: rgba(255, 255, 255, 0.96);
  --hero-shadow: 0 8px 32px rgba(0, 30, 80, 0.08);
  --serif: 'Playfair Display', serif;
  --sans: 'DM Sans', sans-serif;
  --lp-container: 1180px;
  --lp-radius-xl: 34px;
  --lp-radius-lg: 28px;
  --lp-radius-md: 24px;
  --lp-shadow-soft: 0 20px 70px rgba(0, 50, 90, 0.11);
  --lp-shadow-deep: 0 30px 90px rgba(0, 48, 84, 0.18);
}

html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--ink); font-family: var(--sans); }
body, button, input, textarea, select { font-family: var(--sans); }

/* Navigation keeps the same button, glass, and dropdown language on every page. */
.lp-site-header { background: rgba(248,253,255,0.72); border-bottom: 1px solid rgba(0,58,102,0.08); }
.lp-primary-nav { list-style: none; }
.lp-nav-item { position: relative; }
.lp-nav-item.has-menu > a::after { content: '⌄'; margin-left: 0.25rem; font-size: 0.76rem; color: var(--teal); }
.lp-dropdown {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translate(-50%, 10px);
  width: 280px;
  padding: 0.75rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,58,102,0.1);
  box-shadow: 0 24px 60px rgba(0,40,80,0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
.lp-dropdown a {
  display: block;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  color: rgba(0,58,102,0.72);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
}
.lp-dropdown a:hover { background: var(--cream-dark); color: var(--ink); }
.lp-nav-item.has-menu:hover .lp-dropdown,
.lp-nav-item.has-menu:focus-within .lp-dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.nav-phone { display: inline-flex; align-items: center; gap: 0.35rem; color: var(--teal); font-size: 0.88rem; text-decoration: none; font-weight: 600; }
.lp-nav-actions { display: flex; align-items: center; gap: 1rem; }
.mobile-drawer-phone, .mobile-drawer-login { margin-top: 1.2rem; display: flex; flex-direction: column; gap: 0.85rem; }
.mobile-drawer-phone a, .mobile-drawer-login a { font-size: 0.9rem; color: var(--teal); }

/* One canonical button system. */
.btn,
.lp-btn,
.nav-cta,
.btn-primary-hero,
.finder-btn-primary,
.wp-block-button__link,
input[type='submit'],
button[type='submit'],
.nf-form-cont input[type='button'],
.nf-form-cont input[type='submit'] {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 0.5rem;
  padding: 0.9rem 1.65rem !important;
  border-radius: 999px !important;
  border: 1px solid var(--ink) !important;
  background: var(--ink) !important;
  color: var(--cream) !important;
  font-family: var(--sans) !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  box-shadow: none !important;
  cursor: pointer;
  transition: transform 0.28s cubic-bezier(0.23, 1, 0.32, 1), background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}
.nav-cta { background: transparent !important; color: var(--ink) !important; }
.btn:hover,
.lp-btn:hover,
.nav-cta:hover,
.btn-primary-hero:hover,
.finder-btn-primary:hover,
.wp-block-button__link:hover,
input[type='submit']:hover,
button[type='submit']:hover,
.nf-form-cont input[type='button']:hover,
.nf-form-cont input[type='submit']:hover {
  transform: translateY(-2px);
  background: var(--teal) !important;
  color: var(--cream) !important;
  border-color: var(--teal) !important;
}
.btn-ghost,
.finder-btn-ghost,
.lp-v6-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink) !important;
  border-bottom: 1px solid rgba(0,58,102,0.25);
  text-decoration: none !important;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.9rem 0;
}
.btn-ghost:hover,
.finder-btn-ghost:hover,
.lp-v6-text-link:hover { color: var(--teal-mid) !important; border-color: var(--teal-mid); }

/* Inner pages use the homepage hero, but with tighter height so pages do not feel padded or empty. */
.lp-v6-page-main { background: var(--cream); }
.lp-v6-hero {
  min-height: auto !important;
  padding: clamp(9rem, 14vw, 11rem) clamp(1.35rem, 5vw, 4rem) clamp(5rem, 9vw, 7rem) !important;
}
.lp-v6-hero-inner { max-width: var(--lp-container) !important; gap: clamp(2.5rem, 7vw, 6rem) !important; }
.lp-v6-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: -0.5rem 0 1.2rem;
  color: rgba(0,58,102,0.48);
  font-size: 0.78rem;
  font-weight: 600;
}
.lp-v6-breadcrumbs a { color: var(--teal); text-decoration: none; border-bottom: 1px solid rgba(0,101,153,0.22); }
.lp-v6-breadcrumbs a:hover { color: var(--teal-mid); border-color: var(--teal-mid); }
.lp-v6-hero h1 { font-size: clamp(3rem, 7vw, 6.2rem) !important; line-height: 0.96 !important; letter-spacing: -0.055em !important; max-width: 10ch; }
.lp-v6-hero-desc { color: rgba(0,58,102,0.62) !important; font-size: clamp(1rem, 1.5vw, 1.1rem) !important; max-width: 52ch !important; }
.lp-v6-visual-card { padding: clamp(1.1rem, 3vw, 1.8rem) !important; border-radius: 28px !important; }
.lp-v6-visual-image { margin: 0 0 1.25rem; border-radius: 22px; overflow: hidden; min-height: 220px; background: var(--cream-dark); }
.lp-v6-visual-image img { display: block; width: 100%; height: 100%; min-height: 220px; object-fit: cover; }
.lp-v6-card-content h3 { font-family: var(--serif); color: var(--ink); font-size: clamp(1.35rem, 2.3vw, 2rem); line-height: 1.12; letter-spacing: -0.04em; margin: 0.4rem 0 1rem; }
.lp-v6-stats { margin-top: 1rem; }

/* Dark signature section copies the homepage service-section rhythm and card language. */
.lp-v6-signature-section { padding: clamp(5rem, 9vw, 8rem) clamp(1.25rem, 4vw, 4rem) !important; }
.lp-v6-section-header { margin-bottom: clamp(2.5rem, 6vw, 4.5rem) !important; }
.lp-v6-section-header h2 { max-width: 760px; }
.lp-v6-section-header .scroll-scrub-text { max-width: 430px; }
.lp-v6-dark-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.lp-v6-dark-card-grid .service-card { min-height: 300px; }
.lp-v6-dark-card-grid .service-card h3 { max-width: 12ch; }

/* Service directory mirrors the homepage blog cards, but with service-card purpose. */
.lp-v6-service-directory { padding: clamp(5rem, 9vw, 8rem) clamp(1.25rem, 4vw, 4rem) !important; }
.lp-v6-directory-header { display: flex; justify-content: space-between; gap: 2rem; align-items: end; margin-bottom: 3rem; }
.lp-v6-directory-header h2 { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 4.5rem); line-height: 0.98; letter-spacing: -0.055em; color: var(--ink); max-width: 12ch; }
.lp-v6-service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
.lp-v6-service-card { text-decoration: none !important; color: inherit !important; }
.lp-v6-service-card .blog-card-img { height: 150px; background: linear-gradient(135deg, var(--cream-dark), rgba(255,255,255,0.82)); }
.lp-v6-service-card:nth-child(even) .blog-card-img { background: linear-gradient(135deg, rgba(204,238,255,0.72), rgba(255,255,255,0.82)); }
.lp-v6-service-card .blog-card-img-label { top: auto; bottom: 1rem; left: 1rem; }
.lp-v6-service-card .blog-card-read { color: var(--teal) !important; }

/* Editorial content area uses a two-column story block instead of a flat content drop. */
.lp-v6-content-section { padding: clamp(5rem, 8vw, 7rem) clamp(1.25rem, 4vw, 4rem) !important; background: var(--cream); }
.lp-v6-story-grid { grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr); gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.lp-v6-editorial-card {
  margin-top: 1.5rem;
  padding: clamp(1.6rem, 4vw, 3rem);
  border-radius: var(--lp-radius-lg);
  border: 1px solid rgba(0,58,102,0.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.74)),
    radial-gradient(circle at top right, rgba(204,238,255,0.7), transparent 24rem);
  box-shadow: var(--lp-shadow-soft);
  color: rgba(0,58,102,0.72);
}
.lp-v6-editorial-card h1,
.lp-v6-editorial-card h2,
.lp-v6-editorial-card h3,
.lp-v6-editorial-card h4 {
  font-family: var(--serif) !important;
  color: var(--ink) !important;
  letter-spacing: -0.04em;
  line-height: 1.08;
}
.lp-v6-editorial-card h1 { font-size: clamp(2.5rem, 5vw, 4.8rem); }
.lp-v6-editorial-card h2 { font-size: clamp(2rem, 4vw, 3.4rem); margin-top: 2.2rem; }
.lp-v6-editorial-card h3 { font-size: clamp(1.45rem, 3vw, 2.2rem); margin-top: 1.8rem; }
.lp-v6-editorial-card p,
.lp-v6-editorial-card li { font-size: 1rem; line-height: 1.78; color: rgba(0,58,102,0.68); }
.lp-v6-editorial-card p + p,
.lp-v6-editorial-card ul + p,
.lp-v6-editorial-card ol + p { margin-top: 1rem; }
.lp-v6-editorial-card ul,
.lp-v6-editorial-card ol { padding-left: 1.25rem; margin: 1rem 0; }
.lp-v6-editorial-card a:not(.wp-block-button__link) { color: var(--teal) !important; font-weight: 700; text-decoration: none !important; border-bottom: 1px solid rgba(0,101,153,0.24); }
.lp-v6-editorial-card a:not(.wp-block-button__link):hover { color: var(--teal-mid) !important; border-color: var(--teal-mid); }
.lp-v6-editorial-card img { max-width: 100%; height: auto; border-radius: 22px; box-shadow: 0 18px 40px rgba(0,40,80,0.12); }
.lp-v6-editorial-card table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 18px; margin: 1.5rem 0; }
.lp-v6-editorial-card th,
.lp-v6-editorial-card td { border: 1px solid rgba(0,58,102,0.1); padding: 0.9rem; text-align: left; }
.lp-v6-editorial-card th { background: var(--cream-dark); color: var(--ink); }
.lp-v6-editorial-card .sharedaddy,
.lp-v6-editorial-card .addtoany_share_save_container,
.lp-v6-editorial-card .heateor_sss_sharing_container,
.lp-v6-editorial-card .ssba,
.lp-v6-editorial-card .post-share,
.lp-v6-editorial-card .share-this { display: none !important; }

.lp-v6-aside { position: sticky; top: 7rem; }
.lp-v6-contact-card { width: 100%; min-height: auto !important; padding: clamp(1.4rem, 4vw, 2.2rem) !important; border-radius: var(--lp-radius-lg) !important; }
.lp-v6-contact-card h3 { font-family: var(--serif); color: var(--ink); font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.05; letter-spacing: -0.045em; margin-bottom: 0.85rem; }
.lp-v6-contact-card p { color: rgba(0,58,102,0.62); line-height: 1.72; }
.lp-v6-contact-card a { color: var(--teal) !important; text-decoration: none !important; border-bottom: 1px solid rgba(0,101,153,0.24); }
.lp-v6-contact-card a:hover { color: var(--teal-mid) !important; border-color: var(--teal-mid); }

/* Existing service-nav partial gets brought into the same glass-card system. */
.lp-service-nav-card,
.lp-sticky-card,
.lp-editorial-card,
.lp-inner-hero-card,
.lp-post-card {
  border-radius: var(--lp-radius-md) !important;
  border: 1px solid rgba(0,58,102,0.1) !important;
  background: rgba(255,255,255,0.76) !important;
  box-shadow: var(--lp-shadow-soft) !important;
}

/* Process and finder sections maintain homepage rhythm. */
.lp-v6-process-section { padding: clamp(5rem, 9vw, 8rem) clamp(1.25rem, 4vw, 4rem) !important; }
.lp-v6-process-grid { gap: 1.25rem; }
.lp-v6-next-section { padding: clamp(5rem, 9vw, 8rem) clamp(1.25rem, 4vw, 4rem) !important; }
.lp-v6-next-section h2 { font-family: var(--serif); font-size: clamp(2.8rem, 6vw, 5rem); line-height: 0.96; letter-spacing: -0.055em; color: var(--cream); max-width: 12ch; }
.lp-v6-next-section .finder-intro { max-width: 600px; color: rgba(240,248,255,0.66); line-height: 1.7; margin: 1.1rem 0 2.4rem; }
.lp-v6-next-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.lp-v6-next-grid .finder-option { text-decoration: none !important; }

/* CTA and footer use one shared component across home, pages, posts, archives, and error pages. */
.lp-global-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8rem) clamp(1.25rem, 4vw, 4rem) !important;
  background: linear-gradient(135deg, var(--ink) 0%, #002a4a 100%) !important;
}
.lp-cta-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; opacity: 0.55; pointer-events: none; }
.lp-global-cta .lp-label-on-dark { color: rgba(240,248,255,0.46) !important; }
.lp-global-cta .lp-label-on-dark .section-label-line { background: rgba(240,248,255,0.32) !important; }
.lp-global-cta p { max-width: 660px; color: rgba(240,248,255,0.7); font-size: 1rem; line-height: 1.75; margin-top: 1rem; }
.lp-global-cta a { text-decoration: none !important; }
.lp-global-cta .btn-cta { background: var(--cream) !important; color: var(--ink) !important; border: 1px solid rgba(255,255,255,0.92) !important; }
.lp-global-cta .btn-cta:hover { background: var(--teal-mid) !important; color: var(--ink) !important; border-color: var(--teal-mid) !important; }
.lp-global-cta .btn-cta-ghost { color: rgba(240,248,255,0.72) !important; border-color: rgba(240,248,255,0.25) !important; }
.lp-global-cta .btn-cta-ghost:hover { color: var(--cream) !important; border-color: var(--teal-mid) !important; }

.lp-homepage-footer {
  background:
    radial-gradient(circle at top left, rgba(2,170,241,0.12), transparent 26rem),
    linear-gradient(180deg, #002a4a 0%, #021d31 100%) !important;
  padding: clamp(4.5rem, 8vw, 6.5rem) clamp(1.25rem, 4vw, 4rem) 2.25rem !important;
  color: var(--cream);
  border-top: 1px solid rgba(240,248,255,0.06);
}
.lp-footer-inner { max-width: var(--lp-container); margin: 0 auto; }
.lp-footer-grid { display: grid; grid-template-columns: 1.45fr 1fr 1fr 1.1fr; gap: clamp(2rem, 4vw, 4rem); padding-bottom: 3rem; border-bottom: 1px solid rgba(240,248,255,0.08); }
.lp-footer-grid h4,
.lp-footer-brand .nav-logo { font-family: var(--serif) !important; color: var(--cream) !important; font-size: 1.1rem; letter-spacing: -0.03em; }
.lp-footer-brand .nav-logo { display: inline-flex; margin-bottom: 1rem; }
.lp-footer-grid p,
.lp-footer-grid li,
.lp-footer-small,
.lp-footer-address,
.lp-footer-contact-stack span { color: rgba(240,248,255,0.68) !important; font-size: 0.92rem; line-height: 1.72; }
.lp-footer-small { font-size: 0.78rem !important; color: rgba(240,248,255,0.46) !important; }
.lp-footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; padding: 0; margin: 1rem 0 0; }
.lp-footer-contact-mini { display: flex; flex-direction: column; gap: 0.35rem; margin-top: 1.2rem; }
.lp-homepage-footer a,
.lp-footer-bottom a { color: rgba(240,248,255,0.78) !important; text-decoration: none !important; border-bottom: 1px solid transparent; transition: color 0.25s ease, border-color 0.25s ease; }
.lp-homepage-footer a:hover,
.lp-footer-bottom a:hover { color: var(--teal-mid) !important; border-color: rgba(2,170,241,0.45); }
.lp-footer-contact-mini a:first-child { color: var(--teal-mid) !important; font-weight: 700; }
.lp-footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; padding-top: 2rem; color: rgba(240,248,255,0.35); font-size: 0.78rem; }
.lp-footer-bottom div { display: flex; flex-wrap: wrap; gap: 1.2rem; }

/* Blog, archive, search, and 404 older templates get harmonized without rewriting each page. */
.lp-inner-hero,
.lp-archive-hero {
  background:
    radial-gradient(circle at top right, rgba(2,170,241,0.12), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #f7fbff 58%, #ffffff 100%) !important;
  padding: clamp(9rem, 14vw, 11rem) clamp(1.35rem, 5vw, 4rem) clamp(5rem, 9vw, 7rem) !important;
}
.lp-inner-hero h1,
.lp-archive-hero h1,
.lp-blog-main h1 {
  font-family: var(--serif) !important;
  font-size: clamp(3rem, 7vw, 6rem) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.055em !important;
  color: var(--ink) !important;
}
.lp-post-grid-wrap { padding: clamp(5rem, 9vw, 8rem) clamp(1.25rem, 4vw, 4rem) !important; }
.lp-post-card h2 a,
.lp-read-more { color: var(--ink) !important; text-decoration: none !important; }
.lp-read-more { color: var(--teal) !important; border-bottom: 1px solid rgba(0,101,153,0.24); }

@media (max-width: 1020px) {
  .lp-primary-nav,
  .login-links,
  .nav-cta { display: none !important; }
  .nav-hamburger { display: flex !important; }
  .lp-v6-hero-inner,
  .lp-v6-story-grid { grid-template-columns: 1fr !important; }
  .lp-v6-aside { position: static; }
  .lp-v6-dark-card-grid,
  .lp-v6-service-grid,
  .lp-v6-next-grid,
  .lp-footer-grid { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 760px) {
  .lp-site-header { width: calc(100% - 1.5rem); top: 0.75rem; padding: 0.72rem 0.9rem; }
  .lp-v6-hero { padding-top: 7.75rem !important; }
  .lp-v6-hero h1 { font-size: clamp(2.65rem, 15vw, 4.1rem) !important; max-width: 9ch; }
  .lp-v6-dark-card-grid,
  .lp-v6-service-grid,
  .lp-v6-next-grid,
  .lp-footer-grid { grid-template-columns: 1fr !important; }
  .lp-v6-directory-header,
  .cta-inner,
  .lp-footer-bottom { align-items: flex-start; grid-template-columns: 1fr !important; flex-direction: column; }
  .cta-actions { align-items: flex-start !important; }
  .lp-v6-next-section h2,
  .lp-global-cta h2 { font-size: clamp(2.25rem, 12vw, 3.6rem) !important; }
  .lp-v6-editorial-card { padding: 1.35rem; }
}


/* v7 consistency lock: mobile keeps the phone visible, matching the service-first homepage intent. */
@media (max-width: 1020px) {
  .lp-nav-actions .nav-phone,
  .site-header .nav-phone {
    display: inline-flex !important;
    font-size: 0.76rem;
    white-space: nowrap;
  }
}
@media (max-width: 520px) {
  .site-header { padding-left: 1rem !important; padding-right: 1rem !important; }
  .site-header .nav-phone { font-size: 0.72rem; }
  .nav-logo { font-size: 1.05rem; }
}

/* v7 service body lock: real service-specific panels instead of flat placeholder content. */
.lp-v7-service-copy .lp-card-kicker,
.lp-v7-detail-panel h3 {
  color: var(--teal) !important;
}
.lp-v7-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}
.lp-v7-detail-panel {
  padding: clamp(1.1rem, 3vw, 1.45rem);
  border-radius: 22px;
  border: 1px solid rgba(0, 58, 102, 0.1);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 16px 44px rgba(0, 48, 84, 0.06);
}
.lp-v7-detail-panel h3 {
  font-family: var(--sans) !important;
  font-size: 0.78rem !important;
  text-transform: uppercase;
  letter-spacing: 0.12em !important;
  margin-top: 0 !important;
  margin-bottom: 0.9rem;
}
.lp-v7-detail-panel ul,
.lp-v7-detail-panel ol {
  margin: 0 !important;
  padding-left: 1.1rem !important;
}
.lp-v7-detail-panel li + li {
  margin-top: 0.6rem;
}
.lp-v7-service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1.8rem;
}
@media (max-width: 720px) {
  .lp-v7-detail-grid { grid-template-columns: 1fr; }
  .lp-v7-service-actions .btn-primary-hero,
  .lp-v7-service-actions .btn-ghost { width: 100%; }
}


/* ─────────────────────────────────────────────────────────────
   V7.1 BALANCED LEGIBILITY PATCH
   Goal: keep the v7 visual character, depth, and button energy while
   correcting the audit's true readability blockers. This avoids the
   heavier v8 contrast treatment that made the design feel muted/flat.
───────────────────────────────────────────────────────────── */
:root {
  --lp-readable-dark-body: rgba(240, 248, 255, 0.78);
  --lp-readable-dark-muted: rgba(240, 248, 255, 0.66);
  --lp-readable-dark-faint: rgba(240, 248, 255, 0.58);
  --lp-readable-light-body: rgba(0, 58, 102, 0.70);
  --lp-readable-light-muted: rgba(0, 58, 102, 0.60);
  --lp-readable-teal-light-bg: #005f8f;
}

/* Prevent reveal/observer effects from leaving important above-fold text invisible. */
.lp-v6-hero h1,
.lp-guide-hero h1,
.lp-inner-hero h1,
.lp-archive-hero h1,
.lp-designed-hero h1,
.page-hero__title,
.hero h1,
.hero .heading-editorial,
.hero-eyebrow,
.hero-desc,
.hero-actions {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Keep movement minimal, not dead. We preserve animation elsewhere, but never hide key copy. */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-up,
  .reveal-blur,
  .animated-divider,
  .hero-eyebrow,
  .hero-desc,
  .hero-actions,
  .hero h1,
  .heading-editorial {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* Light-page hero and body copy: still soft, but not washed out. */
.lp-v6-hero-desc,
.lp-guide-hero p,
.lp-inner-hero p,
.lp-archive-hero p,
.page-hero__desc,
.hero-desc,
.lp-v6-contact-card p,
.lp-guide-contact-card p,
.lp-v6-editorial-card p,
.lp-guide-editorial-card p {
  color: var(--lp-readable-light-body) !important;
}

.lp-v6-breadcrumbs,
.lp-v6-breadcrumbs span,
.lp-breadcrumb__current,
.breadcrumb .current-page {
  color: var(--lp-readable-light-muted) !important;
}

.lp-v6-breadcrumbs a,
.lp-breadcrumb__link,
.breadcrumb a,
.lp-link-cta,
a.link-arrow,
.cta-link--secondary {
  color: var(--lp-readable-teal-light-bg) !important;
}

/* Eyebrows and small labels must stay elegant but readable. */
.hero-eyebrow,
.section-label,
.lp-card-kicker,
.lp-eyebrow,
.card-tag,
.industry-card .category-label,
.service-card .card-category,
.lp-v7-service-copy .lp-card-kicker,
.lp-v7-detail-panel h3 {
  font-size: max(12px, 0.72rem) !important;
  font-weight: 700 !important;
  letter-spacing: 0.095em !important;
}

.hero-eyebrow,
.section-label:not(.lp-label-on-dark),
.lp-card-kicker:not(.lp-label-on-dark),
.card-tag,
.industry-card .category-label,
.service-card .card-category,
.lp-v7-detail-panel h3 {
  color: #005f8f !important;
}

/* Dark sections: fix the actual contrast problem without turning the site stark. */
.lp-v6-next-section .finder-intro,
.lp-guide-next-section .finder-option-desc,
.lp-global-cta p,
.lp-cta-band p,
.cta-section p,
.page-cta-section p,
.lp-dark-section p,
.section--dark p,
.dark-section p,
.dark-service-card p,
.process-step p,
.feature-card p,
.lp-v6-dark-card p,
.lp-v6-next-grid .finder-option-desc,
.testimonial-card p {
  color: var(--lp-readable-dark-body) !important;
}

.lp-global-cta .lp-label-on-dark,
.lp-global-cta .section-label,
.lp-cta-band .lp-card-kicker,
.lp-cta-band .section-label,
.section--dark .lp-eyebrow,
.lp-dark-section .section-label,
[class*='dark'] .lp-eyebrow,
[class*='dark'] [class*='eyebrow'] {
  color: rgba(2, 170, 241, 0.92) !important;
}

.process-step .step-number,
.lp-v6-process-card .step-number,
.dark-service-card .service-number,
.lp-card-number {
  color: rgba(2, 170, 241, 0.90) !important;
}

/* CTA area: do not change the button design, only make the surrounding copy readable. */
.lp-global-cta .btn-cta,
.lp-cta-band .btn,
.lp-cta-band .btn-dark,
.lp-cta-band .lp-btn-on-dark {
  box-shadow: 0 12px 34px rgba(2, 170, 241, 0.16) !important;
}

.lp-global-cta .btn-cta-ghost,
.lp-cta-band .btn-ghost,
.lp-cta-band .lp-link-on-dark {
  color: rgba(240, 248, 255, 0.84) !important;
  border-color: rgba(240, 248, 255, 0.34) !important;
}

/* Footer: restore readability, not brightness. */
.lp-homepage-footer,
.lp-site-footer {
  color: var(--cream) !important;
}

.lp-footer-grid p,
.lp-footer-grid li,
.lp-footer-brand p,
.lp-site-footer p,
.lp-footer-address,
.lp-footer-contact-stack span {
  color: rgba(240, 248, 255, 0.74) !important;
}

.lp-homepage-footer a,
.lp-site-footer a,
.lp-footer-bottom a {
  color: rgba(240, 248, 255, 0.82) !important;
}

.lp-footer-small,
.lp-footer-bottom,
.lp-copyright,
.site-footer .copyright-text {
  color: rgba(240, 248, 255, 0.60) !important;
  font-size: max(13px, 0.80rem) !important;
}

/* Stat labels and supporting microcopy. */
.hero-card .stat-label,
.stat-card .metric-label,
.stat-card .stat-sub,
.lp-stat .sublabel,
.blog-post .post-date,
.single-post .entry-date {
  color: rgba(0, 58, 102, 0.62) !important;
  font-size: max(13px, 0.78rem) !important;
  font-weight: 500 !important;
}

/* Blog/post readability without changing the overall visual language. */
.single-post .entry-content,
.blog-post article,
.post-body {
  max-width: 720px;
}
.single-post .entry-content p,
.blog-post article p,
.post-body p {
  color: rgba(0, 58, 102, 0.78) !important;
  line-height: 1.75;
}
.single-post .entry-content h2,
.blog-post article h2,
.post-body h2 {
  color: var(--ink) !important;
}

/* Form fields should feel integrated, not pasted in. */
input,
textarea,
select,
.nf-form-cont input,
.nf-form-cont textarea,
.nf-form-cont select {
  color: var(--ink) !important;
  background: rgba(255, 255, 255, 0.90) !important;
  border-color: rgba(0, 58, 102, 0.18) !important;
}
label,
.nf-form-cont label,
.wpforms-field-label {
  color: var(--ink) !important;
  font-weight: 700 !important;
}
::placeholder {
  color: rgba(0, 58, 102, 0.52) !important;
}

/* Mobile and zoom safeguards only, no visual flattening. */
@media (max-width: 480px) {
  .lp-v6-hero h1,
  .lp-guide-hero h1,
  .lp-inner-hero h1,
  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 4rem) !important;
    word-break: normal;
    overflow-wrap: break-word;
  }
  .btn,
  .lp-btn,
  .nav-cta,
  .btn-primary-hero,
  .finder-btn-primary,
  .btn-cta,
  .btn-cta-ghost,
  .wp-block-button__link,
  button[type='submit'],
  input[type='submit'] {
    min-height: 48px !important;
  }
  .lp-global-cta p,
  .lp-cta-band p,
  .lp-dark-section p,
  .section--dark p {
    font-size: 15px !important;
    line-height: 1.72 !important;
  }
  .lp-footer-bottom,
  .lp-footer-bottom div {
    align-items: flex-start !important;
    flex-direction: column !important;
  }
}

@media (max-width: 360px) {
  body { overflow-x: hidden; }
  .lp-site-header { padding-left: 0.75rem !important; padding-right: 0.75rem !important; }
  .nav-logo { font-size: 1rem !important; }
  .site-header .nav-phone { font-size: 0.68rem !important; }
}

@media (min-resolution: 1.5dppx) {
  p, h1, h2, h3, h4, li, td, th, a, button { overflow-wrap: break-word; }
}


/* ─────────────────────────────────────────────────────────────
   V7.2 DARK CARD LEGIBILITY SURGERY
   Fixes finder/next-step cards where dark ink text was sitting on
   dark blue glass cards. This keeps the v7 look and button energy,
   without the heavier v8 contrast treatment.
───────────────────────────────────────────────────────────── */
.finder-section .finder-option,
.lp-v6-next-section .finder-option,
.lp-guide-next-section .finder-option {
  background: rgba(255, 255, 255, 0.075) !important;
  border-color: rgba(204, 238, 255, 0.18) !important;
  color: var(--cream) !important;
  box-shadow: 0 18px 48px rgba(0, 30, 70, 0.12) !important;
}

.finder-section .finder-option:hover,
.lp-v6-next-section .finder-option:hover,
.lp-guide-next-section .finder-option:hover {
  background: rgba(2, 170, 241, 0.16) !important;
  border-color: rgba(2, 170, 241, 0.42) !important;
  transform: translateY(-2px);
}

.finder-section .finder-option-title,
.finder-section .finder-option strong,
.finder-section .finder-option h3,
.lp-v6-next-section .finder-option-title,
.lp-v6-next-section .finder-option strong,
.lp-v6-next-section .finder-option h3,
.lp-guide-next-section .finder-option-title,
.lp-guide-next-section .finder-option strong,
.lp-guide-next-section .finder-option h3 {
  color: rgba(248, 253, 255, 0.96) !important;
  font-family: var(--serif, 'Playfair Display', serif) !important;
  font-weight: 700 !important;
  text-shadow: 0 1px 18px rgba(0, 24, 50, 0.22);
}

.finder-section .finder-option-desc,
.finder-section .finder-option p,
.lp-v6-next-section .finder-option-desc,
.lp-v6-next-section .finder-option p,
.lp-guide-next-section .finder-option-desc,
.lp-guide-next-section .finder-option p {
  color: rgba(240, 248, 255, 0.76) !important;
  font-weight: 500 !important;
}

.finder-section .section-label,
.finder-section .section-label span,
.finder-section .lp-card-kicker,
.lp-v6-next-section .section-label,
.lp-guide-next-section .section-label {
  color: rgba(2, 170, 241, 0.96) !important;
}

.finder-section .section-label-line,
.lp-v6-next-section .section-label-line,
.lp-guide-next-section .section-label-line {
  background: rgba(2, 170, 241, 0.70) !important;
}

.finder-section .finder-question,
.lp-v6-next-section h2,
.lp-guide-next-section h2 {
  color: rgba(248, 253, 255, 0.98) !important;
}

.finder-section .finder-intro,
.lp-v6-next-section .finder-intro,
.lp-guide-next-section .finder-intro {
  color: rgba(240, 248, 255, 0.72) !important;
}

.finder-section .finder-dot {
  background: rgba(204, 238, 255, 0.30) !important;
}
.finder-section .finder-dot.active {
  background: var(--teal-mid) !important;
}

/* Keep the header login buttons soft but readable. */
.login-links a,
.mobile-drawer a.login-link {
  color: rgba(0, 58, 102, 0.72) !important;
  border-color: rgba(0, 58, 102, 0.16) !important;
}
.login-links a:hover,
.mobile-drawer a.login-link:hover {
  color: var(--ink) !important;
  border-color: rgba(0, 101, 153, 0.30) !important;
  background: rgba(204, 238, 255, 0.32) !important;
}

/* Dark-section inline cards should never inherit ink text. */
.lp-dark-section .finder-option-title,
.section--dark .finder-option-title,
[class*='dark'] .finder-option-title {
  color: rgba(248, 253, 255, 0.96) !important;
}
.lp-dark-section .finder-option-desc,
.section--dark .finder-option-desc,
[class*='dark'] .finder-option-desc {
  color: rgba(240, 248, 255, 0.76) !important;
}


/* ─────────────────────────────────────────────────────────────
   V7.3 NEXT-STEP / FINDER CARD LAYOUT FIX
   Magnetic buttons are inline-flex by default. Finder cards also use
   the magnetic-btn class, so titles and descriptions were being forced
   into a horizontal row. This restores the homepage card rhythm:
   title above description, readable spacing, no collapsed text.
───────────────────────────────────────────────────────────── */
.finder-section .finder-option.magnetic-btn,
.lp-v6-next-section .finder-option.magnetic-btn,
.lp-guide-next-section .finder-option.magnetic-btn,
.lp-v6-next-grid .finder-option.magnetic-btn,
.finder-options .finder-option.magnetic-btn {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  gap: 0.55rem !important;
  text-align: left !important;
  min-width: 0 !important;
}

.finder-section .finder-option-title,
.lp-v6-next-section .finder-option-title,
.lp-guide-next-section .finder-option-title,
.lp-v6-next-grid .finder-option-title,
.finder-options .finder-option-title {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  line-height: 1.12 !important;
  white-space: normal !important;
}

.finder-section .finder-option-desc,
.lp-v6-next-section .finder-option-desc,
.lp-guide-next-section .finder-option-desc,
.lp-v6-next-grid .finder-option-desc,
.finder-options .finder-option-desc {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  line-height: 1.55 !important;
  white-space: normal !important;
}

.lp-v6-next-grid .finder-option {
  min-height: 118px !important;
  padding: clamp(1.15rem, 2vw, 1.55rem) !important;
}

@media (max-width: 900px) {
  .lp-v6-next-grid,
  .lp-guide-next-grid,
  .finder-options {
    grid-template-columns: 1fr !important;
  }

  .lp-v6-next-grid .finder-option,
  .lp-guide-next-grid .finder-option,
  .finder-options .finder-option {
    min-height: auto !important;
  }
}


/* ─────────────────────────────────────────────────────────────
   V7.4 PERFORMANCE + LEGIBILITY PATCH
   Keeps v7.3 design language, but removes default custom-cursor
   mouse tracking and strengthens only the muted text Lorene flagged.
───────────────────────────────────────────────────────────── */
body.lp-native-cursor,
body.lp-native-cursor * {
  cursor: auto;
}
body.lp-native-cursor a,
body.lp-native-cursor button,
body.lp-native-cursor [role='button'],
body.lp-native-cursor .finder-option,
body.lp-native-cursor .magnetic-btn,
body.lp-native-cursor .service-card,
body.lp-native-cursor .industry-card-photo {
  cursor: pointer;
}
body.lp-native-cursor #cursor,
body.lp-native-cursor #cursor-ring {
  display: none !important;
}
body.lp-custom-cursor-enabled {
  cursor: none;
}
body.lp-custom-cursor-enabled #cursor,
body.lp-custom-cursor-enabled #cursor-ring {
  display: block;
}

/* How It Works descriptions: readable without muting the design. */
.lp-v6-process-section .process-step p,
.process-section .process-step p,
.lp-v6-process-grid .process-step p {
  color: rgba(240, 248, 255, 0.82) !important;
  font-weight: 500 !important;
}
.lp-v6-process-section .process-step h3,
.process-section .process-step h3,
.lp-v6-process-grid .process-step h3 {
  color: rgba(248, 253, 255, 0.98) !important;
}

/* Finder/result muted text and Start Over button. */
.finder-section .finder-option-desc,
.finder-section .finder-result p,
.finder-section .finder-btn-ghost,
.lp-v6-next-section .finder-intro,
.lp-v6-next-section .finder-option-desc {
  color: rgba(240, 248, 255, 0.80) !important;
  font-weight: 500 !important;
}
.finder-section .finder-btn-ghost {
  border-bottom-color: rgba(240, 248, 255, 0.42) !important;
}
.finder-section .finder-btn-ghost:hover {
  color: rgba(248, 253, 255, 0.98) !important;
}

/* Translation page cards should feel like actionable translation details, not interpreter reroutes. */
.lp-v6-service-directory .lp-v6-service-card .blog-card-body p {
  color: rgba(0, 58, 102, 0.72) !important;
  font-weight: 500;
}

@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  #cursor,
  #cursor-ring {
    display: none !important;
  }
  body,
  body * {
    cursor: auto !important;
  }
}


/* ─────────────────────────────────────────────────────────────
   V7.5 HOW IT WORKS LIGHT-CARD FIX
   The process cards sit on a light glass surface, so they must use
   dark ink text. Earlier dark-section rules were too broad and made
   these descriptions nearly invisible.
───────────────────────────────────────────────────────────── */
.lp-v6-process-section {
  background: var(--cream-dark) !important;
}
.lp-v6-process-section .process-step,
.process-section.lp-v6-process-section .process-step,
.lp-v6-process-grid .process-step {
  background: rgba(255, 255, 255, 0.94) !important;
  border-color: rgba(0, 90, 156, 0.12) !important;
}
.lp-v6-process-section .process-step h3,
.process-section.lp-v6-process-section .process-step h3,
.lp-v6-process-grid .process-step h3 {
  color: var(--ink) !important;
  opacity: 1 !important;
  text-shadow: none !important;
}
.lp-v6-process-section .process-step p,
.process-section.lp-v6-process-section .process-step p,
.lp-v6-process-grid .process-step p {
  color: rgba(0, 58, 102, 0.72) !important;
  opacity: 1 !important;
  font-weight: 500 !important;
  text-shadow: none !important;
}
.lp-v6-process-section .process-step-num,
.process-section.lp-v6-process-section .process-step-num,
.lp-v6-process-grid .process-step-num {
  color: var(--teal) !important;
  border-color: rgba(0, 101, 153, 0.70) !important;
  background: var(--white) !important;
}
.lp-v6-process-section .process-step:hover .process-step-num,
.process-section.lp-v6-process-section .process-step:hover .process-step-num,
.lp-v6-process-grid .process-step:hover .process-step-num {
  background: var(--teal) !important;
  color: var(--white) !important;
}


/* ─────────────────────────────────────────────────────────────
   V7.6 PROCESS CONTRAST FINAL OVERRIDE
   Front page How It Works uses .process-section without .lp-v6-process-section.
   Previous patches missed that exact selector, leaving white text on white cards.
   This override is intentionally placed last and targets the light process cards only.
───────────────────────────────────────────────────────────── */
.process-section:not(.lp-dark-section):not(.section--dark):not(.dark-section) {
  background: var(--cream-dark) !important;
}

.process-section:not(.lp-dark-section):not(.section--dark):not(.dark-section) .process-step {
  background: rgba(255, 255, 255, 0.95) !important;
  border-color: rgba(0, 90, 156, 0.14) !important;
  color: var(--ink) !important;
}

.process-section:not(.lp-dark-section):not(.section--dark):not(.dark-section) .process-step h3,
.process-section:not(.lp-dark-section):not(.section--dark):not(.dark-section) .process-step .process-title,
.process-section:not(.lp-dark-section):not(.section--dark):not(.dark-section) .process-step strong {
  color: #003a66 !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

.process-section:not(.lp-dark-section):not(.section--dark):not(.dark-section) .process-step p,
.process-section:not(.lp-dark-section):not(.section--dark):not(.dark-section) .process-step .process-description,
.process-section:not(.lp-dark-section):not(.section--dark):not(.dark-section) .process-step span:not(.process-step-num) {
  color: rgba(0, 58, 102, 0.76) !important;
  opacity: 1 !important;
  font-weight: 500 !important;
  text-shadow: none !important;
}

.process-section:not(.lp-dark-section):not(.section--dark):not(.dark-section) .process-step-num {
  color: #006599 !important;
  background: #f8fdff !important;
  border-color: rgba(0, 101, 153, 0.75) !important;
  opacity: 1 !important;
}

.process-section:not(.lp-dark-section):not(.section--dark):not(.dark-section) .process-step:hover .process-step-num {
  color: #f8fdff !important;
  background: #006599 !important;
}

/* ─────────────────────────────────────────────────────────────
   V7.8 CONTACT ORDER + SERVICE CTA READABILITY
   Email is the first quick action, call is secondary, portals last.
   Also hard-locks primary CTA label contrast on light service cards.
───────────────────────────────────────────────────────────── */
.lp-v7-service-actions .btn-primary-hero,
.lp-v7-service-actions .btn-primary-hero:visited,
.lp-v6-content-column .btn-primary-hero,
.lp-v6-content-column .btn-primary-hero:visited {
  color: #f8fdff !important;
  background: #003a66 !important;
  border-color: #003a66 !important;
}

.lp-v7-service-actions .btn-primary-hero span,
.lp-v7-service-actions .btn-primary-hero .arrow,
.lp-v6-content-column .btn-primary-hero span,
.lp-v6-content-column .btn-primary-hero .arrow {
  color: #f8fdff !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

.lp-v7-service-actions .btn-primary-hero:hover,
.lp-v6-content-column .btn-primary-hero:hover {
  background: #006599 !important;
  border-color: #006599 !important;
  color: #f8fdff !important;
}

.lp-v6-contact-card .story-points {
  display: grid;
  gap: clamp(1.15rem, 2vw, 1.55rem);
}

.lp-v6-contact-card .story-point-text a {
  color: #006599 !important;
  font-weight: 700 !important;
}


/* ─────────────────────────────────────────────────────────────
   V7.9 QUOTE ROUTER + RESEARCH COPY LOCK
   Quote requests split into Interpretation, Translation, and Other.
   Email remains first, call second, portals third.
───────────────────────────────────────────────────────────── */
.lp-v7-quote-router {
  display: grid;
  gap: clamp(1.1rem, 2vw, 1.5rem);
}

.lp-v7-quote-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.2rem);
  margin-top: 0.3rem;
}

.lp-v7-quote-route-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 230px;
  padding: clamp(1.05rem, 2vw, 1.35rem);
  border-radius: 24px;
  background: rgba(248, 253, 255, 0.94);
  border: 1px solid rgba(0, 101, 153, 0.18);
  box-shadow: 0 14px 35px rgba(0, 58, 102, 0.08);
  color: #003a66;
  text-decoration: none;
}

.lp-v7-quote-route-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 101, 153, 0.42);
  box-shadow: 0 18px 42px rgba(0, 58, 102, 0.12);
}

.lp-v7-quote-route-label {
  width: fit-content;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(0, 101, 153, 0.10);
  color: #006599;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-v7-quote-route-card h3 {
  margin: 0;
  color: #003a66;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.lp-v7-quote-route-card p {
  margin: 0;
  color: rgba(0, 58, 102, 0.74);
  font-size: 0.94rem;
  line-height: 1.65;
  font-weight: 500;
}

.lp-v7-quote-route-card strong {
  margin-top: auto;
  color: #006599;
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.lp-v7-quote-route-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem 0.9rem;
  padding-top: 0.25rem;
  color: rgba(0, 58, 102, 0.76);
  font-weight: 600;
}

.lp-v7-quote-route-footer a {
  color: #006599;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 101, 153, 0.28);
}

.lp-v7-quote-editor-content {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 101, 153, 0.12);
}

@media (max-width: 920px) {
  .lp-v7-quote-route-grid {
    grid-template-columns: 1fr;
  }
  .lp-v7-quote-route-card {
    min-height: auto;
  }
}

/* v7.12 Searchable language dropdown
   Uses a light custom combobox instead of loading a plugin.
   Keeps the quote form fast while giving users a searchable language picker. */
.lp-language-field {
  position: relative;
}

.lp-language-combobox {
  position: relative;
}

.lp-language-combobox input[role="combobox"] {
  padding-right: 2.4rem;
}

.lp-language-combobox::after {
  content: "⌄";
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(0, 58, 102, 0.55);
  pointer-events: none;
  font-size: 1.05rem;
}

.lp-language-results {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.35rem);
  z-index: 9999;
  display: none;
  max-height: 240px;
  overflow-y: auto;
  background: rgba(248, 253, 255, 0.98);
  border: 1px solid rgba(0, 101, 153, 0.2);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(0, 30, 80, 0.16);
  padding: 0.35rem;
  backdrop-filter: blur(12px);
}

.lp-language-results.open {
  display: block;
}

.lp-language-option {
  width: 100%;
  border: 0;
  background: transparent;
  color: #003a66;
  text-align: left;
  padding: 0.68rem 0.85rem;
  border-radius: 13px;
  font: inherit;
  font-size: 0.9rem;
  line-height: 1.25;
  cursor: pointer;
}

.lp-language-option:hover,
.lp-language-option.is-active,
.lp-language-option:focus-visible {
  background: rgba(0, 170, 241, 0.14);
  color: #003a66;
  outline: none;
}

.lp-language-option mark {
  background: rgba(2, 170, 241, 0.18);
  color: inherit;
  border-radius: 5px;
  padding: 0 0.08rem;
}

.lp-language-helper {
  display: block;
  margin-top: 0.45rem;
  color: rgba(0, 58, 102, 0.68);
  font-size: 0.76rem;
  line-height: 1.4;
}

.lp-language-empty {
  padding: 0.75rem 0.85rem;
  color: rgba(0, 58, 102, 0.72);
  font-size: 0.84rem;
  line-height: 1.45;
}

@media (max-width: 640px) {
  .lp-language-results {
    max-height: 210px;
  }
}


/* v7.14 Image placement pass
   Page-specific hero visuals and homepage scenario images. */
.lp-v6-visual-image {
  width: 100%;
  height: clamp(210px, 24vw, 290px);
  margin: 0 0 1.15rem;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,0.44);
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: 0 22px 55px rgba(0, 58, 102, 0.13);
}
.lp-v6-visual-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.lp-v714-scenario-image {
  width: 100%;
  height: clamp(170px, 18vw, 220px);
  margin: 0 0 1.25rem;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(245, 240, 232, 0.13);
  background: rgba(245,240,232,0.08);
}
.lp-v714-scenario-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(0.98);
}
.testimonial-card .lp-v714-scenario-marker {
  background: rgba(2,170,241,0.14);
  color: rgba(245,240,232,0.88);
  border: 1px solid rgba(245,240,232,0.16);
}
@media (max-width: 720px) {
  .lp-v6-visual-image { height: 230px; border-radius: 24px; }
  .lp-v714-scenario-image { height: 210px; border-radius: 24px; }
}

/* --------------------------------------------------------------------------
   v7.16 Visual Diversity Enhancement
   Adds contextual interpreter imagery without changing the approved design system.
-------------------------------------------------------------------------- */
.lp-v716-situations-section,
.lp-v716-service-visual-section {
  background: linear-gradient(180deg, rgba(224,245,253,0.48), rgba(248,253,255,0.92));
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.lp-v716-situations-section::before,
.lp-v716-service-visual-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0,58,102,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,58,102,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, black 16%, black 82%, transparent);
}

.lp-v716-situations-section > .container,
.lp-v716-service-visual-section > .container {
  position: relative;
  z-index: 1;
}

.lp-v716-situations-grid,
.lp-v716-service-visual-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

.lp-v716-service-visual-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lp-v716-situation-card,
.lp-v716-service-visual-card {
  border: 1px solid rgba(0,101,153,0.16);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 18px 46px rgba(0,58,102,0.08);
  backdrop-filter: blur(14px);
}

.lp-v716-situation-card img,
.lp-v716-service-visual-card img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center;
}

.lp-v716-service-visual-card img {
  height: 210px;
}

.lp-v716-situation-card > div,
.lp-v716-service-visual-card > div {
  padding: 1.35rem;
}

.lp-v716-situation-card span,
.lp-v716-service-visual-card span {
  display: inline-flex;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.lp-v716-situation-card h3,
.lp-v716-service-visual-card h3 {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.02;
  margin: 0 0 0.75rem;
}

.lp-v716-situation-card p,
.lp-v716-service-visual-card p {
  color: rgba(0,58,102,0.72);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 1100px) {
  .lp-v716-situations-grid,
  .lp-v716-service-visual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .lp-v716-situations-grid,
  .lp-v716-service-visual-grid {
    grid-template-columns: 1fr;
  }

  .lp-v716-situation-card img,
  .lp-v716-service-visual-card img {
    height: 220px;
  }
}
