/* ===================================
       RESET & BASE STYLES
       =================================== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

:root {
      --light-neutral-1: #FAFAF8;
      --light-neutral-2: #F3F4F5;
      --white: #FFFFFF;
      --grey-border: #DADDE1;

      --text-primary: #1C1C1C;
      --text-secondary: #4A4A4A;

      --brand-orange: #F9622D;
      --navy-dark: #0F172A;

      --state-green: #2FB36D;
      --state-yellow: #F9B400;

      /* legacy tokens mapped to new palette */
      --orange-power: var(--brand-orange);
      --off-black: var(--text-primary);
      --off-white: var(--light-neutral-1);
      --cream-bg: var(--light-neutral-1);
      --soft-grey: var(--light-neutral-2);
      --dot-color: var(--grey-border);
      --light-grey: var(--grey-border);
      --mid-grey: var(--text-secondary);
    }

    html {
      scroll-behavior: smooth;
      overscroll-behavior: none;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      color: var(--text-primary);
      background-color: var(--light-neutral-1);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      min-height: 100vh;
      overscroll-behavior: none;
      overflow-x: hidden;
    }

    h1, h2, h3 {
      font-family: 'Roboto Condensed', sans-serif;
      font-weight: 700;
      line-height: 1.2;
      color: var(--text-primary);
    }

    h2 {
      font-size: 42px;
      margin-bottom: 16px;
    }

    h3 {
      font-size: 24px;
      margin-bottom: 12px;
    }

    .section-header h2,
    .section-header-centered h2,
    .section-title {
      font-family: 'Georgia', 'Times New Roman', serif;
      font-weight: 400;
      font-size: 48px;
      line-height: 1.15;
      margin-bottom: 20px;
      letter-spacing: -0.01em;
      color: var(--text-primary);
    }

    @media (max-width: 640px) {
      .section-header h2,
      .section-header-centered h2,
      .section-title {
        font-size: 32px;
      }

      .mobile-break {
        display: block;
        height: 0;
      }
    }

    @media (min-width: 1024px) {
      #solution .section-header h2,
      #why-orangeloops .section-header h2 {
        white-space: nowrap;
      }
    }

    p {
      line-height: 1.7;
      color: var(--text-secondary);
    }

    .material-symbols-outlined {
      font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
      user-select: none;
    }

    .mobile-break {
      display: none;
    }

    .desktop-break {
      display: none;
    }

    @media (min-width: 992px) {
      .desktop-break {
        display: block;
      }
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ===================================
       HEADER
       =================================== */
    .site-header {
      background-color: rgba(255, 255, 255, 0);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      padding: 12px 0;
      border-bottom: none;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: none;
    }

    .site-header.nav-invert .main-nav a {
      color: #ffffff;
    }

    .site-header.nav-invert .main-nav a:hover {
      color: var(--orange-power);
    }

    .site-header.nav-invert .logo img {
      filter: brightness(0) invert(1);
    }

    .site-header.nav-invert .mobile-menu-toggle {
      color: #ffffff;
    }

    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      text-decoration: none;
      display: inline-flex;
      align-items: center;
    }

    .logo img {
      height: 36px;
      width: auto;
      display: block;
    }

    .main-nav ul {
      display: flex;
      gap: 32px;
      list-style: none;
    }

    .main-nav a {
      color: var(--off-black);
      font-weight: 600;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s ease;
    }

    .main-nav a:hover {
      color: var(--orange-power);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .mobile-menu-toggle {
      display: none;
      background: transparent;
      border: none;
      cursor: pointer;
      color: var(--off-black);
      font-size: 28px;
    }

    .mobile-nav {
      display: none;
    }

    .mobile-nav.open {
      display: block;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: var(--white);
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
      padding: 20px;
    }

    .mobile-nav ul {
      list-style: none;
    }

    .mobile-nav li {
      margin-bottom: 16px;
    }

    .mobile-nav a {
      color: var(--off-black);
      text-decoration: none;
      font-weight: 600;
      font-size: 16px;
    }

    .header-cta, .mobile-cta {
      background-color: var(--orange-power);
      color: var(--white);
      padding: 12px 28px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 14px;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      white-space: nowrap;
    }

    .header-cta:hover, .mobile-cta:hover {
      background-color: #000;
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    }

    .mobile-cta {
      display: block;
      width: 100%;
      text-align: center;
    }

    .mobile-floating-cta {
      position: fixed;
      right: 20px;
      bottom: calc(16px + env(safe-area-inset-bottom, 0px));
      background-color: var(--orange-power);
      color: var(--white);
      padding: 12px 24px;
      border-radius: 999px;
      border: none;
      font-weight: 600;
      font-size: 14px;
      box-shadow: 0 12px 28px rgba(249, 98, 45, 0.4);
      z-index: 1100;
      display: none;
    }

    .mobile-floating-cta:focus-visible {
      outline: 2px solid var(--white);
      outline-offset: 4px;
    }

    @media (max-width: 992px) {
      .main-nav {
        display: none;
      }
      .mobile-menu-toggle {
        display: block;
      }
    }

    @media (max-width: 768px) {
      .header-cta {
        display: none !important;
      }
      .header-actions {
        gap: 0;
      }
      .mobile-floating-cta {
        display: block;
      }
    }

    /* ===================================
       HERO SECTION
       =================================== */
    .hero {
      position: relative;
      background-color: var(--light-neutral-1);
      background-image: none;
      padding: 32px 0 48px;
      min-height: max(600px, 80vh);
      border-bottom: 1px solid var(--light-grey);
      display: flex;
      align-items: flex-start;
      justify-content: center;
    }

    #hero-grid-canvas {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      pointer-events: none;
      display: none;
    }

    .hero .container {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .hero-layout {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
      align-items: center;
    }

    .hero-text-block {
      display: flex;
      flex-direction: column;
      gap: 0;
      align-items: flex-start;
      text-align: left;
      max-width: 100%;
      width: 100%;
    }

    .hero-eyebrow {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--orange-power);
      font-weight: 600;
      margin-bottom: 20px;
    }

