  :root {
    --navy: #0B1D3A;
    --navy-deep: #061325;
    --navy-mid: #132B4F;
    --navy-soft: #1A2E50;
    --gold: #C4973B;
    --gold-light: #D4AA52;
    --gold-deep: #A37D2C;
    --terra: #B85C38;
    --terra-light: #C97350;
    --cream: #F5F0E8;
    --cream-dark: #E8E0D0;
    --white: #FFFFFF;
    --text-light: #A0ABBE;
    --text-body: #394B5F;
    --text-muted: #6B7A8F;
    --hairline: rgba(255, 255, 255, 0.08);
    --hairline-dark: rgba(11, 29, 58, 0.10);
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    color: var(--text-body);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.15;
    color: var(--navy);
    letter-spacing: -0.01em;
  }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; height: auto; display: block; }
  .container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
  }
  /* ─────────────────────────────────────────────
     SITE HEADER — wraps nav + BSL strip as one
     fixed unit so they stay coupled at all
     scroll positions
     ───────────────────────────────────────────── */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
  }
  /* ─────────────────────────────────────────────
     NAVIGATION
     ───────────────────────────────────────────── */
  .nav {
    position: relative;
    padding: 22px 0;
    transition: padding 0.35s ease, background 0.35s ease;
    background: transparent;
  }
  .nav.scrolled {
    padding: 14px 0;
    background: rgba(11, 29, 58, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
  .nav-logo img {
    height: 34px;
    width: auto;
    transition: opacity 0.2s;
  }
  .nav-logo:hover img { opacity: 0.85; }
  .nav-links {
    display: flex;
    gap: 22px;
    list-style: none;
  }
  .nav-links a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    transition: color 0.2s;
    padding: 4px 0;
    white-space: nowrap;
  }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-links a.nav-link-tfai { color: var(--terra-light); }
  .nav-links a.nav-link-tfai:hover { color: #E08A66; }
  .nav-right {
    display: flex;
    align-items: center;
    gap: 22px;
  }
  .nav-phone {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
  .nav-phone:hover { color: var(--white); }
  .btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 13px 24px;
    border: 1px solid var(--gold);
    transition: all 0.25s;
    cursor: pointer;
    white-space: nowrap;
  }
  .btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--navy);
  }
  .btn-outline-light {
    display: inline-block;
    background: transparent;
    color: var(--white);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 13px 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.25s;
    cursor: pointer;
  }
  .btn-outline-light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.06);
  }
  .nav-mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 8px;
  }
  .nav-mobile-toggle svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
  }
  .nav-mobile-menu { display: none; }
  /* ─────────────────────────────────────────────
     HERO
     ───────────────────────────────────────────── */
  .hero {
    position: relative;
    min-height: 100vh;
    background: var(--navy-deep);
    color: var(--white);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
      radial-gradient(ellipse 70% 50% at 75% 100%, rgba(196, 151, 59, 0.18) 0%, transparent 60%),
      radial-gradient(ellipse 60% 40% at 20% 90%, rgba(196, 151, 59, 0.10) 0%, transparent 55%),
      linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  }
  /* Subtle city light dots near horizon */
  .hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 12% 88%, rgba(255, 220, 160, 0.5) 0.5px, transparent 1.5px),
      radial-gradient(circle at 18% 92%, rgba(255, 220, 160, 0.4) 0.5px, transparent 1.5px),
      radial-gradient(circle at 24% 90%, rgba(255, 220, 160, 0.6) 0.5px, transparent 1.5px),
      radial-gradient(circle at 31% 93%, rgba(255, 220, 160, 0.3) 0.5px, transparent 1.5px),
      radial-gradient(circle at 38% 89%, rgba(255, 220, 160, 0.5) 0.5px, transparent 1.5px),
      radial-gradient(circle at 46% 91%, rgba(255, 220, 160, 0.4) 0.5px, transparent 1.5px),
      radial-gradient(circle at 54% 88%, rgba(255, 220, 160, 0.6) 0.5px, transparent 1.5px),
      radial-gradient(circle at 62% 93%, rgba(255, 220, 160, 0.3) 0.5px, transparent 1.5px),
      radial-gradient(circle at 69% 90%, rgba(255, 220, 160, 0.5) 0.5px, transparent 1.5px),
      radial-gradient(circle at 77% 92%, rgba(255, 220, 160, 0.4) 0.5px, transparent 1.5px),
      radial-gradient(circle at 84% 89%, rgba(255, 220, 160, 0.6) 0.5px, transparent 1.5px),
      radial-gradient(circle at 91% 91%, rgba(255, 220, 160, 0.4) 0.5px, transparent 1.5px);
    background-size: 100% 100%;
  }
  /* Decorative skyline silhouette */
  .hero-skyline {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 14vh;
    z-index: 1;
    opacity: 0.55;
    pointer-events: none;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 90px;
  }
  .hero-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
  }
  .hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 6vw, 76px);
    font-weight: 500;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.015em;
    max-width: 900px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.1s forwards;
  }
  .hero-headline em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold-light);
  }
  .hero-sub {
    font-size: clamp(16px, 1.4vw, 19px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.78);
    max-width: 620px;
    line-height: 1.55;
    margin-bottom: 44px;
    opacity: 0;
    animation: fadeUp 1s ease 0.2s forwards;
  }
  .hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    opacity: 0;
    animation: fadeUp 1.1s ease 0.3s forwards;
  }
  .hero-link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 4px;
    transition: all 0.2s;
  }
  .hero-link:hover {
    color: var(--gold-light);
    border-bottom-color: var(--gold-light);
  }
  /* Trust strip at bottom of hero */
  .hero-trust {
    position: relative;
    z-index: 2;
    background: rgba(6, 19, 37, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid var(--hairline);
  }
  .hero-trust-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 30px;
    align-items: center;
    padding: 16px 0;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
  }
  .hero-trust-divider {
    color: rgba(255, 255, 255, 0.25);
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  /* ─────────────────────────────────────────────
     SECTION SCAFFOLDING
     ───────────────────────────────────────────── */
  section { position: relative; }
  .section-pad { padding: 120px 0; }
  .section-pad-sm { padding: 90px 0; }
  .eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
  }
  .eyebrow-light {
    color: var(--gold-light);
    border-left: 2px solid var(--gold);
    padding: 4px 0 4px 16px;
  }
  h2.section-h {
    font-size: clamp(32px, 4.2vw, 52px);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 24px;
  }
  h2.section-h em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
  }
  .section-lead {
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.65;
    color: var(--text-muted);
    max-width: 680px;
  }
  /* ─────────────────────────────────────────────
     SECTION: WHY WE'RE DIFFERENT  (Three Uniques)
     ───────────────────────────────────────────── */
  .different {
    background: var(--cream);
    color: var(--navy);
  }
  .different-header {
    max-width: 720px;
    margin-bottom: 80px;
  }
  .different-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--hairline-dark);
  }
  .different-card {
    padding: 56px 36px 56px 36px;
    border-bottom: 1px solid var(--hairline-dark);
    border-right: 1px solid var(--hairline-dark);
  }
  .different-card:nth-child(3n+1) {
    padding-left: 0;
  }
  .different-card:nth-child(3n) {
    border-right: none;
    padding-right: 0;
  }
  .different-num {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.04em;
    margin-bottom: 18px;
  }
  .different-contrast {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.4;
  }
  .different-contrast em {
    font-style: normal;
    color: var(--navy);
  }
  .different-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.2;
  }
  .different-body {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-body);
  }
  /* ─────────────────────────────────────────────
     SECTION: THE LAST SWITCH (statement + stats)
     ───────────────────────────────────────────── */
  .switch {
    background: var(--navy);
    color: var(--white);
    overflow: hidden;
    position: relative;
  }
  .switch::before {
    content: "";
    position: absolute;
    top: 0;
    right: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(196, 151, 59, 0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .switch-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .switch h2.section-h {
    color: var(--white);
    font-size: clamp(34px, 4.5vw, 58px);
  }
  .switch h2.section-h em {
    color: var(--gold-light);
  }
  .switch-lead {
    color: rgba(255, 255, 255, 0.75);
    font-size: 17px;
    line-height: 1.7;
    margin-top: 24px;
    margin-bottom: 0;
  }
  .switch-lead strong {
    color: var(--white);
    font-weight: 500;
  }
  .stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 36px;
    padding-top: 12px;
    border-top: 1px solid var(--hairline);
  }
  .stat {
    padding-top: 28px;
  }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 500;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
  }
  .stat-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
  }
  /* ─────────────────────────────────────────────
     SECTION: WHO WE SERVE
     ───────────────────────────────────────────── */
  .serve {
    background: var(--white);
    color: var(--navy);
  }
  .serve-header {
    max-width: 760px;
    margin-bottom: 72px;
  }
  .serve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--hairline-dark);
    border: 1px solid var(--hairline-dark);
  }
  .serve-card {
    background: var(--white);
    padding: 44px 36px;
    transition: background 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    color: inherit;
  }
  .serve-card:hover {
    background: var(--cream);
  }
  .serve-card-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
  }
  .serve-card h3 {
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--navy);
    line-height: 1.25;
  }
  .serve-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-body);
  }
  .serve-card-more {
    margin-top: auto;
    padding-top: 22px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--navy);
    transition: color 0.2s;
  }
  .serve-card:hover .serve-card-more {
    color: var(--gold-deep);
  }
  /* ─────────────────────────────────────────────
     SECTION: TECHFUEL
     ───────────────────────────────────────────── */
  .techfuel {
    background: var(--cream);
    color: var(--navy);
  }
  .techfuel-grid {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 80px;
    align-items: flex-start;
  }
  .techfuel-left {
    position: sticky;
    top: 120px;
  }
  .techfuel-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--navy);
    background: rgba(196, 151, 59, 0.15);
    padding: 8px 14px;
    border-left: 3px solid var(--gold);
    margin-bottom: 28px;
  }
  .techfuel-headline {
    font-size: clamp(30px, 3.6vw, 44px);
    font-weight: 500;
    margin-bottom: 28px;
    line-height: 1.18;
  }
  .techfuel-headline em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
  }
  .techfuel-body {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-body);
    margin-bottom: 18px;
  }
  .techfuel-body strong {
    color: var(--navy);
    font-weight: 600;
  }
  .techfuel-tag {
    font-size: 17px;
    color: var(--navy);
    font-weight: 500;
    margin-bottom: 36px;
  }
  .techfuel-features {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }
  .feat {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 24px;
    align-items: flex-start;
  }
  .feat-icon {
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .feat-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 1.4;
    fill: none;
  }
  .feat-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--navy);
  }
  .feat-body {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-body);
  }
  /* ─────────────────────────────────────────────
     SECTION: ABOUT
     ───────────────────────────────────────────── */
  .about {
    background: var(--white);
    color: var(--navy);
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 80px;
    align-items: center;
  }
  .about-visual {
    position: relative;
    aspect-ratio: 4/5;
    background: var(--navy);
  }
  .about-visual-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--navy);
  }
  .about-visual-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 40% at 30% 80%, rgba(196, 151, 59, 0.25) 0%, transparent 60%),
      linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  }
  .about-visual-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 56px 48px 48px;
    z-index: 1;
  }
  .about-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 26px;
    line-height: 1.4;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 400;
  }
  .about-quote em {
    color: var(--gold-light);
    font-style: italic;
  }
  .about-attribution {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
  }
  .about-badge {
    position: absolute;
    bottom: -32px;
    right: -32px;
    background: var(--gold);
    color: var(--navy);
    padding: 28px 32px;
    z-index: 2;
    max-width: 220px;
  }
  .about-badge-num {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 8px;
  }
  .about-badge-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    line-height: 1.4;
  }
  .about-content h2.section-h {
    margin-bottom: 32px;
  }
  .about-content p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-body);
    margin-bottom: 20px;
  }
  .about-content p strong {
    color: var(--navy);
    font-weight: 600;
  }
  .about-honors {
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--hairline-dark);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .honor {
    font-size: 11px;
    line-height: 1.5;
  }
  .honor-num {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 4px;
  }
  .honor-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  /* ─────────────────────────────────────────────
     SECTION: CTA
     ───────────────────────────────────────────── */
  .cta {
    background: var(--navy);
    color: var(--white);
    text-align: center;
    overflow: hidden;
    position: relative;
  }
  .cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 50% at 50% 100%, rgba(196, 151, 59, 0.15) 0%, transparent 60%),
      radial-gradient(ellipse 60% 40% at 20% 20%, rgba(196, 151, 59, 0.06) 0%, transparent 50%);
  }
  .cta-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
  }
  .cta h2 {
    font-size: clamp(34px, 4.6vw, 60px);
    color: var(--white);
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.1;
  }
  .cta h2 em {
    font-style: italic;
    color: var(--gold-light);
    font-weight: 400;
  }
  .cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 44px;
    line-height: 1.6;
    font-weight: 300;
  }
  .cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 56px;
  }
  .cta-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 40px;
    padding-top: 36px;
    border-top: 1px solid var(--hairline);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
  }
  .cta-contact a:hover {
    color: var(--gold-light);
  }
  .cta-contact span.sep {
    display: inline-block;
    color: rgba(255, 255, 255, 0.25);
  }
  /* ─────────────────────────────────────────────
     FOOTER
     ───────────────────────────────────────────── */
  footer {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.55);
    padding: 72px 0 32px;
    font-size: 14px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 56px;
  }
  .footer-brand img {
    height: 36px;
    margin-bottom: 24px;
  }
  .footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 320px;
    margin-bottom: 24px;
    font-weight: 300;
  }
  .footer-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
  }
  .footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 22px;
  }
  .footer-col ul {
    list-style: none;
  }
  .footer-col li {
    margin-bottom: 12px;
  }
  .footer-col a {
    font-size: 14px;
    font-weight: 300;
    transition: color 0.2s;
  }
  .footer-col a:hover {
    color: var(--gold-light);
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 28px;
    border-top: 1px solid var(--hairline);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.02em;
  }
  .footer-bottom-links {
    display: flex;
    gap: 28px;
  }
  /* ─────────────────────────────────────────────
     BSL TOP STRIP (sits below nav inside .site-header)
     ───────────────────────────────────────────── */
  .bsl-strip {
    background: #FAF8F2;
    border-top: 1px solid #EFEAD9;
    border-bottom: 1px solid #EFEAD9;
    font-family: Georgia, 'Times New Roman', serif;
  }
  .bsl-strip-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 11px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    flex-wrap: wrap;
  }
  .bsl-strip-eyebrow {
    font-size: 10px;
    font-style: italic;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8B7355;
    white-space: nowrap;
  }
  .bsl-strip-divider {
    color: #C9C0AB;
    font-size: 11px;
  }
  .bsl-strip-link {
    font-size: 13px;
    font-style: italic;
    color: var(--navy);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 1px;
    transition: color 0.2s, border-color 0.2s;
  }
  .bsl-strip-link:hover {
    color: var(--gold);
    border-bottom-color: var(--navy);
  }
  .bsl-strip-arrow {
    color: var(--gold);
    font-style: normal;
    padding-left: 4px;
  }
  /* ─────────────────────────────────────────────
     TECHFUEL AI — FULL SECTION
     ───────────────────────────────────────────── */
  .tfai {
    background: var(--navy);
    color: var(--white);
    overflow: hidden;
    position: relative;
  }
  .tfai::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 50% 40% at 80% 20%, rgba(184, 92, 56, 0.13) 0%, transparent 60%),
      radial-gradient(ellipse 40% 30% at 10% 90%, rgba(184, 92, 56, 0.08) 0%, transparent 55%);
    pointer-events: none;
  }
  .tfai-section-inner {
    position: relative;
    z-index: 1;
  }
  .tfai-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: flex-end;
    margin-bottom: 64px;
  }
  .tfai-header-left {
    max-width: 760px;
  }
  .tfai-eyebrow-section {
    display: inline-flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 28px;
  }
  .tfai-eyebrow-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--terra-light);
    border-left: 2px solid var(--terra);
    padding: 4px 0 4px 14px;
  }
  .tfai-mark-inline {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: -0.01em;
    line-height: 1;
  }
  .tfai-mark-inline em {
    font-style: italic;
    color: var(--terra-light);
    font-weight: 400;
  }
  .tfai-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 4.4vw, 56px);
    font-weight: 500;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.015em;
    margin-bottom: 28px;
  }
  .tfai-headline em {
    font-style: italic;
    color: var(--terra-light);
    font-weight: 400;
  }
  .tfai-lead {
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 300;
    max-width: 640px;
  }
  .tfai-lead strong {
    color: var(--white);
    font-weight: 500;
  }
  .tfai-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--terra);
    padding: 16px 26px;
    transition: all 0.25s;
    white-space: nowrap;
    align-self: flex-end;
  }
  .tfai-cta-link:hover {
    background: var(--terra-light);
  }
  .tfai-cta-link svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
  }
  .tfai-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--hairline);
  }
  .tfai-tier {
    padding: 48px 32px 0 0;
    border-right: 1px solid var(--hairline);
    position: relative;
  }
  .tfai-tier:last-child {
    border-right: none;
    padding-right: 0;
  }
  .tfai-tier:not(:first-child) {
    padding-left: 32px;
  }
  .tfai-tier-num {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    color: var(--terra-light);
    letter-spacing: 0.04em;
    margin-bottom: 14px;
  }
  .tfai-tier-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 14px;
  }
  .tfai-tier-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.25;
  }
  .tfai-tier-body {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
  }
  .tfai-tier-body strong {
    color: var(--terra-light);
    font-weight: 500;
  }
  /* ─────────────────────────────────────────────
     ABOUT — RESTRUCTURED (no big visual block)
     ───────────────────────────────────────────── */
  .about-v2 {
    background: var(--white);
    color: var(--navy);
  }
  .about-v2-inner {
    max-width: 920px;
    margin: 0 auto;
  }
  .about-v2-header {
    margin-bottom: 56px;
  }
  .about-v2-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
  }
  .about-v2-h {
    font-size: clamp(32px, 4.2vw, 52px);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 28px;
  }
  .about-v2-h em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
  }
  .about-v2-body {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 24px;
  }
  .about-v2-body strong {
    color: var(--navy);
    font-weight: 600;
  }
  .about-v2-pullquote {
    margin: 56px 0;
    padding: 32px 0 32px 32px;
    border-left: 3px solid var(--gold);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.4;
    color: var(--navy);
    font-weight: 400;
    max-width: 760px;
  }
  .about-v2-pullquote em {
    color: var(--gold);
  }
  .about-v2-pullquote-attr {
    margin-top: 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-style: normal;
    font-family: 'Source Sans 3', sans-serif;
  }
  .about-v2-honors {
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid var(--hairline-dark);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  .about-v2-honor-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
  }
  .about-v2-honor-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 2vw, 30px);
    color: var(--navy);
    font-weight: 600;
    line-height: 1.1;
  }
  .about-v2-badges {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--hairline-dark);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    align-items: center;
    justify-items: center;
  }
  .about-v2-badges img {
    width: 100%;
    max-width: 190px;
    height: auto;
  }
  .tfai-callout {
    margin-top: 80px;
    padding-top: 56px;
    border-top: 1px solid var(--hairline-dark);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
  }
  .tfai-mark {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .tfai-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .tfai-wordmark {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: -0.01em;
    line-height: 1;
  }
  .tfai-wordmark em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
  }
  .tfai-pitch {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-body);
    max-width: 580px;
  }
  .tfai-pitch strong {
    color: var(--navy);
    font-weight: 600;
  }
  .tfai-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--navy);
    padding: 14px 22px;
    background: var(--white);
    border: 1px solid var(--navy);
    transition: all 0.25s;
    white-space: nowrap;
  }
  .tfai-cta:hover {
    background: var(--navy);
    color: var(--gold-light);
  }
  .tfai-cta svg {
    width: 12px;
    height: 12px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
  }
  /* ─────────────────────────────────────────────
     BISHOP STREET LETTER ENDNOTE
     Intentionally different typography from the
     rest of the site — BSL has its own editorial
     voice within the Indevtech umbrella.
     ───────────────────────────────────────────── */
  .bsl {
    background: #FAF8F2;
    border-top: 1px solid #EFEAD9;
    padding: 72px 0;
  }
  .bsl-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    font-family: Georgia, 'Times New Roman', serif;
  }
  .bsl-eyebrow {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 11px;
    font-style: italic;
    color: #8B7355;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 22px;
  }
  .bsl-tagline {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(20px, 2.2vw, 26px);
    font-style: italic;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 32px;
    font-weight: 400;
  }
  .bsl-cta {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 16px;
    font-style: italic;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
    display: inline-block;
  }
  .bsl-cta:hover {
    color: var(--navy);
    border-bottom-color: var(--navy);
  }
  .bsl-attribution {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 13px;
    font-style: italic;
    color: #8B7355;
    margin-top: 28px;
    line-height: 1.6;
  }
  .bsl-attribution a {
    color: #8B7355;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
  }
  .bsl-attribution a:hover {
    color: var(--navy);
  }
  .bsl-divider {
    color: #C9C0AB;
    margin: 0 10px;
  }
  /* ─────────────────────────────────────────────
     CONTACT FORM (lives inside the CTA section)
     ───────────────────────────────────────────── */
  .cta-form-wrap {
    max-width: 560px;
    margin: 0 auto;
    text-align: left;
  }
  .cta-form {
    display: grid;
    gap: 18px;
  }
  .cta-form.hidden { display: none; }
  .cta-form-row {
    display: grid;
    gap: 18px;
  }
  @media (min-width: 560px) {
    .cta-form-row { grid-template-columns: 1fr 1fr; }
  }
  .cta-field { display: grid; gap: 6px; }
  .cta-field label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
  }
  .cta-field label .opt {
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0;
    text-transform: none;
    color: rgba(255, 255, 255, 0.45);
    margin-left: 6px;
  }
  .cta-field input,
  .cta-field textarea {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--navy);
    background: var(--cream);
    border: 1px solid var(--cream);
    padding: 13px 14px;
    width: 100%;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
  }
  .cta-field input:focus,
  .cta-field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(196, 151, 59, 0.35);
  }
  .cta-field textarea {
    min-height: 110px;
    resize: vertical;
  }
  .cta-choices {
    display: grid;
    gap: 10px;
    padding-top: 4px;
  }
  .cta-field label.cta-choice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.45;
  }
  .cta-choice input[type="radio"] {
    appearance: auto;
    -webkit-appearance: radio;
    accent-color: var(--gold);
    width: 17px;
    height: 17px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
  }
  .cta-choice:hover span { color: var(--white); }
  /* Current-client redirect: collapse fields, show support panel */
  .cta-form.client-mode .cta-collapsible,
  .cta-form.client-mode .cta-collapsible-row {
    display: none;
  }
  .cta-client-panel {
    display: none;
    margin-top: 8px;
    padding: 28px 28px 30px;
    background: rgba(255, 255, 255, 0.04);
    border-left: 3px solid var(--gold);
    text-align: left;
  }
  .cta-form.client-mode .cta-client-panel {
    display: block;
  }
  .cta-client-lead {
    font-size: 17px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-weight: 400;
  }
  .cta-client-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 24px;
  }
  .cta-client-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 15px 28px;
    transition: background 0.2s;
  }
  .cta-client-btn:hover { background: var(--gold-light); }
  .cta-client-phone {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
  }
  .cta-client-phone:hover { color: var(--gold-light); }
  /* Honeypot — invisible to humans, bots fill it */
  .cta-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }
  .cta-turnstile {
    margin-top: 4px;
    display: flex;
    justify-content: center;
  }
  .cta-submit {
    margin-top: 8px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--gold);
    border: 1px solid var(--gold);
    padding: 18px 28px;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
  }
  .cta-submit:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
  }
  .cta-submit:disabled { opacity: 0.6; cursor: not-allowed; }
  .cta-form-error {
    margin-top: 6px;
    padding: 12px 16px;
    background: rgba(180, 58, 42, 0.18);
    border-left: 3px solid #FF8A75;
    font-size: 14px;
    color: #FFD9CF;
    display: none;
    text-align: left;
  }
  .cta-form-error.show { display: block; }
  /* Success / confirmation state — replaces the form */
  .cta-confirm { display: none; text-align: center; }
  .cta-confirm.show { display: block; }
  .cta-confirm-h {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(34px, 4.4vw, 50px);
    line-height: 1.1;
    color: var(--white);
    margin: 0 0 20px 0;
    letter-spacing: -0.015em;
  }
  .cta-confirm-h em {
    font-style: italic;
    color: var(--gold-light);
    font-weight: 400;
  }
  .cta-confirm-body {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 50ch;
    margin: 0 auto 28px;
  }
  .cta-confirm-sig {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 20px;
    color: var(--gold-light);
  }
  .cta-urgent {
    margin-top: 28px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    text-align: center;
  }
  .cta-urgent a {
    color: var(--gold-light);
    border-bottom: 1px solid rgba(212, 170, 82, 0.4);
    padding-bottom: 1px;
    transition: color 0.2s, border-color 0.2s;
  }
  .cta-urgent a:hover {
    color: var(--white);
    border-bottom-color: var(--white);
  }
  /* ─────────────────────────────────────────────
     SCROLL REVEAL
     ───────────────────────────────────────────── */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }
  /* ─────────────────────────────────────────────
     TABLET — serve grid steps 3 → 2 columns
     ───────────────────────────────────────────── */
  @media (max-width: 1180px) and (min-width: 981px) {
    .serve-grid { grid-template-columns: 1fr 1fr; }
  }
  /* ─────────────────────────────────────────────
     MOBILE
     ───────────────────────────────────────────── */
  @media (max-width: 980px) {
    .nav-links, .nav-right .nav-phone, .nav-right a.btn-primary { display: none; }
    .nav-mobile-toggle { display: block; }
    .nav-mobile-toggle.active { color: var(--white); }
    .nav-mobile-menu {
      display: block;
      position: fixed;
      top: 0; left: 0; right: 0;
      background: var(--navy);
      padding: 100px 32px 40px;
      height: 100vh;
      transform: translateY(-100%);
      transition: transform 0.4s ease;
      z-index: 90;
    }
    .nav-mobile-menu.open { transform: translateY(0); }
    .nav-mobile-menu ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 24px;
      margin-bottom: 40px;
    }
    .nav-mobile-menu a {
      font-family: 'Playfair Display', serif;
      font-size: 26px;
      color: var(--white);
      font-weight: 500;
    }
    .nav-mobile-menu a.nav-link-tfai { color: var(--terra-light); }
    .nav-mobile-actions {
      display: flex;
      flex-direction: column;
      gap: 18px;
      padding-top: 32px;
      border-top: 1px solid var(--hairline);
    }
    .nav-mobile-actions a { color: rgba(255, 255, 255, 0.8); font-size: 16px; }
    .nav-mobile-actions .btn-primary { text-align: center; }
    .different-grid { grid-template-columns: 1fr; }
    .different-card,
    .different-card:nth-child(3n+1),
    .different-card:nth-child(3n+2),
    .different-card:nth-child(3n) {
      padding: 40px 0;
      border-right: none;
    }
    .switch-grid { grid-template-columns: 1fr; gap: 56px; }
    .serve-grid { grid-template-columns: 1fr; }
    .serve-card { padding: 36px 28px; }
    .techfuel-grid { grid-template-columns: 1fr; gap: 56px; }
    .techfuel-left { position: static; }
    .about-grid { grid-template-columns: 1fr; gap: 56px; }
    .about-badge { position: relative; bottom: 0; right: 0; max-width: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand { grid-column: 1 / -1; }
    .section-pad { padding: 80px 0; }
    .container { padding: 0 24px; }
    .stats { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
    .stat-num { font-size: 42px; }
    .hero { min-height: auto; }
    .hero > .hero-content { padding-top: 190px; padding-bottom: 60px; }
    .about-honors { grid-template-columns: 1fr; gap: 18px; }
    .tfai-callout {
      grid-template-columns: 1fr;
      gap: 28px;
      margin-top: 56px;
      padding-top: 40px;
    }
    .tfai-cta { align-self: flex-start; }
    .tfai-wordmark { font-size: 28px; }
    .bsl { padding: 56px 0; }
    /* BSL strip on mobile — stack eyebrow above link on two lines */
    .bsl-strip-inner {
      flex-direction: column;
      padding: 9px 20px;
      gap: 4px;
    }
    .bsl-strip-eyebrow {
      font-size: 9px;
      letter-spacing: 0.14em;
    }
    .bsl-strip-divider { display: none; }
    .bsl-strip-link {
      font-size: 12px;
      line-height: 1.35;
    }
    /* TFAI full section — stack header, single column tiers */
    .tfai-header {
      grid-template-columns: 1fr;
      gap: 28px;
      align-items: flex-start;
      margin-bottom: 48px;
    }
    .tfai-cta-link { align-self: flex-start; }
    .tfai-tiers { grid-template-columns: 1fr; }
    .tfai-tier {
      padding: 36px 0;
      border-right: none;
      border-bottom: 1px solid var(--hairline);
    }
    .tfai-tier:not(:first-child) { padding-left: 0; }
    .tfai-tier:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .tfai-tier:first-child { padding-top: 36px; }
    /* About v2 — honors stack on mobile */
    .about-v2-honors {
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .about-v2-badges {
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 48px;
      padding-top: 36px;
    }
    .about-v2-badges img { max-width: 160px; }
    .about-v2-pullquote {
      margin: 36px 0;
      padding: 24px 0 24px 24px;
    }
  }
  @media (max-width: 600px) {
    .container { padding: 0 20px; }
    .section-pad { padding: 64px 0; }
    .hero-trust-inner { gap: 10px 18px; font-size: 10px; letter-spacing: 0.12em; }
    .hero-trust-divider { display: none; }
    .serve-card { padding: 36px 28px; }
  }

/* ─────────────────────────────────────────────
   DEEP PAGES (vertical landing pages)
   Shared structure for /law /cpa /aec /flagship /nonprofit
   ───────────────────────────────────────────── */
.dp-head {
  background: var(--navy);
  color: var(--white);
  padding: 220px 0 100px;
  position: relative;
  overflow: hidden;
}
.dp-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 75% 30%, rgba(196, 151, 59, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(196, 151, 59, 0.08) 0%, transparent 55%);
  pointer-events: none;
}
.dp-head-inner { position: relative; z-index: 1; max-width: 840px; }
.dp-head-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.dp-head-h {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5.6vw, 68px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 28px;
}
.dp-head-h em { font-style: italic; color: var(--gold-light); font-weight: 400; }
.dp-head-lead {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 300;
  max-width: 700px;
}
.dp-head-lead strong { color: var(--white); font-weight: 500; }

/* Pain section — cream, numbered pain blocks */
.dp-pains { background: var(--cream); }
.dp-pains-header { max-width: 760px; margin-bottom: 64px; }
.dp-pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--hairline-dark);
}
.dp-pain {
  padding: 44px 40px 44px 0;
  border-bottom: 1px solid var(--hairline-dark);
}
.dp-pain:nth-child(even) { padding-left: 40px; padding-right: 0; border-left: 1px solid var(--hairline-dark); }
.dp-pain-num {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 14px;
}
.dp-pain h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.dp-pain p { font-size: 15px; line-height: 1.7; color: var(--text-body); }

