:root {
  --bg: #0c1219;
  --panel: #121a24;
  --muted: #c5d0dc;
  --text: #e6edf5;
  --accent: #f0a500;
  --accent-2: #46c2ff;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 18px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at 20% 20%, rgba(70, 194, 255, 0.06), transparent 30%),
              radial-gradient(circle at 80% 0%, rgba(240, 165, 0, 0.08), transparent 30%),
              var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.no-scroll {
  overflow: hidden;
}

a {
  color: var(--accent-2);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

.hero {
  position: relative;
  min-height: 90vh;
  padding: 32px clamp(20px, 6vw, 80px) 120px;
  background: linear-gradient(120deg, rgba(12, 18, 25, 0.9), rgba(12, 18, 25, 0.6));
  color: var(--text);
  overflow: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: heroFade 128s infinite ease-in-out;
  will-change: opacity;
}

.hero-bg-1 { background-image: url('img/hero/structure.jpg'); animation-delay: 0s; }
.hero-bg-2 { background-image: url('img/hero/rigging.jpg'); animation-delay: 8s; }
.hero-bg-3 { background-image: url('img/hero/grid.jpg'); animation-delay: 16s; }
.hero-bg-4 { background-image: url('img/hero/20200630_102005.jpg'); animation-delay: 24s; }
.hero-bg-5 { background-image: url('img/hero/20240721_213235.jpg'); animation-delay: 32s; }
.hero-bg-6 { background-image: url('img/hero/IMG-20230606-WA0008.jpg'); animation-delay: 40s; }
.hero-bg-7 { background-image: url('img/hero/IMG-20230706-WA0009.jpg'); animation-delay: 48s; }
.hero-bg-8 { background-image: url('img/hero/IMG-20250705-WA0001.jpg'); animation-delay: 56s; }
.hero-bg-9 { background-image: url('img/hero/IMG-20250705-WA0002.jpg'); animation-delay: 64s; }
.hero-bg-10 { background-image: url('img/hero/IMG_20171129_152338.jpg'); animation-delay: 72s; }
.hero-bg-11 { background-image: url('img/hero/IMG_20180312_140506.jpg'); animation-delay: 80s; }
.hero-bg-12 { background-image: url('img/hero/IMG_20181017_111339.jpg'); animation-delay: 88s; }
.hero-bg-13 { background-image: url('img/hero/IMG_20190218_173639.jpg'); animation-delay: 96s; }
.hero-bg-14 { background-image: url('img/hero/IMG_20190722_193024.jpg'); animation-delay: 104s; }
.hero-bg-15 { background-image: url('img/hero/PHOTO-2025-12-28-23-38-24 (1).jpeg'); animation-delay: 112s; }
.hero-bg-16 { background-image: url('img/hero/PHOTO-2025-12-28-23-39-09.jpeg'); animation-delay: 120s; }

@keyframes heroFade {
  0% { opacity: 0; }
  2% { opacity: 1; }
  6% { opacity: 1; }
  7.7% { opacity: 0; }
  100% { opacity: 0; }
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(70, 194, 255, 0.25), transparent 50%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 18, 25, 0.82) 0%, rgba(12, 18, 25, 0.55) 45%, rgba(12, 18, 25, 0.9) 90%);
  z-index: 1;
}

.hero-badges {
  position: absolute;
  bottom: 40px;
  right: clamp(20px, 6vw, 80px);
  z-index: 2;
  display: flex;
  gap: 12px;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(4px);
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.hero-badge img {
  height: 36px;
  width: auto;
  display: block;
}

.nav {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav .logo {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0.25) 25%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.25) 75%,
    rgba(255, 255, 255, 0.25) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 8s linear infinite;
  padding: 8px 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.logo img {
  height: 44px;
  width: auto;
  display: block;
}

nav a {
  margin-left: 18px;
  color: var(--muted);
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  display: inline-flex;
  align-items: center;
}

nav a:hover {
  color: var(--text);
}

.lang-dropdown {
  position: relative;
  display: inline-flex;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.35);
  transition: 0.2s ease;
}

.lang-toggle:hover,
.lang-toggle:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(70, 194, 255, 0.25);
}