.hero h1 {
      font-family: 'Georgia', 'Times New Roman', serif;
      font-weight: 400;
      font-size: 60px;
      line-height: 1.1;
      letter-spacing: -0.01em;
      margin-bottom: 24px;
      color: var(--off-black);
    }

    .hero-highlight {
      color: var(--orange-power);
    }

    .hero-subtitle {
      font-size: 18px;
      color: var(--mid-grey);
      margin-bottom: 24px;
      line-height: 1.6;
    }

    .hero-subtitle strong {
      color: var(--orange-power);
      font-weight: 600;
    }

    @media (max-width: 1024px) {
      .hero-layout {
        grid-template-columns: 1fr;
        align-items: center;
        gap: 40px;
      }

      .hero-text-block {
        align-items: center;
        text-align: center;
      }

      .hero h1,
      #hero-heading {
        font-size: 36px;
        line-height: 1.15;
      }
    }

    .hero-ctas {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: flex-start;
      margin-bottom: 32px;
    }

    .hero-actions {
      margin-top: 16px;
      display: flex;
      justify-content: flex-start;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn-primary {
      background-color: var(--orange-power);
      color: var(--white);
      padding: 18px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 16px;
      transition: all 0.3s ease;
      display: inline-block;
      border: none;
      cursor: pointer;
    }

    .btn-primary:hover {
      background-color: #000;
      transform: translateY(-2px);
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
    }

    .btn-secondary {
      background-color: transparent;
      color: var(--off-black);
      padding: 18px 40px;
      border: 2px solid var(--off-black);
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 16px;
      transition: all 0.3s ease;
      display: inline-block;
    }

    .btn-secondary:hover {
      background-color: var(--off-black);
      color: var(--white);
    }

    .hero-bullet-strip {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 16px;
      padding: 16px;
      border: 1px solid var(--light-grey);
      border-radius: 16px;
      background: var(--light-neutral-2);
      margin-top: 16px;
    }

    .hero-bullet-strip .bullet-item {
      font-weight: 600;
      font-size: 15px;
      color: var(--off-black);
      padding: 12px 16px;
      border-radius: 12px;
      background: var(--white);
      box-shadow: 0 6px 14px rgba(28, 28, 28, 0.05);
    }

    .hero-dot-bg {
      background-color: var(--light-neutral-1);
      background-image: radial-gradient(var(--dot-color) 1.5px, transparent 1.5px);
      background-size: 24px 24px;
    }

@media (min-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr auto;
    gap: 2rem;
  }
}

    .hero-trust {
      margin-top: 32px;
    }

    .hero-trust .trust-label {
      margin-bottom: 16px;
      text-align: left;
    }

    .hero-trust .logo-grid {
      margin: 0;
      gap: 16px;
    }

    @media (max-width: 768px) {
      .hero {
        padding-top: 64px;
        padding-bottom: 32px;
        min-height: max(600px, 80vh);
      }
      .hero-layout {
        gap: 40px;
        padding: 0 16px;
        text-align: center;
        align-items: center;
      }
      .hero-text-block {
        text-align: center;
        align-items: center;
        width: 100%;
      }
      .hero h1,
      #hero-heading {
        font-size: 32px;
        line-height: 1.2;
      }
      .hero-subtitle {
        font-size: 16px;
      }
      .hero-chip-row {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 8px;
      }
      .hero-actions {
        justify-content: flex-start;
        width: 100%;
        align-items: flex-start;
      }
      .hero-ctas {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }
      .hero-ctas .btn-primary,
      .hero-ctas .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
      }
      .hero-bullet-strip {
        padding: 12px;
      }
      .hero-bullet-strip .bullet-item {
        font-size: 14px;
      }
    }

    @media (max-width: 430px) {
      .hero {
        padding-top: 56px;
        padding-bottom: 24px;
        min-height: max(600px, 80vh);
      }
      .hero-layout {
        max-width: 100%;
        padding: 0 14px;
        text-align: left;
        align-items: stretch;
        width: 100%;
      }
      .hero-text-block {
        text-align: left;
        align-items: flex-start;
        width: 100%;
        max-width: 100%;
      }
      .hero-eyebrow {
        font-size: 11px;
        width: 100%;
      }
      .hero h1,
      #hero-heading {
        font-size: 34px;
        width: 100%;
        text-align: left;
      }
      .hero-subtitle {
        font-size: 0.98rem;
        margin-bottom: 16px;
        width: 100%;
        text-align: left;
      }
      .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        width: 100%;
      }
      .hero-ctas {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
      }
      .btn-primary,
      .btn-secondary {
        padding: 14px 28px;
        font-size: 14px;
        width: 100%;
        max-width: 260px;
        text-align: center;
      }
    }

    /* ===================================
       TRUST BAR / LOGO SECTION
       =================================== */
    .trust-bar {
      background-color: var(--light-neutral-1);
      padding: 60px 0;
      text-align: center;
    }

    .trust-label {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--mid-grey);
      font-weight: 600;
      margin-bottom: 32px;
    }

    .logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 24px;
      max-width: 900px;
      margin: 0 auto;
    }

    .logo-item {
      height: 80px;
      border: 1px solid var(--light-grey);
      border-radius: 12px;
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px;
      opacity: 0.7;
      transition: all 0.3s ease;
      font-weight: 600;
      color: var(--mid-grey);
    }

    .logo-item:hover {
      opacity: 1;
      border-color: var(--orange-power);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    /* ===================================
       SECTIONS
       =================================== */
    .section {
      padding: 100px 0;
      background-color: var(--white);
      background-image: none;
      position: relative;
    }

    .section-alt {
      background-color: var(--white);
      background-image: none;
    }

    .section-dark {
      background-color: var(--navy-dark);
      color: var(--white);
      background-image: none;
    }

    .section--platform {
      background-color: var(--white);
      border-top: 1px solid var(--grey-border);
      border-bottom: 1px solid var(--grey-border);
    }

    .section-header {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 60px;
    }

    .section-header p {
      font-size: 18px;
      color: var(--mid-grey);
      margin-top: 16px;
    }

    .feature-title {
      color: var(--text-primary);
    }

    .feature-subtitle,
    .feature-bullets {
      color: var(--text-secondary);
    }

    .section-header-light h2 {
      color: var(--white);
    }

    .section-header-light p {
      color: rgba(255, 255, 255, 0.85);
    }

    .section-dark .section-subtitle,
    .section-dark p {
      color: rgba(255, 255, 255, 0.85);
    }

    #problem {
      background-color: var(--white);
    }

    #use-cases {
      background-color: var(--light-neutral-2);
    }

    #faq {
      background-color: var(--light-neutral-1);
    }

    /* Grid Systems */
    .grid-3, .grid-4 {
      display: grid;
      gap: 32px;
    }

    .grid-3 {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

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

    .grid-4 {
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .solution-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .solution-grid .info-card {
      height: 100%;
    }

    #use-cases .usecase-card {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
      padding: 1.25rem;
      border-radius: 24px;
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
      min-height: 460px;
      height: 100%;
      outline: none;
      transition: transform 150ms ease, box-shadow 150ms ease;
    }

    #use-cases .usecase-image {
      width: 100%;
      aspect-ratio: 4 / 3;
      background-image: var(--card-bg);
      background-size: cover;
      background-position: center;
      border-radius: 18px;
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
    }

    #use-cases .usecase-body {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      flex: 1;
    }

    #use-cases .usecase-icon-title {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    #use-cases .usecase-card h3 {
      margin: 0;
      font-size: 1.05rem;
      font-weight: 700;
      color: #0f172a;
    }

    #use-cases .usecase-card p {
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.55;
      color: #1f2937;
    }

    #use-cases .usecase-card .icon-placeholder {
      width: 2.35rem;
      height: 2.35rem;
      border-radius: 0.85rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
      color: #F9622D;
      flex-shrink: 0;
    }

    #use-cases .usecase-card .icon-placeholder .material-symbols-outlined {
      font-size: 1.25rem;
      color: #F9622D;
    }

    #use-cases .usecase-card:hover,
    #use-cases .usecase-card:focus,
    #use-cases .usecase-card:focus-within {
      transform: translateY(-2px);
      box-shadow: 0 16px 32px rgba(15, 23, 42, 0.16);
    }

    #use-cases .usecase-card:focus-visible {
      box-shadow: 0 0 0 3px rgba(249, 98, 45, 0.4);
    }

    @media (max-width: 768px) {
      #use-cases .usecase-card {
        min-height: 380px;
      }

      #use-cases .usecase-card h3 {
        font-size: 1rem;
      }

      #use-cases .usecase-card p {
        font-size: 0.9rem;
      }
    }

    .card-carousel {
      position: relative;
    }

    .carousel-controls {
      display: none;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 20px;
    }

    .carousel-btn {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: none;
      background: var(--white);
      box-shadow: 0 10px 20px rgba(28, 28, 28, 0.12);
      font-size: 24px;
      font-weight: 700;
      color: var(--orange-power);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .carousel-dots {
      display: flex;
      gap: 8px;
      align-items: center;
      justify-content: center;
    }

    .carousel-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      border: none;
      background: rgba(28, 28, 28, 0.2);
      transition: all 0.2s ease;
      padding: 0;
      cursor: pointer;
    }

    .carousel-dot.active {
      width: 32px;
      background: var(--orange-power);
    }

    @media (max-width: 768px) {
      .card-carousel {
        display: flex !important;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 16px;
        padding: 8px 0 16px;
        margin: 0;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
      }

      .card-carousel > * {
        flex: 0 0 85%;
        min-width: 260px;
        scroll-snap-align: start;
      }

      .card-carousel::-webkit-scrollbar {
        display: none;
      }

      .carousel-controls {
        display: flex;
      }
    }

    /* Info Cards */
    .info-card {
      background: var(--white);
      padding: 40px 32px;
      border-radius: 12px;
      border: 1px solid var(--light-grey);
      transition: all 0.3s ease;
    }

    .info-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(28, 28, 28, 0.08);
      border-color: var(--orange-power);
    }

    .info-card-dark {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(218, 221, 225, 0.35);
    }

    .info-card h3 {
      color: var(--off-black);
      margin-top: 20px;
    }

    .info-card-dark h3 {
      color: var(--white);
    }

    .info-card p {
      color: var(--mid-grey);
      margin-top: 12px;
    }

    .icon-placeholder {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, var(--orange-power), #ff8555);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: var(--white);
      font-size: 18px;
    }

    /* Regulatory Box */
    .reg-box {
      background: var(--light-neutral-2);
      border: 1px solid var(--grey-border);
      border-left: 4px solid var(--orange-power);
      padding: 32px;
      border-radius: 12px;
      margin-top: 48px;
      box-shadow: 0 10px 24px rgba(28, 28, 28, 0.08);
    }

    .reg-box h3 {
      color: var(--text-primary);
      margin-bottom: 16px;
    }

    .problem-close {
      margin-top: 32px;
      text-align: center;
      font-weight: 600;
      color: var(--off-black);
    }

    .problem-link {
      text-align: center;
      margin: 16px 0 32px;
    }

    .solution-cta-note {
      text-align: center;
      margin-top: 24px;
      color: var(--off-black);
    }

    /* Range slider styling for Tailwind feature mockups */
    .feature-mockups input[type=range] {
      -webkit-appearance: none;
      width: 100%;
      background: transparent;
    }

    .feature-mockups input[type=range]::-webkit-slider-thumb {
      -webkit-appearance: none;
      height: 16px;
      width: 16px;
      border-radius: 50%;
      background: #FF5C35;
      cursor: pointer;
      margin-top: -6px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    }

    .problem-link a,
    .solution-cta-note a {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.65rem 1.75rem;
      border-radius: 999px;
      border: 1px solid var(--light-grey);
      background: var(--white);
      font-weight: 600;
      color: var(--orange-power);
      text-decoration: none;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }

    .problem-link a:hover,
    .solution-cta-note a:hover {
      transform: translateY(-1px);
      background: var(--orange-power);
      color: var(--white);
      border-color: var(--orange-power);
      box-shadow: 0 12px 26px rgba(249, 98, 45, 0.3);
    }

    /* Step Cards */
    .step-card {
      background: var(--white);
      padding: 40px 32px;
      border-radius: 12px;
      border: 1px solid var(--light-grey);
    }

    .step-number {
      width: 50px;
      height: 50px;
      background: var(--orange-power);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: var(--white);
      font-size: 20px;
      margin-bottom: 20px;
    }

    .step-card ul {
      margin-top: 16px;
      padding-left: 20px;
    }

    .step-card li {
      margin-bottom: 8px;
      color: var(--mid-grey);
    }

    /* Boston Grid */
    .boston-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .boston-gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 16px;
    }

    .boston-list {
      list-style: none;
      padding: 0;
    }

    .boston-list li {
      padding: 16px 0 16px 40px;
      position: relative;
      font-size: 17px;
      line-height: 1.7;
    }

    .boston-list li::before {
      content: 'location_on';
      font-family: 'Material Symbols Outlined';
      position: absolute;
      left: 0;
      color: var(--orange-power);
      font-size: 24px;
    }

    .image-placeholder {
      background: linear-gradient(135deg, var(--light-grey), var(--off-white));
      border: 1px solid var(--light-grey);
      border-radius: 16px;
      overflow: hidden;
      min-height: 220px;
    }

    .image-placeholder img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Case Studies */
    .case-showcase {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .case-study-card {
      background: #FFFFFF;
      border: 1px solid var(--light-grey);
      border-radius: 24px;
      padding: 40px;
      display: flex;
      gap: 40px;
      align-items: center;
    }

    .case-study-card.reverse {
      flex-direction: row-reverse;
    }

    .case-media,
    .case-content {
      flex: 1;
    }

    .case-media {
      border-radius: 20px;
      overflow: hidden;
      background: var(--white);
      box-shadow: 0 20px 40px rgba(28, 28, 28, 0.08);
    }

    .case-media img {
      width: 100%;
      display: block;
      object-fit: cover;
    }

    .case-eyebrow {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--orange-power);
      font-weight: 600;
      margin-bottom: 8px;
    }

    .case-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      margin: 16px 0 20px;
    }

    .case-meta-item span {
      display: block;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--mid-grey);
      font-weight: 600;
      margin-bottom: 4px;
    }

    .case-meta-item strong {
      font-size: 15px;
      color: var(--off-black);
    }

    .case-description {
      color: var(--mid-grey);
      margin-bottom: 24px;
    }

    .case-contributions {
      background: var(--white);
      border-radius: 16px;
      padding: 24px;
      border-left: 4px solid var(--orange-power);
      box-shadow: 0 10px 25px rgba(28, 28, 28, 0.08);
    }

    .case-contributions h4 {
      margin-bottom: 16px;
      font-size: 16px;
    }

    .case-contributions ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .case-contributions li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 15px;
      color: var(--mid-grey);
      margin-bottom: 8px;
    }

    .case-contributions li::before {
      content: 'check_circle';
      font-family: 'Material Symbols Outlined';
      color: var(--orange-power);
      font-size: 20px;
    }

    /* Testimonials */
    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 32px;
    }

    .testimonial-card {
      background: var(--white);
      padding: 36px;
      border-radius: 20px;
      border: 1px solid rgba(28, 28, 28, 0.08);
      box-shadow: 0 18px 35px rgba(28, 28, 28, 0.08);
      display: flex;
      flex-direction: column;
      gap: 20px;
      height: 100%;
      position: relative;
      overflow: hidden;
    }

    .testimonial-card::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      border: 1px solid rgba(249, 98, 45, 0.12);
      pointer-events: none;
    }

    .testimonial-top {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 16px;
      align-items: center;
    }

    .testimonial-avatar {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      overflow: hidden;
      border: 2px solid rgba(249, 98, 45, 0.2);
    }

    .testimonial-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .testimonial-role {
      font-size: 13px;
      color: var(--mid-grey);
      margin-top: 4px;
    }

    .testimonial-rating {
      text-align: right;
    }

    .testimonial-rating span {
      display: block;
      color: var(--orange-power);
      font-size: 14px;
      letter-spacing: 0.08em;
    }

    .testimonial-rating strong {
      font-size: 20px;
      color: var(--off-black);
    }

    .testimonial-quote {
      font-size: 16px;
      line-height: 1.7;
      color: var(--off-black);
      font-style: italic;
      position: relative;
      padding-left: 20px;
    }

    .testimonial-quote::before {
      content: '“';
      position: absolute;
      left: 0;
      top: -6px;
      font-size: 40px;
      color: rgba(249, 98, 45, 0.3);
      font-family: 'Roboto Condensed', sans-serif;
    }

    .testimonial-footer {
      display: flex;
      justify-content: space-between;
      font-size: 13px;
      color: var(--orange-power);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .testimonial-footer span:last-child {
      color: var(--mid-grey);
    }

    .logos-caption {
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.7);
      text-align: center;
      margin: 48px 0 24px;
    }

    .cred-layout {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 48px;
      align-items: center;
    }

    .cred-content .section-header {
      text-align: left;
      margin-bottom: 32px;
    }

    .section-header-centered {
      text-align: center;
      margin-bottom: 48px;
    }

    .section-header-centered p {
      color: rgba(255, 255, 255, 0.8);
    }

    .cred-points {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .cred-point h3 {
      color: var(--white);
      margin-bottom: 8px;
    }

    .cred-point p {
      color: rgba(255, 255, 255, 0.8);
      margin: 0;
    }

    .cred-media-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
    }

    .cred-media-item {
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.15);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    }

    .cred-media-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .cred-media-item-wide {
      grid-column: 1 / -1;
      min-height: 220px;
    }

    @media (max-width: 768px) {
      .cred-content .section-header {
        text-align: center;
      }
    }

    .section-dark .logo-grid .logo-item {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.2);
      color: rgba(255, 255, 255, 0.9);
    }

    .section-dark .logo-grid .logo-item img {
      max-width: 120px;
      max-height: 44px;
      width: auto;
      height: auto;
      display: block;
      filter: brightness(0) invert(1);
      opacity: 0.9;
      margin: 0 auto;
    }

    .process-note {
      text-align: center;
      margin-top: 32px;
      color: var(--mid-grey);
      font-weight: 600;
    }

