/**
 * File: styles.css
 * Author: Wildflover
 * Description: Application site — Cinematic dark theme, amber/gold palette
 */

/* ═══════════════════════════════════════════════════════════
   VARIABLES & RESET
   ═══════════════════════════════════════════════════════════ */
:root {
  --primary: #c9944b;
  --primary-light: #e8b86d;
  --primary-lighter: #f5d9a0;
  --primary-dark: #8b6a3a;
  --primary-darker: #5a4320;
  --primary-darkest: #2d210f;

  --bg-base: #0a0806;
  --bg-card: rgba(14, 10, 6, 0.65);
  --bg-card-hover: rgba(20, 14, 8, 0.8);
  --bg-input: rgba(18, 12, 6, 0.6);
  --bg-elevated: rgba(24, 16, 8, 0.9);

  --text-primary: rgba(255, 255, 255, 0.92);
  --text-secondary: rgba(255, 255, 255, 0.55);
  --text-muted: rgba(255, 255, 255, 0.3);
  --text-accent: var(--primary-light);

  --border-subtle: rgba(201, 148, 75, 0.08);
  --border-default: rgba(201, 148, 75, 0.12);
  --border-hover: rgba(201, 148, 75, 0.25);
  --border-active: rgba(201, 148, 75, 0.4);

  --glow-sm: 0 0 20px rgba(201, 148, 75, 0.08);
  --glow-md: 0 4px 24px rgba(201, 148, 75, 0.12);
  --glow-lg: 0 8px 40px rgba(201, 148, 75, 0.18);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-base);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════════════════════════
   BACKGROUND
   ═══════════════════════════════════════════════════════════ */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bg-layer img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.25;
  filter: saturate(0.6) brightness(0.5);
}

.bg-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10, 8, 6, 0.95) 0%,
      rgba(10, 8, 6, 0.7) 30%,
      rgba(10, 8, 6, 0.6) 50%,
      rgba(10, 8, 6, 0.8) 80%,
      rgba(10, 8, 6, 0.98) 100%
    );
}

.bg-noise {
  position: absolute; inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px;
}

.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
}

.bg-glow--1 {
  top: 10%; left: 20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
}

.bg-glow--2 {
  bottom: 20%; right: 10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--primary-dark) 0%, transparent 70%);
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION — Modern floating topbar
   ═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 24px;
  transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
  padding: 8px 24px;
}

.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 8px 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  background: rgba(12, 9, 5, 0.55);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(201, 148, 75, 0.08);
  border-radius: 16px;
  transition: all 0.4s var(--ease-out);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.2),
    0 4px 16px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.nav.scrolled .nav__inner {
  height: 48px;
  background: rgba(10, 7, 4, 0.82);
  border-color: rgba(201, 148, 75, 0.12);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.3),
    0 8px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 8px 4px 4px;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.nav__brand:hover {
  background: rgba(201, 148, 75, 0.05);
}

.nav__logo {
  width: 30px; height: 30px;
  border-radius: 10px;
  border: 1px solid rgba(201, 148, 75, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.nav__name {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.nav__name-accent {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-lighter));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__link {
  padding: 7px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 10px;
  transition: all 0.2s var(--ease-smooth);
  position: relative;
}

.nav__link:hover {
  color: var(--text-primary);
  background: rgba(201, 148, 75, 0.06);
}

.nav__link--cta {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  border: none;
  color: #fff;
  padding: 7px 18px;
  border-radius: 10px;
  font-weight: 600;
  margin-left: 4px;
  box-shadow: 0 2px 8px rgba(201, 148, 75, 0.2);
}

.nav__link--cta:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(201, 148, 75, 0.35);
  transform: translateY(-1px);
}

.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.nav__mobile-toggle:hover {
  background: rgba(201, 148, 75, 0.06);
}

.nav__mobile-toggle span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all 0.25s ease;
}

.nav__mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.nav__mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav__mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 24px; right: 24px;
  z-index: 99;
  background: rgba(12, 9, 5, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(201, 148, 75, 0.08);
  border-radius: 16px;
  padding: 8px;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  animation: mobileMenuIn 0.2s var(--ease-out);
}

