:root {
  color-scheme: light;
  --black: #0b0b0b;
  --black-2: #141414;
  --white: #ffffff;
  --soft-white: #f7f7f2;
  --yellow: #f7c600;
  --yellow-2: #ffdd4d;
  --gray: #b8b8b8;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  --accent: #d92525;
  --accent-dark: #b41d1d;
  --scrub: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

html:not(.lenis) {
  scroll-behavior: smooth;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  background: var(--soft-white);
  color: var(--black);
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: transparent;
}

body::-webkit-scrollbar-thumb {
  background: var(--yellow);
  border-radius: 999px;
}

body {
  scrollbar-width: thin;
  scrollbar-color: var(--yellow) transparent;
}

.smooth-wrapper {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.smooth-content {
  will-change: transform;
}

.page-loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: grid;
  place-items: center;
  z-index: 9999;
  transform: translateY(0);
}

.loader-inner {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.loader-inner img {
  width: min(340px, 75vw);
  height: auto;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.3));
}

.loader-line {
  width: 220px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  animation: loaderSweep 1.4s ease-in-out infinite;
}

@keyframes loaderSweep {
  0% {
    transform: translateX(-40px);
    opacity: 0.4;
  }

  50% {
    transform: translateX(0);
    opacity: 1;
  }

  100% {
    transform: translateX(40px);
    opacity: 0.4;
  }
}

.noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: multiply;
  z-index: -1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 8vw;
  background: rgba(11, 11, 11, 0.92);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.brand-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.7);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.site-nav a {
  text-decoration: none;
  color: var(--white);
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  transition: border-color 0.2s ease;
}

.site-nav a:hover {
  border-color: var(--yellow);
}

.btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn.primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 18px 30px rgba(247, 198, 0, 0.35);
}

.btn.ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn.outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

main {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.hero {
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.72), rgba(8, 8, 8, 0.82)),
    url("assets/hero-4k.650dd48776e2.png");
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 110px 8vw 70px;
}

.hero-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}

.eyebrow.dark {
  color: rgba(0, 0, 0, 0.6);
}

.hero-copy h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 4vw, 4.1rem);
  line-height: 1.05;
  margin: 0 0 18px 0;
}

.lead {
  font-size: 17px;
  line-height: 1.7;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
}

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

.hero-visual {
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.timeline-slider-container {
  position: relative;
  width: 100%;
}

.timeline-slider {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.timeline-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-bottom: 12px;
}

.timeline-track {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
}

.timeline-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--yellow);
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  border-radius: 99px;
  box-shadow: 0 0 8px var(--yellow);
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
  user-select: none;
}

.step-num {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  background: var(--black-2);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.step-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

.timeline-step.active .step-num {
  color: var(--black);
  background: var(--yellow);
  border-color: var(--yellow);
  box-shadow: 0 0 15px rgba(247, 198, 0, 0.4);
}

.timeline-step.active .step-label {
  color: var(--white);
}

.timeline-step:hover .step-num {
  border-color: var(--yellow);
  color: var(--white);
}

.timeline-content-panel {
  position: relative;
  min-height: 200px;
}

.phase-content {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.phase-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.phase-eyebrow {
  margin: 0 0 8px 0;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--yellow);
  font-weight: 600;
}

.phase-content h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  margin: 0 0 12px 0;
  color: var(--white);
}

.phase-content p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 18px 0;
}

