/* =========================================================
   Europiel · Únete — Design tokens
========================================================= */
:root {
  --brand-900: #0d0d0d;
  --brand-800: #012631;
  --brand-700: #007cc3;
  --brand-600: #007cc3;
  --brand-500: #0095eb;
  --brand-400: #00edff;
  --brand-300: #60bed4;
  --brand-100: #d7f5fb;
  --brand-50: #f0fcff;

  --ink: #14181c;
  --ink-soft: #59636b;
  --paper: #ffffff;
  --paper-alt: #eef9fc;

  --gradient-brand: linear-gradient(
    135deg,
    var(--brand-900) 0%,
    var(--brand-500) 55%,
    var(--brand-400) 100%
  );
  --gradient-soft: linear-gradient(180deg, var(--brand-50) 0%, #ffffff 100%);

  --shadow-sm: 0 4px 16px rgba(13, 13, 13, 0.08);
  --shadow-md: 0 12px 32px rgba(13, 13, 13, 0.12);
  --shadow-lg: 0 24px 60px rgba(13, 13, 13, 0.18);

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --font-display: "Anton", sans-serif;
  --font-body: "Poppins", sans-serif;

  --container: 1180px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

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

.section {
  padding: 110px 0;
  position: relative;
}

.kicker {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--brand-600);
  margin: 0 0 14px;
}
.kicker.center {
  display: block;
  text-align: center;
}

.section-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
.section-title.center {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-text {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 640px;
}
.section-text.center {
  margin: 0 auto 50px;
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 34px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}
.btn-primary {
  background: var(--brand-700);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: #00618f;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}
.btn-white {
  background: #fff;
  color: var(--brand-700);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.btn-block {
  width: 100%;
}

/* Progress bar */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gradient-brand);
  z-index: 1000;
  transition: width 0.1s linear;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 20px 0;
  transition:
    background 0.3s ease,
    padding 0.3s ease,
    box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-logo {
  height: 34px;
  transition: filter 0.3s ease;
}
.site-header.scrolled .brand-logo {
  filter: brightness(0);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: #fff;
  position: relative;
  transition: color 0.3s ease;
}
.site-header.scrolled .main-nav a {
  color: var(--ink);
}
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--brand-500);
  transition: width 0.25s ease;
}
.main-nav a:not(.nav-cta):hover::after {
  width: 100%;
}
.nav-cta {
  background: var(--brand-700);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600;
  transition: background 0.25s ease;
}
.nav-cta:hover {
  background: #00618f;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: background 0.3s;
}
.site-header.scrolled .burger span {
  background: var(--ink);
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 940;
  background: rgba(13, 13, 13, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.nav-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(13, 13, 13, 0.92) 0%,
    rgba(0, 124, 195, 0.78) 40%,
    rgba(0, 149, 235, 0.5) 70%,
    rgba(0, 237, 255, 0.32) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
  padding-bottom: 140px;
}
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-100);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 100px;
  padding: 8px 18px;
  margin-bottom: 26px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  margin: 0 0 26px;
  text-transform: uppercase;
}
.hero-title span {
  background: linear-gradient(90deg, #d7f5fb, #00edff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.stats-float {
  position: absolute;
  left: 50%;
  bottom: -0px;
  transform: translate(-50%, 50%);
  z-index: 3;
  width: min(920px, calc(100% - 48px));
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  justify-content: space-around;
  padding: 34px 20px;
}
/* .stats-float also carries .reveal for its entrance animation; .reveal's own
   transform has equal/higher specificity and would otherwise wipe out the
   translate(-50%, 50%) centering above, shoving the card off-screen. */
.stats-float.reveal {
  transform: translate(-50%, 50%) translateY(28px);
}
.stats-float.reveal.in-view {
  transform: translate(-50%, 50%);
}
.stat {
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--brand-600);
}
.stat-plus {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: var(--brand-600);
}
.stat p {
  margin: 6px 0 0;
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.scroll-cue {
  position: absolute;
  bottom: 130px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
}
.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: #fff;
  animation: scrollcue 1.8s infinite;
}
@keyframes scrollcue {
  0% {
    top: 8px;
    opacity: 1;
  }
  70% {
    top: 22px;
    opacity: 0;
  }
  100% {
    top: 22px;
    opacity: 0;
  }
}

