  :root {
      --tangerine: #FB923C;
      --tangerine-dark: #EA7A1C;
      --tangerine-light: #FED7AA;
      --ink: #1A1208;
      --ink-soft: #2D2416;
      --cream: #FFF8F0;
      --beige: #F5ECD8;
      --olive: #5C5A2E;
      --olive-light: #7A7840;
      --steel: #3A3A3A;
      --white: #FFFFFF;
      --shadow: rgba(26, 18, 8, 0.15);
  }

  *,
  *::before,
  *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: 'IBM Plex Mono', monospace;
      background: var(--cream);
      color: var(--ink);
      overflow-x: hidden;
  }

  /* ===== NAVBAR ===== */
  #navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 0;
      pointer-events: none;
  }

  .nav-logo {
      position: absolute;
      top: 16px;
      left: 24px;
      pointer-events: all;
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
  }

  .nav-logo-icon {
      width: 48px;
      height: 48px;
      background: var(--tangerine);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 22px;
      color: white;
      box-shadow: 0 4px 20px rgba(251, 146, 60, 0.4);
      letter-spacing: -1px;
  }

  .nav-logo-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 16px;
      color: var(--ink);
      line-height: 1.1;
      text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8);
  }

  .nav-logo-text span {
      color: var(--tangerine);
      display: block;
  }

  .nav-menu {
      position: absolute;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      pointer-events: all;
      display: flex;
      gap: 4px;
      background: rgba(26, 18, 8, 0.88);
      backdrop-filter: blur(12px);
      border-radius: 100px;
      padding: 8px 12px;
      border: 1px solid rgba(251, 146, 60, 0.2);
  }

  .nav-menu a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      font-weight: 500;
      padding: 6px 14px;
      border-radius: 100px;
      transition: all 0.25s;
      letter-spacing: 0.05em;
      text-transform: uppercase;
  }

  .nav-menu a:hover {
      background: var(--tangerine);
      color: white;
  }

  .nav-cta {
      position: absolute;
      top: 16px;
      right: 24px;
      pointer-events: all;
  }

  .nav-cta a {
      background: var(--tangerine);
      color: white;
      text-decoration: none;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      font-weight: 700;
      padding: 12px 20px;
      border-radius: 6px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      box-shadow: 0 4px 20px rgba(251, 146, 60, 0.35);
      display: block;
      transition: all 0.25s;
  }

  .nav-cta a:hover {
      background: var(--tangerine-dark);
      transform: translateY(-1px);
      box-shadow: 0 6px 24px rgba(251, 146, 60, 0.5);
  }

  /* ===== HERO — INDUSTRIAL LABEL ===== */
  #hero {
      min-height: 100vh;
      background: var(--ink);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 100px 20px 60px;
      position: relative;
      overflow: hidden;
  }

  .hero-bg-pattern {
      position: absolute;
      inset: 0;
      background-image:
          repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(251, 146, 60, 0.04) 40px, rgba(251, 146, 60, 0.04) 41px),
          repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(251, 146, 60, 0.04) 40px, rgba(251, 146, 60, 0.04) 41px);
  }

  .hero-bg-text {
      position: absolute;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: clamp(120px, 20vw, 240px);
      color: rgba(251, 146, 60, 0.04);
      white-space: nowrap;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      letter-spacing: -5px;
  }

  /* The Label */
  .industrial-label {
      width: clamp(340px, 90vw, 960px);
      min-height: clamp(300px, 60vh, 620px);
      background: var(--beige);
      border: 4px solid var(--ink);
      border-radius: 6px;
      box-shadow: 8px 12px 60px rgba(0, 0, 0, 0.7), inset 0 0 0 1px rgba(251, 146, 60, 0.1);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      z-index: 2;
  }

  /* Top Band */
  .label-top-band {
      background: var(--olive);
      padding: 10px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 2px solid var(--ink);
  }

  .label-top-band .brand-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: clamp(14px, 2.5vw, 24px);
      color: white;
      letter-spacing: 0.08em;
      text-transform: uppercase;
  }

  .label-top-band .label-badge {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 9px;
      color: rgba(255, 255, 255, 0.7);
      border: 1px solid rgba(255, 255, 255, 0.3);
      padding: 3px 8px;
      border-radius: 2px;
      letter-spacing: 0.1em;
  }

  /* Three columns */
  .label-body {
      display: grid;
      grid-template-columns: 1fr 1.5fr 1fr;
      flex: 1;
      border-top: none;
  }

  .label-col {
      padding: 16px;
      position: relative;
  }

  .label-col:not(:last-child) {
      border-right: 1.5px solid rgba(26, 18, 8, 0.2);
  }

  /* Left col — image spec box */
  .spec-box {
      border: 2px solid var(--olive);
      padding: 8px;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
  }

  .spec-box img,
  .spec-box-img {
      width: 100%;
      height: clamp(140px, 22vh, 280px);
      object-fit: cover;
      display: block;
      background: linear-gradient(135deg, #3a3a3a 0%, #1a1a1a 100%);
      position: relative;
  }

  /* Placeholder image with icon */
  .img-placeholder {
      width: 100%;
      height: clamp(140px, 22vh, 280px);
      background: linear-gradient(135deg, #2D2416 0%, #1A1208 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
  }

  .img-placeholder svg {
      opacity: 0.6;
  }

  .img-placeholder-label {
      font-size: 10px;
      color: rgba(255, 255, 255, 0.5);
      letter-spacing: 0.1em;
  }

  .spec-ref {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 8px;
      color: var(--steel);
      letter-spacing: 0.1em;
      text-align: center;
  }

  .spec-divider {
      width: 100%;
      height: 1px;
      background: rgba(26, 18, 8, 0.15);
  }

  .spec-data {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 8px;
      color: var(--steel);
      letter-spacing: 0.05em;
      line-height: 1.8;
      text-align: left;
      width: 100%;
  }

  /* Center col — headline */
  .label-center {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      text-align: center;
      gap: 12px;
      padding: 20px 16px;
  }

  .label-headline {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: clamp(32px, 5vw, 64px);
      color: var(--ink);
      line-height: 0.95;
      letter-spacing: -1px;
  }

  .label-headline span {
      color: var(--tangerine);
      display: block;
  }

  .label-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(13px, 1.5vw, 16px);
      color: var(--steel);
      font-style: italic;
      line-height: 1.4;
  }

  .label-rating {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: 11px;
      color: var(--tangerine);
      font-weight: 700;
  }

  .label-cta-btn {
      background: var(--tangerine);
      color: white;
      border: 3px solid var(--ink);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 14px;
      letter-spacing: 0.15em;
      padding: 10px 28px;
      text-decoration: none;
      display: inline-block;
      text-transform: uppercase;
      transition: all 0.2s;
      box-shadow: 3px 3px 0 var(--ink);
      position: relative;
  }

  .label-cta-btn:hover {
      transform: translate(-2px, -2px);
      box-shadow: 5px 5px 0 var(--ink);
  }

  /* Barcode */
  .barcode {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
  }

  .barcode-bars {
      display: flex;
      align-items: flex-end;
      gap: 1px;
      height: 36px;
  }

  .barcode-bars span {
      background: var(--ink);
      display: block;
  }

  .barcode-num {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 8px;
      color: var(--steel);
      letter-spacing: 0.2em;
  }

  /* Right col */
  .label-right {
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding: 16px;
  }

  .right-img-box {
      width: 100%;
      height: clamp(120px, 18vh, 220px);
      background: linear-gradient(135deg, #FB923C22 0%, #5C5A2E22 100%);
      border: 1.5px solid var(--olive);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
  }

  .right-img-inner {
      width: 100%;
      height: 100%;
      background: linear-gradient(160deg, #2D2416 0%, #5C5A2E 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
  }

  .spec-list {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 9px;
      color: var(--steel);
      line-height: 2;
      letter-spacing: 0.05em;
  }

  .spec-list li {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 4px 0;
      border-bottom: 1px solid rgba(26, 18, 8, 0.08);
  }

  .spec-list li::before {
      content: '▸';
      color: var(--tangerine);
      font-size: 8px;
  }

  .phone-display {
      font-family: 'IBM Plex Mono', monospace;
      font-weight: 700;
      font-size: clamp(11px, 1.4vw, 14px);
      color: var(--ink);
      letter-spacing: 0.05em;
      text-align: center;
      padding: 8px;
      border: 2px dashed var(--tangerine);
      background: rgba(251, 146, 60, 0.06);
  }

  /* Bottom band */
  .label-bottom-band {
      background: var(--ink);
      padding: 8px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 2px solid var(--tangerine);
  }

  .label-bottom-band span {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 9px;
      color: rgba(255, 255, 255, 0.6);
      letter-spacing: 0.1em;
  }

  /* Rubber stamp */
  .rubber-stamp {
      position: absolute;
      top: 60px;
      right: -20px;
      width: 130px;
      height: 130px;
      border: 5px solid var(--tangerine);
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transform: rotate(-8deg);
      opacity: 0.85;
      z-index: 10;
      background: transparent;
      pointer-events: none;
  }

  .rubber-stamp::before {
      content: '';
      position: absolute;
      inset: 4px;
      border: 2px solid var(--tangerine);
      border-radius: 50%;
  }

  .rubber-stamp .stamp-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 16px;
      color: var(--tangerine);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      text-align: center;
      line-height: 1.1;
  }

  .rubber-stamp .stamp-year {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 10px;
      color: var(--tangerine);
      letter-spacing: 0.2em;
  }

  /* Hero scroll hint */
  .scroll-hint {
      position: absolute;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      color: rgba(255, 255, 255, 0.4);
      font-size: 9px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      animation: scrollBounce 2s ease-in-out infinite;
  }

  .scroll-hint svg {
      opacity: 0.5;
  }

  @keyframes scrollBounce {

      0%,
      100% {
          transform: translateX(-50%) translateY(0);
      }

      50% {
          transform: translateX(-50%) translateY(6px);
      }
  }

  /* ===== ABOUT ===== */
  #about {
      background: var(--cream);
      padding: 100px 40px;
      position: relative;
      overflow: hidden;
  }

  .about-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
  }

  .about-label {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 10px;
      color: var(--tangerine);
      letter-spacing: 0.3em;
      text-transform: uppercase;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 12px;
  }

  .about-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--tangerine);
      opacity: 0.3;
  }

  .about-headline {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: clamp(42px, 5vw, 72px);
      line-height: 0.92;
      color: var(--ink);
      margin-bottom: 24px;
  }

  .about-headline em {
      font-style: normal;
      color: var(--tangerine);
  }

  .about-body {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      line-height: 1.7;
      color: var(--steel);
      margin-bottom: 24px;
  }

  .about-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 32px;
  }

  .about-feat {
      padding: 20px;
      border: 1px solid rgba(251, 146, 60, 0.2);
      border-radius: 4px;
      background: rgba(251, 146, 60, 0.04);
      transition: all 0.3s;
  }

  .about-feat:hover {
      border-color: var(--tangerine);
      transform: translateY(-3px);
      box-shadow: 0 8px 32px rgba(251, 146, 60, 0.1);
  }

  .feat-icon {
      font-size: 24px;
      margin-bottom: 8px;
  }

  .feat-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 16px;
      color: var(--ink);
      letter-spacing: 0.05em;
      margin-bottom: 4px;
  }

  .feat-desc {
      font-size: 11px;
      color: var(--steel);
      line-height: 1.5;
  }

  .about-image-wrap {
      position: relative;
  }

  .about-image-main {
      width: 100%;
      aspect-ratio: 4/5;
      background: linear-gradient(160deg, var(--ink) 0%, #3A2A10 100%);
      border-radius: 4px;
      overflow: hidden;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .about-image-main::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, var(--ink) 0%, transparent 50%);
  }

  .about-img-icon {
      opacity: 0.15;
  }

  .about-image-badge {
      position: absolute;
      bottom: -20px;
      left: -20px;
      background: var(--tangerine);
      color: white;
      padding: 20px 24px;
      border-radius: 4px;
      text-align: center;
      box-shadow: 0 8px 32px rgba(251, 146, 60, 0.3);
      z-index: 2;
  }

  .badge-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 48px;
      line-height: 1;
      display: block;
  }

  .badge-text {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 9px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      opacity: 0.9;
  }

  .about-image-tag {
      position: absolute;
      top: 20px;
      right: -12px;
      background: var(--ink);
      color: var(--tangerine);
      font-family: 'IBM Plex Mono', monospace;
      font-size: 9px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 8px 16px;
      writing-mode: vertical-rl;
      border-radius: 0 4px 4px 0;
  }

  /* ===== SERVICES — FULL SCREEN PANELS ===== */
  #services {
      position: relative;
  }

  .services-progress {
      position: fixed;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 8px;
      z-index: 500;
  }

  .progress-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(251, 146, 60, 0.3);
      border: 1px solid rgba(251, 146, 60, 0.5);
      cursor: pointer;
      transition: all 0.3s;
  }

  .progress-dot.active {
      background: var(--tangerine);
      transform: scale(1.5);
  }

  .service-panel {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      padding: 80px 40px;
  }

  /* Panel 1 */
  .panel-1 {
      background: var(--ink);
  }

  .p1-layout {
      max-width: 1200px;
      width: 100%;
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 60px;
      align-items: center;
  }

  .p1-number {
      position: absolute;
      right: 60px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(180px, 25vw, 360px);
      color: rgba(251, 146, 60, 0.07);
      line-height: 1;
      pointer-events: none;
      top: 50%;
      transform: translateY(-50%);
  }

  .panel-eyebrow {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 10px;
      color: var(--tangerine);
      letter-spacing: 0.3em;
      text-transform: uppercase;
      margin-bottom: 16px;
  }

  .panel-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: clamp(48px, 6vw, 88px);
      line-height: 0.9;
      margin-bottom: 24px;
  }

  .p1-layout .panel-title {
      color: white;
  }

  .panel-desc {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      line-height: 1.7;
      margin-bottom: 32px;
  }

  .p1-layout .panel-desc {
      color: rgba(255, 255, 255, 0.7);
  }

  .panel-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 32px;
  }

  .panel-tag {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 9px;
      padding: 5px 12px;
      border-radius: 2px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
  }

  .tag-orange {
      background: rgba(251, 146, 60, 0.15);
      color: var(--tangerine);
      border: 1px solid rgba(251, 146, 60, 0.3);
  }

  .panel-btn {
      display: inline-block;
      background: var(--tangerine);
      color: white;
      text-decoration: none;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 16px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 14px 36px;
      border-radius: 3px;
      transition: all 0.25s;
      box-shadow: 0 4px 24px rgba(251, 146, 60, 0.3);
  }

  .panel-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(251, 146, 60, 0.45);
  }

  .p1-right {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
  }

  .p1-feature-card {
      padding: 20px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 4px;
      background: rgba(255, 255, 255, 0.04);
      transition: all 0.3s;
  }

  .p1-feature-card:hover {
      border-color: var(--tangerine);
      background: rgba(251, 146, 60, 0.06);
  }

  .p1-feat-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 18px;
      color: white;
      margin-bottom: 6px;
  }

  .p1-feat-desc {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.5;
  }

  /* Panel 2 */
  .panel-2 {
      background: var(--beige);
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .p2-layout {
      max-width: 1200px;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      min-height: 70vh;
  }

  .p2-left {
      background: var(--tangerine);
      padding: 60px 48px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
      padding-right: 80px;
  }

  .p2-left .panel-title {
      color: white;
  }

  .p2-left .panel-desc {
      color: rgba(255, 255, 255, 0.85);
  }

  .p2-icon {
      width: 72px;
      height: 72px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      font-size: 32px;
  }

  .p2-right {
      background: var(--ink);
      padding: 60px 48px 60px 72px;
      display: flex;
      flex-direction: column;
      justify-content: center;
  }

  .p2-steps {
      display: flex;
      flex-direction: column;
      gap: 20px;
  }

  .p2-step {
      display: flex;
      align-items: flex-start;
      gap: 16px;
  }

  .p2-step-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 32px;
      color: var(--tangerine);
      line-height: 1;
      flex-shrink: 0;
      width: 36px;
  }

  .p2-step-content .step-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 18px;
      color: white;
      margin-bottom: 4px;
  }

  .p2-step-content .step-desc {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.5;
  }

  /* Panel 3 */
  .panel-3 {
      background: var(--cream);
  }

  .p3-rings {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
  }

  .ring {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(251, 146, 60, 0.1);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
  }

  .p3-layout {
      max-width: 800px;
      width: 100%;
      text-align: center;
      position: relative;
      z-index: 2;
  }

  .p3-layout .panel-title {
      color: var(--ink);
  }

  .p3-layout .panel-desc {
      color: var(--steel);
  }

  .p3-layout .panel-eyebrow {
      text-align: center;
  }

  .p3-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 40px;
  }

  .p3-card {
      padding: 28px 20px;
      border: 1.5px solid rgba(251, 146, 60, 0.2);
      border-radius: 8px;
      background: white;
      transition: all 0.3s;
      text-align: center;
  }

  .p3-card:hover {
      border-color: var(--tangerine);
      transform: translateY(-6px);
      box-shadow: 0 16px 48px rgba(251, 146, 60, 0.12);
  }

  .p3-card-icon {
      font-size: 32px;
      margin-bottom: 12px;
  }

  .p3-card-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 18px;
      color: var(--ink);
      margin-bottom: 8px;
  }

  .p3-card-desc {
      font-size: 11px;
      color: var(--steel);
      line-height: 1.5;
  }

  /* Panel 4 */
  .panel-4 {
      background: var(--ink);
      align-items: flex-end;
  }

  .p4-bg-img {
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, #3A2A10 0%, var(--ink) 100%);
      opacity: 0.5;
  }

  .p4-layout {
      max-width: 1200px;
      width: 100%;
      padding-bottom: 60px;
      position: relative;
      z-index: 2;
  }

  .p4-layout .panel-title {
      color: white;
  }

  .p4-layout .panel-desc {
      color: rgba(255, 255, 255, 0.7);
      max-width: 600px;
  }

  .p4-stats {
      display: flex;
      gap: 48px;
      margin-top: 40px;
  }

  .p4-stat .stat-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 56px;
      color: var(--tangerine);
      line-height: 1;
  }

  .p4-stat .stat-label {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 10px;
      color: rgba(255, 255, 255, 0.5);
      letter-spacing: 0.1em;
      text-transform: uppercase;
  }

  /* ===== PARALLAX SERVICES LIST ===== */
  #services-list {
      background: var(--beige);
      position: relative;
      overflow: hidden;
      padding: 0 0 100px;
  }

  .services-sticky-label {
      position: sticky;
      top: 0;
      z-index: 100;
      padding: 12px 40px;
      background: rgba(245, 236, 216, 0.95);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(26, 18, 8, 0.08);
      font-family: 'IBM Plex Mono', monospace;
      font-size: 10px;
      color: var(--steel);
      letter-spacing: 0.3em;
      text-transform: uppercase;
  }

  .parallax-container {
      max-width: 1300px;
      margin: 0 auto;
      padding: 60px 40px;
      display: grid;
      grid-template-columns: 200px 1fr 280px;
      gap: 40px;
      position: relative;
  }

  .para-col-numbers {
      position: relative;
  }

  .para-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 140px;
      color: rgba(251, 146, 60, 0.1);
      line-height: 1;
      margin-bottom: 80px;
      position: relative;
  }

  .para-num::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 2px;
      height: 100%;
      background: linear-gradient(to bottom, var(--tangerine), transparent);
  }

  .para-col-content {}

  .para-service {
      margin-bottom: 100px;
      padding-bottom: 100px;
      border-bottom: 1px solid rgba(26, 18, 8, 0.08);
  }

  .para-service:last-child {
      border-bottom: none;
  }

  .para-service-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: clamp(36px, 4vw, 56px);
      color: var(--ink);
      line-height: 0.95;
      margin-bottom: 16px;
  }

  .para-service-desc {
      font-family: 'Cormorant Garamond', serif;
      font-size: 17px;
      line-height: 1.7;
      color: var(--steel);
      margin-bottom: 20px;
  }

  .para-service-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 20px;
  }

  .para-tag {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 9px;
      color: var(--tangerine);
      border: 1px solid rgba(251, 146, 60, 0.3);
      padding: 4px 10px;
      border-radius: 2px;
      letter-spacing: 0.08em;
  }

  .para-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-bottom: 24px;
  }

  .para-step {
      padding: 12px;
      background: rgba(251, 146, 60, 0.06);
      border-left: 2px solid var(--tangerine);
      border-radius: 0 4px 4px 0;
  }

  .para-step-title {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 10px;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 4px;
  }

  .para-step-desc {
      font-size: 10px;
      color: var(--steel);
      line-height: 1.4;
  }

  .para-col-images {}

  .para-img-block {
      width: 100%;
      height: 260px;
      background: linear-gradient(160deg, var(--ink) 0%, #3A2A10 100%);
      margin-bottom: 16px;
      border-radius: 4px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .para-img-block::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(251, 146, 60, 0.1);
  }

  .para-img-block-sm {
      height: 180px;
  }

  .para-img-label {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(26, 18, 8, 0.8));
      padding: 20px 12px 12px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 9px;
      color: rgba(255, 255, 255, 0.7);
      letter-spacing: 0.1em;
      z-index: 2;
  }

  /* ===== HOW WE WORK ===== */
  #how-we-work {
      background: var(--ink);
      padding: 100px 40px;
      position: relative;
      overflow: hidden;
  }

  .hww-bg {
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(90deg,
              transparent,
              transparent 100px,
              rgba(251, 146, 60, 0.02) 100px,
              rgba(251, 146, 60, 0.02) 101px);
  }

  .hww-inner {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
  }

  .section-eyebrow {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 10px;
      color: var(--tangerine);
      letter-spacing: 0.3em;
      text-transform: uppercase;
      margin-bottom: 16px;
      text-align: center;
  }

  .section-headline {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: clamp(48px, 6vw, 88px);
      line-height: 0.92;
      text-align: center;
      color: white;
      margin-bottom: 16px;
  }

  .section-headline em {
      font-style: normal;
      color: var(--tangerine);
  }

  .section-sub {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      color: rgba(255, 255, 255, 0.6);
      text-align: center;
      font-style: italic;
      margin-bottom: 80px;
  }

  .hww-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
  }

  .hww-connector {
      position: absolute;
      top: 40px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: linear-gradient(to right, var(--tangerine), rgba(251, 146, 60, 0.1));
      z-index: 0;
  }

  .hww-step {
      text-align: center;
      padding: 0 24px;
      position: relative;
      z-index: 1;
  }

  .hww-step-bubble {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: var(--ink);
      border: 2px solid var(--tangerine);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 28px;
      color: var(--tangerine);
      box-shadow: 0 0 0 6px rgba(251, 146, 60, 0.1);
      transition: all 0.3s;
  }

  .hww-step:hover .hww-step-bubble {
      background: var(--tangerine);
      color: white;
      box-shadow: 0 0 0 10px rgba(251, 146, 60, 0.15);
  }

  .hww-step-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 22px;
      color: white;
      margin-bottom: 8px;
  }

  .hww-step-desc {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.6;
  }

  /* ===== CTA SECTION ===== */
  #cta {
      background: var(--tangerine);
      padding: 100px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
  }

  .cta-bg {
      position: absolute;
      inset: 0;
      background-image:
          repeating-linear-gradient(45deg,
              transparent,
              transparent 30px,
              rgba(255, 255, 255, 0.05) 30px,
              rgba(255, 255, 255, 0.05) 31px);
  }

  .cta-inner {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
  }

  .cta-label {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 10px;
      color: rgba(255, 255, 255, 0.7);
      letter-spacing: 0.3em;
      text-transform: uppercase;
      margin-bottom: 16px;
  }

  .cta-headline {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: clamp(52px, 8vw, 110px);
      color: white;
      line-height: 0.9;
      margin-bottom: 24px;
  }

  .cta-sub {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      color: rgba(255, 255, 255, 0.85);
      font-style: italic;
      margin-bottom: 48px;
  }

  .cta-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
  }

  .btn-primary-cta {
      background: var(--ink);
      color: white;
      text-decoration: none;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 20px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 20px 48px;
      border-radius: 4px;
      transition: all 0.25s;
      box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
  }

  .btn-primary-cta:hover {
      transform: translate(-2px, -2px);
      box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
  }

  .btn-secondary-cta {
      background: transparent;
      color: white;
      text-decoration: none;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 20px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 20px 48px;
      border-radius: 4px;
      border: 2px solid rgba(255, 255, 255, 0.4);
      transition: all 0.25s;
  }

  .btn-secondary-cta:hover {
      border-color: white;
      background: rgba(255, 255, 255, 0.1);
  }

  /* ===== FAQ ===== */
  #faq {
      background: var(--ink);
      padding: 100px 40px;
      position: relative;
  }

  .faq-inner {
      max-width: 900px;
      margin: 0 auto;
  }

  .faq-inner .section-headline {
      color: white;
  }

  .faq-search-wrap {
      margin: 48px 0 40px;
      position: relative;
  }

  .faq-search {
      width: 100%;
      background: rgba(255, 255, 255, 0.06);
      border: 2px solid rgba(251, 146, 60, 0.3);
      border-radius: 6px;
      padding: 20px 24px 20px 56px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 16px;
      color: white;
      outline: none;
      transition: all 0.3s;
  }

  .faq-search::placeholder {
      color: rgba(255, 255, 255, 0.3);
  }

  .faq-search:focus {
      border-color: var(--tangerine);
      box-shadow: 0 0 0 4px rgba(251, 146, 60, 0.1);
      background: rgba(255, 255, 255, 0.08);
  }

  .faq-search-icon {
      position: absolute;
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
      color: rgba(255, 255, 255, 0.4);
  }

  .faq-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 40px;
  }

  .faq-pill {
      background: rgba(251, 146, 60, 0.1);
      border: 1px solid rgba(251, 146, 60, 0.25);
      color: var(--tangerine);
      font-family: 'IBM Plex Mono', monospace;
      font-size: 10px;
      padding: 6px 14px;
      border-radius: 100px;
      cursor: pointer;
      transition: all 0.2s;
      letter-spacing: 0.05em;
  }

  .faq-pill:hover {
      background: var(--tangerine);
      color: white;
  }

  .faq-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
  }

  .faq-item {
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 6px;
      overflow: hidden;
      transition: all 0.3s;
  }

  .faq-item.hidden {
      display: none;
  }

  .faq-item.open {
      border-color: rgba(251, 146, 60, 0.3);
  }

  .faq-q {
      padding: 20px 24px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      background: rgba(255, 255, 255, 0.03);
      transition: background 0.2s;
      user-select: none;
  }

  .faq-q:hover {
      background: rgba(255, 255, 255, 0.06);
  }

  .faq-q-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 20px;
      color: white;
      flex: 1;
  }

  .faq-q-text mark {
      background: rgba(251, 146, 60, 0.3);
      color: var(--tangerine);
  }

  .faq-toggle {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all 0.3s;
      color: rgba(255, 255, 255, 0.5);
      font-size: 18px;
  }

  .faq-item.open .faq-toggle {
      background: var(--tangerine);
      border-color: var(--tangerine);
      color: white;
      transform: rotate(45deg);
  }

  .faq-a {
      padding: 0 24px;
      max-height: 0;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .faq-item.open .faq-a {
      padding: 0 24px 20px;
      max-height: 300px;
  }

  .faq-a p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 16px;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.7;
  }

  /* ===== CONTACT ===== */
  #contact {
      background: var(--cream);
      padding: 100px 40px;
  }

  .contact-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
  }

  .contact-info .section-eyebrow {
      text-align: left;
  }

  .contact-info .section-headline {
      font-size: clamp(42px, 5vw, 72px);
      text-align: left;
      color: var(--ink);
  }

  .contact-details {
      margin-top: 40px;
      display: flex;
      flex-direction: column;
      gap: 24px;
  }

  .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
  }

  .contact-item-icon {
      width: 44px;
      height: 44px;
      background: var(--tangerine);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 18px;
  }

  .contact-item-label {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 9px;
      color: var(--tangerine);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 4px;
  }

  .contact-item-value {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 22px;
      color: var(--ink);
      text-decoration: none;
      transition: color 0.2s;
  }

  .contact-item-value:hover {
      color: var(--tangerine);
  }

  .contact-map-wrap {
      border-radius: 8px;
      overflow: hidden;
      border: 3px solid var(--ink);
      box-shadow: 6px 8px 0 var(--ink);
  }

  .contact-map-placeholder {
      width: 100%;
      height: 400px;
      background: linear-gradient(160deg, #2D2416 0%, var(--olive) 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      position: relative;
      overflow: hidden;
  }

  /* Map grid */
  .map-grid {
      position: absolute;
      inset: 0;
      background-image:
          linear-gradient(rgba(251, 146, 60, 0.1) 1px, transparent 1px),
          linear-gradient(90deg, rgba(251, 146, 60, 0.1) 1px, transparent 1px);
      background-size: 40px 40px;
  }

  .map-pin {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
  }

  .map-pin-dot {
      width: 24px;
      height: 24px;
      background: var(--tangerine);
      border-radius: 50% 50% 50% 0;
      transform: rotate(-45deg);
      box-shadow: 0 0 0 6px rgba(251, 146, 60, 0.25);
  }

  .map-pin-label {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      color: white;
      background: rgba(26, 18, 8, 0.8);
      padding: 6px 12px;
      border-radius: 4px;
      border: 1px solid rgba(251, 146, 60, 0.3);
      white-space: nowrap;
  }

  .map-open-btn {
      position: relative;
      z-index: 2;
      display: inline-block;
      background: var(--tangerine);
      color: white;
      text-decoration: none;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      font-weight: 700;
      padding: 10px 24px;
      border-radius: 4px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: all 0.25s;
  }

  .map-open-btn:hover {
      background: var(--tangerine-dark);
      transform: translateY(-2px);
  }

  /* ===== FOOTER ===== */
  #footer-cta {
      background: var(--tangerine);
      padding: 48px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
  }

  .footer-cta-bg {
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(-45deg,
              transparent,
              transparent 20px,
              rgba(0, 0, 0, 0.04) 20px,
              rgba(0, 0, 0, 0.04) 21px);
  }

  .footer-cta-inner {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
  }

  .footer-cta-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: clamp(28px, 4vw, 48px);
      color: white;
      line-height: 1;
  }

  .footer-cta-btn {
      background: var(--ink);
      color: white;
      text-decoration: none;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 22px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 18px 48px;
      border-radius: 4px;
      box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
      transition: all 0.25s;
      white-space: nowrap;
  }

  .footer-cta-btn:hover {
      transform: translate(-2px, -2px);
      box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
  }

  footer {
      background: var(--ink);
      padding: 60px 40px 32px;
  }

  .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
  }

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

  .footer-brand .brand-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
      text-decoration: none;
  }

  .footer-brand .logo-icon {
      width: 44px;
      height: 44px;
      background: var(--tangerine);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 20px;
      color: white;
  }

  .footer-brand .logo-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 20px;
      color: white;
      line-height: 1.1;
  }

  .footer-brand .logo-text span {
      color: var(--tangerine);
      display: block;
  }

  .footer-brand-desc {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.4);
      line-height: 1.7;
      margin-bottom: 24px;
  }

  .footer-phone {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 24px;
      color: var(--tangerine);
      text-decoration: none;
      display: block;
      margin-bottom: 8px;
  }

  .footer-col-title {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 9px;
      color: var(--tangerine);
      letter-spacing: 0.3em;
      text-transform: uppercase;
      margin-bottom: 20px;
  }

  .footer-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
  }

  .footer-links a {
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
      font-size: 13px;
      transition: color 0.2s;
      display: flex;
      align-items: center;
      gap: 8px;
  }

  .footer-links a::before {
      content: '→';
      color: var(--tangerine);
      font-size: 11px;
  }

  .footer-links a:hover {
      color: white;
  }

  .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding-top: 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
  }

  .footer-copy {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 10px;
      color: rgba(255, 255, 255, 0.3);
      letter-spacing: 0.05em;
  }

  .footer-copy span {
      color: var(--tangerine);
  }

  .footer-legal {
      display: flex;
      gap: 20px;
  }

  .footer-legal a {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 10px;
      color: rgba(255, 255, 255, 0.3);
      text-decoration: none;
      transition: color 0.2s;
      letter-spacing: 0.05em;
  }

  .footer-legal a:hover {
      color: rgba(255, 255, 255, 0.6);
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
      .label-body {
          grid-template-columns: 1fr;
      }

      .label-col:not(:last-child) {
          border-right: none;
          border-bottom: 1.5px solid rgba(26, 18, 8, 0.2);
      }

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

      .about-image-wrap {
          order: -1;
      }

      .p1-layout {
          grid-template-columns: 1fr;
      }

      .p1-number {
          display: none;
      }

      .p2-layout {
          grid-template-columns: 1fr;
      }

      .p2-left {
          clip-path: none;
          padding-right: 48px;
      }

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

      .hww-steps {
          grid-template-columns: 1fr 1fr;
          gap: 40px;
      }

      .hww-connector {
          display: none;
      }

      .contact-inner {
          grid-template-columns: 1fr;
      }

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

      .parallax-container {
          grid-template-columns: 1fr;
      }

      .para-col-numbers {
          display: none;
      }

      .para-col-images {
          display: none;
      }

      .nav-menu {
          display: none;
      }

      .para-steps {
          grid-template-columns: 1fr 1fr;
      }

      .about-features {
          grid-template-columns: 1fr;
      }
  }

  @media (max-width: 600px) {
      .p3-grid {
          grid-template-columns: 1fr;
      }

      .hww-steps {
          grid-template-columns: 1fr;
      }

      .p4-stats {
          flex-direction: column;
          gap: 24px;
      }

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

      .footer-cta-inner {
          flex-direction: column;
      }

      .rubber-stamp {
          display: none;
      }

      #navbar {
          position: fixed;
      }

      .nav-cta {
          display: none;
      }

      .para-steps {
          grid-template-columns: 1fr;
      }
  }

  /* Animations */
  @keyframes fadeUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .animate-in {
      animation: fadeUp 0.7s ease forwards;
  }

  .delay-1 {
      animation-delay: 0.1s;
  }

  .delay-2 {
      animation-delay: 0.2s;
  }

  .delay-3 {
      animation-delay: 0.3s;
  }

  .delay-4 {
      animation-delay: 0.4s;
  }

  /* Floating badge */
  .emergency-badge {
      position: fixed;
      bottom: 24px;
      left: 24px;
      z-index: 999;
      background: var(--ink);
      border: 2px solid var(--tangerine);
      border-radius: 8px;
      padding: 12px 16px;
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
      transition: all 0.25s;
      animation: pulse 2s ease-in-out infinite;
  }

  .emergency-badge:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 40px rgba(251, 146, 60, 0.25);
  }

  .emergency-dot {
      width: 8px;
      height: 8px;
      background: var(--tangerine);
      border-radius: 50%;
      animation: blink 1s ease-in-out infinite;
  }

  @keyframes blink {

      0%,
      100% {
          opacity: 1;
      }

      50% {
          opacity: 0.3;
      }
  }

  .emergency-text {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 10px;
      font-weight: 700;
      color: white;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      line-height: 1.2;
  }

  .emergency-text span {
      display: block;
      color: var(--tangerine);
      font-size: 13px;
  }

  @keyframes pulse {

      0%,
      100% {
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
      }

      50% {
          box-shadow: 0 8px 32px rgba(251, 146, 60, 0.2);
      }
  }