/* FAQ */
    .faq-list {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      background: var(--white);
      border: 1px solid var(--light-grey);
      border-radius: 12px;
      margin-bottom: 16px;
      overflow: hidden;
    }

    .faq-item summary {
      padding: 24px 32px;
      cursor: pointer;
      list-style: none;
      font-weight: 600;
      color: var(--text-primary);
      transition: all 0.3s ease;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .faq-item summary:hover {
      background: var(--light-neutral-2);
    }

    .faq-item summary::after {
      content: 'expand_more';
      font-family: 'Material Symbols Outlined';
      font-size: 24px;
      color: var(--orange-power);
    }

    .faq-item[open] summary::after {
      content: 'expand_less';
    }

    .faq-item summary h3 {
      margin: 0;
      font-size: 18px;
    }

    .faq-body {
      padding: 0 32px 24px;
      color: var(--text-secondary);
    }

    /* Final CTA */
    .final-cta {
      background: var(--navy-dark);
      color: var(--white);
      border-top: 1px solid var(--grey-border);
    }

    .final-cta .section-header {
      color: var(--white);
    }

    .final-cta .section-header h2 {
      color: var(--white);
    }

    .final-cta .section-header p {
      color: rgba(255, 255, 255, 0.85);
    }

    .final-cta-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
      gap: 48px;
      align-items: start;
      max-width: 1000px;
      margin: 0 auto;
    }

    .benefit-item {
      display: flex;
      gap: 20px;
      margin-bottom: 32px;
    }

    .benefit-item .icon-placeholder {
      flex-shrink: 0;
    }

    .benefit-item h3 {
      color: var(--white);
      font-size: 18px;
      margin-bottom: 8px;
    }

    .benefit-item p {
      color: rgba(255, 255, 255, 0.82);
      font-size: 15px;
    }

    .cta-popup-card {
      background: #FFFFFF;
      border: 1px solid var(--light-grey);
      border-radius: 16px;
      padding: 32px;
      text-align: left;
      color: var(--off-black);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
    }

    .cta-popup-card p {
      color: var(--mid-grey);
      margin-bottom: 24px;
    }

    .typeform-trigger {
      background: var(--orange-power);
      color: var(--white);
      width: 100%;
      padding: 18px 32px;
      border-radius: 50px;
      border: none;
      font-weight: 600;
      font-size: 16px;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    }

    .typeform-trigger:hover {
      transform: translateY(-2px);
      background: var(--white);
      color: var(--orange-power);
      box-shadow: 0 15px 30px rgba(249, 98, 45, 0.4);
    }

    .final-cta-note {
      display: block;
      margin-top: 16px;
      text-align: center;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.7);
    }

    .text-link {
      color: var(--orange-power);
      text-decoration: none;
      font-weight: 600;
    }

    .text-link:hover {
      text-decoration: underline;
    }

    /* Footer */
    .site-footer {
      background-color: var(--navy-dark);
      color: rgba(255, 255, 255, 0.75);
      padding: 0 0 32px;
    }

    .site-footer .container {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 80px;
    }

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

    .footer-col h3,
    .footer-col h4 {
      color: rgba(255, 255, 255, 0.75);
      margin-bottom: 18px;
      font-size: 18px;
    }

    .footer-brand {
      font-size: 15px;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.75);
    }

    .footer-contact {
      margin-top: 20px;
      line-height: 1.8;
    }

    .footer-contact p {
      color: rgba(255, 255, 255, 0.75);
    }

    .footer-contact strong {
      display: block;
      color: rgba(255, 255, 255, 0.75);
      margin-bottom: 8px;
    }

    .footer-contact a {
      color: rgba(255, 255, 255, 0.75);
      text-decoration: none;
      font-weight: 600;
      transition: color 0.2s ease;
    }

    .footer-contact a:hover {
      color: var(--orange-power);
    }

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

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

    .footer-col a {
      color: rgba(255, 255, 255, 0.75);
      text-decoration: none;
      transition: color 0.2s ease;
    }

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

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

    .footer-bottom p {
      color: rgba(255, 255, 255, 0.75);
      margin: 0;
    }

    .footer-badges {
      margin-top: 24px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
    }

    .footer-badge {
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 999px;
      padding: 8px 18px;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.75);
    }

    /* Responsive Adjustments */
    @media (max-width: 992px) {
      h2 {
        font-size: 36px;
      }

      .section {
        padding: 60px 0;
      }

      .boston-grid,
      .final-cta-grid,
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .case-study-card,
      .case-study-card.reverse {
        flex-direction: column;
      }
      .testimonial-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 600px) {
      h2 {
        font-size: 28px;
      }

      h3 {
        font-size: 20px;
      }

      .grid-3,
      .grid-4 {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

    .btn-primary,
    .btn-secondary {
      padding: 14px 32px;
      font-size: 15px;
    }
    }

/* Hero dashboard helpers */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ===================================
   FEATURE MOCKUPS STYLING
   =================================== */
.feature-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

@media (min-width: 900px) {
  .feature-row {
    flex-direction: row;
  }

  .feature-row--reverse {
    flex-direction: row-reverse;
  }
}

@media (max-width: 899px) {
  .feature-row,
  .feature-row--reverse {
    flex-direction: column !important;
  }

  .feature-mockup {
    margin-top: 16px;
    width: 100%;
  }
}

.feature-mockup .app-mini {
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-mockup .app-mini:hover {
  transform: translateY(-8px);
}

/* Range slider styling for scenario mockup */
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: var(--brand-orange, #FF5C35);
  cursor: pointer;
  margin-top: -6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  background: #e2e8f0;
  border-radius: 2px;
}

input[type=range]::-moz-range-thumb {
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: var(--brand-orange, #FF5C35);
  cursor: pointer;
  border: none;
}

input[type=range]::-moz-range-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  background: #e2e8f0;
  border-radius: 2px;
}

/* ROOT DASHBOARD CONTAINER – make it responsive */
.event-dashboard {
  width: 100%;
  max-width: 1120px;
  min-width: 0;
  height: auto;
  min-height: 0;
  overflow: visible;
}

.hero-dashboard .event-dashboard > * {
  min-width: 0;
}

/* Base hero layout: stacked */
.hero-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding-top: 16px;
  padding-bottom: 12px;
}

.hero-text-block {
  max-width: 720px;
  width: 100%;
  text-align: center;
  align-items: center;
}

.hero-dashboard {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  width: 100%;
  max-width: 860px;
  transform: none;
  pointer-events: none;
  overflow: visible;
}

.hero-dashboard .event-dashboard {
  width: 100%;
  max-width: 860px;
  min-width: 0;
}

.hero-ctas {
  justify-content: center;
}

.hero-actions {
  justify-content: center;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-layout {
    gap: 36px;
    padding-top: 20px;
    padding-bottom: 16px;
  }
}

@media (min-width: 1280px) {
  .hero-dashboard {
    max-width: 900px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-dashboard {
    transform: scale(1);
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-dashboard {
    transform: scale(1);
    transform-origin: top center;
    width: 100%;
    margin-right: 0;
  }
}

@media (max-width: 1024px) {
  .hero-layout {
    gap: 36px;
    padding-top: 24px;
    padding-bottom: 16px;
  }

  .hero-dashboard {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}

/* Mobile: text on top, mockup below full width */
@media (max-width: 768px) {
  .hero-layout {
    align-items: flex-start;
    gap: 32px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-text-block {
    max-width: 100%;
    width: 100%;
  }

  .hero-dashboard {
    align-self: center;
    justify-content: center;
    margin-left: 0;
    width: 100%;
    margin-right: 0;
    transform: scale(1);
    transform-origin: top center;
  }

  .hero-dashboard .event-dashboard {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
}