.phase-details {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.phase-details .badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  font-size: 9px;
  padding: 6px 12px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.hero-label {
  position: absolute;
  bottom: -26px;
  display: grid;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.hero-sub {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(247, 198, 0, 0.6);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.hero-card h3 {
  font-family: "Space Grotesk", sans-serif;
  margin: 10px 0 10px 0;
}

.hero-card.accent {
  border-color: rgba(247, 198, 0, 0.6);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  padding: 0 8vw;
  margin-top: -40px;
}

.metric-card {
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  will-change: transform, opacity;
}

.section {
  padding: 60px 8vw;
}

.section.dark {
  background: var(--black);
  color: var(--white);
}

.section-head {
  max-width: 680px;
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
}

.section-head h2 {
  font-family: "Space Grotesk", sans-serif;
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.card-grid,
.solutions-grid,
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.info-card,
.solution-card,
.impact-card {
  background: var(--white);
  border-radius: 18px;
  padding: 32px 32px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.info-card:hover,
.solution-card:hover,
.impact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.card-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.card-arrow {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  color: var(--yellow);
  font-size: 1.2rem;
}

.info-card:hover .card-arrow,
.solution-card:hover .card-arrow,
.impact-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
}

.info-card p,
.solution-card p,
.impact-card p {
  color: #1A1A1A;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

.bg-grid-light {
  background-color: #F0F0EA;
  background-image:
    linear-gradient(#F0F0EA 85%, transparent),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.08) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.08) 0 1px, transparent 1px 40px);
}

.dark .info-card,
.dark .solution-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.use-case {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 18px;
  border-radius: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
}

/* --- Added Layouts for Visual Images --- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-section .section-head {
  margin-bottom: 40px;
}

.card-grid.stacked {
  grid-template-columns: 1fr;
  gap: 20px;
}

.section-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.use-case-grid.with-images {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.use-case.image-card {
  position: relative;
  min-height: 380px;
  padding: 40px;
  display: flex;
  align-items: flex-end;
  border: none;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.use-case.image-card:hover .use-case-overlay {
  background: linear-gradient(0deg, rgba(11, 11, 11, 0.8) 0%, rgba(11, 11, 11, 0.2) 100%);
}

.use-case-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 11, 11, 0.95) 0%, rgba(11, 11, 11, 0.4) 100%);
  z-index: 1;
  transition: background 0.4s ease;
}

.use-case-title {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  text-transform: none;
  letter-spacing: normal;
  color: var(--white);
}

.use-case.basic-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

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

  .section-image img {
    height: 400px;
  }
}

/* --------------------------------------- */

.cta {
  padding: 80px 8vw;
  background: linear-gradient(135deg, #f7c600 0%, #ffe08c 50%, #f7c600 100%);
}

.cta-card {
  background: rgba(11, 11, 11, 0.92);
  color: var(--white);
  padding: 32px;
  border-radius: 22px;
  display: grid;
  gap: 20px;
  box-shadow: var(--shadow);
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.contact-block {
  background: rgba(255, 255, 255, 0.85);
  padding: 18px;
  border-radius: 16px;
}

/* Contact Page Layout Adjustments */
.contact-page {
  display: block;
}

.contact-page main {
  padding-top: 40px;
}

.contact-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 8vw 100px;
  background-color: transparent;
  box-shadow: none;
}

.contact-hero {
  text-align: left;
  max-width: 700px;
  margin-bottom: 60px;
}

.contact-copy h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin: 12px 0 24px;
}

.contact-lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.75);
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 70px;
}

.office-card {
  background: var(--white);
  padding: 32px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.office-card h3 {
  font-family: "Space Grotesk", sans-serif;
  margin: 0 0 16px 0;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.office-card p {
  margin: 6px 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 15px;
}

/* Form Styles */
.form-shell {
  background: var(--white);
  padding: 50px 60px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-head {
  margin-bottom: 30px;
}

.form-head h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.2rem;
  margin: 8px 0 12px;
}

.form-head p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 1.05rem;
}

.form-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 24px;
  flex-wrap: wrap;
}

.form-tab {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 12px 24px;
  border-radius: 999px;
  font-family: "Sora", sans-serif;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.25s ease;
  color: rgba(0, 0, 0, 0.6);
}

.form-tab:hover {
  border-color: rgba(0, 0, 0, 0.4);
  color: var(--black);
}

.form-tab.is-active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-field.full {
  grid-column: 1 / -1;
  position: relative;
}

.form-field span {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--soft-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 18px 20px;
  border-radius: 14px;
  font-family: "Sora", sans-serif;
  font-size: 15px;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: var(--white);
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(247, 198, 0, 0.15);
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.phone-group {
  display: flex;
  gap: 12px;
}

.phone-group select {
  width: 100px;
  flex-shrink: 0;
  cursor: pointer;
}

.phone-group input {
  flex-grow: 1;
}

.char-count {
  position: absolute;
  right: 18px;
  bottom: 20px;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.4);
  background: var(--white);
  padding: 2px 6px;
  border-radius: 4px;
}

.form-note {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.6;
  margin: 24px 0;
  background: rgba(0, 0, 0, 0.02);
  padding: 16px 20px;
  border-radius: 12px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  margin-bottom: 36px;
}

.form-check input {
  margin-top: 3px;
  width: 20px;
  height: 20px;
  accent-color: var(--black);
  cursor: pointer;
}

.form-check span {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.5;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 36px;
}

.submit-btn {
  background: var(--yellow);
  color: var(--black);
  border: none;
  padding: 18px 42px;
  border-radius: 999px;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(247, 198, 0, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  background: var(--yellow-2);
  box-shadow: 0 16px 32px rgba(247, 198, 0, 0.3);
}

.form-meta {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.4);
  font-weight: 500;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .contact-section {
    padding-top: 20px;
  }

  .form-shell {
    padding: 30px;
  }
}

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

  .form-tabs {
    flex-direction: column;
  }

  .form-tab {
    text-align: center;
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .submit-btn {
    width: 100%;
  }

  .form-meta {
    text-align: center;
  }
}

/* Premium Footer Styles */
.premium-footer {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 20px;
  background-color: var(--black);
}

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

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.6;
  max-width: 300px;
  margin-top: 20px;
}

.large-mark {
  width: 58px;
  height: 58px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-nav h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 10px 0;
  color: var(--white);
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  position: relative;
  display: inline-block;
  width: fit-content;
}

.footer-nav a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 2;
}

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

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--white);
}

