:root {
  --bg: #080a0e;
  --border: rgba(255, 255, 255, 0.1);
  --border-focus: rgba(201, 162, 39, 0.55);
  --text: #eef2f8;
  --text-muted: rgba(220, 228, 240, 0.65);
  --accent: #3b82f6;
  --accent-hover: #2563eb;
  --accent-glow: rgba(59, 130, 246, 0.2);
  --success: #22c55e;
  --error: #ef4444;
  --gold: #c9a227;
  --gold-light: #e8c872;
  --radius: clamp(8px, 1.5vw, 10px);
  --radius-lg: clamp(10px, 2vw, 14px);
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  --font-heading: 'Inter', system-ui, sans-serif;
  --font-body: 'Noto Sans', system-ui, sans-serif;
  --header-h: clamp(56px, 10vw, 68px);
  --page-x: clamp(1rem, 5vw, 2.75rem);
  --section-y: clamp(1.5rem, 4vw, 3rem);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.hidden {
  display: none !important;
}

.container {
  width: min(1160px, 100%);
  padding-inline: var(--page-x);
  margin-inline: auto;
}

/* ── Background Slideshow ── */
.main {
  position: relative;
  z-index: 2;
  min-height: 100vh;
}

.bg-slideshow {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.bg-slide {
  position: absolute;
  inset: -5%;
  background-image: var(--slide-url);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1);
  filter: brightness(0.5) saturate(0.82) contrast(1.06);
  transition:
    opacity 4s ease-in-out,
    transform 0s linear 4s;
  will-change: opacity, transform;
  image-rendering: auto;
  backface-visibility: hidden;
  z-index: 0;
}

.bg-slide.is-active {
  opacity: 1;
  transform: scale(1.05);
  transition:
    opacity 4s ease-in-out,
    transform 22s linear;
  z-index: 1;
}

.bg-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, transparent 20%, rgba(8, 10, 14, 0.5) 100%),
    linear-gradient(to bottom, rgba(8, 10, 14, 0.25) 0%, rgba(8, 10, 14, 0.72) 100%);
}

.bg-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 70% 30%, rgba(59, 130, 246, 0.06), transparent),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201, 162, 39, 0.04), transparent);
}

/* ── Consent Modal ── */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--page-x);
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
  opacity: 1;
  transition: opacity 0.28s ease;
  will-change: opacity;
}

.overlay.is-leaving {
  opacity: 0;
  pointer-events: none;
}

.modal {
  background: rgba(14, 18, 28, 0.94);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  max-width: 500px;
  width: 100%;
  box-shadow: var(--shadow);
  animation: modalIn 0.35s ease;
  backdrop-filter: blur(24px);
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal__logo {
  display: block;
  margin-bottom: 0.75rem;
  width: clamp(72px, 14vw, 80px);
  height: clamp(72px, 14vw, 80px);
}

.logo-3d {
  object-fit: contain;
  transform: perspective(600px) rotateX(8deg) rotateY(-10deg) translateZ(0);
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.25))
    drop-shadow(0 6px 12px rgba(0, 0, 0, 0.55))
    drop-shadow(0 14px 28px rgba(0, 0, 0, 0.35))
    drop-shadow(0 0 20px rgba(201, 162, 39, 0.35));
  transition: transform 0.35s ease, filter 0.35s ease;
}

.logo:hover .logo-3d {
  transform: perspective(600px) rotateX(4deg) rotateY(-6deg) scale(1.04) translateZ(8px);
  filter:
    drop-shadow(0 2px 0 rgba(255, 255, 255, 0.3))
    drop-shadow(0 8px 16px rgba(0, 0, 0, 0.6))
    drop-shadow(0 18px 36px rgba(0, 0, 0, 0.4))
    drop-shadow(0 0 28px rgba(201, 162, 39, 0.45));
}

