
      /* ══════════════════════════════════════════════════════════════
         INDUSTRIES PAGE — Figma node 240:1662 exact match
         No tabs. Single IT & SaaS page layout.
         ══════════════════════════════════════════════════════════════ */

      :root {
        --animation-fade: 0.1s linear;
        --animation-fast: 0.35s cubic-bezier(0.62, 0.05, 0.01, 0.99);
        --animation-primary: 0.735s cubic-bezier(0.62, 0.05, 0.01, 0.99);
        --size-unit: 16;
        --size-container-ideal: 1920;
        --size-container-min: 992px;
        --size-container-max: 2160px;
        --size-container: clamp(var(--size-container-min), 100vw, var(--size-container-max));
        --size-font: calc(var(--size-container) / (var(--size-container-ideal) / var(--size-unit)));
      }
      @media screen and (max-width: 991px) {
        :root {
          --size-container-ideal: 1384;
          --size-container-min: 768px;
          --size-container-max: 991px;
        }
      }
      @media screen and (max-width: 767px) {
        :root {
          --size-container-ideal: 377;
          --size-container-min: 320px;
          --size-container-max: 767px;
        }
      }

      /* ── 1. TOP HEADER ───────────────────────────────────────────── */
      .ind-top-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 7em 4em 2em 4em;
      }
      .ind-stamp-group {
        display: inline-flex;
        align-items: center;
        gap: 14px;
      }
      .ind-stamp-icon { width: 54px; height: 56px; object-fit: contain; }
      .ind-stamp-text {
        font-family: Comedik, Arial, sans-serif;
        font-size: 40px;
        line-height: 0.81;
        color: #748370;
        text-transform: uppercase;
      }

      /* ── 2. HERO ─────────────────────────────────────────────────── */
      .ind-hero-section { padding: 0 0 4em; }

      .ind-hero-header { margin-bottom: 1em; }

      /* IT & SAAS — 140px Schabo white */
      .ind-main-title {
        font-family: 'Schabo Condensed', Arial, sans-serif;
        font-size: 140px;
        font-weight: 400;
        text-transform: uppercase;
        line-height: 1em;
        color: #FFFFFF;
        margin: 0 0 0.25em;
      }

      /* Tagline — 42px Comedik lime-green */
      .ind-tagline {
        font-family: Comedik, Arial, sans-serif;
        font-size: 42px;
        line-height: 1.2;
        color: #E2F533;
        margin: 0;
        max-width: 900px;
      }

      /* Intro body — 24px Inter */
      .ind-hero-body { margin: 2em 0 1.5em; }
      .ind-intro-text {
        font-family: Inter, Arial, sans-serif;
        font-size: 24px;
        line-height: 1.5;
        color: #FCFFDB;
        margin: 0;
        max-width: 1048px;
      }

      /* Bold key question — 22px Object Sans Heavy */
      .ind-key-question {
        font-family: 'Object Sans', Arial, sans-serif;
        font-size: 22px;
        font-weight: 800;
        line-height: 1.5;
        color: #FEFEFE;
        margin: 0 0 2.5em;
        max-width: 1011px;
      }

      /* Follow-on body text — 22px Object Sans */
      .ind-body-followon {
        font-family: 'Object Sans', Arial, sans-serif;
        font-size: 22px;
        line-height: 1.5;
        color: #FCFFDB;
        margin: 0 0 2.5em;
        max-width: 1021px;
      }

      /* ── Pill CTA shared ─────────────────────────────────────────── */
      .ind-cta-row { margin-top: 1em; }
      .ind-pill-btn {
        display: inline-flex;
        align-items: center;
        gap: 14px;
        background: #EEE0C6;
        border-radius: 60px;
        padding: 12px 28px 12px 14px;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: transform 0.25s var(--animation-fast), box-shadow 0.25s var(--animation-fast);
        white-space: nowrap;
      }
      .ind-pill-btn span {
        font-family: Comedik, Arial, sans-serif;
        font-size: 24px;
        color: #552200;
        text-transform: uppercase;
      }
      .ind-pill-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 28px rgba(0,0,0,0.35);
      }

      /* ── 3. WHAT WE MAKE + IMAGES + CALLOUT ─────────────────────── */
      .ind-make-section { padding: 2em 0 5em; }
      .ind-make-outer-grid {
        display: grid;
        grid-template-columns: 530px 1fr;
        gap: 5em;
        align-items: start;
      }

      /* Left col */
      .ind-make-left {
        display: flex;
        flex-direction: column;
        gap: 2.5em;
      }

      /* WHAT WE MAKE FOR IT & SAAS — 145px Schabo */
      .ind-make-title {
        font-family: 'Schabo Condensed', Arial, sans-serif;
        font-size: 145px;
        font-weight: 400;
        text-transform: uppercase;
        line-height: 1.08;
        color: #FCFFDB;
        margin: 0;
      }

      /* Right col: stacked images + callout */
      .ind-make-right {
        display: flex;
        flex-direction: column;
        gap: 3em;
      }

      /* Two overlapping square images */
      .ind-images-stack {
        position: relative;
        width: 100%;
        max-width: 560px;
        aspect-ratio: 1 / 1;
      }
      .ind-img {
        position: absolute;
        width: 88%;
        height: 88%;
        object-fit: cover;
        border-radius: 16px;
      }
      .ind-img--back {
        top: 0;
        left: 0;
        opacity: 0.85;
      }
      .ind-img--front {
        bottom: 0;
        right: 0;
        box-shadow: -8px 8px 40px rgba(0,0,0,0.5);
      }

      /* Orange callout box */
      .ind-callout-box {
        position: relative;
        background: #FF6316;
        border-radius: 24px;
        padding: 40px 48px;
        overflow: visible;
      }
      .ind-callout-stars {
        position: absolute;
        top: -55px;
        right: -30px;
        width: 120px;
        height: 120px;
        pointer-events: none;
      }
      .ind-callout-text {
        font-family: Comedik, Arial, sans-serif;
        font-size: 30px;
        line-height: 1.2;
        color: #fff;
        margin: 0 0 1em;
      }
      .ind-callout-text:last-child { margin-bottom: 0; }

      /* ── 4. WHY CHOOSING US ──────────────────────────────────────── */
      .ind-why-section { padding: 0 0 5em; }
      .ind-why-grid {
        display: grid;
        grid-template-columns: 344px 1fr;
        gap: 4em;
        align-items: start;
      }

      /* Left side — two stacked 96px Schabo headings */
      .ind-why-left {
        display: flex;
        flex-direction: column;
        gap: 0;
        position: relative;
      }
      .ind-why-heading {
        font-family: 'Schabo Condensed', Arial, sans-serif;
        font-size: 96px;
        font-weight: 400;
        text-transform: uppercase;
        line-height: 1.08;
        letter-spacing: 0.03em;
        color: #FCFFDB;
        margin: 0;
      }
      .ind-why-subheading {
        font-family: 'Schabo Condensed', Arial, sans-serif;
        font-size: 96px;
        font-weight: 400;
        text-transform: uppercase;
        line-height: 1.08;
        letter-spacing: 0.03em;
        color: #FCFFDB;
        margin: 0;
      }
      .ind-why-exclaim {
        width: 100px;
        height: auto;
        margin-top: 2em;
        opacity: 0.9;
      }

      /* Right side — bullet list + CTA */
      .ind-why-right {
        display: flex;
        flex-direction: column;
        gap: 2.5em;
        padding-top: 0.5em;
      }
      .ind-why-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
      }
      .ind-why-list li {
        font-family: Comedik, Arial, sans-serif;
        font-size: 40px;
        line-height: 1.08;
        color: #FF6316;
        padding-left: 36px;
        position: relative;
      }
      .ind-why-list li::before {
        content: "–";
        position: absolute;
        left: 0;
        color: rgba(255,99,22,0.5);
      }

      /* ── 5. FAQ ──────────────────────────────────────────────────── */
      .ind-faq-section { padding: 0 0 8em; }
      .ind-faq-inner {
        position: relative;
        max-width: 980px;
        margin: 0 auto;
      }
      .ind-faq-bg {
        width: 100%;
        height: auto;
        display: block;
        opacity: 0.85;
      }
      .ind-faq-content {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 4em 5em;
        text-align: center;
        gap: 1em;
      }
      .ind-faq-label {
        font-family: Comedik, Arial, sans-serif;
        font-size: 30px;
        color: #141D11;
        margin: 0;
        text-transform: uppercase;
        font-weight: 400;
      }
      .ind-faq-q {
        font-family: Comedik, Arial, sans-serif;
        font-size: 22px;
        line-height: 1.4;
        color: #FF6316;
        margin: 0;
        font-weight: 400;
      }
      .ind-faq-a {
        font-family: Comedik, Arial, sans-serif;
        font-size: 18px;
        line-height: 1.45;
        color: #292929;
        margin: 0;
        font-weight: 400;
      }

      /* ── RESPONSIVE ──────────────────────────────────────────────── */
      @media screen and (max-width: 1200px) {
        .ind-make-outer-grid {
          grid-template-columns: 380px 1fr;
          gap: 3em;
        }
        .ind-make-title { font-size: 100px; }
      }

      @media screen and (max-width: 991px) {
        .ind-top-header { padding: 6em 2em 1.5em; }
        .ind-main-title { font-size: 90px; }
        .ind-tagline { font-size: 28px; }
        .ind-make-outer-grid { grid-template-columns: 1fr; gap: 3em; }
        .ind-make-title { font-size: 80px; }
        .ind-why-grid { grid-template-columns: 1fr; gap: 2.5em; }
        .ind-why-heading, .ind-why-subheading { font-size: 64px; }
        .ind-why-list li { font-size: 28px; }
        .ind-callout-box { margin-left: 0; }
      }

      @media screen and (max-width: 767px) {
        .ind-top-header {
          flex-direction: column;
          align-items: flex-start;
          gap: 1em;
          padding: 5em 1.5em 1em;
        }
        .ind-main-title { font-size: 60px; }
        .ind-tagline { font-size: 22px; }
        .ind-intro-text, .ind-key-question, .ind-body-followon { font-size: 18px; }
        .ind-make-title { font-size: 55px; }
        .ind-images-stack { height: auto; position: static; aspect-ratio: auto; }
        .ind-img { position: static; width: 100%; height: auto; aspect-ratio: 16 / 9; margin-bottom: 12px; }
        .ind-img--front { box-shadow: none; }
        .ind-why-heading, .ind-why-subheading { font-size: 42px; }
        .ind-why-list li { font-size: 22px; }
        .ind-callout-text { font-size: 20px; }
        .ind-faq-content { padding: 2.5em 1.5em; }
        .ind-faq-q, .ind-faq-a { font-size: 15px; }
        .ind-faq-label { font-size: 18px; }
        .ind-pill-btn span { font-size: 18px; }
      }
