/* ============================================================
   DIGITALHeadhunter — New Design System
   Font: Playfair Display (brand/display), Montserrat (headings), Inter (body)
   Palette: Deep red/dark + white
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Montserrat:wght@600;700;800&family=Inter:wght@300;400;500;600&display=swap");

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --bg-darkest: #080002;
  --bg-dark: #0d0004;
  --bg-mid: #180007;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --accent: #a00000;
  --accent-bright: #cc1a1a;
  --accent-glow: rgba(160, 0, 0, 0.35);
  --accent-subtle: rgba(160, 0, 0, 0.12);
  --white: #ffffff;
  --white-90: rgba(255, 255, 255, 0.9);
  --white-70: rgba(255, 255, 255, 0.7);
  --white-40: rgba(255, 255, 255, 0.4);
  --white-15: rgba(255, 255, 255, 0.15);
  --white-08: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.1);
  --font-display: "Playfair Display", Georgia, serif;
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Inter", sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-accent: 0 4px 24px rgba(160, 0, 0, 0.25);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 72px;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

/* ── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darkest);
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(13, 0, 4, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  z-index: 1001;
}

.nav-logo img {
  height: 42px;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

.nav-logo:hover img {
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(200, 50, 50, 0.6));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white-70);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-bright);
  border-radius: 2px;
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
  width: calc(100% - 32px);
}

.nav-links a.active {
  color: var(--white);
}

.nav-cta {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white) !important;
  background: var(--accent);
  padding: 9px 20px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition) !important;
}

.nav-cta:hover {
  background: var(--accent-bright) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav overlay */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: rgba(8, 0, 2, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-mobile.open {
  transform: translateX(0);
}

.nav-mobile a {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-70);
  transition: var(--transition);
}

.nav-mobile a:hover {
  color: var(--white);
}

.nav-mobile .nav-cta {
  margin-top: 16px;
  padding: 14px 36px !important;
  font-size: 14px !important;
}

/* ══════════════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-height) + 60px) 5% 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 20% 50%,
      rgba(140, 0, 0, 0.18) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 60% 80% at 80% 20%,
      rgba(100, 0, 0, 0.1) 0%,
      transparent 60%
    ),
    linear-gradient(
      160deg,
      var(--bg-darkest) 0%,
      var(--bg-mid) 50%,
      var(--bg-dark) 100%
    );
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      1px 1px at 20% 30%,
      rgba(255, 255, 255, 0.06) 0%,
      transparent 0%
    ),
    radial-gradient(
      1px 1px at 80% 70%,
      rgba(255, 255, 255, 0.04) 0%,
      transparent 0%
    ),
    radial-gradient(
      1px 1px at 50% 10%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 0%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.2s forwards;
}

.hero-eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent-bright);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.4s forwards;
}

.hero-title span {
  color: var(--accent-bright);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 400;
  color: var(--white-70);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.6s forwards;
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.8s forwards;
}

.hero-bullet {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  color: var(--white-90);
  line-height: 1.55;
}

.hero-bullet::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--accent-subtle);
  border: 1.5px solid var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%23cc1a1a' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 1s forwards;
}

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

.hero-scroll span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-40);
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ══════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
  color: var(--white);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white-70);
  background: transparent;
  padding: 13px 32px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--white-15);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-secondary:hover {
  color: var(--white);
  border-color: var(--white-40);
  background: var(--white-08);
}

/* ══════════════════════════════════════════════════════════════
   SECTION LAYOUT
══════════════════════════════════════════════════════════════ */
.section {
  padding: 100px 5%;
  position: relative;
}

.section-alt {
  background: var(--bg-darkest);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 64px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 16px;
}

.section-eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent-bright);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--white-70);
  max-width: 600px;
  line-height: 1.7;
}

/* Divider */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--accent), transparent);
  border-radius: 2px;
  margin: 20px 0;
}

/* ══════════════════════════════════════════════════════════════
   POSITIONS SECTION
══════════════════════════════════════════════════════════════ */
.positions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.position-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  text-decoration: none;
  color: var(--white);
  transition: var(--transition);
  cursor: pointer;
}