.modal__title {
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 3.5vw, 1.625rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.modal__title:not(:has(.brand-name)) {
  background: linear-gradient(135deg, var(--text), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modal__subtitle {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.modal__body p {
  color: var(--text-muted);
  font-size: clamp(0.9375rem, 2.5vw, 1.0625rem);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.modal__body a {
  color: var(--gold-light);
  text-decoration: none;
}

.modal__body a:hover {
  text-decoration: underline;
}

.modal__note {
  background: rgba(201, 162, 39, 0.08);
  border-left: 3px solid var(--gold);
  padding: 0.75rem 1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text) !important;
  font-size: clamp(0.875rem, 2.5vw, 1rem) !important;
}

.modal__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin: 1.125rem 0;
  cursor: pointer;
  font-size: clamp(0.875rem, 2.5vw, 0.9375rem);
  color: var(--text-muted);
  line-height: 1.5;
}

.modal__checkbox input {
  margin-top: 2px;
  accent-color: var(--gold);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.625rem, 2vw, 0.75rem) clamp(1rem, 3vw, 1.5rem);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), #1d4ed8);
  color: #fff;
}

.btn--primary:not(:disabled):hover {
  background: linear-gradient(135deg, var(--accent-hover), #1e40af);
  box-shadow: 0 4px 24px var(--accent-glow);
}

.btn--primary:not(:disabled):active {
  transform: scale(0.98);
}

.btn--full { width: 100%; }

.btn--lg {
  padding: clamp(0.625rem, 2vw, 0.8125rem) 1.25rem;
  font-size: clamp(0.8125rem, 2.5vw, 0.9375rem);
}

.btn__loader {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(8, 10, 14, 0.4);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 0.75rem);
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.logo__img {
  flex-shrink: 0;
  width: clamp(44px, 9vw, 56px);
  height: clamp(44px, 9vw, 56px);
}

.logo__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.0625rem, 3.2vw, 1.3125rem);
  letter-spacing: 0.04em;
  line-height: 1.2;
  white-space: nowrap;
}

.brand-name {
  position: relative;
  display: inline-block;
  line-height: 1.15;
  padding-inline: 0.1em;
}

.brand-name__text {
  position: relative;
  z-index: 1;
  letter-spacing: 0.08em;
}

.logo__pulse-line {
  position: absolute;
  left: -4%;
  right: -4%;
  top: 52%;
  transform: translateY(-50%);
  width: 108%;
  height: clamp(12px, 3vw, 16px);
  pointer-events: none;
  z-index: 3;
  -webkit-text-fill-color: initial;
}

.logo__pulse-line svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  -webkit-text-fill-color: initial;
}

.logo__pulse-path--glow {
  stroke: rgba(232, 200, 114, 0.35);
  stroke-width: 2;
  filter: blur(1px);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo__pulse-path {
  fill: none;
  stroke: #e8c872;
  stroke-width: 1.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 3px rgba(201, 162, 39, 0.5));
  -webkit-text-fill-color: initial;
}

.modal__title .brand-name {
  font-size: clamp(1.5rem, 4vw, 1.875rem);
}

.modal__title .brand-name__text {
  letter-spacing: 0.1em;
}

