/* ===== IMPORTS ===== */
@import url('local-fonts.css');

/* ===== DESIGN TOKENS ===== */
:root {
  --navy: #0A1628;
  --navy-light: #142238;
  --navy-mid: #1B2D4A;
  --navy-dark: #060E1A;
  --gold: #C8A84E;
  --gold-light: #E8C95A;
  --gold-dark: #A08030;
  --gold-glow: rgba(200, 168, 78, 0.25);
  --silver: #C0C8D4;
  --white: #FFFFFF;
  --gray-100: #F0F2F5;
  --gray-200: #D8DCE2;
  --gray-600: #6B7280;
  --gray-900: #111827;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --section-padding: 120px 0;
  --content-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--navy-dark);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--navy-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  padding: 12px 50px;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(200, 168, 78, 0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo svg {
  width: 36px;
  height: 42px;
  filter: drop-shadow(0 2px 8px rgba(200, 168, 78, 0.3));
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
}

.nav-logo-text span {
  color: var(--gold);
}

.nav-logo-group {
  display: flex;
  flex-direction: column;
}

.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  color: var(--gray-600);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--silver);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-phone {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--silver);
  transition: color 0.3s;
}

.nav-phone:hover {
  color: var(--gold);
}

.nav-cta {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border: none;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(200, 168, 78, 0.3);
}

.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.nav-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Fixed position so image doesn't move on scroll */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(6, 14, 26, 0.4) 0%, rgba(10, 22, 40, 0.65) 50%, rgba(6, 14, 26, 0.95) 100%);
  z-index: 1;
}

.hero-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.hero-lines::before,
.hero-lines::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--gold-glow), transparent);
  animation: lineFloat 8s infinite ease-in-out;
}

.hero-lines::before {
  left: 25%;
  animation-delay: 0s;
}

.hero-lines::after {
  left: 75%;
  animation-delay: 4s;
}

@keyframes lineFloat {

  0%,
  100% {
    opacity: 0;
    transform: translateY(-100%);
  }

  50% {
    opacity: 0.6;
    transform: translateY(100%);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
}

.hero-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 0.3s forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--white) 0%, var(--silver) 50%, var(--white) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s 0.5s forwards;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--silver);
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 0.7s forwards;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s 1.2s forwards;
}

.hero-scroll-indicator span {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }

  50% {
    opacity: 0.4;
    transform: scaleY(0.6);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SECTIONS ===== */
.section {
  padding: var(--section-padding);
  position: relative;
}

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

.section-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
}

.section-text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--silver);
  max-width: 680px;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

.stagger-children .reveal {
  transition-delay: calc(var(--i, 0) * 0.12s);
}

/* ===== ABOUT ===== */
#about {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 168, 78, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .section-text {
  margin-bottom: 40px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-feature {
  padding: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 168, 78, 0.1);
  border-radius: 16px;
  transition: all 0.4s;
}

.about-feature:hover {
  background: rgba(200, 168, 78, 0.06);
  border-color: rgba(200, 168, 78, 0.25);
  transform: translateY(-4px);
}

.about-feature-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.about-feature h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.about-feature p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-600);
}

.about-visual {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.about-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 22, 40, 0.6) 100%);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 16px;
  padding: 24px 32px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(200, 168, 78, 0.3);
  z-index: 2;
}

.about-badge-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.about-badge-text {
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== JOB LISTINGS ===== */
#jobs {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

#jobs::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(200, 168, 78, 0.06), transparent 70%);
  pointer-events: none;
}

/* ===== PLZ SEARCH ===== */
.plz-search {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 560px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 168, 78, 0.15);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s;
}

.plz-search:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(200, 168, 78, 0.1), 0 8px 32px rgba(0, 0, 0, 0.2);
}

.plz-location-btn {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--gold);
  cursor: pointer;
  transition: all 0.3s;
  border-right: 1px solid rgba(200, 168, 78, 0.1);
}

.plz-location-btn:hover {
  background: rgba(200, 168, 78, 0.08);
}

