.page-hero {
      margin-top: 70px;
      background: linear-gradient(160deg, var(--white) 0%, var(--page) 40%, var(--cream) 100%);
      padding: 2.75rem var(--layout-pad) 3rem;
      position: relative;
      overflow: hidden;
    }

    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1200&auto=format&fit=crop') center/cover no-repeat;
      opacity: 0.08;
      pointer-events: none;
    }

    .page-hero-inner { position: relative; }

    .page-hero .brand-line {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 0.65rem;
    }

    .page-hero h1 {
      font-family: var(--font-family);
      font-size: clamp(1.85rem, 4vw, 2.5rem);
      font-weight: 700;
      color: var(--deep-mid);
      line-height: 1.15;
      margin-bottom: 0.65rem;
    }

    .page-hero .hero-lead {
      color: var(--text-muted);
      font-size: 1.02rem;
      font-weight: 400;
      line-height: 1.65;
      max-width: 560px;
    }

    .fin-main {
      padding: 3rem var(--layout-pad) 4rem;
      background: var(--white);
    }

    .fin-intro p {
      font-size: 1.08rem;
      line-height: 1.75;
      color: var(--text-dark);
      margin-bottom: 1rem;
    }

    .fin-intro p:last-child { margin-bottom: 0; }

    .fin-figure {
      margin: 2.25rem 0 2.5rem;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--border-grey);
      box-shadow: 0 12px 40px rgba(var(--shadow-rgb), 0.08);
    }

    .fin-figure img {
      width: 100%;
      height: auto;
      display: block;
      vertical-align: middle;
    }

    .fin-figure figcaption {
      padding: 0.65rem 1rem;
      font-size: 0.8rem;
      color: var(--text-muted);
      background: var(--surface);
    }

    .fin-section h2 {
      font-family: var(--font-family);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--deep-mid);
      margin-bottom: 1rem;
    }

    .fin-section p {
      font-size: 1.02rem;
      line-height: 1.8;
      color: var(--text-muted);
      margin-bottom: 1rem;
    }

    .fin-section p:last-child { margin-bottom: 0; }

    .fin-callout {
      margin-top: 2.5rem;
      padding: 1.75rem 1.5rem;
      background: var(--surface);
      border: 1px solid var(--border-grey);
      border-radius: 12px;
    }

    .fin-callout h2 {
      font-family: var(--font-family);
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--deep-mid);
      margin-bottom: 0.75rem;
    }

    .fin-callout p {
      font-size: 0.98rem;
      line-height: 1.7;
      color: var(--text-muted);
      margin-bottom: 1.25rem;
    }

    .fin-callout .fin-cta {
      display: inline-block;
      background: linear-gradient(180deg, var(--orange-mid) 0%, var(--orange) 100%);
      color: var(--white);
      padding: 0.75rem 1.5rem;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.92rem;
      border: 1px solid var(--orange-dark);
      box-shadow: 0 2px 8px rgba(var(--shadow-rgb), 0.08);
      transition: background 0.15s, transform 0.12s, box-shadow 0.15s;
    }

    .fin-callout .fin-cta:hover {
      background: linear-gradient(180deg, var(--accent) 0%, var(--orange-dark) 100%);
      transform: translateY(-1px);
      box-shadow: 0 4px 14px rgba(var(--shadow-rgb), 0.1);
    }

    .fin-disclaimer {
      margin-top: 2.5rem;
      padding: 1.25rem 1.35rem;
      background: var(--surface);
      border: 1px solid var(--border-grey);
      border-radius: 10px;
      font-size: 0.82rem;
      line-height: 1.65;
      color: var(--text-muted);
    }