.modal__title .brand-name {
  background: linear-gradient(135deg, var(--text), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modal__title .brand-name__text {
  background: inherit;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modal__title .logo__pulse-path,
.modal__title .logo__pulse-path--glow {
  stroke: var(--gold-light);
}

.logo__subtitle {
  font-size: clamp(0.6875rem, 2vw, 0.8125rem);
  color: var(--text-muted);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.header__contact {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--text);
  text-decoration: none;
  font-size: clamp(0.6875rem, 2.2vw, 0.8125rem);
  font-weight: 500;
  padding: clamp(0.3125rem, 1.5vw, 0.4375rem) clamp(0.625rem, 2.5vw, 0.875rem);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.header__contact:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
}

/* ── Hero ── */
.hero {
  position: relative;
  z-index: 10;
  padding: calc(var(--header-h) + var(--section-y)) 0 var(--section-y);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
  width: 100%;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  background: rgba(201, 162, 39, 0.12);
  color: var(--gold-light);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 100px;
  font-size: clamp(0.5625rem, 2vw, 0.6875rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: clamp(0.625rem, 2vw, 0.875rem);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.hero__title-frame {
  display: inline-block;
  padding: 0.04em 0.38em 0.08em;
  color: rgba(232, 200, 114, 0.82);
  -webkit-text-fill-color: rgba(232, 200, 114, 0.82);
  border: 4px solid rgba(232, 200, 114, 0.82);
  border-radius: 3px;
  letter-spacing: 0.02em;
  vertical-align: baseline;
  box-shadow: 0 2px 12px rgba(201, 162, 39, 0.15);
}

.hero__text {
  color: var(--text-muted);
  font-size: clamp(0.8125rem, 2.5vw, 0.9375rem);
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  max-width: 420px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.hero__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(0.375rem, 1.5vw, 0.5rem);
}

.hero__features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.75rem, 2.3vw, 0.8125rem);
  color: rgba(220, 228, 240, 0.8);
}

.hero__features svg {
  color: var(--gold-light);
  flex-shrink: 0;
  width: clamp(16px, 4vw, 18px);
  height: clamp(16px, 4vw, 18px);
}

/* ── Applications Counter ── */
.stats-counter {
  margin-top: clamp(1.25rem, 3vw, 1.75rem);
  padding: clamp(0.875rem, 2.5vw, 1.125rem) clamp(1rem, 3vw, 1.25rem);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  box-shadow: none;
  max-width: 300px;
  position: relative;
  overflow: hidden;
  --day-progress: 0;
}

.stats-counter::before {
  display: none;
}

.stats-counter__value {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.375rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 30%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s ease;
  will-change: transform;
}

.stats-counter__value.is-ticking {
  animation: counterTick 1s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes counterTick {
  0% { transform: translateY(0) scale(1); filter: brightness(1); }
  40% { transform: translateY(-4px) scale(1.04); filter: brightness(1.15); }
  100% { transform: translateY(0) scale(1); filter: brightness(1); }
}

.stats-counter__progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 100px;
  margin-bottom: 0.625rem;
  overflow: hidden;
}

.stats-counter__progress-fill {
  display: block;
  height: 100%;
  width: calc(var(--day-progress, 0) * 100%);
  background: linear-gradient(90deg, var(--gold), var(--gold-light), #fff8e7);
  background-size: 200% 100%;
  border-radius: 100px;
  transition: width 1.4s linear;
  animation: progressShimmer 3s linear infinite;
  box-shadow: 0 0 10px rgba(201, 162, 39, 0.45);
}

@keyframes progressShimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.stats-counter__label {
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 2.2vw, 0.8125rem);
  color: var(--text-muted);
  line-height: 1.4;
}

.stats-counter__daily {
  margin-top: 0.375rem;
  font-family: var(--font-heading);
  font-size: clamp(0.75rem, 2.2vw, 0.8125rem);
  font-weight: 600;
  color: var(--gold-light);
  opacity: 0.9;
  transition: opacity 0.4s ease;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.stats-counter__daily.is-loaded {
  opacity: 1;
}

/* ── Form Card ── */
.form-card {
  position: relative;
  z-index: 20;
  background:
    linear-gradient(
      145deg,
      rgba(55, 60, 68, 0.38) 0%,
      rgba(35, 40, 48, 0.28) 40%,
      rgba(25, 30, 38, 0.32) 70%,
      rgba(50, 56, 64, 0.26) 100%
    );
  backdrop-filter: blur(32px) saturate(0.9) brightness(0.88);
  -webkit-backdrop-filter: blur(32px) saturate(0.9) brightness(0.88);
  border: 1.5px solid rgba(170, 178, 190, 0.42);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 2.5vw, 1.375rem);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 -1px 0 rgba(0, 0, 0, 0.28) inset,
    0 0 0 1px rgba(0, 0, 0, 0.2),
    0 20px 56px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    box-shadow 0.35s ease;
  will-change: transform;
}

.form-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(
      115deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0.02) 30%,
      transparent 55%,
      rgba(255, 255, 255, 0.03) 75%,
      rgba(255, 255, 255, 0.07) 100%
    );
  pointer-events: none;
  z-index: 0;
}

.form-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.02) 0,
    rgba(255, 255, 255, 0.02) 1px,
    transparent 1px,
    transparent 4px
  );
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.form-card > * {
  position: relative;
  z-index: 1;
}

.form-card:hover {
  transform: translateY(-3px);
  border-color: rgba(190, 198, 210, 0.52);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 1px 0 rgba(255, 255, 255, 0.16) inset,
    0 -1px 0 rgba(0, 0, 0, 0.32) inset,
    0 0 0 1px rgba(0, 0, 0, 0.25),
    0 28px 64px rgba(0, 0, 0, 0.5);
}