.lang-flag img {
  width: auto;
  height: 14px;
  display: block;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* .lang-flag.square img {
  width: 18px;
  height: 18px;
  border-radius: 3px;
} */

.lang-label {
  font-weight: 600;
}

.lang-caret {
  font-size: 12px;
  opacity: 0.8;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  background: #0d141c;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  padding: 8px;
  display: none;
  z-index: 50;
}

.lang-dropdown.open .lang-menu {
  display: block;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 600;
  transition: 0.15s ease;
}

.lang-option:hover,
.lang-option:focus-visible {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.lang-option.active {
  background: linear-gradient(120deg, rgba(240, 165, 0, 0.12), rgba(70, 194, 255, 0.15));
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-top: 100px;
  padding: 18px 22px;
  background: rgba(12, 18, 25, 0.35);
  border-radius: 14px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

h1, .hero-content p {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

h1 {
  font-size: clamp(32px, 4vw, 52px);
  margin: 12px 0;
  line-height: 1.1;
}

h2 {
  font-size: clamp(26px, 3vw, 40px);
  margin: 12px 0;
}

h3 {
  margin: 0 0 8px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-2);
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-size: 13px;
}

.eyebrow::before {
  content: '';
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin: 20px 0 10px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  transition: 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #0b0f15;
  border: none;
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(70, 194, 255, 0.35);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.06);
}

.btn.large {
  padding: 14px 24px;
}

.btn.small {
  padding: 8px 16px;
  font-size: 14px;
  height: auto;
}

.meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent-2);
}

.section {
  padding: 90px clamp(20px, 6vw, 80px);
}

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

.section-intro {
  color: var(--muted);
}