.position-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
  color: var(--white);
}

.position-card-text {
  flex: 1;
}

.position-card-company {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 6px;
}

.position-card-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
}

.position-card-arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-subtle);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.position-card:hover .position-card-arrow {
  background: var(--accent);
  transform: translateX(2px);
}

.position-card-arrow svg {
  width: 14px;
  height: 14px;
  stroke: var(--white);
  fill: none;
}

/* Discrete card */
.position-card.discrete {
  border-color: var(--white-08);
  opacity: 0.75;
  background: rgba(255, 255, 255, 0.02);
}

.position-card.discrete:hover {
  opacity: 1;
  border-color: var(--white-40);
  box-shadow: none;
}

/* Collapsible closed positions */
.collapsible-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(209, 144, 24, 0.08);
  border: 1px solid rgba(209, 144, 24, 0.25);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  color: var(--white-70);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.collapsible-btn:hover {
  background: rgba(209, 144, 24, 0.14);
  border-color: rgba(209, 144, 24, 0.5);
  color: var(--white);
}

.collapsible-btn.active {
  background: rgba(209, 144, 24, 0.14);
  border-color: rgba(209, 144, 24, 0.5);
  color: var(--white);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.collapsible-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(209, 144, 24, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.collapsible-icon svg {
  width: 14px;
  height: 14px;
  stroke: rgba(209, 144, 24, 0.9);
  fill: none;
  transition: transform 0.3s ease;
}

.collapsible-btn.active .collapsible-icon svg {
  transform: rotate(45deg);
}

.collapsible-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(209, 144, 24, 0.04);
  border: 1px solid rgba(209, 144, 24, 0.25);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.collapsible-inner {
  padding: 8px 16px 16px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 6px;
}

.closed-position-tag {
  font-size: 13px;
  color: var(--white-40);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border-left: 2px solid rgba(209, 144, 24, 0.25);
  line-height: 1.4;
}

/* ══════════════════════════════════════════════════════════════
   INSPIRATION SECTION
══════════════════════════════════════════════════════════════ */
.inspiration-intro {
  font-size: 1.05rem;
  color: var(--white-70);
  line-height: 1.75;
  max-width: 700px;
  margin-bottom: 48px;
}

.tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--white-70);
  background: var(--white-08);
  border: 1px solid var(--white-15);
  border-radius: 100px;
  padding: 7px 16px;
  transition: var(--transition);
}

.tag:hover {
  background: var(--accent-subtle);
  border-color: var(--accent);
  color: var(--white);
}

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 72px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 60px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.5;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--white-70);
  font-style: italic;
  line-height: 1.75;
  padding-top: 28px;
}

/* ══════════════════════════════════════════════════════════════
   REFERENCES / LOGOS
══════════════════════════════════════════════════════════════ */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.logo-item {
  background: #e8e4df;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  aspect-ratio: 16/9;
  overflow: hidden;
}

.logo-item:hover {
  background: #d8d3cd;
  border-color: rgba(255, 255, 255, 0.12);
  transform: scale(1.01);
}

.logo-item img {
  max-width: 75%;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-item:hover img {
  transform: scale(1.05);
}

/* ══════════════════════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════════════════════ */
.cta-banner {
  padding: 80px 5%;
  background: linear-gradient(135deg, var(--accent) 0%, #6b0000 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 80% at 50% 50%,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 70%
  );
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  line-height: 1.7;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--white);
  padding: 14px 36px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-cta-white:hover {
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: var(--accent);
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
footer {
  background: var(--bg-darkest);
  border-top: 1px solid var(--border);
  padding: 48px 5% 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}

.footer-brand img {
  height: 36px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--white-40);
  max-width: 300px;
  line-height: 1.6;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
}

.footer-contact a,
.footer-contact p {
  font-size: 13px;
  color: var(--white-40);
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--white-70);
}

.footer-bottom {
  max-width: 1100px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--white-08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

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

.footer-bottom a {
  color: var(--white-40);
  font-size: 12px;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--white-70);
}