.form-card .btn--primary {
  background: linear-gradient(
    160deg,
    rgba(175, 182, 194, 0.95) 0%,
    rgba(120, 128, 142, 0.92) 45%,
    rgba(90, 98, 112, 0.95) 100%
  );
  color: #0c0e12;
  border: 1.5px solid rgba(210, 218, 230, 0.55);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 4px 18px rgba(0, 0, 0, 0.35);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}

.form-card .btn--primary:not(:disabled):hover {
  background: linear-gradient(
    160deg,
    rgba(195, 202, 214, 0.98) 0%,
    rgba(140, 148, 162, 0.95) 45%,
    rgba(105, 113, 128, 0.98) 100%
  );
  border-color: rgba(230, 236, 244, 0.65);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.28) inset,
    0 1px 0 rgba(255, 255, 255, 0.42) inset,
    0 6px 24px rgba(0, 0, 0, 0.42),
    0 0 20px rgba(180, 190, 205, 0.15);
}

.form-card .btn--primary:not(:disabled):active {
  transform: scale(0.98);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 2px 8px rgba(0, 0, 0, 0.35);
}

.form-card .btn__loader {
  border-color: rgba(12, 14, 18, 0.25);
  border-top-color: #0c0e12;
}

.form-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.8vw, 1.125rem);
  font-weight: 700;
  margin-bottom: 0.125rem;
}

.form-card__subtitle {
  font-size: clamp(0.8125rem, 2vw, 0.875rem);
  color: var(--text-muted);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
}

.form-section {
  border: none;
  padding: 0;
  margin-bottom: clamp(0.625rem, 2vw, 0.875rem);
}

.form-section legend {
  font-family: var(--font-heading);
  font-size: clamp(0.75rem, 2vw, 0.8125rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: clamp(0.4375rem, 1.5vw, 0.5625rem);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.optional-tag {
  font-size: clamp(0.625rem, 1.8vw, 0.6875rem);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: var(--gold-light);
  background: rgba(201, 162, 39, 0.12);
  padding: 0.1rem 0.375rem;
  border-radius: 100px;
}

.form-row {
  display: grid;
  gap: clamp(0.4375rem, 1.5vw, 0.625rem);
  margin-bottom: clamp(0.4375rem, 1.5vw, 0.625rem);
}

.form-row--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-row--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.field label {
  font-size: clamp(0.75rem, 2vw, 0.8125rem);
  font-weight: 500;
  color: rgba(220, 228, 240, 0.62);
}

.field input[type="text"],
.field input[type="tel"],
.field input[type="number"],
.field input[type="date"] {
  width: 100%;
  padding: clamp(0.4375rem, 1.5vw, 0.5625rem) clamp(0.625rem, 2vw, 0.75rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(0.8125rem, 2.3vw, 0.875rem);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.field input:focus {
  outline: none;
  border-color: var(--border-focus);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.1);
}

.field input::placeholder {
  color: rgba(139, 149, 168, 0.38);
  font-size: clamp(0.75rem, 2vw, 0.8125rem);
}

.field-hint {
  font-size: clamp(0.75rem, 2vw, 0.8125rem);
  color: var(--text-muted);
  margin-bottom: 0.4375rem;
  line-height: 1.45;
}

.field--invalid input[type="text"],
.field--invalid input[type="tel"],
.field--invalid input[type="number"],
.field--invalid input[type="date"] {
  border-color: #ef4444;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.15);
}

.field--invalid .file-upload__label {
  border-color: #ef4444;
}

.field-error {
  font-size: clamp(0.6875rem, 1.8vw, 0.75rem);
  color: #fca5a5;
  line-height: 1.3;
  min-height: 0;
}

.field-error:empty {
  display: none;
}

/* ── File Upload ── */
.file-upload {
  position: relative;
}

.file-upload input[type="file"] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
}

.file-upload__label {
  display: flex;
  align-items: center;
  gap: 0.4375rem;
  padding: clamp(0.4375rem, 1.5vw, 0.5625rem) clamp(0.5rem, 2vw, 0.625rem);
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  color: var(--text-muted);
  font-size: clamp(0.75rem, 2vw, 0.8125rem);
}

.file-upload__label:hover {
  border-color: rgba(201, 162, 39, 0.35);
  background: rgba(201, 162, 39, 0.04);
}

.file-upload__label svg {
  flex-shrink: 0;
}

.file-upload__name {
  display: block;
  margin-top: 0.25rem;
  font-size: clamp(0.625rem, 2vw, 0.6875rem);
  color: var(--success);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ── Form Messages ── */
.form-message {
  padding: clamp(0.5rem, 1.5vw, 0.625rem) clamp(0.625rem, 2vw, 0.75rem);
  border-radius: 7px;
  font-size: clamp(0.75rem, 2vw, 0.8125rem);
  margin-bottom: clamp(0.5rem, 1.5vw, 0.625rem);
}

.form-message--error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #fca5a5;
}

.form-message--success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #86efac;
}

/* ── Info Section ── */
.info {
  position: relative;
  z-index: 10;
  padding: var(--section-y) 0;
}

.info__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 2.5vw, 1.125rem);
}