.services {
  background: linear-gradient(180deg, #0d141c 0%, #0f1722 100%);
}

.service-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-card ul {
  padding-left: 18px;
  color: var(--muted);
  margin: 12px 0 0;
}

.service-card p {
  color: var(--muted);
  margin: 6px 0 10px;
}

.projects {
  background: #0a0f16;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.project-card {
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 0;
}

.project-card figcaption {
  padding: 14px 16px;
  color: var(--muted);
  margin-top: auto;
}

.project-thumb {
  appearance: none;
  border: none;
  padding: 0;
  background: none;
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 3 / 4;
  cursor: pointer;
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.project-thumb:hover img,
.project-thumb:focus-visible img {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  padding: 20px;
  z-index: 999;
}

/* Mobile Lightbox Improvements */
  .lightbox {
    padding: 0;
  }

  .lightbox-content {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    border-radius: 0;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #000;
  }

  .lightbox img {
    max-height: 85vh;
    width: 100%;
    object-fit: contain;
  }

  .lightbox figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    text-align: center;
    color: white;
    z-index: 2;
  }

  .lightbox-close {
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 20;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }

.lightbox[hidden] {
  display: none;
}

.lightbox-content {
  position: relative;
  max-width: min(900px, 90vw);
  max-height: 90vh;
  background: #0b1119;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 12px 12px 16px;
}

.lightbox img {
  width: 100%;
  height: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox figcaption {
  margin-top: 10px;
  color: var(--muted);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 12px;
  padding: 6px 10px;
  cursor: pointer;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-content img {
  width: 100%;
  height: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox figcaption {
  margin-top: 10px;
  color: var(--muted);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 12px;
  padding: 6px 10px;
  cursor: pointer;
}

.highlights {
  background: linear-gradient(135deg, #0f1722, #0c1219);
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.highlight {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.highlight p {
  color: var(--muted);
  margin: 6px 0 0;
}

.team {
  background: #0a0f16;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.person {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  padding: 24px 20px 28px;
  background: linear-gradient(145deg, var(--panel), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.person:hover,
.person:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.15);
}

.avatar {
  width: 120px;
  height: 120px;
  min-width: 120px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--accent), var(--accent-2));
  padding: 3px;
  overflow: hidden;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.person:hover .avatar,
.person:focus-within .avatar {
  transform: scale(1.05);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  border: 3px solid #0b0f15;
}

.person h3 {
  margin: 0;
  font-size: 1.2rem;
}

.person p {
  margin: 4px 0 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.person a {
  margin-top: auto;
}

.cta {
  background: linear-gradient(160deg, #0c1219, #0f1824);
}

.cta-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px;
  align-items: center;
  box-shadow: var(--shadow);
}

.hiring {
  background: linear-gradient(180deg, #0c1219 0%, #0d141c 100%);
}

.hiring-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: radial-gradient(circle at 12% 20%, rgba(70, 194, 255, 0.06), transparent 30%), rgba(255, 255, 255, 0.03);
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: stretch;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hiring-overview {
  grid-column: span 3;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hiring-overview h3 {
  margin: 0 0 8px;
}

.hiring-feature {
  grid-column: span 2;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
}

.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #0b0f15;
  font-weight: 700;
  margin-bottom: 10px;
}

.hiring-feature h4 {
  margin: 0 0 6px;
}

.hiring-cta {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 4px);
  padding: 14px 14px 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}

.hiring-cta .btn {
  width: 100%;
  justify-content: center;
  padding-left: 38px;
}

.hiring-cta-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 8px;
}

.hiring-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.jobs-block {
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.jobs-header {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.job-pill {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.job-pill .icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #0b0f15;
  font-weight: 700;
}

.job-pill p {
  margin: 2px 0 0;
  color: var(--muted);
}

.jobs-table {
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.02);
}

.jobs-head,
.jobs-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
}

.jobs-head {
  font-weight: 700;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}

.jobs-row + .jobs-row {
  border-top: 1px solid var(--border);
}

.jobs-row {
  background: rgba(255, 255, 255, 0.01);
}

.badge-status {
  justify-self: start;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(70, 194, 255, 0.12);
  color: var(--text);
  border: 1px solid rgba(70, 194, 255, 0.4);
  font-weight: 600;
}

.badge-status.urgent {
  background: rgba(240, 165, 0, 0.12);
  border-color: rgba(240, 165, 0, 0.4);
  color: var(--text);
}

.badge {
  background: rgba(255, 255, 255, 1);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.badge img {
  height: 20px;
  width: auto;
  display: block;
}

.legal-page {
  background: #0c1219;
  color: var(--text);
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  margin: 0;
}

.legal-hero {
  background: linear-gradient(140deg, rgba(12, 18, 25, 0.92), rgba(12, 18, 25, 0.6));
  padding: 20px clamp(16px, 6vw, 80px) 40px;
  border-bottom: 1px solid var(--border);
}

.legal-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.legal-nav .logo-link img {
  height: 44px;
  width: auto;
  display: block;
}

.legal-home {
  color: var(--accent-2);
  font-weight: 600;
}

.legal-hero-content {
  margin-top: 24px;
}

.legal-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 24px;
}

.legal-container h1 {
  margin-top: 0;
}

.legal-container h2 {
  margin: 20px 0 8px;
}

.legal-container p,
.legal-container ul {
  color: var(--muted);
}

.legal-container ul {
  padding-left: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.label {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.4px;
  color: var(--muted);
}

.cta p {
  color: var(--muted);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-end;
}

.footer {
  padding: 28px clamp(20px, 6vw, 80px);
  border-top: 1px solid var(--border);
  color: var(--muted);
  background: #080c12;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer a {
  color: var(--text);
}

@media (max-width: 800px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-actions {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 12px;
  }
  .nav-actions nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    width: 100%;
  }
  nav a {
    margin: 0 12px 0 0;
  }
  .lang-dropdown {
    align-self: flex-end;
    width: auto;
    display: flex;
    justify-content: flex-end;
  }
  .lang-toggle {
    min-width: auto;
    width: auto;
    justify-content: center;
    padding: 10px 12px;
    gap: 6px;
  }
  .lang-toggle .lang-label,
  .lang-toggle .lang-caret {
    display: none;
  }
  .lang-dropdown.open .lang-toggle {
    justify-content: space-between;
    width: 100%;
    padding: 12px 14px;
  }
  .lang-dropdown.open .lang-toggle .lang-label,
  .lang-dropdown.open .lang-toggle .lang-caret {
    display: inline;
  }
  .lang-menu {
    width: min(260px, 100%);
    right: 0;
  }
  .hero-content {
    margin-top: 60px;
  }
  .cta-card {
    grid-template-columns: 1fr;
  }
  .hiring-card {
    grid-template-columns: 1fr;
  }
  .hiring-overview,
  .hiring-cta,
  .hiring-feature {
    grid-column: auto;
  }

  /* Mobile Jobs Table - Card View */
  .jobs-head {
    display: none;
  }

  .jobs-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px;
    position: relative;
  }

  .jobs-row span:nth-child(1) {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
  }

  .jobs-row span:nth-child(2) {
    color: var(--muted);
    font-size: 0.95rem;
  }

  .jobs-row .badge-status {
    position: absolute;
    top: 18px;
    right: 18px;
    margin-top: 4px;
    margin-bottom: 8px;
  }

  .jobs-row .btn {
    width: 100%;
    justify-content: center;
  }
}