.plz-location-btn.loading svg {
  animation: locationSpin 1s linear infinite;
}

@keyframes locationSpin {
  to {
    transform: rotate(360deg);
  }
}

.plz-input {
  flex: 1;
  height: 52px;
  padding: 0 16px;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--white);
  letter-spacing: 1px;
}

.plz-input::placeholder {
  color: var(--gray-600);
  letter-spacing: 0;
}

.plz-search-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border: none;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.plz-search-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.plz-hint {
  font-size: 13px;
  color: var(--silver);
  margin-top: 16px;
  min-height: 20px;
  text-align: center;
}

.plz-hint .plz-city {
  color: var(--gold);
  font-weight: 600;
}

.jobs-header {
  text-align: center;
  margin-bottom: 64px;
}

.jobs-header .section-text {
  margin: 0 auto;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.job-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(200, 168, 78, 0.08);
  border-radius: 20px;
  padding: 52px 28px 36px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.job-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(200, 168, 78, 0.04) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.5s;
}

.job-card:hover {
  border-color: rgba(200, 168, 78, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(200, 168, 78, 0.06);
}

.job-card:hover::before {
  opacity: 1;
}

.job-card.featured {
  border-color: rgba(200, 168, 78, 0.2);
  background: rgba(200, 168, 78, 0.04);
}

.job-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 1;
  background: rgba(200, 168, 78, 0.12);
  color: var(--gold);
  border: 1px solid rgba(200, 168, 78, 0.2);
}

.job-badge.hot {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  border-color: var(--gold);
}

.job-badge.elite {
  background: rgba(100, 180, 255, 0.12);
  color: #7CB9E8;
  border-color: rgba(100, 180, 255, 0.3);
}

.job-icon {
  font-size: 36px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.job-location {
  font-size: 12px;
  color: var(--gray-600);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.job-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.job-salary {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 0;
  margin-bottom: 16px;
  border-top: 1px solid rgba(200, 168, 78, 0.1);
  border-bottom: 1px solid rgba(200, 168, 78, 0.1);
  position: relative;
  z-index: 1;
}

.salary-amount {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.salary-label {
  font-size: 11px;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.job-details {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.job-details li {
  font-size: 13px;
  line-height: 1.5;
  color: var(--silver);
  padding: 5px 0;
}

.job-apply-btn {
  display: block;
  text-align: center;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  transition: all 0.3s;
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.job-apply-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 168, 78, 0.3);
}

/* ===== SERVICES ===== */
#services {
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
}

.services-header {
  text-align: center;
  margin-bottom: 80px;
}

.services-header .section-text {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(200, 168, 78, 0.08);
  border-radius: 20px;
  padding: 48px 36px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 168, 78, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s;
}

.service-card:hover {
  border-color: rgba(200, 168, 78, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  border: 1px solid rgba(200, 168, 78, 0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  position: relative;
  z-index: 1;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-600);
  position: relative;
  z-index: 1;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: gap 0.3s;
}

.service-card:hover .learn-more {
  gap: 14px;
}

/* ===== WORKFLOW ===== */
#workflow {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

#workflow::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 168, 78, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.workflow-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.workflow-step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  position: relative;
}

.workflow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 25px;
  top: 76px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(200, 168, 78, 0.1));
}

.wf-step-num {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  border: 2px solid rgba(200, 168, 78, 0.2);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all 0.4s;
}

.workflow-step:hover .wf-step-num {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(200, 168, 78, 0.3);
}

.wf-step-content h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.wf-step-content p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-600);
}

.workflow-highlight {
  background: linear-gradient(145deg, var(--navy-light), var(--navy-mid));
  border: 1px solid rgba(200, 168, 78, 0.12);
  border-radius: 24px;
  padding: 48px;
  position: sticky;
  top: 120px;
}

.workflow-highlight h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 16px;
}

.workflow-highlight p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--silver);
  margin-bottom: 24px;
}

.workflow-stat {
  display: flex;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(200, 168, 78, 0.15);
}

.workflow-stat-item {
  flex: 1;
  text-align: center;
}