/* Why section */
.why {
  padding-top: 190px;
  background: var(--gradient-soft);
}
.why-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.why-media {
  position: relative;
}
.why-blob {
  position: absolute;
  inset: -30px 10% 10% -30px;
  z-index: 0;
  background: var(--gradient-brand);
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  opacity: 0.18;
}
.why-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
}
.why-badge {
  position: absolute;
  z-index: 2;
  right: 6%;
  bottom: 6%;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 16px 22px;
  text-align: center;
}
.why-badge strong {
  display: block;
  font-family: var(--font-display);
  color: var(--brand-600);
  font-size: 1.3rem;
}
.why-badge span {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.check-list {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.check-ico {
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 50%;
  background: var(--brand-100);
  color: var(--brand-600);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

/* Cards / benefits */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 20px;
}
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 42px 34px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(85, 2, 58, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.card-icon {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  background: var(--brand-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.card-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.card h3 {
  font-size: 1.25rem;
  margin: 0 0 10px;
}
.card-highlight {
  color: var(--brand-600);
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 0 12px;
}
.card-highlight span {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.95rem;
}
.card p:last-child {
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
  font-size: 0.96rem;
}

/* Culture */
.culture {
  background: var(--paper-alt);
}
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 60px;
}
.tag-cloud span {
  padding: 9px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.88rem;
  background: #fff;
  color: var(--brand-600);
  box-shadow: var(--shadow-sm);
}
.culture-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}
.culture-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.culture-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.culture-ico {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
}
.culture-ico svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.culture-card h3 {
  font-size: 1.05rem;
  margin: 0 0 8px;
}
.culture-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* Requisitos */
.requirements {
  background: var(--gradient-soft);
}
.req-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: center;
}
.req-list {
  list-style: none;
  margin: 26px 0 34px;
  padding: 0;
  display: grid;
  gap: 14px;
}
.req-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.6;
}
.req-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand-600);
  font-weight: 700;
}
.req-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
}

/* Process */
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  margin-top: 20px;
  position: relative;
}
.step {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 34px 26px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--brand-100);
  -webkit-text-stroke: 1.5px var(--brand-500);
  display: block;
  margin-bottom: 10px;
}
.step h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}
.step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Testimonials */
.testimonials {
  background: var(--brand-900);
  color: #fff;
  overflow: hidden;
}
.testimonials .kicker.center {
  color: var(--brand-300);
}
.testimonials .section-title {
  color: #fff;
}
.testi-viewport {
  position: relative;
  margin-top: 30px;
  padding: 0 24px;
}
.testi-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 0 30px;
  scrollbar-width: none;
}
.testi-track::-webkit-scrollbar {
  display: none;
}
.testi-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  backdrop-filter: blur(4px);
}
.testi-card img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
  border: 2px solid var(--brand-400);
}
.testi-quote {
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  min-height: 96px;
}
.testi-name {
  font-weight: 700;
  margin: 10px 0 2px;
}
.testi-role {
  color: var(--brand-300);
  font-size: 0.85rem;
  margin: 0;
}
.testi-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
}
.testi-nav button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}
.testi-nav button:hover {
  background: var(--brand-500);
  transform: translateY(-2px);
}

/* CTA Banner */
.cta-banner {
  background: var(--gradient-brand);
  padding: 90px 0;
  text-align: center;
  color: #fff;
}
.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  max-width: 720px;
  margin: 0 auto 34px;
  font-weight: 800;
}

/* Apply form */
.apply {
  background: var(--paper-alt);
}
.apply-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.apply-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
}
.apply-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-soft);
  font-weight: 500;
}
.apply-list li::before {
  content: "•";
  color: var(--brand-500);
  position: absolute;
  left: 4px;
  font-size: 1.3rem;
  line-height: 1;
  top: -2px;
}