@keyframes mobileMenuIn {
  from { opacity: 0; transform: translateY(-8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.mobile-menu.open { display: flex; }

.mobile-menu__link {
  padding: 11px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.mobile-menu__link:hover {
  color: var(--text-primary);
  background: rgba(201, 148, 75, 0.06);
}

.mobile-menu__link--cta {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  text-align: center;
  border-radius: 12px;
  font-weight: 600;
  margin-top: 4px;
}

.mobile-menu__link--cta:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
}

@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__mobile-toggle { display: flex; }
  .nav { padding: 10px 16px; }
  .nav__inner { padding: 0 6px 0 8px; height: 48px; }
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  text-align: center;
}

.hero__content {
  max-width: 680px;
  animation: heroReveal 0.8s var(--ease-out) 0.2s both;
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(201, 148, 75, 0.08);
  border: 1px solid var(--border-default);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero__badge-dot {
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero__title-line {
  color: var(--text-primary);
}

.hero__title-accent {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 40%, var(--primary-lighter) 70%, var(--primary-light) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 4s ease-in-out infinite;
}

@keyframes goldShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero__title-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 8px;
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 36px;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.25s var(--ease-smooth);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  border: 1px solid var(--border-hover);
  color: #fff;
  box-shadow: var(--glow-sm);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-color: var(--border-active);
  box-shadow: var(--glow-lg);
  transform: translateY(-2px);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: var(--glow-sm);
}

.btn--ghost {
  background: rgba(201, 148, 75, 0.04);
  border: 1px solid var(--border-default);
  color: var(--text-secondary);
}

.btn--ghost:hover {
  background: rgba(201, 148, 75, 0.1);
  border-color: var(--border-hover);
  color: var(--text-accent);
  transform: translateY(-1px);
}

.btn--full { width: 100%; }

.btn--submit {
  min-width: 200px;
}

/* ═══════════════════════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(201, 148, 75, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--primary-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════ */
.about {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.about__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about__card {
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease-smooth);
}

.about__card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-default);
  transform: translateY(-4px);
  box-shadow: var(--glow-md);
}

.about__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: rgba(201, 148, 75, 0.08);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--primary-light);
  margin-bottom: 20px;
}

.about__card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.about__card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .about__grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ═══════════════════════════════════════════════════════════
   ROLES SECTION
   ═══════════════════════════════════════════════════════════ */
.roles {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.roles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.role-card {
  padding: 36px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  transition: all 0.3s var(--ease-smooth);
  display: flex;
  flex-direction: column;
}

.role-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-default);
  transform: translateY(-4px);
  box-shadow: var(--glow-lg);
}

.role-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.role-card__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(201, 148, 75, 0.1) 0%, rgba(201, 148, 75, 0.04) 100%);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  color: var(--primary-light);
}

.role-card__badge {
  padding: 4px 12px;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.15);
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 600;
  color: #4ade80;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.role-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.role-card__desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.role-card__requirements {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}

.role-card__requirements li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.role-card__requirements li::before {
  content: '';
  flex-shrink: 0;
  width: 5px; height: 5px;
  margin-top: 7px;
  background: var(--primary);
  border-radius: 50%;
}

.role-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(201, 148, 75, 0.08);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  color: var(--primary-light);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.25s var(--ease-smooth);
  align-self: flex-start;
}

.role-card__btn:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-color: var(--border-active);
  color: #fff;
  box-shadow: var(--glow-md);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .roles__grid { grid-template-columns: 1fr; }
  .role-card { padding: 28px 24px; }
}

/* ═══════════════════════════════════════════════════════════
   APPLICATION FORM
   ═══════════════════════════════════════════════════════════ */
.apply {
  position: relative;
  z-index: 1;
  padding: 100px 0 120px;
}

.form-wrapper {
  max-width: 580px;
  margin: 0 auto;
  padding: 40px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: var(--glow-sm);
}

/* Progress Steps */
.form-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}

.form-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.form-progress__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(201, 148, 75, 0.06);
  border: 1.5px solid var(--border-default);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all 0.3s var(--ease-smooth);
}

.form-progress__step.active .form-progress__number {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 0 20px rgba(201, 148, 75, 0.3);
}

.form-progress__step.completed .form-progress__number {
  background: rgba(74, 222, 128, 0.12);
  border-color: rgba(74, 222, 128, 0.3);
  color: #4ade80;
}

.form-progress__label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.3s ease;
}

.form-progress__step.active .form-progress__label {
  color: var(--primary-light);
}

.form-progress__step.completed .form-progress__label {
  color: #4ade80;
}

.form-progress__line {
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
  margin: 0 12px;
  margin-bottom: 22px;
  position: relative;
}

/* Form Steps */
.form__step {
  display: none;
  flex-direction: column;
  gap: 20px;
  animation: stepIn 0.3s var(--ease-out);
}

.form__step.active { display: flex; }

