@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@300;400;500;600&display=swap');

/* ══════════════════════════════════════════════
   DESIGN TOKENS — Video-Matched Palette
   Purple/Lavender · Sky Blue · Pink/Peach
   ══════════════════════════════════════════════ */
:root {
  --clr-bg:          hsl(260, 25%, 4%);
  --clr-surface:     hsl(260, 20%, 8%);
  --clr-surface-2:   hsl(260, 18%, 12%);
  --clr-border:      rgba(255, 255, 255, 0.06);
  --clr-text:        #ffffff;
  --clr-text-muted:  rgba(255, 255, 255, 0.55);
  --clr-accent:      hsl(270, 60%, 72%);         /* lavender */
  --clr-accent-2:    hsl(210, 70%, 72%);         /* sky blue */
  --clr-accent-3:    hsl(340, 60%, 72%);         /* pink */
  --clr-glow:        hsla(270, 80%, 65%, 0.25);
  --clr-glow-blue:   hsla(210, 80%, 65%, 0.2);
  --clr-glow-pink:   hsla(340, 70%, 65%, 0.15);
  --font-display:    'Instrument Serif', serif;
  --font-body:       'Inter', sans-serif;
  --container-max:   80rem;
  --section-px:      clamp(1.5rem, 5vw, 4rem);
  --section-py:      clamp(5rem, 10vw, 9rem);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--clr-bg);
  font-family: var(--font-body);
  color: var(--clr-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; }
ul { list-style: none; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-px);
}


/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(20, 10, 40, 0.35) 0%,
    rgba(20, 10, 40, 0.1) 40%,
    rgba(20, 10, 40, 0.5) 100%
  );
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  max-width: var(--container-max);
  margin: 0 auto;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  background: rgba(20, 10, 40, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
  padding: 1rem 2rem;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.875rem;
  letter-spacing: -0.025em;
  color: #fff;
  z-index: 101;
}
.brand sup { font-size: 0.65rem; vertical-align: super; }

.nav-links {
  display: none;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s, opacity 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--clr-accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 101;
}

.nav-btn {
  font-size: 0.875rem;
  color: #fff;
  border: none;
  border-radius: 9999px;
  padding: 0.625rem 1.5rem;
  transition: transform 0.3s ease;
  display: none;
}
.nav-btn:hover { transform: scale(1.03); }

/* ── Language Toggle ── */
.lang-toggle,
.mobile-lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 9999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  border: none;
  transition: transform 0.3s ease;
}
.lang-toggle:hover { transform: scale(1.03); }

.lang-separator {
  color: rgba(255,255,255,0.15);
  font-weight: 300;
  pointer-events: none;
}

.lang-option {
  padding: 0.15rem 0.3rem;
  border-radius: 4px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  cursor: pointer;
}
.lang-option.active {
  color: #fff;
  text-shadow: 0 0 8px var(--clr-glow);
}
.lang-option:not(.active):hover {
  color: rgba(255,255,255,0.8);
}

.mobile-lang-toggle {
  margin-top: 2.5rem;
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
}

/* ── Hamburger ── */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 101;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(10, 5, 25, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu ul {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: #fff; }

/* ── Hero Content ── */
.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 6rem;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: -2.46px;
  max-width: 80rem;
}
.hero-content p {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  max-width: 42rem;
  margin-top: 2rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
}
.hero-cta {
  font-size: 1rem;
  color: #fff;
  border: none;
  border-radius: 9999px;
  padding: 1.25rem 3.5rem;
  margin-top: 3rem;
  transition: transform 0.3s ease;
}
.hero-cta:hover { transform: scale(1.03); }

.scroll-indicator {
  margin-top: 3rem;
  color: rgba(255,255,255,0.4);
  animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}


/* ══════════════════════════════════════════════
   LIQUID GLASS (shared)
   ══════════════════════════════════════════════ */
.liquid-glass {
  background: rgba(255, 255, 255, 0.03);
  background-blend-mode: luminosity;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.liquid-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.15) 20%,
    rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.15) 80%, rgba(255,255,255,0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}


