*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
:root {
  --black: #01040a;
  --dark: #050912;
  --section-alt: #030814;
  --panel: #07101d;
  --panel-hover: #0a1728;
  --line: rgba(255,255,255,0.075);
  --soft-line: rgba(39,150,255,0.22);
  --white: #f7fbff;
  --muted: rgba(247,251,255,0.54);
  --muted-strong: rgba(247,251,255,0.72);
  --blue: #1593ff;
  --blue-soft: #5db8ff;
}
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}
button, input, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--blue); color: var(--black); }
.cursor-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
  background: radial-gradient(circle, var(--blue), transparent 68%);
  transform: translate(-50%, -50%);
  filter: blur(22px);
}
nav, main, footer, .modal-overlay { position: relative; z-index: 1; }
nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 48px;
  background: rgba(1,4,10,0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-logo img { height: 82px; width: auto; display: block; filter: drop-shadow(0 0 14px rgba(21,147,255,0.25)); }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a, .section-link {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.55s ease, text-shadow 0.55s ease;
}
.section-link { background: none; border: 0; }
.nav-links a:hover, .section-link:hover { color: var(--white); text-shadow: 0 0 18px rgba(21,147,255,0.48); }
.nav-cta, .btn-primary, .btn-ghost, .btn-dark {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  transition: transform 0.55s ease, background 0.55s ease, color 0.55s ease, border-color 0.55s ease, box-shadow 0.55s ease;
}
.nav-cta, .btn-primary {
  color: var(--black);
  background: var(--white);
  padding: 12px 27px;
}
.nav-cta:hover, .btn-primary:hover {
  transform: translateY(-2px);
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 34px rgba(21,147,255,0.28);
}
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 48px 60px;
  background:
    radial-gradient(circle at 50% 36%, rgba(21,147,255,0.22), transparent 30%),
    linear-gradient(180deg, #000 0%, var(--black) 62%, #02050b 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 74px 48px 0;
  border-left: 1px solid rgba(255,255,255,0.035);
  border-right: 1px solid rgba(255,255,255,0.035);
  pointer-events: none;
}
.rotating-logo-wrap {
  position: relative;
  width: min(590px, 78vw);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  opacity: 0;
  perspective: 1200px;
  transform-style: preserve-3d;
  animation: fadeIn 1.2s ease 0.15s forwards;
}
.rotating-logo-wrap::after {
  content: '';
  position: absolute;
  width: 46%;
  height: 10%;
  bottom: 17%;
  border-radius: 50%;
  background: rgba(21,147,255,0.18);
  filter: blur(24px);
  z-index: 0;
  animation: logoShadow 12s ease-in-out infinite;
}
.hero-logo {
  position: relative;
  z-index: 1;
  width: 72%;
  height: 72%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 52px rgba(21,147,255,0.42));
  animation: heroFloat 8s ease-in-out infinite;
}
.hero-eyebrow, .section-eyebrow {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--blue-soft);
}
.hero-eyebrow { margin-bottom: 20px; opacity: 0; animation: fadeUp 0.8s ease 0.38s forwards; }
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(76px, 10vw, 142px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 0.9s ease 0.52s forwards;
}
.hero-headline span { color: rgba(247,251,255,0.26); }
.hero-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 28px;
  max-width: 500px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.68s forwards;
}
.hero-actions { display: flex; gap: 16px; margin-top: 36px; justify-content: center; opacity: 0; animation: fadeUp 0.8s ease 0.82s forwards; }
.btn-primary { padding: 14px 32px; }
.btn-ghost {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 13px 31px;
}
.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
  color: var(--blue-soft);
  box-shadow: inset 0 0 0 1px rgba(21,147,255,0.16), 0 10px 28px rgba(21,147,255,0.12);
}
.stats-bar {
  display: flex;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--dark);
}
.stat-item {
  flex: 1;
  padding: 40px 48px;
  border-right: 1px solid var(--line);
  transition: background 0.6s ease, transform 0.6s ease;
}
.stat-item:last-child { border-right: 0; }
.stat-item:hover { background: var(--panel); }
.stat-number { font-family: 'Bebas Neue', sans-serif; font-size: 52px; color: var(--white); line-height: 1; }
.stat-label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.services, .process, .faq { padding: 120px 48px; background: var(--black); }
.stats-bar, .about, .faq, footer { background-color: var(--dark); }
.services {
  background:
    radial-gradient(circle at 14% 0%, rgba(21,147,255,0.055), transparent 30%),
    var(--black);
}
.about {
  background:
    linear-gradient(180deg, rgba(21,147,255,0.028), transparent 34%),
    var(--section-alt);
}
.process {
  background:
    radial-gradient(circle at 84% 12%, rgba(21,147,255,0.045), transparent 28%),
    var(--black);
}
.faq {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.012), transparent 44%),
    var(--dark);
}
.section-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 64px; }
.section-eyebrow { margin-bottom: 12px; }
.section-title, .cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 5vw, 74px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.service-card {
  position: relative;
  padding: 48px 36px;
  min-height: 330px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition: background 0.65s ease, border-color 0.65s ease, transform 0.65s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(21,147,255,0.16), transparent 45%);
  opacity: 0;
  transition: opacity 0.65s ease;
}
.service-card > * { position: relative; z-index: 1; }
.service-card:nth-child(3n) { border-right: 0; }
.service-card:nth-last-child(-n+3) { border-bottom: 0; }
.service-card:hover { background: var(--panel-hover); border-color: var(--soft-line); transform: translateY(-3px); }
.service-card:hover::before { opacity: 1; }
.service-num { font-size: 10px; letter-spacing: 0.25em; color: var(--blue); margin-bottom: 40px; }
.service-name { font-family: 'Bebas Neue', sans-serif; font-size: 27px; letter-spacing: 0.05em; color: var(--white); margin-bottom: 14px; }
.service-desc { font-size: 13px; color: var(--muted); line-height: 1.8; }
.service-tags { margin-top: 24px; display: flex; flex-direction: column; gap: 7px; }
.service-tags span { font-size: 11px; color: rgba(247,251,255,0.42); display: flex; align-items: center; gap: 8px; }
.service-tags span::before { content: ''; width: 14px; height: 1px; background: rgba(21,147,255,0.55); flex-shrink: 0; }
.about { padding: 120px 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual {
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(21,147,255,0.18), transparent 42%), var(--panel);
  border: 1px solid rgba(255,255,255,0.055);
}
.about-visual img { width: 60%; filter: drop-shadow(0 0 40px rgba(21,147,255,0.35)); transition: transform 0.75s ease, filter 0.75s ease; }
.about-visual:hover img { transform: scale(1.035); }
.about-visual-text { position: absolute; inset: auto 0 0; display: flex; flex-direction: column; align-items: flex-start; padding: 40px; gap: 10px; }
.about-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 16px;
}
.about-content { display: flex; flex-direction: column; gap: 32px; }
.feature-row-item { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.feature-row-item:first-child { border-top: 1px solid var(--line); }
.f-num { font-size: 10px; color: var(--blue); letter-spacing: 0.1em; flex-shrink: 0; margin-top: 2px; }
.feature-row h3 { font-size: 13px; font-weight: 500; color: var(--white); margin-bottom: 4px; letter-spacing: 0.03em; }
.feature-row p:not(.f-num) { font-size: 12px; color: var(--muted); line-height: 1.7; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 64px; }
.step {
  background: var(--panel);
  padding: 40px 28px;
  min-height: 260px;
  transition: transform 0.65s ease, background 0.65s ease, box-shadow 0.65s ease;
}
.step:hover { transform: translateY(-4px); background: var(--panel-hover); box-shadow: 0 20px 50px rgba(0,0,0,0.22); }
.step-num { font-family: 'Bebas Neue', sans-serif; font-size: 80px; color: rgba(21,147,255,0.16); line-height: 1; margin-bottom: 20px; }
.step h3 { font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); margin-bottom: 12px; }
.step p:last-child { font-size: 12px; color: var(--muted); line-height: 1.8; }
.faq-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; margin-top: 64px; }
.faq-aside p { font-size: 14px; color: var(--muted); line-height: 1.8; max-width: 280px; margin-bottom: 20px; }
.faq-aside a { color: var(--white); text-decoration: none; font-size: 13px; transition: color 0.55s ease; }
.faq-aside a:hover { color: var(--blue-soft); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 22px 0; background: transparent; border: 0; color: var(--white); text-align: left; gap: 16px; transition: color 0.55s ease; }
.faq-q:hover { color: var(--blue-soft); }
.faq-q span:first-child { font-size: 14px; }
.faq-toggle { width: 22px; height: 22px; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; color: var(--muted); flex-shrink: 0; line-height: 1; transition: transform 0.55s ease, border-color 0.55s ease, color 0.55s ease, box-shadow 0.55s ease; }
.faq-item.open .faq-toggle { transform: rotate(45deg); border-color: var(--blue); color: var(--blue-soft); box-shadow: 0 0 20px rgba(21,147,255,0.16); }
.faq-a { font-size: 13px; color: var(--muted); line-height: 1.85; max-height: 0; overflow: hidden; transition: max-height 0.55s ease, padding 0.55s ease; }
.faq-item.open .faq-a { max-height: 180px; padding-bottom: 20px; }
.cta { padding: 140px 48px; background: var(--white); color: var(--black); display: flex; flex-direction: column; align-items: center; text-align: center; }
.cta .section-eyebrow { color: var(--blue); }
.cta-title { color: var(--black); }
.cta-sub { font-size: 15px; color: rgba(1,4,10,0.62); margin: 16px 0 40px; max-width: 430px; line-height: 1.7; }
.btn-dark { color: var(--white); background: var(--black); padding: 16px 44px; }
.btn-dark:hover { transform: translateY(-2px); background: var(--blue); box-shadow: 0 16px 38px rgba(21,147,255,0.26); }
footer { background: var(--black); border-top: 1px solid var(--line); padding: 56px 48px 32px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 40px; border-bottom: 1px solid var(--line); margin-bottom: 24px; gap: 40px; }
.footer-logo img { height: 32px; filter: drop-shadow(0 0 14px rgba(21,147,255,0.2)); }
.footer-links { display: flex; gap: 72px; }
.footer-col h4 { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(247,251,255,0.3); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.55s ease; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; }
.footer-bottom p { font-size: 11px; color: rgba(247,251,255,0.22); letter-spacing: 0.04em; }
.modal-overlay { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,0.88); backdrop-filter: blur(8px); align-items: center; justify-content: center; padding: 32px; }
.modal-overlay.active { display: flex; }
.modal-box { background: #000; width: min(92vw, 620px); border: 1px solid var(--line); box-shadow: 0 30px 90px rgba(0,0,0,0.45); }
.apply-modal { width: min(72vw, 820px); height: min(76vh, 620px); display: flex; flex-direction: column; }
.modal-header { flex-shrink: 0; display: flex; align-items: center; justify-content: space-between; min-height: 58px; padding: 12px 26px; border-bottom: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.06); }
.modal-header span { font-size: 10px; letter-spacing: 0.34em; text-transform: uppercase; color: rgba(247,251,255,0.56); }
.modal-close { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.18); background: none; color: rgba(247,251,255,0.56); font-size: 22px; line-height: 1; display: flex; align-items: center; justify-content: center; transition: border-color 0.55s ease, color 0.55s ease, transform 0.55s ease; }
.modal-close:hover { border-color: var(--white); color: var(--white); transform: rotate(90deg); }
.apply-progress { flex-shrink: 0; height: 5px; background: transparent; }
.apply-progress span { display: block; height: 100%; width: 0; background: rgba(247,251,255,0.9); transition: width 0.35s ease; }
.application-form { position: relative; flex: 1; min-height: 0; padding: 28px clamp(24px, 4.2vw, 54px) 86px; overflow-y: auto; }
.form-step { display: none; min-height: 100%; }
.form-step.active { display: block; animation: fadeUp 0.35s ease both; }
.intro-step, .thanks-step { text-align: center; max-width: 680px; margin: 0 auto; }
.application-logo { width: min(500px, 82%); max-height: 118px; object-fit: contain; margin: 0 auto 18px; display: block; background: rgba(255,255,255,0.035); }
.intro-step h2, .thanks-step h2, .details-step h2, .question-step h2 {
  font-size: clamp(23px, 2.25vw, 34px);
  line-height: 1.14;
  letter-spacing: 0.01em;
  font-weight: 400;
  color: var(--white);
}
.intro-step h2, .thanks-step h2 { font-weight: 500; margin-bottom: 20px; }
.intro-step p, .thanks-step p { color: rgba(247,251,255,0.68); font-size: clamp(13px, 1.15vw, 16px); line-height: 1.55; max-width: 610px; margin: 0 auto 18px; font-weight: 500; }
.intro-next { margin-top: 14px; }
.question-step h2 span, .details-step h2 span, .details-step strong { color: #ff1515; font-weight: 400; }
.question-note { color: rgba(247,251,255,0.72); font-size: clamp(14px, 1.25vw, 17px); font-style: italic; margin-top: 10px; }
.option-list { display: grid; gap: 9px; width: min(620px, 100%); margin-top: 20px; }
.option-list button {
  position: relative;
  min-height: 44px;
  border: 1px solid rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.105);
  color: var(--white);
  text-align: left;
  padding: 10px 48px 10px 18px;
  font-size: clamp(13px, 1.15vw, 16px);
  line-height: 1.35;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.option-list.compact-options { width: min(480px, 100%); gap: 8px; }
.option-list button:hover { background: rgba(255,255,255,0.18); transform: translateY(-1px); }
.option-list button.selected { background: rgba(255,255,255,0.28); }
.option-list button.selected::after {
  content: '✓';
  position: absolute;
  right: 16px;
  top: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--white);
  color: #202020;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-controls { position: sticky; left: 0; right: 0; bottom: -86px; z-index: 5; display: flex; align-items: center; justify-content: space-between; margin: 24px calc(clamp(24px, 4.2vw, 54px) * -1) -86px; padding: 14px clamp(24px, 4.2vw, 54px); background: linear-gradient(180deg, rgba(0,0,0,0), #000 22%); pointer-events: none; }
.form-next, .instagram-link {
  border: 0;
  background: #fff9fb;
  color: rgba(0,0,0,0.68);
  padding: 11px 18px;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 500;
  text-decoration: none;
  pointer-events: auto;
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}
.form-next:hover, .instagram-link:hover { transform: translateY(-2px); background: var(--white); color: var(--black); }
.form-next:disabled, .step-arrows button:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.step-arrows { display: flex; gap: 8px; pointer-events: auto; }
.step-arrows button { width: 34px; height: 34px; border: 0; background: #fff9fb; color: rgba(0,0,0,0.68); font-size: 18px; line-height: 1; transition: transform 0.35s ease, background 0.35s ease; }
.step-arrows button:hover { transform: translateY(-2px); background: var(--white); }
.form-error { color: #ff4747; font-size: 14px; min-height: 20px; margin-top: 18px; }
.details-step h2 { margin-bottom: 22px; }
.details-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 28px; max-width: 690px; }
.details-grid label { display: grid; gap: 7px; color: var(--white); font-size: clamp(14px, 1.15vw, 16px); }
.details-grid input, .details-grid select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.86);
  background: transparent;
  color: var(--white);
  padding: 6px 0 10px;
  outline: 0;
  font-size: clamp(14px, 1.1vw, 16px);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}