/* Answer section — navy, how TechFuel answers */
.dp-answer { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.dp-answer::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 40% at 80% 20%, rgba(196, 151, 59, 0.10) 0%, transparent 60%);
  pointer-events: none;
}
.dp-answer-inner { position: relative; z-index: 1; }
.dp-answer-header { max-width: 760px; margin-bottom: 64px; }
.dp-answer-header h2 { color: var(--white); }
.dp-answer-header h2 em { color: var(--gold-light); }
.dp-answer-header .section-lead { color: rgba(255, 255, 255, 0.75); }
.dp-answer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
}
.dp-answer-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.dp-answer-item p { font-size: 15px; line-height: 1.7; color: rgba(255, 255, 255, 0.75); font-weight: 300; }
.dp-answer-item p strong { color: var(--gold-light); font-weight: 500; }

/* Proof band — slim cream strip */
.dp-proof {
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  padding: 56px 0;
}
.dp-proof-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 64px;
  align-items: center;
  justify-content: center;
}
.dp-proof-stat { text-align: center; }
.dp-proof-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.dp-proof-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* FAQ */
.dp-faq { background: var(--white); }
.dp-faq-inner { max-width: 840px; margin: 0 auto; }
.dp-faq-header { margin-bottom: 48px; }
.dp-faq details {
  border-bottom: 1px solid var(--hairline-dark);
  padding: 26px 0;
}
.dp-faq details:first-of-type { border-top: 1px solid var(--hairline-dark); }
.dp-faq summary {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.dp-faq summary::-webkit-details-marker { display: none; }
.dp-faq summary::after {
  content: "+";
  font-family: 'Source Sans 3', sans-serif;
  font-size: 24px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.dp-faq details[open] summary::after { transform: rotate(45deg); }
.dp-faq details p {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-body);
  max-width: 720px;
}

/* Deep page CTA band */
.dp-cta {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.dp-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(196, 151, 59, 0.15) 0%, transparent 60%);
}
.dp-cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.dp-cta h2 {
  font-size: clamp(30px, 4vw, 48px);
  color: var(--white);
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.12;
}
.dp-cta h2 em { font-style: italic; color: var(--gold-light); font-weight: 400; }
.dp-cta p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  font-weight: 300;
}
.dp-cta .btn-primary { font-size: 12px; padding: 17px 34px; }

/* Deep page mobile */
@media (max-width: 980px) {
  .dp-head { padding: 200px 0 72px; }
  .dp-pain-grid { grid-template-columns: 1fr; }
  .dp-pain, .dp-pain:nth-child(even) {
    padding: 34px 0;
    border-left: none;
  }
  .dp-answer-grid { grid-template-columns: 1fr; gap: 36px; }
  .dp-proof-inner { gap: 28px 40px; }
}