.apply-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-row {
  margin-bottom: 20px;
}
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.apply-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
}
.apply-form input:not([type="file"]),
.apply-form select,
.apply-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #eadde3;
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--paper-alt);
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}
.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
  outline: none;
  border-color: var(--brand-400);
  background: #fff;
}
.file-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.file-drop {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 30px 20px;
  border: 2px dashed var(--brand-300);
  border-radius: var(--radius-sm);
  background: var(--brand-50);
  cursor: pointer;
  text-align: center;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}
.file-drop:hover {
  border-color: var(--brand-500);
  background: var(--brand-100);
}
.file-drop input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.file-drop-icon {
  font-size: 1.4rem;
  color: var(--brand-500);
}
.file-drop-text {
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.form-success {
  display: none;
  margin-top: 16px;
  text-align: center;
  color: var(--brand-700);
  font-weight: 600;
  background: var(--brand-50);
  padding: 14px;
  border-radius: var(--radius-sm);
}
.form-success.show {
  display: block;
}
.form-error {
  display: none;
  margin: 4px 0 16px;
  text-align: center;
  color: #c0392b;
  font-weight: 600;
  background: #fdecea;
  padding: 12px;
  border-radius: var(--radius-sm);
}
.form-error.show {
  display: block;
}
.field-error {
  display: block;
  min-height: 1.1em;
  margin-top: 6px;
  color: #c0392b;
  font-size: 0.8rem;
  font-weight: 500;
}
.apply-form input.has-error:not([type="file"]),
.apply-form select.has-error,
.apply-form textarea.has-error {
  border-color: #c0392b;
  background: #fdecea;
}
.file-drop.has-error {
  border-color: #c0392b;
  background: #fdecea;
}

/* Footer */
.site-footer {
  background: var(--brand-900);
  color: #fff;
  padding: 50px 0 24px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 26px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-logo {
  height: 30px;
}
.footer-nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.9rem;
  opacity: 0.85;
  transition: opacity 0.25s ease;
}
.footer-nav a:hover {
  opacity: 1;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}
.footer-social a:hover {
  background: var(--brand-500);
  transform: translateY(-3px);
}
.footer-legal {
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.65;
  margin: 24px 0 0;
}
.footer-legal a {
  text-decoration: underline;
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 800;
  background: var(--brand-700);
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 15px 26px;
  border-radius: 100px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    background 0.25s ease;
}
.floating-cta.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.floating-cta:hover {
  background: #00618f;
  transform: translateY(-4px) scale(1.03);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal[data-delay="1"] {
  transition-delay: 0.08s;
}
.reveal[data-delay="2"] {
  transition-delay: 0.16s;
}
.reveal[data-delay="3"] {
  transition-delay: 0.24s;
}
.reveal[data-delay="4"] {
  transition-delay: 0.32s;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* ===================== Responsive ===================== */
@media (max-width: 1000px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .culture-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .why-grid,
  .req-grid,
  .apply-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .req-media {
    order: -1;
    max-width: 340px;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .culture-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 32px 40px;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.12);
  }
  .main-nav.open {
    transform: translateX(0);
  }
  .main-nav a {
    /* color: var(--ink) !important; */
    font-size: 1.05rem;
  }
  .burger {
    display: flex;
    z-index: 950;
  }
  .burger span {
    background: #fff;
  }
  .site-header.scrolled .burger span {
    background: var(--ink);
  }
  .burger.open span {
    background: var(--ink);
  }

  .nav-backdrop {
    display: block;
    z-index: 800;
  }

  .stats-float {
    flex-wrap: wrap;
    gap: 20px;
    padding: 26px 20px;
  }
  .stat {
    width: 40%;
  }

  .why-badge {
    right: auto;
    left: 6%;
  }

  .form-row-split {
    grid-template-columns: 1fr;
  }
  .apply-form {
    padding: 26px;
  }
  .apply-form input:not([type="file"]),
  .apply-form select,
  .apply-form textarea {
    font-size: 16px;
  }

  .section {
    padding: 70px 0;
  }
  .why {
    padding-top: 190px;
  }
  .cta-banner {
    padding: 60px 0;
  }

  .floating-cta {
    padding: 12px 20px;
    font-size: 0.85rem;
    right: 18px;
    bottom: 18px;
  }
}