.details-grid input::placeholder { color: rgba(247,251,255,0.4); }
.details-grid input:focus, .details-grid select:focus { border-color: var(--blue-soft); box-shadow: 0 1px 0 var(--blue-soft); }
.details-grid select { max-width: 112px; color: rgba(247,251,255,0.76); }
.phone-row { display: flex; align-items: center; gap: 18px; }
.full-field { grid-column: 1 / -1; }
.thanks-step .application-logo { margin-top: 8px; max-height: 140px; }
.thanks-step h2 { font-size: clamp(25px, 2.3vw, 34px); }
.thanks-step p { margin-bottom: 42px; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes heroFloat { 0%, 100% { transform: translateY(0) rotate(0deg) scale(1); } 50% { transform: translateY(-14px) rotate(2deg) scale(1.025); } }
@keyframes logoShadow {
  0%, 100% { opacity: 0.5; transform: scaleX(1); }
  25%, 75% { opacity: 0.22; transform: scaleX(0.42); }
  50% { opacity: 0.58; transform: scaleX(0.88); }
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
@media (max-width: 960px) {
  nav { padding: 12px 24px; }
  .nav-links { display: none; }
  .hero { padding: 100px 24px 60px; }
  .hero::before { inset: 70px 24px 0; }
  .rotating-logo-wrap { width: min(340px, 75vw); }
  .hero-headline { font-size: clamp(68px, 18vw, 106px); }
  .stats-bar { flex-wrap: wrap; }
  .stat-item { flex: 1 1 50%; padding: 32px 24px; }
  .services, .process, .faq, .about { padding: 80px 24px; }
  .section-header { align-items: flex-start; flex-direction: column; margin-bottom: 44px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(3n), .service-card:nth-last-child(-n+3) { border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card:last-child { border-bottom: 0; }
  .about { grid-template-columns: 1fr; gap: 48px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 34px; }
  .cta { padding: 80px 24px; }
  footer { padding: 40px 24px 24px; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .modal-overlay { padding: 18px; }
  .apply-modal { width: min(92vw, 760px); height: min(82vh, 640px); }
  .modal-header { min-height: 58px; padding: 12px 20px; }
  .modal-header span { font-size: 10px; letter-spacing: 0.24em; }
  .modal-close { width: 34px; height: 34px; }
  .application-form { padding: 28px 24px 96px; overflow-y: auto; }
  .application-logo { width: 86%; max-height: 120px; margin-bottom: 18px; }
  .intro-step p, .thanks-step p { font-size: 15px; }
  .option-list { margin-top: 20px; gap: 9px; }
  .option-list button { min-height: 48px; padding: 11px 48px 11px 16px; font-size: 15px; }
  .option-list button.selected::after { right: 16px; }
  .form-controls { margin: 24px -24px -96px; padding: 14px 24px 18px; }
  .form-error { margin-top: 14px; }
  .details-grid { grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 560px) {
  .cursor-glow { display: none; }
  .nav-logo img { height: 56px; }
  .nav-cta { padding: 11px 17px; }
  .stat-item { flex-basis: 100%; border-right: 0; border-bottom: 1px solid var(--line); }
  .stat-item:last-child { border-bottom: 0; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .apply-modal { width: 100vw; height: 100vh; }
  .modal-overlay { padding: 0; }
  .application-form { padding: 26px 18px 100px; }
  .modal-header { padding: 14px 18px; }
  .modal-header span { max-width: 220px; line-height: 1.6; }
  .intro-step h2, .thanks-step h2, .details-step h2, .question-step h2 { font-size: 24px; }
  .question-note { font-size: 15px; margin-top: 12px; }
  .form-next, .instagram-link { font-size: 15px; padding: 12px 18px; }
  .step-arrows button { width: 36px; height: 36px; }
  .form-controls { margin: 22px -18px -100px; padding: 14px 18px 18px; }
  .form-error { margin-top: 12px; }
  .phone-row { flex-direction: column; align-items: stretch; gap: 8px; }
  .details-grid select { max-width: none; }
}
