/* ===== CSS Variables – Black UX ===== */
:root {
  --black: #050505;
  --black-900: #0a0a0a;
  --black-800: #111111;
  --black-700: #1a1a1a;
  --black-600: #222222;
  --black-500: #2a2a2a;
  --gold-400: #d4af37;
  --gold-300: #e0c15a;
  --gold-200: #edd78a;
  --white: #ffffff;
  --white-90: rgba(255, 255, 255, 0.9);
  --white-70: rgba(255, 255, 255, 0.7);
  --white-50: rgba(255, 255, 255, 0.5);
  --white-30: rgba(255, 255, 255, 0.3);
  --white-12: rgba(255, 255, 255, 0.12);
  --white-08: rgba(255, 255, 255, 0.08);
  --white-04: rgba(255, 255, 255, 0.04);
  --text: #f0f0f0;
  --text-muted: rgba(255, 255, 255, 0.55);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.25);
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --font: 'Manrope', 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Compatibility aliases (old light theme → dark) */
  --navy-900: #050505;
  --navy-800: #0a0a0a;
  --navy-700: #111111;
  --navy-600: #1a1a1a;
  --navy-500: #222222;
  --off-white: #0a0a0a;
  --gray-100: #1a1a1a;
  --gray-200: #2a2a2a;
  --gray-300: #3a3a3a;
  --gray-400: #6a6a6a;
  --gray-500: #8a8a8a;
}

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

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

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--black);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Typography ===== */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.02em;
}

.section-desc {
  max-width: 540px;
  margin: 16px auto 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

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

.section-header.centered {
  text-align: center;
}

.lead {
  font-size: 1.15rem;
  color: var(--white-90);
  font-weight: 500;
  line-height: 1.7;
}

.gold-text {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-400), #c49a2a);
  color: #0a0a0a;
  box-shadow: var(--shadow-gold);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

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

.btn-whatsapp {
  background: #25D366;
  color: white;
  margin-top: 28px;
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  padding: 8px 0;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--white-08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-img-footer {
  height: 80px;
}

.logo-mark {
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white-50);
  max-width: 120px;
  line-height: 1.25;
  display: none;
}

@media (min-width: 900px) {
  .logo-text { display: block; }
}

@media (max-width: 600px) {
  .logo-img {
    height: 56px;
  }
  .logo-img-footer {
    height: 64px;
  }
}

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

@media (min-width: 900px) {
  .nav-links { display: flex; }
}

.nav-links a {
  color: var(--white-70);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}

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

.nav-cta {
  background: linear-gradient(135deg, var(--gold-400), #c49a2a) !important;
  color: #0a0a0a !important;
  font-weight: 600 !important;
  margin-left: 8px;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  cursor: pointer;
  padding: 8px;
}

@media (min-width: 900px) {
  .mobile-toggle { display: none; }
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile menu */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(5, 5, 5, 0.97);
  backdrop-filter: blur(20px);
  padding: 20px;
  gap: 4px;
  border-bottom: 1px solid var(--white-08);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(5,5,5,0.78) 0%, rgba(10,10,10,0.6) 45%, rgba(5,5,5,0.88) 100%),
    url('assets/fpso-hero.png') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212,175,55,0.07) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(30,30,30,0.5) 0%, transparent 50%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--black), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 120px 24px 80px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--white-08);
  border: 1px solid var(--white-12);
  border-radius: 50px;
  color: var(--white-90);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--white-70);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white-30);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease infinite;
}
to { opacity: 1; transform: translateY(0); }
}

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

/* ===== Sections ===== */
.section {
  padding: 100px 0;
  position: relative;
}

/* ===== Glass Card ===== */
.glass-card {
  background: var(--white-04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--white-08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

/* ===== About ===== */
.about {
  background: var(--black);
}

.about-grid {
  display: grid;
  gap: 48px;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: start;
  }
}

.about-content .lead {
  margin-bottom: 20px;
}

.about-content > p {
  color: var(--text-muted);
  margin-bottom: 36px;
}

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

.value-item {
  padding: 20px;
  background: var(--black-800);
  border-radius: var(--radius-sm);
  border: 1px solid var(--white-08);
  transition: all var(--transition);
}

.value-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(212,175,55,0.3);
  background: var(--black-700);
}