.workflow-stat-num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.workflow-stat-label {
  font-size: 11px;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ===== BENEFITS ===== */
#benefits {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
}

.benefits-header {
  text-align: center;
  margin-bottom: 80px;
}

.benefits-header .section-text {
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(200, 168, 78, 0.08);
  border-radius: 20px;
  padding: 40px 28px;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transition: transform 0.5s;
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 168, 78, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.benefit-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-600);
}

/* ===== STATISTICS ===== */
#global {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.global-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 168, 78, 0.1);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.4s;
}

.stat-card:hover {
  border-color: rgba(200, 168, 78, 0.3);
  transform: translateY(-4px);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.global-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.global-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.global-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.4) 0%, transparent 100%);
}

/* ===== TEAM ===== */
#team {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
}

.team-header {
  text-align: center;
  margin-bottom: 80px;
}

.team-header .section-text {
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.team-card {
  background: linear-gradient(145deg, var(--navy-light), var(--navy-mid));
  border: 1px solid rgba(200, 168, 78, 0.1);
  border-radius: 24px;
  padding: 48px 36px;
  text-align: center;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
}

.team-card:nth-child(2) {
  border-color: rgba(200, 168, 78, 0.2);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(200, 168, 78, 0.1);
  border-color: rgba(200, 168, 78, 0.3);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  box-shadow: 0 8px 30px rgba(200, 168, 78, 0.3);
}

.team-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.team-role {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.team-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--silver);
}

/* ===== CONTACT ===== */
#contact {
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 168, 78, 0.04) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.contact-heading {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--white);
  position: relative;
}

.contact-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--silver);
  max-width: 550px;
  margin: 0 auto 48px;
  position: relative;
}

.contact-box {
  background: rgba(200, 168, 78, 0.06);
  border: 1px solid rgba(200, 168, 78, 0.2);
  border-radius: 24px;
  padding: 48px 60px;
  display: inline-block;
  position: relative;
}

.contact-box-label {
  font-size: 12px;
  color: var(--gray-600);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.contact-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-info p {
  font-size: 14px;
  color: var(--silver);
  margin-bottom: 6px;
}

.contact-info a {
  color: var(--gold);
  transition: color 0.3s;
}

.contact-info a:hover {
  color: var(--gold-light);
}

.contact-divider {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto;
  opacity: 0.3;
}

.contact-cta-btn {
  display: inline-block;
  padding: 16px 48px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border: none;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.4s;
  margin-top: 40px;
}

.contact-cta-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(200, 168, 78, 0.3);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(200, 168, 78, 0.08);
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
}

.footer-logo span {
  color: var(--gold);
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  font-size: 13px;
  color: var(--gray-600);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  font-size: 12px;
  color: var(--gray-600);
}

.footer-bottom span {
  color: var(--gold-dark);
}

/* ===== PARALLAX DIVIDER ===== */
.parallax-divider {
  height: 50vh;
  position: relative;
  overflow: hidden;
}

.parallax-divider img {
  position: absolute;
  width: 100%;
  height: 130%;
  object-fit: cover;
  top: -15%;
}

.parallax-divider .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--navy-dark) 0%, rgba(10, 22, 40, 0.6) 50%, var(--navy) 100%);
}

/* ===== PLACEMENT BANNER ===== */
.placement-banner {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.placement-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.placement-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 16px;
  position: relative;
}