@keyframes stepIn {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Form Groups */
.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form__label svg {
  color: var(--primary);
  opacity: 0.6;
}

.form__input {
  padding: 12px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.88rem;
  outline: none;
  transition: all 0.2s var(--ease-smooth);
  -webkit-appearance: none;
  appearance: none;
}

input[inputmode="numeric"]::-webkit-outer-spin-button,
input[inputmode="numeric"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[inputmode="numeric"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.form__input::placeholder {
  color: var(--text-muted);
}

.form__input:focus {
  border-color: var(--border-active);
  background: rgba(24, 16, 8, 0.8);
  box-shadow: 0 0 0 3px rgba(201, 148, 75, 0.08);
}

.form__input.error {
  border-color: rgba(248, 113, 113, 0.4);
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.06);
}

.form__textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.form__error {
  font-size: 0.72rem;
  color: #f87171;
  display: none;
}

.form__group.has-error .form__error { display: block; }
.form__group.has-error .form__input { border-color: rgba(248, 113, 113, 0.4); }

.form__honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form__submit-error {
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.3);
  color: #f87171;
  font-size: 0.8rem;
  text-align: center;
}

.form__submit-error[hidden] { display: none; }

.form__hint {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.form__btn-row {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}

/* Checkbox */
.form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.form__checkbox {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}

.form__checkbox-custom {
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: var(--bg-input);
  border: 1.5px solid var(--border-default);
  border-radius: 6px;
  position: relative;
  transition: all 0.2s ease;
  margin-top: 1px;
}

.form__checkbox:checked + .form__checkbox-custom {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-color: var(--primary);
}

.form__checkbox:checked + .form__checkbox-custom::after {
  content: '';
  position: absolute;
  top: 3px; left: 6px;
  width: 5px; height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form__checkbox-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Review */
.form__review {
  padding: 24px;
  background: rgba(201, 148, 75, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  margin-bottom: 8px;
}

.form__review-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.form__review-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.review-item__label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.review-item__value {
  font-size: 0.82rem;
  color: var(--text-primary);
  text-align: right;
  word-break: break-word;
}

/* Success State */
.form__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 20px 0;
  animation: successPop 0.4s var(--ease-out);
}

@keyframes successPop {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.form__success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px; height: 80px;
  background: rgba(74, 222, 128, 0.06);
  border: 1px solid rgba(74, 222, 128, 0.15);
  border-radius: 50%;
  color: #4ade80;
}

.form__success-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
}

.form__success-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 380px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  position: relative;
  z-index: 1;
  padding: 32px 0;
  border-top: 1px solid var(--border-subtle);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__logo {
  width: 24px; height: 24px;
  border-radius: 50%;
  opacity: 0.6;
}

.footer__name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.footer__copy {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.footer__links {
  display: flex;
  gap: 12px;
}

.footer__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(201, 148, 75, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.footer__link:hover {
  background: rgba(201, 148, 75, 0.1);
  border-color: var(--border-default);
  color: var(--primary-light);
}

@media (max-width: 640px) {
  .footer__inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .hero { padding: 100px 20px 60px; }
  .form-wrapper { padding: 28px 20px; }
  .form__btn-row { flex-direction: column; }
  .form__btn-row .btn { width: 100%; }
}

/* ═══════════════════════════════════════════════════════════
   NAV LANGUAGE BUTTON
   ═══════════════════════════════════════════════════════════ */
.nav__lang {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: rgba(201, 148, 75, 0.06);
  border: 1px solid rgba(201, 148, 75, 0.1);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.2s var(--ease-smooth);
  font-family: var(--font-sans);
}

.nav__lang:hover {
  background: rgba(201, 148, 75, 0.12);
  border-color: rgba(201, 148, 75, 0.2);
  color: var(--primary-light);
}

.nav__lang svg { opacity: 0.4; }
.nav__lang:hover svg { opacity: 0.7; }

/* ═══════════════════════════════════════════════════════════
   CUSTOM SELECT (Dropdown replacement)
   ═══════════════════════════════════════════════════════════ */
.custom-select {
  position: relative;
  width: 100%;
}

.custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s var(--ease-smooth);
  text-align: left;
}

.custom-select__trigger:hover {
  border-color: var(--border-default);
}

.custom-select.open .custom-select__trigger {
  border-color: var(--border-active);
  background: rgba(24, 16, 8, 0.8);
  box-shadow: 0 0 0 3px rgba(201, 148, 75, 0.08);
}

.custom-select__trigger.has-value {
  color: var(--text-primary);
}

.custom-select__arrow {
  flex-shrink: 0;
  opacity: 0.4;
  transition: transform 0.2s ease;
}

.custom-select.open .custom-select__arrow {
  transform: rotate(180deg);
  opacity: 0.7;
}

.custom-select__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: rgba(16, 10, 6, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 6px;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s var(--ease-out);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.custom-select.open .custom-select__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-select__option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.15s ease;
}

.custom-select__option:hover {
  background: rgba(201, 148, 75, 0.08);
  color: var(--primary-light);
}

.custom-select__option.selected {
  background: rgba(201, 148, 75, 0.12);
  color: var(--primary-lighter);
}

.custom-select__option svg {
  flex-shrink: 0;
  opacity: 0.5;
  color: var(--primary);
}

.custom-select__option:hover svg,
.custom-select__option.selected svg {
  opacity: 0.9;
}

/* Error state for custom select */
.form__group.has-error .custom-select__trigger {
  border-color: rgba(248, 113, 113, 0.4);
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.06);
}