.value-icon {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold-400);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.value-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.value-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.about-mission {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mission-card, .vision-card {
  padding: 32px;
}

.mission-card {
  background: linear-gradient(145deg, var(--black-800), var(--black-700));
  border: 1px solid var(--white-08);
  color: var(--white);
}

.mission-card h3, .vision-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.mission-card h3 { color: var(--gold-400); }

.mission-card p {
  color: var(--white-70);
  font-size: 0.95rem;
  line-height: 1.7;
}

.vision-card h3 { color: var(--white); }
.vision-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* ===== Services ===== */
.services {
  background: var(--black-900);
}

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

@media (min-width: 700px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-card-centered {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 699px) {
  .service-card-centered {
    max-width: 100%;
  }
}

.service-card {
  background: var(--black-800);
  border-radius: var(--radius);
  border: 1px solid var(--white-08);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,175,55,0.25);
}

.service-visual {
  background: linear-gradient(145deg, var(--black-700), var(--black-600));
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  overflow: hidden;
}

.service-visual img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.service-icon {
  width: 64px;
  height: 64px;
  color: var(--gold-400);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.service-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold-400);
  transition: gap var(--transition);
}

.service-link:hover {
  gap: 12px;
  color: var(--gold-300);
}

/* ===== Industries ===== */
.industries {
  background: var(--black);
  color: var(--white);
}

.industries .section-title {
  color: var(--white);
}

.industries .section-desc {
  color: var(--white-50);
}

.industries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1000px) {
  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.industry-card {
  background: var(--white-04);
  border: 1px solid var(--white-08);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}

.industry-card:hover {
  background: var(--white-08);
  border-color: rgba(212,175,55,0.3);
  transform: translateY(-4px);
}

.industry-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  color: var(--gold-400);
}

.industry-icon svg {
  width: 100%;
  height: 100%;
}

.industry-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.industry-card p {
  font-size: 0.9rem;
  color: var(--white-50);
  line-height: 1.6;
}

/* ===== Why EOS ===== */
.why-eos {
  background: var(--black-900);
}

.why-grid {
  display: grid;
  gap: 48px;
}

@media (min-width: 900px) {
  .why-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: start;
  }
}

.why-content .lead {
  margin-top: 16px;
  color: var(--text-muted);
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.feature-item:hover {
  background: var(--black-800);
  box-shadow: var(--shadow);
  border: 1px solid var(--white-08);
}

.feature-num {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold-400);
  min-width: 28px;
  padding-top: 2px;
}

.feature-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ===== Process / Timeline ===== */
.process {
  background: var(--black);
}

.timeline {
  display: grid;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 700px) {
  .timeline {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

.timeline-item {
  position: relative;
}

.timeline-marker {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--black-700), var(--black-600));
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  border: 1px solid var(--white-08);
}

.timeline-content {
  padding: 28px;
  background: var(--black-800);
  border: 1px solid var(--white-08);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.timeline-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.timeline-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,175,55,0.25);
}

/* ===== Contact ===== */
.contact {
  background: var(--black-900);
}

.contact-grid {
  display: grid;
  gap: 48px;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
}

.contact-info .lead {
  margin: 16px 0 36px;
  color: var(--text-muted);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--black-700), var(--black-600));
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white-08);
}

.contact-item h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-item a {
  color: var(--text-muted);
}

.contact-item a:hover {
  color: var(--gold-400);
}

.contact-form-wrapper {
  padding: 40px;
  background: var(--black-800);
  border: 1px solid var(--white-08);
  border-radius: var(--radius);
}

.contact-form-wrapper h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

@media (min-width: 500px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white-90);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--black-700);
  border: 1.5px solid var(--white-12);
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
  background: var(--black-600);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23a0a0a0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  color: var(--text);
}

.form-group select option {
  background: var(--black-800);
  color: var(--text);
}

/* ===== Footer ===== */
.footer {
  background: var(--black);
  color: var(--white-50);
  padding: 80px 0 0;
  border-top: 1px solid var(--white-08);
}

.footer-grid {
  display: grid;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--white-08);
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand .logo-text {
  display: block;
  color: var(--white-50);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--white-50);
  transition: color var(--transition);
}

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

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 10px;
  line-height: 1.5;
}

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

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

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--white-30);
}

/* ===== Particles ===== */
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(212,175,55,0.4);
  border-radius: 50%;
  animation: float linear infinite;
}

@keyframes float {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ===== Scroll Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== Responsive tweaks ===== */
@media (max-width: 600px) {
  .section { padding: 72px 0; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 28px 20px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
}

/* ===== Vacancies page dark overrides (shared stylesheet) ===== */
.vacancy-card,
.job-card,
.admin-card {
  background: var(--black-800) !important;
  border-color: var(--white-08) !important;
  color: var(--text) !important;
}

input, select, textarea {
  color-scheme: dark;
}