.placement-banner p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--navy);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {

  .about-grid,
  .workflow-layout,
  .global-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .jobs-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
  }

  .navbar {
    padding: 16px 24px;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(200, 168, 78, 0.1);
  }

  .nav-links {
    visibility: hidden;
  }

  .nav-contact .nav-phone {
    display: none;
  }

  .nav-menu-btn {
    display: flex;
  }

  .hero-content {
    padding: 0 24px;
  }

  .container {
    padding: 0 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-box {
    padding: 36px 28px;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

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

  .workflow-stat {
    flex-direction: column;
    gap: 16px;
  }
}

/* ===== APPLICATION MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(6, 14, 26, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: linear-gradient(145deg, var(--navy-light), var(--navy-mid));
  border: 1px solid rgba(200, 168, 78, 0.15);
  border-radius: 24px;
  padding: 48px;
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal::-webkit-scrollbar {
  width: 4px;
}

.modal::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 2px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 168, 78, 0.1);
  color: var(--silver);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.modal-close:hover {
  background: rgba(200, 168, 78, 0.1);
  color: var(--gold);
  border-color: rgba(200, 168, 78, 0.3);
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.modal-job-card {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.6;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(200, 168, 78, 0.15);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: var(--silver);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 168, 78, 0.12);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  transition: all 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(200, 168, 78, 0.06);
  box-shadow: 0 0 20px rgba(200, 168, 78, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-600);
}

.form-group textarea {
  resize: vertical;
  min-height: 70px;
}

.radio-group {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 168, 78, 0.12);
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
  color: var(--silver);
  flex: 1;
  justify-content: center;
}

.radio-label:hover {
  border-color: rgba(200, 168, 78, 0.3);
}

.radio-label:has(input:checked) {
  background: rgba(200, 168, 78, 0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.radio-label input[type="radio"] {
  accent-color: var(--gold);
}

.file-upload {
  position: relative;
  border: 2px dashed rgba(200, 168, 78, 0.15);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.file-upload:hover {
  border-color: rgba(200, 168, 78, 0.4);
  background: rgba(200, 168, 78, 0.03);
}

.file-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-upload-label {
  font-size: 13px;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.file-upload-label.has-file {
  color: var(--gold);
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border: none;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
}

.form-submit:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 168, 78, 0.3);
}

.form-hint {
  font-size: 11px;
  color: var(--gray-600);
  text-align: center;
  line-height: 1.5;
  margin-top: 4px;
}

.modal-success {
  text-align: center;
  padding: 40px 0;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--navy);
  animation: successPop 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes successPop {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.modal-success h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.modal-success p {
  font-size: 15px;
  color: var(--silver);
  margin-bottom: 32px;
  line-height: 1.6;
}

.job-apply-btn {
  display: block;
  text-align: center;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  transition: all 0.3s;
  position: relative;
  z-index: 1;
  margin-top: auto;
  border: none;
  cursor: pointer;
  width: 100%;
}

@media (max-width: 768px) {
  .modal {
    padding: 32px 24px;
    max-height: 90vh;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .radio-group {
    flex-direction: column;
  }

  /* ===== MOBILE NAV OVERLAY ===== */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 14, 26, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
  }

  .nav-links.mobile-open {
    display: flex;
    visibility: visible;
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .nav-links.mobile-open a {
    font-size: 20px;
    letter-spacing: 3px;
  }

  .nav-menu-btn {
    z-index: 1000;
  }

  .nav-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-contact .nav-cta {
    display: none;
  }

  /* ===== HERO MOBILE ===== */
  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-label {
    font-size: 10px;
    letter-spacing: 4px;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .hero-scroll-indicator {
    bottom: 24px;
  }

  /* ===== PLZ SEARCH MOBILE ===== */
  .plz-search {
    flex-wrap: wrap;
    max-width: 100%;
    border-radius: 12px;
  }

  .plz-location-btn {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }

  .plz-input {
    height: 48px;
    font-size: 15px;
    min-width: 0;
  }

  .plz-search-btn {
    height: 46px;
    padding: 0 16px;
    font-size: 11px;
    gap: 6px;
    border-radius: 0 0 11px 0;
  }

  .plz-search-btn svg {
    width: 14px;
    height: 14px;
  }

  .plz-hint {
    font-size: 12px;
    margin-top: 12px;
  }

  .jobs-header {
    margin-bottom: 36px;
  }

  /* ===== JOB CARDS MOBILE ===== */
  .job-card {
    padding: 28px 20px;
  }

  .job-badge {
    position: relative;
    top: 0;
    right: 0;
    display: inline-block;
    margin-bottom: 16px;
    font-size: 9px;
  }

  .job-title {
    font-size: 17px;
  }

  .job-icon {
    display: none;
    /* Reduce clutter on mobile */
  }

  .salary-amount {
    font-size: 22px;
  }

  .job-details li {
    font-size: 13px;
  }

  .job-apply-btn {
    font-size: 11px;
    padding: 14px 20px;
  }

  .job-location {
    font-size: 11px;
  }

  /* ===== ABOUT FEATURES MOBILE ===== */
  .about-feature {
    padding: 24px 20px;
  }

  .about-feature h4 {
    font-size: 15px;
  }

  .about-feature p {
    font-size: 13px;
  }

  /* ===== HOW IT WORKS MOBILE ===== */
  .how-steps {
    flex-direction: column;
    gap: 24px;
  }

  .how-step {
    padding: 28px 24px;
  }

  .how-step-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .how-step h4 {
    font-size: 16px;
  }

  .how-step p {
    font-size: 13px;
  }

  /* ===== SECTION HEADINGS MOBILE ===== */
  .section-label {
    font-size: 10px;
    letter-spacing: 3px;
  }

  .section-text {
    font-size: 15px;
  }

  /* ===== CONTACT MOBILE ===== */
  .contact-heading {
    font-size: 28px;
  }

  .contact-text {
    font-size: 14px;
  }

  .contact-box {
    padding: 28px 20px;
  }

  .contact-name {
    font-size: 20px;
  }

  /* ===== FOOTER MOBILE ===== */
  .footer-bottom p {
    font-size: 11px;
    line-height: 1.6;
  }
}

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

  .workflow-stat {
    flex-direction: column;
    gap: 16px;
  }

  /* Extra tight mobile */
  .container {
    padding: 0 16px;
  }

  .hero-content {
    padding: 0 16px;
  }

  .section-heading {
    margin-bottom: 14px;
  }

  .plz-search-btn span {
    display: none;
  }

  .modal {
    padding: 24px 16px;
    border-radius: 16px;
  }

  .modal-title {
    font-size: 22px;
  }

  .modal-job-card {
    font-size: 12px;
    padding-bottom: 14px;
    margin-bottom: 20px;
  }

  .form-group label {
    font-size: 12px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 14px;
    padding: 12px 14px;
  }

  .form-submit {
    font-size: 12px;
    padding: 14px;
  }

  .file-upload-label {
    font-size: 12px;
    padding: 16px;
  }

  .about-features {
    gap: 12px;
  }

  .job-card {
    padding: 24px 16px;
    border-radius: 16px;
  }
}