/* ══════════════════════════════════════════════════════════════
   PAGE HERO (inner pages / case pages)
══════════════════════════════════════════════════════════════ */
.page-hero {
  padding: calc(var(--nav-height) + 60px) 5% 60px;
  background: linear-gradient(160deg, var(--bg-darkest) 0%, var(--bg-mid) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 5% 50%,
    rgba(140, 0, 0, 0.15) 0%,
    transparent 60%
  );
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 16px;
}

.page-hero-eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent-bright);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  max-width: 900px;
}

/* ══════════════════════════════════════════════════════════════
   POSITION DETAIL PAGE
══════════════════════════════════════════════════════════════ */
.position-content {
  padding: 72px 5%;
}

.position-content-inner {
  max-width: 800px;
  margin: 0 auto;
}

.position-section {
  margin-bottom: 48px;
}

.position-section-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.position-section p {
  font-size: 1rem;
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: 16px;
}

.position-section ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.position-section ul li {
  font-size: 1rem;
  color: var(--white-70);
  line-height: 1.65;
  padding-left: 20px;
  position: relative;
}

.position-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-bright);
}

.position-contact-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  margin-top: 64px;
}

.position-contact-box h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.position-contact-box p {
  font-size: 1rem;
  color: var(--white-70);
  margin-bottom: 28px;
  line-height: 1.7;
}

.position-contact-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--accent-bright);
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--white);
}

.position-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white-40);
  margin-bottom: 32px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.position-back:hover {
  color: var(--white-70);
}

.position-back svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
}

/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 64px;
}

.profile-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
}

.profile-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-accent);
}

.profile-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  max-height: 380px;
}

.profile-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}

.profile-card:hover .profile-card-image img {
  transform: scale(1.04);
}

.profile-card-body {
  padding: 28px;
}

.profile-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 8px;
}

.profile-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.profile-bio {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.75;
  margin-bottom: 20px;
}

.profile-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white-40);
  transition: color 0.3s ease;
}

.profile-linkedin:hover {
  color: var(--white);
}

.profile-linkedin svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Contact info section */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: var(--accent);
  background: var(--bg-card-hover);
}

.contact-info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info-label svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
}

.contact-info-value {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.65;
}

.contact-info-value a {
  color: var(--white-70);
  transition: color 0.3s ease;
}

.contact-info-value a:hover {
  color: var(--white);
}

/* ══════════════════════════════════════════════════════════════
   404 PAGE
══════════════════════════════════════════════════════════════ */
.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 5%;
  background: linear-gradient(160deg, var(--bg-darkest) 0%, var(--bg-mid) 100%);
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 20vw, 14rem);
  font-weight: 900;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: -20px;
}

.error-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.error-text {
  font-size: 1rem;
  color: var(--white-70);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ══════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ══════════════════════════════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════════════════════════════ */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.4;
    transform: scaleY(0.6);
  }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand img {
    margin: 0 auto 16px;
  }

  .footer-tagline {
    max-width: 100%;
  }

  .footer-contact {
    text-align: center;
  }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .section {
    padding: 64px 5%;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .hero {
    padding: calc(var(--nav-height) + 20px) 5% 56px;
  }

  .hero-eyebrow {
    margin-bottom: 10px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 7.5vw, 6rem);
    margin-bottom: 16px;
  }

  .hero-subtitle {
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .hero-bullets {
    gap: 8px;
    margin-bottom: 20px;
  }

  .hero-bullet {
    line-height: 1.4;
  }

  .hero-scroll {
    display: none;
  }

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

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

  .logos-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .collapsible-inner {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: 60px 5%;
  }

  .page-hero {
    padding: calc(var(--nav-height) + 32px) 5% 40px;
  }

  .position-content {
    padding: 56px 5%;
  }

  .logo-item {
    padding: 12px;
  }

  footer {
    padding: 32px 5% 24px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 56px 5%;
  }

  .logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .logo-item {
    padding: 8px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}