.info-card {
  padding: clamp(0.875rem, 2.5vw, 1.25rem);
  background: rgba(8, 12, 20, 0.48);
  backdrop-filter: blur(20px) saturate(1.25);
  -webkit-backdrop-filter: blur(20px) saturate(1.25);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 8px 24px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.35s ease;
  will-change: transform;
}

.info-card:hover {
  transform: translateY(-4px);
  background: rgba(8, 12, 20, 0.58);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 16px 36px rgba(0, 0, 0, 0.35);
}

.info-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(0.8125rem, 2.5vw, 0.875rem);
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.info-card p {
  font-size: clamp(0.6875rem, 2.2vw, 0.75rem);
  color: var(--text-muted);
  line-height: 1.45;
}

/* ── Footer ── */
.footer {
  position: relative;
  z-index: 10;
  padding: clamp(1.25rem, 3vw, 1.75rem) 0 clamp(1.25rem, 3vw, 2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 10, 14, 0.35);
  backdrop-filter: blur(12px);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
}

.footer__logo {
  width: clamp(28px, 7vw, 36px);
  height: clamp(28px, 7vw, 36px);
  opacity: 0.85;
  margin-bottom: 0.125rem;
}

.footer p {
  font-size: clamp(0.625rem, 2vw, 0.75rem);
  color: var(--text-muted);
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: clamp(1rem, 3vw, 1.5rem);
  }

  .hero__content {
    text-align: center;
  }

  .hero__text {
    margin-inline: auto;
  }

  .hero__features {
    align-items: center;
  }

  .stats-counter {
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .info__grid {
    grid-template-columns: 1fr;
  }

  .form-row--3 {
    grid-template-columns: 1fr 1fr;
  }

  .form-row--3 .field:first-child {
    grid-column: 1 / -1;
  }

  .header__contact {
    padding-inline: 0.625rem;
  }
}

@media (max-width: 520px) {
  .form-row--2,
  .form-row--3 {
    grid-template-columns: 1fr;
  }

  .form-row--3 .field:first-child {
    grid-column: auto;
  }

  .logo__subtitle {
    display: none;
  }

  .header__contact svg {
    margin: 0;
  }
}

@media (max-width: 380px) {
  :root {
    --page-x: 0.875rem;
  }

  .header__contact {
    font-size: 0;
    padding: 0.4375rem;
  }

  .header__contact svg {
    width: 18px;
    height: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .bg-slide {
    transition: opacity 2s ease-in-out;
    will-change: auto;
  }

  .bg-slide.is-active {
    transform: scale(1);
    transition: opacity 2s ease-in-out;
  }

  .modal {
    animation: none;
  }

  .overlay {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .stats-counter__value.is-ticking {
    animation: none;
  }

  .stats-counter__progress-fill {
    animation: none;
  }

  .form-card:hover,
  .info-card:hover {
    transform: none;
  }

  .logo__pulse-path animate {
    display: none;
  }

  .logo__pulse-path {
    stroke-dashoffset: 0 !important;
    opacity: 0.85;
  }
}

@media (min-width: 1400px) {
  .container {
    width: min(1240px, 100%);
  }

  .hero__grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }
}