/* ══════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════ */
@keyframes fade-rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-rise         { animation: fade-rise 0.9s ease-out both; }
.animate-fade-rise-delay   { animation: fade-rise 0.9s ease-out 0.2s both; }
.animate-fade-rise-delay-2 { animation: fade-rise 0.9s ease-out 0.45s both; }

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) var(--delay, 0s),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) var(--delay, 0s);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}


/* ══════════════════════════════════════════════
   SECTION SHARED
   ══════════════════════════════════════════════ */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -1.5px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  max-width: 36rem;
  margin: 1.25rem auto 0;
  line-height: 1.7;
}

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--clr-accent) 30%,
    var(--clr-accent-2) 50%,
    var(--clr-accent-3) 70%,
    transparent 100%
  );
  opacity: 0.15;
  margin-top: var(--section-py);
}


/* ══════════════════════════════════════════════
   MANIFESTO
   ══════════════════════════════════════════════ */
.manifesto-section {
  padding-top: var(--section-py);
  background: radial-gradient(
    ellipse at 20% 0%,
    hsla(270, 50%, 15%, 0.4) 0%,
    transparent 60%
  );
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1.15;
  letter-spacing: -1px;
  font-style: italic;
  color: #fff;
}
.manifesto-quote em {
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.manifesto-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--clr-text-muted);
  max-width: 540px;
}

.stats-row {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}
.stat .stat-number,
.stat .stat-suffix {
  display: inline;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  line-height: 1.4;
  margin-top: 0.25rem;
}


/* ══════════════════════════════════════════════
   STUDIO
   ══════════════════════════════════════════════ */
.studio-section {
  padding-top: var(--section-py);
  background: radial-gradient(
    ellipse at 80% 20%,
    hsla(210, 50%, 15%, 0.3) 0%,
    transparent 60%
  );
}

.studio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.studio-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.5s ease;
}
.studio-card:hover {
  transform: translateY(-8px);
  border-color: rgba(180, 150, 255, 0.15);
  box-shadow:
    0 20px 60px -15px var(--clr-glow),
    0 10px 30px -10px var(--clr-glow-blue);
}

.card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.studio-card:hover .card-image img {
  transform: scale(1.05);
}
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    var(--clr-surface) 100%
  );
}

.card-body {
  padding: 2rem 2rem 2.5rem;
}
.card-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--clr-accent);
  display: block;
  margin-bottom: 0.75rem;
}
.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.card-body p {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.card-link {
  font-size: 0.85rem;
  color: var(--clr-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease, color 0.3s ease;
}
.card-link:hover {
  gap: 0.75rem;
  color: var(--clr-accent-2);
}
.card-link svg {
  transition: transform 0.3s ease;
}
.card-link:hover svg {
  transform: translate(2px, -2px);
}


/* ══════════════════════════════════════════════
   WORK
   ══════════════════════════════════════════════ */
.work-section {
  padding: var(--section-py) 0;
  background: linear-gradient(to bottom, transparent, rgba(138, 92, 246, 0.05), transparent);
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 4.5rem;
}

.work-item {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  cursor: pointer;
}

.work-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}

.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 5, 25, 0.95) 0%, transparent 70%);
  display: flex;
  align-items: flex-end;
  padding: 3rem;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.work-info {
  transform: translateY(30px);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.work-cat {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--clr-accent);
  font-weight: 600;
  display: block;
  margin-bottom: 0.75rem;
}

.work-info h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.work-item:hover .work-image img {
  transform: scale(1.08);
  filter: blur(3px) brightness(0.8);
}

.work-item:hover .work-overlay {
  opacity: 1;
}

.work-item:hover .work-info {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .work-item-wide {
    grid-column: span 2;
    aspect-ratio: 21/9;
  }
}


/* ══════════════════════════════════════════════
   PROCESS
   ══════════════════════════════════════════════ */
