/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --color-bg: #000;
  --color-text: #fff;
  --color-text-muted: rgba(255,255,255,0.5);
  --gradient-green: linear-gradient(135deg, #FF6A00, #FF8C42 19%, #FF9F35 30%, #FFB347 35%, #60A5FA 58%, #3B82F6 66%, #2563EB 72%, #4A8FFF 86%, #1D4ED8);
  --gradient-green-95: linear-gradient(95deg, #FF6A00 -11%, #FF8C42 12%, #FF9F35 25%, #FFB347 31%, #60A5FA 59%, #3B82F6 69%, #2563EB 76%, #4A8FFF 92%, #1D4ED8 110%);
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --nav-height: 72px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* =============================================
   LAYOUT
   ============================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* =============================================
   TYPOGRAPHY — 1:1 fullstack.de
   ============================================= */

/* Italic serif line above the big heading */
.h1-instrument {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: rgba(255,255,255,0.5);
  background-image: none;
  -webkit-text-fill-color: rgba(255,255,255,0.5);
  background-clip: text;
}

/* Main bold heading */
.h1-new.is-inter {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.15rem;
  color: #fff;
}

/* Accent span — also Inter 500 with green gradient */
.h1-accent {
  color: #fff;
  background-image: none;
  -webkit-text-fill-color: #fff;
}

/* =============================================
   BUTTON — 1:1 fullstack.de structure
   ============================================= */

/* Outer wrapper */
.button-wrapper-new {
  z-index: 10;
  color: #0b1e00;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0.375rem;
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 27.1875rem;
  height: 5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 0.9;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 0.0625rem #3B82F652;
}

.button-wrapper-new.is-main {
  max-width: 27.1875rem;
  height: 5rem;
}

.button-wrapper-new.is-smaller {
  max-width: 20.9375rem;
  height: 3rem;
  font-size: 0.75rem;
}

/* Line wrapper — adds the green 1px border */
.button-line-wrapper {
  z-index: 2;
  border-radius: 0.375rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0.0625rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-line-wrapper.is-full {
  border: 1px solid #3B82F6;
  padding: 0;
}

/* Black container — creates the inner border effect */
.button-container {
  z-index: 2;
  background-color: #000;
  border-radius: 0.375rem;
  width: 100%;
  height: 100%;
  padding: 0.25rem;
  transition: padding 0.3s ease;
  position: relative;
  overflow: hidden;
}

.button-container:hover {
  padding: 0;
}

.button-container.no-bg {
  background-color: transparent;
}

/* Inner gradient block */
.button-block {
  z-index: 10;
  gap: 0.75rem;
  background-image: linear-gradient(135deg, #1D4ED8, #2563EB 35%, #3B82F6 65%, #60A5FA);
  border-radius: 0.25rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-block.is-new {
  color: #fff;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
  line-height: 1;
  background-image: linear-gradient(95deg, #1D4ED8, #2563EB 35%, #3B82F6 65%, #60A5FA);
}

/* Button text */
.button-text-main {
  z-index: 2;
  position: relative;
  transition: color 0.3s ease;
}

.button-block:hover .button-text-main {
  color: #2563EB;
}

/* White shine element — slides up on hover */
.button-over {
  filter: blur(10px);
  background-color: #fff;
  width: 100%;
  height: 150%;
  position: absolute;
  top: 100%;
  left: 0;
  transition: top 0.4s ease;
  pointer-events: none;
}

.button-block:hover .button-over {
  top: -20%;
}

/* Animated light sweep line */
.button-line {
  aspect-ratio: 1;
  background-image: linear-gradient(
    #3B82F605,
    #3B82F61f 10%,
    #4A90FF29 20%,
    #60A5FA4d 50%,
    #fff 70%,
    #3B82F600 101%
  );
  border-radius: 100%;
  width: 110%;
  height: auto;
  position: absolute;
  bottom: -50%;
  left: -5%;
  pointer-events: none;
  animation: buttonLineSweep 3s ease-in-out infinite;
}

@keyframes buttonLineSweep {
  0%   { bottom: -50%; opacity: 0.4; }
  50%  { bottom: 80%;  opacity: 0.8; }
  100% { bottom: 150%; opacity: 0; }
}

/* Pulsing ring */
.button-ring {
  background-color: #3B82F652;
  border-radius: 0.375rem;
  width: 102%;
  height: 102%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  box-shadow: 0 0 0.3125rem 0.3125rem #3B82F652;
  animation: buttonRingPulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes buttonRingPulse {
  0%   { transform: translate(-50%, -50%) scale(0.92); opacity: 0; }
  40%  { opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.02); opacity: 0; }
}

/* Ghost / transparent button */
.button-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
}

.button-main.is-transparent.is-second {
  gap: 0.75rem;
  color: #60A5FA;
  border: 0.0625rem solid #3B82F680;
  border-radius: 0.2rem;
  width: 100%;
  max-width: 27.1875rem;
  height: 56px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.button-main.is-transparent.is-second:hover {
  border-color: #3B82F6;
  color: #93C5FD;
}

.button-txt {
  z-index: 1;
  position: relative;
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.nav__logo-sw { color: #fff; font-weight: 800; }
.nav__logo-divider { color: rgba(255,255,255,0.2); font-weight: 300; }
.nav__logo-sub {
  background: linear-gradient(90deg, #FF6A00, #FF8C42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: var(--nav-height);
  overflow: hidden;
  background: #04101f;
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  transform: scale(1.02);
  transform-origin: center center;
}

.hero__bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(4,16,31,0.97) 0%,
    rgba(4,16,31,0.95) 40%,
    rgba(4,16,31,0.75) 65%,
    rgba(4,16,31,0.55) 100%
  );
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 5rem 0 5rem;
  gap: 2rem;
  max-width: 680px;
}

/* ── SCROLL REVEAL ── */
.benefit-card,
.team-card,
.job-card,
.faq__item,
.fit__item,
.contrast__panel,
.offer__left,
.offer__right,
.cta-shell,
.apply__card,
.jobs__head,
.faq__head,
.fit__head,
.apply__head,
.team__header,
.offer__heading,
.offer__nobrainer {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1),
              transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.is-revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* Section label pill (reusable) */
.section-label {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  background: transparent;
  border: 1px solid rgba(59,130,246,0.45);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.75rem;
}

.section-label.is-dark {
  border-color: rgba(0,0,0,0.18);
  color: rgba(0,0,0,0.45);
}

/* Label pill */
.hero__label {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  background: transparent;
  border: 1px solid rgba(59,130,246,0.5);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.55);
  opacity: 0;
  animation: slideUp 0.6s ease 0.1s forwards;
}

/* Heading wrapper */
.hero__heading-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  opacity: 0;
  animation: slideUp 0.7s ease 0.25s forwards;
}

/* Subtext */
.hero__subtext {
  max-width: 580px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  letter-spacing: -0.01em;
  opacity: 0;
  animation: slideUp 0.7s ease 0.4s forwards;
}

.hero__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  animation: slideUp 0.7s ease 0.4s forwards;
}

.hero__bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

.hero__bullet-check {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,140,66,0.22);
  color: #FF8C42;
  margin-top: 0.1rem;
}

.hero__bullet-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero__bullet-title {
  color: #fff;
  font-weight: 600;
  font-size: 0.93rem;
  line-height: 1.4;
}

.hero__bullet-desc {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* CTA row */
.hero__cta-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  opacity: 0;
  animation: slideUp 0.7s ease 0.55s forwards;
}

/* Logo Scroll Track */
.hero__logos-track {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.hero__logos-inner {
  display: flex;
}

.hero__logos-container {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: scrollLeft 28s linear infinite;
  will-change: transform;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero__logo-item {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollLeft {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* =============================================
   BENEFITS SECTION
   ============================================= */
.benefits {
  background: #fff;
  padding: 7rem 0 4rem;
}

.benefits__header {
  margin-bottom: 4rem;
}

.benefits__cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.benefits__heading {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.12rem;
  line-height: 1.05;
  color: #000;
  text-align: center;
}

.benefits__heading em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: rgba(0,0,0,0.4);
  letter-spacing: -0.15rem;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

/* Card — horizontal, alle gleich groß durch CSS Grid stretch */
.benefit-card {
  display: flex;
  flex-direction: row;
  gap: 1.75rem;
  align-items: flex-start;
  background: #f5f5f5;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 1rem;
  padding: 2rem 2.5rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.benefit-card:hover {
  border-color: rgba(0,0,0,0.18);
  background: #efefef;
}

.benefit-card__icon {
  display: none;
}

.benefit-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.benefit-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.25;
  color: #000;
}

.benefit-card__text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(0,0,0,0.5);
  letter-spacing: -0.01em;
}

/* =============================================
   BENEFIT ANIMATED ICONS
   ============================================= */

.benefit-anim {
  width: 56px;
  height: 56px;
  min-width: 56px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── 1. Bars — Einkommen ── */
.anim-bars {
  align-items: flex-end;
  gap: 6px;
  padding: 6px 4px 0;
}
.anim-bars__bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  transform-origin: bottom;
  animation: anim-bar-rise 2.4s ease-in-out infinite;
}
.anim-bars__bar--1 { height: 24px; background: #FF6A00; animation-delay: 0s; }
.anim-bars__bar--2 { height: 36px; background: #FFB347; animation-delay: 0.22s; }
.anim-bars__bar--3 { height: 50px; background: #3B82F6; animation-delay: 0.44s; }
@keyframes anim-bar-rise {
  0%, 100% { opacity: 0.35; transform: scaleY(0.4); }
  55%       { opacity: 1;    transform: scaleY(1); }
}

/* ── 2. Trend line — Entwicklung ── */
.anim-trend svg { width: 56px; height: 56px; overflow: visible; }
.anim-trend__line {
  stroke-dasharray: 65;
  stroke-dashoffset: 65;
  animation: anim-line-draw 2.8s ease-in-out infinite;
}
.anim-trend__tip {
  opacity: 0;
  animation: anim-tip-fade 2.8s ease-in-out infinite;
}
@keyframes anim-line-draw {
  0%       { stroke-dashoffset: 65; opacity: 0.2; }
  55%, 80% { stroke-dashoffset: 0;  opacity: 1; }
  100%     { stroke-dashoffset: 0;  opacity: 0; }
}
@keyframes anim-tip-fade {
  0%, 45%  { opacity: 0; }
  65%, 80% { opacity: 1; }
  100%     { opacity: 0; }
}

/* ── 3. Dots — Team ── */
.anim-team { gap: 7px; }
.anim-team__dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  animation: anim-dot-pulse 2s ease-in-out infinite;
}
.anim-team__dot--1 { background: #FF6A00; animation-delay: 0s; }
.anim-team__dot--2 { background: #FFB347; animation-delay: 0.3s; }
.anim-team__dot--3 { background: #3B82F6; animation-delay: 0.6s; }
@keyframes anim-dot-pulse {
  0%, 100% { transform: scale(0.7); opacity: 0.4; }
  45%      { transform: scale(1.2); opacity: 1; }
}

/* ── 4. Check — Produkt ── */
.anim-check svg { width: 56px; height: 56px; }
.anim-check__circle {
  stroke-dasharray: 125.6;
  stroke-dashoffset: 125.6;
  animation: anim-circle-draw 2.6s ease-in-out infinite;
}
.anim-check__path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  pathLength: 1;
  animation: anim-check-draw 2.6s ease-in-out infinite 0.5s;
}
@keyframes anim-circle-draw {
  0%       { stroke-dashoffset: 125.6; opacity: 0.2; }
  45%, 80% { stroke-dashoffset: 0;     opacity: 1; }
  100%     { stroke-dashoffset: 0;     opacity: 0; }
}
@keyframes anim-check-draw {
  0%       { stroke-dashoffset: 1; opacity: 0; }
  40%, 75% { stroke-dashoffset: 0; opacity: 1; }
  100%     { stroke-dashoffset: 0; opacity: 0; }
}

/* ── 5. Clock — Zeit ── */
.anim-clock svg { width: 56px; height: 56px; }
.anim-clock__min {
  transform-origin: 28px 28px;
  animation: anim-clock-spin 3s linear infinite;
}
.anim-clock__hr {
  transform-origin: 28px 28px;
  animation: anim-clock-spin 18s linear infinite;
}
@keyframes anim-clock-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── 6. Steps — Einstieg ── */
.anim-steps { align-items: flex-end; gap: 0; padding: 6px; }
.anim-steps__step {
  width: 14px;
  border-radius: 2px 2px 0 0;
  animation: anim-step-light 2.4s ease-in-out infinite;
}
.anim-steps__step--1 { height: 18px; background: #FF6A00; animation-delay: 0s; }
.anim-steps__step--2 { height: 32px; background: #FFB347; animation-delay: 0.35s; }
.anim-steps__step--3 { height: 46px; background: #3B82F6; animation-delay: 0.7s; }
@keyframes anim-step-light {
  0%, 100% { opacity: 0.3; }
  40%      { opacity: 1; }
}

/* ── 7. Orbit — Weiterentwicklung ── */
.anim-orbit { }
.anim-orbit__ring {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px dashed rgba(59,130,246,0.35);
  position: absolute;
  animation: anim-orbit-spin 6s linear infinite;
}
.anim-orbit__dot-wrap {
  width: 44px;
  height: 44px;
  position: absolute;
  animation: anim-orbit-spin 3s linear infinite;
}
.anim-orbit__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6A00, #3B82F6);
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
}
.anim-orbit__center {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(59,130,246,0.3);
  position: absolute;
}
@keyframes anim-orbit-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── 8. Pulse — Betreuung ── */
.anim-pulse__center {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6A00, #3B82F6);
  position: absolute;
  z-index: 1;
}
.anim-pulse__ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid #3B82F6;
  animation: anim-pulse-expand 2.4s ease-out infinite;
}
.anim-pulse__ring--2 { animation-delay: 0.9s; }
@keyframes anim-pulse-expand {
  0%   { width: 14px; height: 14px; opacity: 0.8; }
  100% { width: 52px; height: 52px; opacity: 0; }
}

/* =============================================
   CONTRAST / PROBLEM SECTION
   ============================================= */
.contrast {
  background: #fff;
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}


.contrast .container {
  position: relative;
  z-index: 1;
}

.contrast__header {
  max-width: 680px;
  margin: 0 auto 4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.contrast__label {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
}

.contrast__heading {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 500;
  letter-spacing: -0.15rem;
  line-height: 1.1;
  color: #000;
}

.contrast__heading em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(90deg, #FF6A00, #FFB347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contrast__intro {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(0,0,0,0.45);
  letter-spacing: -0.01em;
}

/* Single panel containing both columns */
.contrast__panel {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  background: #f5f5f5;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 1rem;
  overflow: hidden;
}

/* Columns */
.contrast-col {
  padding: 3rem;
}

.contrast-col--problem {
  background: #f5f5f5;
}

.contrast-col--solution {
  background: #efefef;
}

.contrast-col__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.contrast-col--problem .contrast-col__label {
  color: #cc2222;
}

.contrast-col--solution .contrast-col__label {
  color: #2563EB;
}

.contrast-col__list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.contrast-col__list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.contrast-col__list li:first-child {
  border-top: 1px solid rgba(0,0,0,0.07);
}

/* Problem items */
.contrast-col--problem .contrast-col__line {
  font-size: 0.975rem;
  font-weight: 400;
  color: rgba(0,0,0,0.6);
  letter-spacing: -0.02em;
}

.contrast-col__x {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* Solution items */
.contrast-col--solution .contrast-col__line {
  font-size: 0.975rem;
  font-weight: 500;
  color: rgba(0,0,0,0.8);
  letter-spacing: -0.02em;
}

.contrast-col__check {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* Vertical divider */
.contrast__divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 3rem 0;
  width: 56px;
  background: #f5f5f5;
  border-left: 1px solid rgba(0,0,0,0.07);
  border-right: 1px solid rgba(0,0,0,0.07);
}

.contrast__divider-line {
  width: 1px;
  flex: 1;
  background: rgba(0,0,0,0.08);
}

.contrast__divider-vs {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(0,0,0,0.25);
  white-space: nowrap;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-shell {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  padding: 2.5rem 3rem;
  min-height: 140px;
  margin-top: 3rem;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0) 42%),
    #0d0d0f;
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-shell::before {
  content: '';
  position: absolute;
  left: -5%;
  bottom: -15%;
  width: 32%;
  height: 75%;
  background: radial-gradient(circle at 42% 42%, rgba(59,130,246,0.4), rgba(59,130,246,0.12) 40%, rgba(59,130,246,0.03) 65%, transparent 80%);
  filter: blur(16px);
  opacity: 0.9;
  pointer-events: none;
}

.cta-shell::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13,13,15,0) 0%, rgba(13,13,15,0.1) 24%, rgba(13,13,15,0.5) 50%, rgba(13,13,15,0.92) 72%);
  pointer-events: none;
}

.cta-copy,
.cta-action {
  position: relative;
  z-index: 1;
}

.cta-copy {
  max-width: 440px;
}

.cta-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.25;
  color: #fff;
}

.cta-title em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(90deg, #FF6A00, #FFB347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-graph {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 22%;
  max-width: 200px;
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.85) 50%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.85) 50%, rgba(0,0,0,0) 100%);
}

.cta-action {
  flex-shrink: 0;
  width: 27.1875rem;
}

/* =============================================
   TEAM SECTION
   ============================================= */
.team {
  background: #fff;
  padding: 4rem 0 8rem;
}

.team__header {
  max-width: 680px;
  margin: 0 auto 4rem;
  text-align: center;
}

.team__heading {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.12rem;
  line-height: 1.05;
  color: #000;
  margin-bottom: 1.5rem;
  text-align: center;
}

.team__heading em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(90deg, #FF6A00, #FFB347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.team__desc {
  font-size: 0.975rem;
  line-height: 1.75;
  color: rgba(0,0,0,0.5);
  letter-spacing: -0.01em;
}

.team__origin {
  margin-top: 3.5rem;
  padding: 2rem 2.5rem;
  border-left: 2px solid;
  border-image: linear-gradient(to bottom, #FF6A00, #3B82F6) 1;
  background: rgba(0,0,0,0.03);
  border-radius: 0 8px 8px 0;
}

.team__origin-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  margin-bottom: 0.75rem;
}

.team__origin-text {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(0,0,0,0.6);
  letter-spacing: -0.01em;
}

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

/* Team Card */
.team-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.team-card__img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3.86;
  border-radius: 1rem;
  overflow: hidden;
  background: #f0f0f0;
}

.team-card__img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #e8e8e8 0%, #d8d8d8 100%);
}

.team-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team-card__name {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.1;
  color: #000;
}

.team-card__name em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  background: linear-gradient(90deg, #FF6A00, #CC5500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.team-card__bio {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(0,0,0,0.5);
  letter-spacing: -0.01em;
}

.team-card__bio-wrap {
  position: relative;
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card__bio-wrap.is-collapsed {
  height: 8em;
}

.team-card__bio-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5em;
  background: linear-gradient(to bottom, transparent, #fff);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.team-card__bio-wrap:not(.is-collapsed) .team-card__bio-gradient {
  opacity: 0;
  pointer-events: none;
}

.team-card__bio-toggle {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: 0.85rem;
  font-family: inherit;
  font-weight: 500;
  color: #FF6A00;
  transition: opacity 0.2s;
  margin-top: -0.25rem;
}

.team-card__bio-toggle:hover {
  opacity: 0.7;
}

/* =============================================
   REASONS SECTION
   ============================================= */
.reasons {
  background: #fff;
  padding: 3rem 0 6rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.reasons__header {
  margin-bottom: 3rem;
  text-align: center;
}

.reasons__placeholder {
  text-align: center;
  padding: 3rem 0;
  color: rgba(0,0,0,0.25);
  font-style: italic;
  font-size: 0.95rem;
}

.reasons__title {
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.06rem;
  line-height: 1.15;
  color: #000;
}

.reasons__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.reasons__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}

.reasons__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.reasons__item:last-child {
  border-bottom: none;
}

.reasons__item-body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.reasons__item-title {
  color: #000;
  font-weight: 600;
  font-size: 0.97rem;
  line-height: 1.4;
}

.reasons__item-desc {
  color: rgba(0,0,0,0.5);
  font-size: 0.9rem;
  line-height: 1.6;
}

.reasons__check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 0.15rem;
}

/* =============================================
   COMPARISON SECTION
   ============================================= */
.cmp {
  background: #fff;
  padding: 2rem 0 6rem;
}

.cmp__header {
  max-width: 680px;
  margin: 0 auto 5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.cmp__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
}

.cmp__heading {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.09rem;
  line-height: 1.05;
  color: #000;
  text-align: center;
}

.cmp__heading em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(90deg, #FF6A00, #FFB347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cmp__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

/* ── LEFT CARD ── */
.cmp-left {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid #cccccc;
  background: #f0f0f0;
  padding: 1.75rem;
  transform: scale(0.84);
  opacity: 0.92;
  transform-origin: center center;
}

.cmp-left__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #999;
}

.cmp-left__title {
  margin-top: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 500;
  line-height: 1.3;
  color: #555;
  letter-spacing: -0.04rem;
}

/* Browser mockup */
.cmp-left__graphic {
  margin-top: 2rem;
  height: 200px;
  overflow: hidden;
  border: 1px solid #cccccc;
  background: #fafafa;
  padding: 0.75rem;
}

.cmp-left__browser-dots {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #dddddd;
}

.cmp-left__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #bbbbbb;
  display: block;
}

.cmp-left__browser-body {
  padding-top: 0.75rem;
}

.cmp-left__cols {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0.5rem;
}

.cmp-left__col--wide,
.cmp-left__col--narrow {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cmp-left__bar {
  height: 7px;
  background: #dddddd;
  border-radius: 2px;
}

.cmp-left__block {
  height: 52px;
  border: 1px solid #e0e0e0;
  background: #f5f5f5;
}

.cmp-left__block--tall {
  height: 64px;
}

/* Left list */
.cmp-left__list {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cmp-left__item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.cmp-left__item svg {
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ── RIGHT CARD ── */
.cmp-right {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(10,37,64,0.9);
  background: #04101f;
  padding: 2.25rem;
  color: #fff;
  box-shadow: 0 60px 120px -40px rgba(8,30,60,0.65);
}

.cmp-right__glow-bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(120% 80% at 100% 0%, rgba(255,106,0,0.28) 0%, transparent 55%),
    radial-gradient(80% 60% at 0% 100%, rgba(96,165,250,0.18) 0%, transparent 60%),
    linear-gradient(180deg, #04101f, #02080f);
}

.cmp-right__blur-orb {
  pointer-events: none;
  position: absolute;
  right: -8rem;
  top: -8rem;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,106,0,0.22);
  filter: blur(100px);
}

.cmp-right__ring {
  pointer-events: none;
  position: absolute;
  inset: 0;
  border-radius: 28px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}

.cmp-right__label {
  position: relative;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #FF8C42;
}

.cmp-right__title {
  position: relative;
  margin-top: 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.75rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.08rem;
  color: #fff;
}

.cmp-right__gradient {
  background: linear-gradient(90deg, #fff 0%, #FFB347 40%, #60A5FA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Chart graphic */
.cmp-right__graphic {
  position: relative;
  margin-top: 2.5rem;
  height: 200px;
}

.cmp-right__chart-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  padding: 1.25rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
}

.cmp-right__chart {
  width: 100%;
  height: 100%;
  display: block;
}

/* Right list */
.cmp-right__list {
  position: relative;
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.cmp-right__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.cmp-right__item svg {
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Shared label/value styles */
.cmp__label-sm {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #aaaaaa;
}

.cmp__label-sm--light {
  color: rgba(255,140,66,0.75);
}

.cmp__value {
  margin-top: 0.15rem;
  font-size: 0.88rem;
  color: #777;
}

.cmp__value--white {
  color: #fff;
  font-weight: 500;
  font-size: 0.92rem;
}

/* Mobile */
@media (max-width: 900px) {
  .cmp__grid {
    grid-template-columns: 1fr;
  }
  .cmp-left {
    transform: none;
    opacity: 1;
  }
}

/* =============================================
   OFFER SECTION
   ============================================= */
.offer {
  background: #fff;
  padding: 7rem 0 8rem;
}

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

/* Left column */
.offer__sublabel {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  margin-bottom: 1.75rem;
  margin-top: 0.75rem;
}

.offer__heading {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.12rem;
  line-height: 1.1;
  color: #000;
  margin-bottom: 1.5rem;
}

.offer__heading em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(90deg, #FF6A00, #FFB347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.offer__text {
  font-size: 0.975rem;
  line-height: 1.75;
  color: rgba(0,0,0,0.5);
  letter-spacing: -0.01em;
  margin-bottom: 2.5rem;
}

.offer__body {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2.5rem;
}

.offer__body p {
  font-size: 0.975rem;
  line-height: 1.8;
  color: rgba(0,0,0,0.5);
  letter-spacing: -0.01em;
}

.offer__body-highlight {
  font-weight: 600;
  color: rgba(0,0,0,0.75) !important;
  letter-spacing: -0.03em !important;
  font-size: 1.1rem !important;
}

.offer__nobrainer {
  background: #f5f5f5;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 0.875rem;
  padding: 1.75rem;
}

.offer__nobrainer-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  margin-bottom: 0.75rem;
}

.offer__nobrainer-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(0,0,0,0.6);
  letter-spacing: -0.01em;
}

/* Right column */
.offer__right {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding-top: 5rem;
}

.offer__calc-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
}

.offer__table-wrap {
  background: #0d0d0d;
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid rgba(255,255,255,0.06);
}

.offer__table {
  width: 100%;
  border-collapse: collapse;
}

.offer__table thead tr {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.offer__table th {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 0 0 0.875rem;
  text-align: left;
}

.offer__table td {
  font-size: 0.925rem;
  color: rgba(255,255,255,0.7);
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.offer__table tbody tr:last-child td {
  border-bottom: none;
}

.offer__table-row--highlight td {
  color: #fff;
}

.offer__table-row--highlight .offer__table-range {
  background: linear-gradient(90deg, #2563EB, #60A5FA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.offer__table-range {
  font-weight: 600;
  font-size: 1rem;
}

.offer__table-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  margin-top: 1.25rem;
  line-height: 1.5;
}

.offer__calc {
  background: #0d0d0d;
  border-radius: 1rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.offer__calc-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.offer__calc-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.offer__calc-num {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1;
  color: #fff;
}

.offer__calc-desc {
  font-size: 0.75rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.35);
  letter-spacing: -0.01em;
}

.offer__calc-op {
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.offer__calc-result {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.offer__calc-result-line {
  height: 1px;
  background: rgba(255,255,255,0.08);
}

.offer__calc-result-inner {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}

.offer__calc-result-num {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 1;
  background: linear-gradient(90deg, #FF6A00, #FFB347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.offer__calc-result-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: -0.01em;
}

.offer__hours {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(0,0,0,0.45);
  letter-spacing: -0.01em;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 640px) {
  .benefits__grid {
    grid-template-columns: 1fr;
  }
  .benefit-card {
    flex-direction: column;
    gap: 1.25rem;
  }
}

@media (max-width: 900px) {
  .contrast__panel {
    grid-template-columns: 1fr;
  }
  .contrast__divider {
    flex-direction: row;
    width: 100%;
    padding: 1.25rem 2rem;
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .contrast__divider-line {
    flex: 1;
    height: 1px;
    width: auto;
  }
}

@media (max-width: 900px) {
  .offer__grid { grid-template-columns: 1fr; gap: 3rem; }
  .offer__right { position: static; }
}

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

  .cta-shell {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
  }
  .cta-action { width: 100%; }

  .hero__inner { padding: 5rem 0 3rem; }

  .h1-instrument {
    font-size: clamp(1.65rem, 5.5vw, 2rem);
    margin-bottom: 0.35rem;
    letter-spacing: -0.04rem;
  }
  .h1-new.is-inter {
    font-size: clamp(2.4rem, 9vw, 3.5rem);
    letter-spacing: -0.15rem;
  }

  .button-wrapper-new.is-main { max-width: none; }
  .nav .button-wrapper-new.is-smaller { max-width: 9rem; font-size: 0.7rem; height: 2.6rem; }
  .button-main.is-transparent.is-second { max-width: none; }

  .benefits { padding: 5rem 0 6rem; }
  .benefit-card { padding: 2rem; }

  .contrast { padding: 4rem 0 5rem; }

  .hero__bg-overlay {
    background: linear-gradient(
      to bottom,
      rgba(4,16,31,0.88) 0%,
      rgba(4,16,31,0.75) 60%,
      rgba(4,16,31,0.6) 100%
    );
  }
  .hero__bg-image img { object-position: 70% center; }
  .hero__inner { max-width: 100%; }

  .offer__table { table-layout: fixed; width: 100%; }
  .offer__table th,
  .offer__table td { font-size: 0.78rem; word-wrap: break-word; white-space: normal; }
  .offer__table th:first-child,
  .offer__table td:first-child { width: 28%; }
}

/* ═══ JOBS ═══ */
.jobs {
  background: #080808;
  padding: 7rem 0 8rem;
}

.jobs__head {
  text-align: center;
  margin-bottom: 4rem;
}

.jobs__title {
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.12rem;
  color: var(--color-text);
  margin: 0.75rem 0 1rem;
}

.jobs__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(90deg, #FF6A00, #FFB347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.jobs__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.6;
}

.jobs__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 56rem;
  margin: 0 auto;
}

.job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
  border-radius: 0;
  gap: 2rem;
}

.jobs__list .job-card:first-child {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.job-card:hover {
  background: rgba(255,255,255,0.04);
}

.job-card:hover .job-card__arrow {
  color: #FFB347;
  transform: translateX(4px);
}

.job-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.job-card__tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #60A5FA;
  border: 1px solid rgba(59,130,246,0.35);
  border-radius: 100px;
  padding: 0.2rem 0.7rem;
  align-self: flex-start;
}

.job-card__title {
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 500;
  letter-spacing: -0.03rem;
  color: #fff;
  margin: 0;
}

.job-card__mwd {
  color: rgba(255,255,255,0.45);
  font-weight: 400;
}

.job-card__meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.2rem;
}

.job-card__meta-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
}

.job-card__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

.job-card__arrow {
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

/* ═══ FIT CHECK ═══ */
.fit {
  background:
    linear-gradient(105deg, #080808 18%, transparent 75%),
    linear-gradient(rgba(8,8,8,0.86), rgba(8,8,8,0.86)),
    url('images/Background Hero Image | Marco & Michael.png') 180px center / 100% auto no-repeat;
  padding: 7rem 0 5rem;
}

.fit__head {
  text-align: center;
  margin-bottom: 4rem;
}

.fit__title {
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.12rem;
  color: #fff;
  margin: 0.75rem 0 0;
}

.fit__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(90deg, #FF6A00, #FFB347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-right: 0.1em;
}

.fit__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  max-width: 56rem;
  margin: 0 auto;
  gap: 0 4rem;
  align-items: start;
}

.fit__divider {
  width: 1px;
  background: rgba(255,255,255,0.08);
  align-self: stretch;
}

.fit__col-label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.fit__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fit__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.fit__item:last-child {
  border-bottom: none;
}

.fit__icon {
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.fit__icon--yes {
  color: #3B82F6;
}

.fit__icon--no {
  color: #dc2626;
}

.fit__cta {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}

.offer__nobrainer-bottom {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-weight: 500;
  color: rgba(0,0,0,0.7) !important;
}

@media (max-width: 640px) {
  .fit__grid {
    grid-template-columns: 1fr;
    gap: 3rem 0;
  }
  .fit__divider { display: none; }
}

.back-to-form {
  display: flex;
  justify-content: center;
  padding-top: 2rem;
}

.back-to-form__link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #3B82F6;
  transition: color 0.2s ease;
}

.back-to-form__link:hover {
  color: #1D4ED8;
}

.back-to-form__arrow {
  color: inherit;
  transition: transform 0.2s ease;
}

.back-to-form__link:hover .back-to-form__arrow {
  transform: translateY(-3px);
}

/* ═══ FAQ ═══ */
.faq {
  background: #fff;
  padding: 3rem 0 8rem;
}

.faq__head {
  text-align: center;
  margin-bottom: 4rem;
}

.faq__title {
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.12rem;
  color: #0a0a0a;
  margin: 0.75rem 0 0;
}

.faq__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(90deg, #FF6A00, #FFB347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq__list {
  max-width: 56rem;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.faq__item:first-child {
  border-top: 1px solid rgba(0,0,0,0.1);
}

.faq__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq__btn-inner {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
}

.faq__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  background: var(--gradient-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  line-height: 1;
}

.faq__question {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: rgba(0,0,0,0.75);
  line-height: 1.3;
  transition: color 0.2s ease;
}

.faq__btn:hover .faq__question {
  color: #000;
}

.faq__icon {
  color: rgba(0,0,0,0.3);
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.faq__btn[aria-expanded="true"] .faq__icon {
  color: rgba(0,0,0,0.7);
}

.faq__btn[aria-expanded="true"] .faq-plus-v {
  opacity: 0;
}

.faq-plus-v {
  transition: opacity 0.2s ease;
}

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}

.faq__answer p {
  font-size: 0.975rem;
  line-height: 1.75;
  color: rgba(0,0,0,0.5);
  padding-bottom: 1.75rem;
  margin: 0;
  padding-left: calc(1.5rem + 1.25rem);
}

/* ═══ APPLY / FORM ═══ */
.apply {
  background: #04101f;
  padding: 7rem 0 8rem;
  position: relative;
  overflow: hidden;
}

.apply::before {
  content: '';
  position: absolute;
  bottom: -5%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(37,99,235,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.apply__head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.apply__title {
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.12rem;
  color: #fff;
  margin: 0.75rem 0 1rem;
}

.apply__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(90deg, #FF6A00, #FFB347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.apply__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
}

.apply__card {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0,0,20,0.5);
}

.apply__topbar {
  padding: 2.25rem 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.apply__progress-track {
  height: 4px;
  background: rgba(255,255,255,0.07);
  border-radius: 100px;
  overflow: hidden;
}

.apply__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #2563EB, #60A5FA);
  border-radius: 100px;
  width: 0%;
  transition: width 0.45s cubic-bezier(0.4,0,0.2,1);
}

.apply__step-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
}

.apply__body {
  padding: 2.5rem 3rem 3rem;
  position: relative;
  min-height: 24rem;
}

.apply__step {
  display: none;
  animation: stepIn 0.35s cubic-bezier(0.4,0,0.2,1) both;
}

.apply__step.is-active {
  display: block;
}

@keyframes stepIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.apply__q {
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0 0 0.5rem;
  line-height: 1.35;
}

.apply__hint {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.35);
  margin: 0.5rem 0 1.25rem;
}

/* Option cards */
.apply__opts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.apply__opts--two {
  flex-direction: row;
  gap: 0.875rem;
}

.apply__opts--multi {
  margin-top: 1rem;
}

.apply__opt {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 0.875rem;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.18s ease;
  text-align: left;
  flex: 1;
}

.apply__opt:hover {
  background: rgba(37,99,235,0.1);
  border-color: rgba(59,130,246,0.35);
  color: #fff;
}

.apply__opt--label {
  cursor: pointer;
  flex: unset;
  width: 100%;
}

.apply__opt--label input[type="checkbox"] {
  display: none;
}

.apply__opt-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.apply__opt-box {
  width: 20px;
  height: 20px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  flex-shrink: 0;
  transition: all 0.18s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.apply__opt--label input:checked ~ .apply__opt-inner .apply__opt-box {
  background: linear-gradient(135deg, #2563EB, #60A5FA);
  border-color: transparent;
}

.apply__opt--label input:checked ~ .apply__opt-inner .apply__opt-box::after {
  content: '✓';
  font-size: 11px;
  color: #fff;
  font-weight: 700;
}

.apply__opt--label input:checked ~ .apply__opt-inner {
  color: #fff;
}

.apply__opt--label:has(input:checked) {
  background: rgba(37,99,235,0.1);
  border-color: rgba(59,130,246,0.35);
}

.apply__opt-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.apply__opt-badge--yes {
  background: rgba(22,163,74,0.15);
  color: #4ade80;
  border: 1px solid rgba(22,163,74,0.3);
}

.apply__opt-badge--no {
  background: rgba(220,38,38,0.12);
  color: #f87171;
  border: 1px solid rgba(220,38,38,0.25);
}

/* Scale */
.apply__scale-wrap {
  margin-top: 2.25rem;
}

.apply__scale-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.875rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.apply__scale-btns {
  display: flex;
  gap: 0.625rem;
}

.apply__scale-btn {
  flex: 1;
  padding: 1rem 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.18s ease;
}

.apply__scale-btn:hover {
  background: rgba(37,99,235,0.1);
  border-color: rgba(59,130,246,0.3);
  color: #fff;
}

.apply__scale-btn.is-selected {
  background: linear-gradient(135deg, #1D4ED8, #3B82F6);
  border-color: transparent;
  color: #fff;
  font-weight: 700;
}

/* Inputs */
.apply__fields {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.apply__input,
.apply__textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.875rem;
  padding: 1rem 1.25rem;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.975rem;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  box-sizing: border-box;
  resize: none;
}

.apply__input::placeholder,
.apply__textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.apply__input:focus,
.apply__textarea:focus {
  border-color: rgba(59,130,246,0.55);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

/* Nav */
.apply__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.25rem;
  gap: 1rem;
}

.apply__nav--back-only {
  justify-content: flex-start;
}

.apply__back {
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  cursor: pointer;
  padding: 0.5rem 0;
  transition: color 0.18s ease;
}

.apply__back:hover {
  color: rgba(255,255,255,0.65);
}

.apply__continue {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, #1D4ED8, #2563EB 50%, #3B82F6);
  border: none;
  border-radius: 0.75rem;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.18s ease, transform 0.18s ease;
  letter-spacing: -0.01em;
}

.apply__continue:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.apply__continue--submit {
  background: linear-gradient(135deg, #1D4ED8, #2563EB 50%, #3B82F6);
}

/* Consent */
.apply__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-top: 1.5rem;
  cursor: pointer;
}

.apply__consent input[type="checkbox"] {
  display: none;
}

.apply__consent-box {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  margin-top: 1px;
  transition: all 0.18s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.apply__consent input:checked ~ .apply__consent-box {
  background: linear-gradient(135deg, #2563EB, #60A5FA);
  border-color: transparent;
}

.apply__consent input:checked ~ .apply__consent-box::after {
  content: '✓';
  font-size: 11px;
  color: #fff;
  font-weight: 700;
}

.apply__consent-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

.apply__consent-link {
  color: #60A5FA;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.apply__consent-link:hover {
  color: #93C5FD;
}

.apply__continue:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none !important;
}

/* Done screen */
.apply__done {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 0 1.5rem;
  gap: 1.25rem;
}

.apply__done-title {
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.04em;
  margin: 0;
}

.apply__done-text {
  font-size: 0.975rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 28rem;
  margin: 0;
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }

  .hero__cta-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .h1-new.is-inter { letter-spacing: -0.08rem; }

  .job-card { padding: 1.5rem 0; }
  .job-card__title { font-size: 1rem; }
}

/* ═══ MS BADGE ═══ */
.ms-badge-wrap { display: flex; justify-content: center; padding: 24px 0 32px; background: #fff; }
.ms-badge { display: inline-flex; align-items: center; gap: 14px; padding: 18px 28px; background: #ffffff; border-radius: 14px; border: 1px solid transparent; background-clip: padding-box; position: relative; text-decoration: none; font-family: 'Inter', sans-serif; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.ms-badge::before { content: ""; position: absolute; inset: 0; border-radius: 14px; padding: 1.5px; background: linear-gradient(135deg, #e8e8e8 0%, #ffffff 25%, #c8c8c8 50%, #ffffff 75%, #d4d4d4 100%); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: destination-out; mask-composite: exclude; pointer-events: none; }
.ms-badge::after { content: ""; position: absolute; inset: 0; border-radius: 14px; background-image: radial-gradient(circle, rgba(0,0,0,0.13) 1px, transparent 1.25px); background-size: 12px 12px; mask-image: radial-gradient(ellipse at 20% 50%, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 45%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse at 20% 50%, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 45%, transparent 75%); pointer-events: none; }
.ms-badge:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.ms-badge-mark { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, #e8623a 0%, #C8501E 100%); display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(200,80,30,0.35); flex-shrink: 0; position: relative; z-index: 1; }
.ms-badge-mark img { width: 22px; height: 22px; object-fit: contain; filter: brightness(0) invert(1); display: block; }
.ms-badge-label { display: flex; flex-direction: column; gap: 1px; position: relative; z-index: 1; }
.ms-badge-pre { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(10,10,10,0.38); line-height: 1; }
.ms-badge-name { font-size: 1.05rem; font-weight: 800; letter-spacing: -0.025em; line-height: 1.1; background: linear-gradient(135deg, #EFA08A 0%, #C8501E 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ═══ FOOTER ═══ */
.site-footer {
  background: #fff;
  padding: 1.5rem 1.5rem 2rem;
}

.footer-shell {
  max-width: 1200px;
  margin: 0 auto;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1.25rem;
  padding: 3rem 3rem 1.75rem;
  color: rgba(255,255,255,0.65);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 0.8fr;
  gap: 2.5rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand {
  max-width: 22rem;
}

.footer-mark {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-mark span {
  background: var(--gradient-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-copy {
  font-size: 0.825rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}

.footer-btn {
  transform: scale(0.78);
  transform-origin: left center;
}

.footer-col {
  padding-left: 1.5rem;
}

.footer-col-title {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 1.1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a,
.footer-col span {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.18s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-meta {
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.2);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.2);
  text-decoration: none;
  transition: color 0.18s ease;
}

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

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }
  .footer-col { padding-left: 0; }
  .footer-shell { padding: 2rem 1.5rem 1.25rem; }
}

@media (max-width: 768px) {
  .fit {
    background:
      linear-gradient(rgba(8,8,8,0.80), rgba(8,8,8,0.80)),
      url('images/Background Hero Image | Marco & Michael.png') center top / cover no-repeat;
  }
}
