  :root {
    --cream: #FAF6F0;
    --white: #FFFFFF;
    --ink: #23201C;
    --muted: #6B635A;
    --hairline: #EBE3D8;
    --accent: #E14D1A;
    --accent-hover: #C23F12;
    --accent-tint: #FBEAE1;
    --dark: #2A2521;
  }

  * { box-sizing: border-box; }

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

  body {
    margin: 0;
    overflow-x: hidden;
    font-family: 'DM Sans', sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
  }

  h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0;
  }

  a { color: inherit; text-decoration: none; }

  img { max-width: 100%; display: block; }

  .wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
  }

  section { padding: 96px 0; }

  .section-white { background: var(--white); }
  .section-cream { background: var(--cream); }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-tint);
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
  }

  .section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
  }

  .section-head h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 16px;
  }

  .section-head p {
    color: var(--muted);
    font-size: 17px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  }

  .btn:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
  }

  .btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(225, 77, 26, 0.28);
  }

  .btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }

  .btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--hairline);
  }

  .btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

  .btn-light {
    background: var(--white);
    color: var(--dark);
  }

  .btn-light:hover { background: var(--accent-tint); transform: translateY(-1px); }

  /* NAV */
  header.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(250, 246, 240, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--hairline);
  }

  .nav-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .wordmark {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 20px;
  }

  .wordmark span { color: var(--accent); }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .nav-links a:not(.btn) {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
  }

  .nav-links a:not(.btn):hover { color: var(--accent); }

  .nav-links-desktop { display: none; gap: 28px; align-items: center; }
  @media (min-width: 860px) { .nav-links-desktop { display: flex; } }

  .nav-links-desktop > a:not(.btn) {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
  }

  .nav-links-desktop > a:not(.btn):hover { color: var(--accent); }

  /* Industries dropdown (desktop) */
  .nav-dropdown { position: relative; }

  .nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    padding: 4px 0;
  }

  .nav-dropdown-toggle:hover { color: var(--accent); }

  .nav-chevron {
    width: 14px;
    height: 14px;
    transition: transform 0.15s ease;
  }

  .nav-dropdown:hover .nav-chevron,
  .nav-dropdown:focus-within .nav-chevron,
  .nav-dropdown.is-open .nav-chevron {
    transform: rotate(180deg);
  }

  .nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
    z-index: 60;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu,
  .nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-dropdown-menu-inner {
    background: var(--white);
    border: 1px solid var(--hairline);
    border-radius: 14px;
    padding: 8px;
    min-width: 200px;
    box-shadow: 0 20px 40px rgba(35, 32, 28, 0.16);
  }

  .nav-dropdown-menu-inner a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
  }

  .nav-dropdown-menu-inner a:hover { background: var(--accent-tint); color: var(--accent); }

  /* Mobile hamburger toggle + panel */
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1.5px solid var(--hairline);
    background: transparent;
    cursor: pointer;
  }

  .nav-toggle svg { width: 20px; height: 20px; color: var(--ink); }

  @media (min-width: 860px) { .nav-toggle { display: none; } }

  .nav-mobile-panel {
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 8px 24px 24px;
    border-top: 1px solid var(--hairline);
    background: var(--cream);
  }

  .nav-mobile-panel.is-open { display: flex; }

  @media (min-width: 860px) { .nav-mobile-panel { display: none !important; } }

  .nav-mobile-panel a:not(.btn) {
    padding: 12px 4px;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    border-bottom: 1px solid var(--hairline);
  }

  .nav-mobile-panel a:not(.btn):hover { color: var(--accent); }

  .nav-mobile-group-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    padding: 14px 4px 6px;
  }

  .nav-mobile-panel .btn { margin-top: 16px; }

  /* HERO */
  .hero {
    position: relative;
    overflow: visible;
    padding: 0;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, var(--cream) 0%, var(--cream) 26%, rgba(250, 246, 240, 0.86) 44%, rgba(250, 246, 240, 0.32) 66%, rgba(250, 246, 240, 0) 86%);
  }

  .hero-inner {
    position: relative;
    z-index: 1;
    padding: 140px 0 170px;
  }

  .hero-content {
    max-width: 600px;
  }

  .hero-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
  }

  .hero h2 {
    font-size: clamp(36px, 5.4vw, 58px);
    line-height: 1.05;
    margin-bottom: 22px;
  }

  .hero h2 .accent { color: var(--accent); }

  .hero-sub {
    font-size: 18px;
    color: var(--muted);
    max-width: 520px;
    margin-bottom: 32px;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 18px;
  }

  .hero-note {
    font-size: 13px;
    color: var(--muted);
  }

  .hero-card {
    position: absolute;
    z-index: 2;
    right: max(24px, calc((100vw - 1120px) / 2 + 16px));
    bottom: -32px;
    background: var(--white);
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: 0 20px 40px rgba(35, 32, 28, 0.2);
    max-width: 260px;
    border: 1px solid var(--hairline);
  }

  @media (max-width: 780px) {
    .hero-inner { padding: 0 0 76px; }
    .hero-bg { position: relative; height: 280px; inset: auto; }
    .hero-gradient { background: linear-gradient(180deg, rgba(250, 246, 240, 0) 45%, var(--cream) 97%); }
    .hero-content { max-width: none; padding-top: 32px; }
    .hero-card { position: relative; right: auto; bottom: auto; margin: -46px 24px 0 auto; max-width: 220px; padding: 14px 16px; }
  }

  .hero-card-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin-bottom: 8px;
  }

  .hero-card-msg {
    font-size: 14px;
    color: var(--ink);
    margin-bottom: 10px;
  }

  .hero-card-stamp {
    display: inline-block;
    background: var(--accent-tint);
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
  }

  /* CARDS */
  .grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  @media (min-width: 760px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
  }

  .card {
    background: var(--white);
    border: 1px solid var(--hairline);
    border-radius: 22px;
    padding: 32px;
  }

  .card h3 {
    font-size: 19px;
    margin-bottom: 10px;
  }

  .card p {
    color: var(--muted);
    font-size: 15px;
    margin: 0;
  }

  /* LEAKS GRID (compact 6-card layout) */
  #leaks { padding: 72px 0; }

  .grid-6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  @media (min-width: 640px) {
    .grid-6 { grid-template-columns: repeat(2, 1fr); }
  }

  @media (min-width: 960px) {
    .grid-6 { grid-template-columns: repeat(3, 1fr); }
  }

  .leak-card {
    background: var(--white);
    border: 1px solid var(--hairline);
    border-radius: 18px;
    padding: 24px;
  }

  .leak-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--accent-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }

  .leak-icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
  }

  .leak-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .leak-card p {
    color: var(--muted);
    font-size: 14px;
    margin: 0 0 16px;
  }

  .leak-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .leak-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.15s ease;
  }

  .leak-link:hover { color: var(--accent-hover); }
  .leak-link:hover svg { transform: translateX(3px); }

  .fade-rise {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-rise.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  @media (prefers-reduced-motion: reduce) {
    .fade-rise { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
  }

  /* WHAT WE HANDLE */
  .handle-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: stretch;
  }

  @media (min-width: 900px) {
    .handle-layout { grid-template-columns: 0.85fr 1.15fr; }
  }

  .handle-photo-wrap {
    position: relative;
    height: 100%;
  }

  .handle-photo {
    height: 100%;
    min-height: 460px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(35, 32, 28, 0.16);
  }

  @media (max-width: 899px) {
    .handle-photo { height: auto; min-height: 0; aspect-ratio: 4 / 3; }
  }

  .handle-photo img { width: 100%; height: 100%; object-fit: cover; }

  .handle-badge {
    position: absolute;
    z-index: 2;
    left: -16px;
    bottom: -24px;
    background: var(--dark);
    color: var(--white);
    border-radius: 18px;
    padding: 20px 22px;
    box-shadow: 0 16px 32px rgba(35, 32, 28, 0.24);
    max-width: 190px;
  }

  @media (max-width: 899px) {
    .handle-badge { left: 8px; bottom: -18px; padding: 16px 18px; max-width: 160px; }
  }

  .handle-badge-check {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }

  .handle-badge-check svg { width: 16px; height: 16px; color: var(--white); }

  .handle-badge-num {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 2px;
  }

  .handle-badge-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
  }

  .handle-content h2 {
    font-size: clamp(26px, 3.6vw, 36px);
    margin: 0 0 16px;
  }

  .handle-intro {
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 28px;
  }

  .handle-checklist {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 28px;
  }

  @media (min-width: 600px) {
    .handle-checklist { grid-template-columns: 1fr 1fr; }
  }

  .handle-check-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }

  .handle-check-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
  }

  .handle-check-icon svg { width: 14px; height: 14px; color: var(--accent); }

  .handle-check-item h3 { font-size: 15px; margin-bottom: 4px; }
  .handle-check-item p { font-size: 13.5px; color: var(--muted); margin: 0; }

  .handle-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--hairline);
  }

  .handle-cta-text {
    font-size: 14px;
    color: var(--muted);
    max-width: 340px;
    margin: 0;
  }

  .handle-cta-text strong { color: var(--ink); }

  /* TESTIMONIALS */
  .avatar-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--accent);
    overflow: hidden;
  }

  .testimonial-name { font-weight: 700; font-size: 14px; }
  .testimonial-role { font-size: 13px; color: var(--muted); }

  /* BUILT BY LOCAL */
  .local-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
  }

  @media (min-width: 860px) {
    .local-grid { grid-template-columns: 0.8fr 1.2fr; }
  }

  .local-photo-wrap {
    position: relative;
    margin-top: -40px;
    padding: 0 16px 16px 0;
  }

  .local-photo-offset {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 100%;
    height: 100%;
    background: var(--accent-tint);
    border-radius: 24px;
    z-index: 0;
  }

  .local-photo {
    position: relative;
    z-index: 1;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: 0 20px 40px rgba(35, 32, 28, 0.16);
  }

  .local-photo img { width: 100%; height: 100%; object-fit: cover; }

  .local-location-pill {
    position: absolute;
    z-index: 2;
    bottom: -2px;
    left: 20px;
    background: var(--white);
    color: var(--accent);
    font-weight: 700;
    font-size: 13px;
    padding: 10px 18px;
    border-radius: 999px;
    box-shadow: 0 12px 26px rgba(35, 32, 28, 0.16);
    border: 1px solid var(--hairline);
  }

  .local-copy h2 {
    font-size: clamp(26px, 3.6vw, 36px);
    margin-bottom: 20px;
  }

  .local-copy p {
    color: var(--muted);
    font-size: 17px;
    margin-bottom: 16px;
  }

  @media (max-width: 860px) {
    .local-photo-wrap { margin-top: 0; }
  }

  /* WHO IT'S FOR */
  #fit { overflow: hidden; }

  .fit-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
  }

  @media (min-width: 860px) {
    .fit-inner { grid-template-columns: 1fr 1fr; }
  }

  .fit-copy {
    position: relative;
    z-index: 2;
    background: var(--white);
    border-radius: 22px;
    padding: 44px;
    box-shadow: 0 24px 50px rgba(35, 32, 28, 0.10);
  }

  @media (min-width: 860px) {
    .fit-copy { margin-right: -56px; }
  }

  @media (max-width: 859px) {
    .fit-copy { margin-bottom: -48px; }
  }

  .fit-copy h2 {
    font-size: clamp(28px, 4vw, 38px);
    margin-bottom: 18px;
  }

  .fit-copy > p {
    color: var(--muted);
    font-size: 17px;
    margin-bottom: 8px;
  }

  .checklist { list-style: none; padding: 0; margin: 24px 0 0; }

  .checklist li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--hairline);
    font-size: 16px;
  }

  .checklist li:last-child { border-bottom: none; }

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

  .fit-photo {
    position: relative;
    z-index: 1;
    border-radius: 24px 0 0 24px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 20px 40px rgba(35, 32, 28, 0.12);
  }

  @media (min-width: 860px) {
    .fit-photo {
      width: 60vw;
      max-width: 900px;
      margin-left: auto;
      margin-right: min(-24px, calc(-1 * ((100vw - 1120px) / 2) - 24px));
    }
  }

  @media (max-width: 859px) {
    .fit-photo { border-radius: 24px; }
  }

  .fit-photo img { width: 100%; height: 100%; object-fit: cover; }

  /* FOUNDING CLIENTS DARK BAND */
  .founding {
    position: relative;
    overflow: hidden;
    background: var(--dark);
    color: var(--white);
    text-align: center;
  }

  .founding-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .founding-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .founding-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--dark);
    opacity: 0.82;
  }

  .founding .wrap {
    position: relative;
    z-index: 1;
  }

  .founding h2 {
    font-size: clamp(28px, 4vw, 42px);
    max-width: 720px;
    margin: 0 auto 20px;
    color: var(--white);
  }

  .founding h2 .accent { color: var(--accent); }

  .founding p {
    color: rgba(255,255,255,0.7);
    max-width: 560px;
    margin: 0 auto 36px;
    font-size: 17px;
  }

  /* FAQ */
  .faq-item {
    border-bottom: 1px solid var(--hairline);
  }

  .faq-item summary {
    cursor: pointer;
    padding: 24px 0;
    font-weight: 700;
    font-size: 17px;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
  }

  .faq-item summary::-webkit-details-marker { display: none; }

  .faq-item summary::after {
    content: '+';
    font-size: 22px;
    color: var(--accent);
    margin-left: 16px;
    transition: transform 0.2s ease;
  }

  .faq-item[open] summary::after { transform: rotate(45deg); }

  .faq-item p {
    color: var(--muted);
    padding-bottom: 24px;
    margin: 0;
    max-width: 700px;
  }

  /* APPLY FORM */
  .apply-box {
    max-width: 560px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--hairline);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(35, 32, 28, 0.08);
  }

  .apply-box .section-head { margin-bottom: 32px; }

  .form-field { margin-bottom: 18px; }

  .form-field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--ink);
  }

  .form-field input, .form-field select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1.5px solid var(--hairline);
    font-family: inherit;
    font-size: 15px;
    background: var(--cream);
    color: var(--ink);
  }

  .form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    border-color: var(--accent);
    outline: none;
  }

  .form-field textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1.5px solid var(--hairline);
    font-family: inherit;
    font-size: 15px;
    background: var(--cream);
    color: var(--ink);
    resize: vertical;
    min-height: 120px;
  }

  .apply-box .btn { width: 100%; margin-top: 8px; }

  /* STATS STRIP (pricing page) */
  .stats-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  @media (min-width: 640px) {
    .stats-strip { grid-template-columns: repeat(3, 1fr); }
  }

  .stat-item {
    background: var(--white);
    border: 1px solid var(--hairline);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
  }

  .stat-num {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(30px, 4vw, 38px);
    color: var(--accent);
    margin-bottom: 8px;
  }

  .stat-label {
    font-size: 14px;
    color: var(--muted);
    font-weight: 600;
  }

  /* SOLUTION DETAIL BLOCKS (solutions page) */
  .solution-block {
    display: flex;
    gap: 20px;
    padding: 32px 0;
    border-bottom: 1px solid var(--hairline);
  }

  .solution-block:last-child { border-bottom: none; }

  .solution-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--accent-tint);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .solution-icon svg { width: 26px; height: 26px; color: var(--accent); }

  .solution-block h3 { font-size: 20px; margin-bottom: 8px; }
  .solution-block p { color: var(--muted); font-size: 15.5px; margin: 0; }

  .apply-note {
    text-align: center;
    font-size: 13px;
    color: var(--muted);
    margin-top: 20px;
  }

  /* FOOTER */
  footer {
    background: var(--dark);
    color: rgba(255,255,255,0.85);
    padding: 72px 0 32px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
  }

  @media (min-width: 760px) {
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  }

  footer .wordmark { color: var(--white); margin-bottom: 14px; }
  footer .wordmark span { color: var(--accent); }

  .footer-desc {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    max-width: 320px;
  }

  .footer-col h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 18px;
  }

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

  .footer-col li { margin-bottom: 12px; }

  .footer-col a {
    color: rgba(255,255,255,0.75);
    font-size: 15px;
  }

  .footer-col a:hover { color: var(--accent); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
  }

  .footer-bottom a {
    color: rgba(255,255,255,0.5);
    text-decoration: underline;
  }

  .footer-bottom a:hover { color: var(--accent); }

  .footer-legal-links {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
  }

  /* LEGAL PAGES */
  .legal-hero {
    padding: 64px 0 40px;
  }

  .legal-hero h1 {
    font-size: clamp(30px, 4.4vw, 42px);
    margin-bottom: 12px;
  }

  .legal-hero p {
    color: var(--muted);
    font-size: 15px;
  }

  .legal-content {
    max-width: 760px;
    margin: 0 auto;
    padding-bottom: 40px;
  }

  .legal-content h2 {
    font-size: 21px;
    margin: 40px 0 14px;
  }

  .legal-content h2:first-child { margin-top: 0; }

  .legal-content p {
    color: var(--muted);
    font-size: 15.5px;
    margin: 0 0 16px;
  }

  .legal-content ul {
    color: var(--muted);
    font-size: 15.5px;
    padding-left: 20px;
    margin: 0 0 16px;
  }

  .legal-content li { margin-bottom: 8px; }

  .legal-content a { color: var(--accent); text-decoration: underline; }

  /* INDUSTRY PAGE HERO (shorter, no floating card) */
  .industry-hero-inner { padding: 120px 0 100px; }

  @media (max-width: 780px) {
    .industry-hero-inner { padding: 0 0 56px; }
  }

  /* SAAS-STYLE FEATURE LANDING PAGE */

  .saas-hero {
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px;
  }

  @media (max-width: 780px) {
    .saas-hero { padding: 110px 0 64px; }
  }

  .saas-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: center;
  }

  @media (min-width: 960px) {
    .saas-hero-grid { grid-template-columns: 1fr 1fr; }
  }

  .saas-hero-content h1 {
    font-size: clamp(34px, 4.6vw, 50px);
    line-height: 1.08;
    margin-bottom: 20px;
  }

  .saas-hero-content h1 .accent { color: var(--accent); }

  .saas-hero-sub {
    font-size: 17px;
    color: var(--muted);
    max-width: 500px;
    margin-bottom: 28px;
  }

  .saas-trust-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
  }

  .saas-trust-bullets span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
  }

  .saas-trust-bullets svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }

  /* Decorative blurred dots behind the mockup */
  .saas-hero-visual { position: relative; }

  .blur-dot {
    position: absolute;
    border-radius: 50%;
    background: var(--accent-tint);
    filter: blur(2px);
    z-index: 0;
  }

  /* Mock dashboard */
  .mockup-frame {
    position: relative;
    z-index: 1;
    background: var(--white);
    border: 1px solid var(--hairline);
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(35, 32, 28, 0.18);
    overflow: hidden;
  }

  .mockup-titlebar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 18px;
    background: var(--cream);
    border-bottom: 1px solid var(--hairline);
  }

  .mockup-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--hairline); }
  .mockup-dot.is-accent { background: var(--accent); }

  .mockup-titlebar-label {
    margin-left: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
  }

  .mockup-body { padding: 22px; }

  .mockup-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 18px;
  }

  @media (min-width: 500px) {
    .mockup-stats { grid-template-columns: repeat(4, 1fr); }
  }

  .mockup-stat {
    background: var(--cream);
    border-radius: 12px;
    padding: 12px 10px;
  }

  .mockup-stat-num {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 17px;
    color: var(--ink);
  }

  .mockup-stat-label {
    font-size: 10.5px;
    color: var(--muted);
    font-weight: 600;
  }

  .mockup-chart {
    background: var(--cream);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 18px;
  }

  .mockup-chart-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 8px;
  }

  .mockup-chart svg { width: 100%; height: 60px; display: block; }

  .mockup-activity { display: flex; flex-direction: column; gap: 10px; }

  .mockup-activity-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    color: var(--ink);
  }

  .mockup-activity-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
  }

  .mockup-activity-row span { color: var(--muted); }

  /* Split section (mockup/photo + benefit checklist) */
  .split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
  }

  @media (min-width: 900px) {
    .split-grid { grid-template-columns: 1fr 1fr; }
  }

  .split-copy h2 {
    font-size: clamp(26px, 3.6vw, 36px);
    margin-bottom: 16px;
  }

  .split-copy > p {
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 8px;
  }

  .split-example {
    margin-top: 24px;
    padding: 20px 22px;
    background: var(--accent-tint);
    border-radius: 16px;
    font-size: 14.5px;
    color: var(--ink);
  }

  .split-example strong { color: var(--accent); }

  /* Testimonial card grid */
  .testimonial-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  @media (min-width: 760px) {
    .testimonial-grid-3 { grid-template-columns: repeat(3, 1fr); }
  }

  .testimonial-card {
    background: var(--white);
    border: 1px solid var(--hairline);
    border-radius: 20px;
    padding: 28px;
  }

  .testimonial-card p {
    font-size: 15px;
    color: var(--ink);
    margin: 0 0 20px;
  }

  .testimonial-card-byline {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  /* CTA band (bold single-CTA closing section, replaces tiered pricing) */
  .cta-band {
    background: var(--dark);
    border-radius: 28px;
    padding: 56px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: center;
  }

  @media (min-width: 860px) {
    .cta-band { grid-template-columns: 1fr 0.9fr; padding: 64px; }
  }

  @media (max-width: 560px) {
    .cta-band { padding: 36px 24px; border-radius: 22px; }
  }

  .cta-band-copy h2 {
    color: var(--white);
    font-size: clamp(26px, 3.6vw, 36px);
    margin-bottom: 14px;
  }

  .cta-band-copy p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin: 0;
  }

  .cta-band .apply-box {
    margin: 0;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  }

  /* HOW IT WORKS: 30-day timeline */
  .how-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
    padding-left: 30px;
  }

  .how-timeline::before {
    content: '';
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 9px;
    width: 2px;
    background: var(--accent-tint);
  }

  @media (min-width: 960px) {
    .how-timeline {
      flex-direction: row;
      align-items: flex-start;
      gap: 20px;
      padding-left: 0;
    }

    .how-timeline::before {
      top: 6px;
      bottom: auto;
      left: 0;
      right: 0;
      width: auto;
      height: 2px;
    }
  }

  .how-beat {
    position: relative;
    flex: 1;
    padding-top: 0;
  }

  @media (min-width: 960px) {
    .how-beat { padding-top: 34px; }
    .how-beat.is-payoff { flex: 1.7; }
  }

  .how-marker-dot {
    position: absolute;
    top: 2px;
    left: -30px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 3px var(--cream);
    z-index: 2;
  }

  @media (min-width: 960px) {
    .how-marker-dot {
      top: 0;
      left: 50%;
      transform: translateX(-50%);
    }
  }

  .how-time-label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
  }

  @media (min-width: 960px) {
    .how-time-label { text-align: center; }
  }

  .how-beat-card {
    background: var(--white);
    border: 1px solid var(--hairline);
    border-radius: 18px;
    padding: 22px 22px 24px;
  }

  @media (min-width: 960px) {
    .how-beat-card { text-align: center; }
  }

  .how-beat-card h3 { font-size: 17px; margin-bottom: 8px; }
  .how-beat-card p { color: var(--muted); font-size: 14px; margin: 0; }

  .how-payoff {
    background: var(--accent-tint);
    border-radius: 22px;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .how-payoff h3 { font-size: 22px; }

  .how-payoff-line {
    color: var(--ink);
    font-size: 15px;
    margin: 0;
  }

  .how-receipt {
    background: var(--white);
    border: 1px solid var(--hairline);
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow: 0 14px 30px rgba(35, 32, 28, 0.12);
    max-width: 280px;
  }

  .how-payoff .btn { align-self: flex-start; }