.process-section {
  padding-top: var(--section-py);
  background: radial-gradient(
    ellipse at 50% 80%,
    hsla(340, 40%, 12%, 0.3) 0%,
    transparent 60%
  );
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent);
}

.step-content {
  padding-top: 0.5rem;
}
.step-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--clr-accent-2);
  display: block;
  margin-bottom: 0.35rem;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.step-content p {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  max-width: 420px;
}

.process-connector {
  padding-left: 32px;
  height: 48px;
  display: flex;
  align-items: stretch;
}
.connector-line {
  width: 1px;
  background: linear-gradient(180deg, var(--clr-accent), var(--clr-accent-3));
  opacity: 0.2;
}


/* ══════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════ */
.contact-section {
  padding: var(--section-py) 0;
  background: radial-gradient(
    ellipse at 30% 100%,
    hsla(270, 45%, 12%, 0.4) 0%,
    transparent 55%
  );
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}
.contact-left p {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  max-width: 420px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.form-group {
  position: relative;
}
.glass-input {
  width: 100%;
  padding: 1.1rem 1.25rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--clr-border);
  border-radius: 14px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  resize: none;
}
.glass-input:focus {
  border-color: rgba(180, 150, 255, 0.3);
  box-shadow: 0 0 20px var(--clr-glow), inset 0 0 10px rgba(180, 150, 255, 0.05);
}
.form-group label {
  position: absolute;
  top: 50%;
  left: 1.25rem;
  transform: translateY(-50%);
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  pointer-events: none;
  transition: all 0.3s ease;
}
textarea + label {
  top: 1.1rem;
  transform: none;
}
.glass-input:focus + label,
.glass-input:not(:placeholder-shown) + label {
  top: 0.5rem;
  transform: none;
  font-size: 0.7rem;
  color: var(--clr-accent);
}
textarea.glass-input:focus + label,
textarea.glass-input:not(:placeholder-shown) + label {
  top: 0.4rem;
}

.submit-btn {
  align-self: flex-start;
  font-size: 1rem;
  color: #fff;
  border: none;
  border-radius: 9999px;
  padding: 1rem 3rem;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}
.submit-btn:hover { transform: scale(1.03); }
.btn-text { transition: opacity 0.3s; }
.btn-sent { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; color: var(--clr-accent); }
.contact-form.submitted .btn-text { opacity: 0; }
.contact-form.submitted .btn-sent { opacity: 1; }


/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--clr-border);
  padding: 2.5rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
}
.footer-brand sup { font-size: 0.5rem; }
.footer-copy {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}
.footer-socials {
  display: flex;
  gap: 1.25rem;
}
.footer-socials a {
  color: var(--clr-text-muted);
  transition: color 0.3s;
}
.footer-socials a:hover {
  color: var(--clr-accent);
}

.footer-credit {
  text-align: center;
  padding: 1.25rem 0 0;
  margin-top: 1.5rem;
  border-top: 1px solid var(--clr-border);
  font-size: 0.8rem;
  font-style: italic;
  color: var(--clr-text-muted);
}
.credit-name {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, hsl(40, 60%, 65%), hsl(30, 70%, 55%), hsl(45, 65%, 70%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: filter 0.3s ease;
}
.credit-name:hover {
  filter: brightness(1.3);
}


/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-btn   { display: inline-flex; }
  .hamburger { display: none; }
  .mobile-lang-toggle { display: none; }

  .hero-content h1 { font-size: clamp(4rem, 10vw, 8rem); }

  .manifesto-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }

  .studio-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .process-timeline {
    flex-direction: row;
    max-width: 100%;
    gap: 0;
    align-items: flex-start;
  }
  .process-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    gap: 1.25rem;
  }
  .step-content p { max-width: 240px; margin: 0 auto; }
  .process-connector {
    align-self: flex-start;
    margin-top: 32px;
    padding-left: 0;
    height: auto;
    flex: 0 0 auto;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .connector-line {
    width: 100%;
    height: 1px;
  }
}