.footer-huge-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26vw;
  font-weight: 700;
  line-height: 0.75;
  color: rgba(255, 255, 255, 0.03);
  letter-spacing: -0.04em;
  position: absolute;
  bottom: -4%;
  left: 50%;
  transform: translateX(-50%);
  user-select: none;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px 40px;
  }
}

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-huge-text {
    font-size: 35vw;
  }
}
.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.form-status {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  font-weight: 600;
}

.form-status.is-pending {
  color: #555;
}

.form-status.is-success {
  color: #176b3a;
}

.form-status.is-error {
  color: #a32626;
}

.submit-btn:disabled {
  cursor: wait;
  opacity: 0.65;
}

/* Responsive navigation and layout */
.mobile-nav-toggle,
.mobile-nav-cta {
  display: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  padding: 24px 8vw;
}

.site-footer p {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 1100px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    padding: 14px 5vw;
  }

  .brand,
  .brand-meta {
    min-width: 0;
  }

  .brand-name,
  .brand-tag {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-cta {
    display: none;
  }

  .mobile-nav-toggle {
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 7px;
    padding: 0;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    cursor: pointer;
  }

  .mobile-nav-toggle > span:not(.visually-hidden) {
    width: 19px;
    height: 2px;
    display: block;
    background: currentColor;
    transition: transform 0.2s ease;
  }

  .mobile-nav-toggle:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 3px;
  }

  .site-header.is-menu-open .mobile-nav-toggle > span:nth-child(2) {
    transform: translateY(4.5px) rotate(45deg);
  }

  .site-header.is-menu-open .mobile-nav-toggle > span:nth-child(3) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 5vw 20px;
    background: rgba(11, 11, 11, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.3);
  }

  .site-header.is-menu-open .site-nav {
    display: flex;
  }

  .site-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  .site-nav .mobile-nav-cta {
    display: flex;
    justify-content: center;
    margin-top: 12px;
    padding: 12px 18px;
    color: var(--black);
    background: var(--yellow);
    border: 0;
    border-radius: 999px;
  }

  main {
    gap: 60px;
  }

  .hero {
    padding: 80px 5vw 60px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-label {
    position: static;
    margin-top: 16px;
  }

  .hero-sub {
    margin-top: 42px;
  }

  .metrics,
  .section,
  .cta {
    padding-right: 5vw;
    padding-left: 5vw;
  }

  .metrics {
    margin-top: -28px;
  }

  .split-section {
    gap: 36px;
  }

  .contact-section {
    padding-right: 5vw;
    padding-bottom: 80px;
    padding-left: 5vw;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-name {
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .brand-tag {
    display: none;
  }

  main {
    gap: 44px;
  }

  .hero {
    padding-top: 58px;
    padding-bottom: 48px;
    background-position: 58% center;
  }

  .hero-copy h1 {
    font-size: clamp(2.15rem, 10vw, 3rem);
    overflow-wrap: anywhere;
  }

  .lead,
  .contact-lead {
    font-size: 16px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .timeline-slider {
    gap: 20px;
    padding: 22px 16px;
    border-radius: 18px;
  }

  .timeline-steps {
    gap: 4px;
  }

  .timeline-step {
    min-width: 0;
    flex: 1;
  }

  .step-label {
    max-width: 64px;
    font-size: 8px;
    letter-spacing: 0.08em;
  }

  .timeline-content-panel {
    min-height: 245px;
  }

  .hero-sub,
  .metrics,
  .card-grid,
  .solutions-grid,
  .impact-grid,
  .use-case-grid,
  .use-case-grid.with-images,
  .office-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .info-card,
  .solution-card,
  .impact-card,
  .office-card {
    padding: 24px;
  }

  .card-title {
    gap: 12px;
  }

  .card-title h3 {
    margin: 0;
    overflow-wrap: anywhere;
  }

  .section-image img {
    height: 300px;
  }

  .use-case.image-card {
    min-height: 300px;
    padding: 24px;
  }

  .contact-page main {
    padding-top: 16px;
  }

  .contact-section {
    padding-top: 20px;
    padding-bottom: 56px;
  }

  .contact-hero {
    margin-bottom: 40px;
  }

  .contact-copy h2,
  .form-head h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .office-grid {
    gap: 16px;
    margin-bottom: 40px;
  }

  .form-shell {
    padding: 28px 18px;
    border-radius: 20px;
  }

  .form-grid {
    gap: 18px;
  }

  .form-field,
  .phone-group,
  .phone-group input {
    min-width: 0;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    width: 100%;
    padding: 16px;
    font-size: 16px;
  }

  .phone-group select {
    width: 84px;
  }

  .form-tabs {
    gap: 10px;
    margin-bottom: 28px;
  }

  .form-check span {
    font-size: 14px;
  }

  .premium-footer {
    padding-top: 64px;
  }

  .footer-grid {
    gap: 36px;
    margin-bottom: 52px;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-footer {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}