/* ===== LEGAL PAGES (Datenschutz / Impressum) ===== */
.legal-page {
  padding: 180px 0 100px;
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
  min-height: 100vh;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 48px;
  transition: gap 0.3s;
}

.back-link:hover {
  gap: 14px;
}

.legal-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 48px;
}

.legal-content {
  max-width: 800px;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(200, 168, 78, 0.1);
}

.legal-content h2:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.legal-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--silver);
  margin-bottom: 16px;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-content li {
  font-size: 14px;
  line-height: 1.8;
  color: var(--silver);
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}

.legal-content a:hover {
  color: var(--gold-light);
}

.legal-content strong {
  color: var(--white);
  font-weight: 600;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  padding: 24px 40px;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(200, 168, 78, 0.15);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.hidden {
  transform: translateY(100%);
  pointer-events: none;
}

.cookie-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 280px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--silver);
}

.cookie-text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
}

.cookie-btn-accept:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(200, 168, 78, 0.3);
}

.cookie-btn-reject {
  background: rgba(255, 255, 255, 0.06);
  color: var(--silver);
  border: 1px solid rgba(200, 168, 78, 0.15);
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(200, 168, 78, 0.3);
}

/* ===== PRIVACY CHECKBOX (Form) ===== */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px !important;
  color: var(--silver);
  line-height: 1.5 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-weight: 400 !important;
  font-family: var(--font-body) !important;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.checkbox-label a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 20px 24px;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-text {
    font-size: 13px;
    min-width: 0;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  .legal-page {
    padding: 140px 0 80px;
  }
}