/* ============================================
   OPMARS RECRUITMENT — style.css
   Antraciet #1C1C1C | Oranje #E8611A
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

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

:root {
  --anthracite: #1C1C1C;
  --anthracite-mid: #252525;
  --anthracite-light: #2E2E2E;
  --anthracite-border: #383838;
  --orange: #E8611A;
  --orange-dark: #C9521A;
  --orange-light: #FF7A35;
  --white: #FFFFFF;
  --off-white: #F5F3F0;
  --grey: #9A9A9A;
  --grey-light: #C8C8C8;
  --font-head: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.55);
  --radius: 4px;
  --radius-lg: 8px;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--anthracite);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  letter-spacing: 0.03em;
  line-height: 1.05;
}
h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h4 { font-size: 1.25rem; }

p { color: var(--grey-light); max-width: 68ch; }
.section-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 0.75rem;
}

/* ---- Layout Utilities ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 2rem; }

section { padding: 6rem 0; }
.section-dark { background: var(--anthracite); }
.section-mid { background: var(--anthracite-mid); }
.section-light { background: var(--anthracite-light); }

.text-orange { color: var(--orange); }
.text-white { color: var(--white); }
.text-grey { color: var(--grey); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.gap-3 { gap: 3rem; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-light);
  border-color: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,97,26,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--anthracite-border);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--orange);
  border-color: transparent;
  padding-left: 0;
}
.btn-ghost:hover { gap: 1rem; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1rem; }

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition);
}
.nav.scrolled {
  background: rgba(28,28,28,0.97);
  backdrop-filter: blur(12px);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--anthracite-border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 50px;
  width: auto;
  display: block;
}
.nav-logo .logo-mark {
  width: 36px; height: 36px;
  background: var(--orange);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo .logo-mark svg { width: 22px; height: 22px; fill: white; }
.nav-logo span.accent { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey-light);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 1rem; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--anthracite);
  z-index: 999;
  padding: 6rem 2rem 2rem;
  flex-direction: column;
  gap: 2.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: var(--white);
  border-bottom: 1px solid var(--anthracite-border);
  padding-bottom: 1.25rem;
}
.nav-mobile a:hover { color: var(--orange); }

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--anthracite);
  padding-top: 7rem;
  padding-bottom: 5rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(232,97,26,0.08) 0%, transparent 50%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 79px,
      rgba(255,255,255,0.015) 79px,
      rgba(255,255,255,0.015) 80px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 79px,
      rgba(255,255,255,0.015) 79px,
      rgba(255,255,255,0.015) 80px
    );
}
.hero-diagonal {
  position: absolute;
  right: -5%;
  top: 0; bottom: 0;
  width: 45%;
  background: linear-gradient(135deg, var(--anthracite-mid) 0%, var(--anthracite-light) 100%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  border-left: 3px solid var(--orange);
}
.hero-diagonal-inner {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(232,97,26,0.04) 20px,
    rgba(232,97,26,0.04) 21px
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow-line {
  width: 48px; height: 2px;
  background: var(--orange);
}
.hero-eyebrow span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
}
.hero h1 {
  margin-bottom: 1.5rem;
  line-height: 1;
}
.hero h1 .line-2 { color: var(--orange); }
.hero p {
  font-size: 1.1rem;
  color: var(--grey-light);
  margin-bottom: 2.5rem;
  max-width: 52ch;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-stats {
  position: relative;
  z-index: 2;
  margin-top: 4rem;
}
.hero-stats-inner {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--anthracite-border);
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: var(--orange);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--grey);
  margin-top: 0.25rem;
}

/* ---- Orange Banner ---- */
.orange-banner {
  background: var(--orange);
  padding: 1.25rem 0;
  overflow: hidden;
}
.orange-banner-track {
  display: flex;
  gap: 3rem;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.orange-banner-item {
  font-family: var(--font-head);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}
.orange-banner-item .dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- Sectors ---- */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--anthracite-border);
  border: 1.5px solid var(--anthracite-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.sector-card {
  background: var(--anthracite-mid);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
  cursor: default;
}
.sector-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.sector-card:hover { background: var(--anthracite-light); }
.sector-card:hover::before { transform: scaleX(1); }
.sector-icon {
  width: 56px; height: 56px;
  background: rgba(232,97,26,0.12);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  transition: background var(--transition);
}
.sector-card:hover .sector-icon { background: rgba(232,97,26,0.2); }
.sector-icon svg { width: 28px; height: 28px; stroke: var(--orange); fill: none; stroke-width: 1.8; }
.sector-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.sector-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--grey);
}

/* ---- Sector cards met foto ---- */
.sectors-grid-photo {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--anthracite-border);
  border: 1.5px solid var(--anthracite-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.sector-card-photo {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  overflow: hidden;
  background: var(--anthracite-mid);
  cursor: default;
}
.sector-card-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--photo);
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transition: opacity var(--transition), transform 0.6s ease;
  z-index: 0;
}
.sector-card-photo:hover::before {
  opacity: 0.5;
  transform: scale(1.05);
}
.sector-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,28,28,0.95) 40%, rgba(28,28,28,0.3) 100%);
  z-index: 1;
}
.sector-card-body {
  position: relative;
  z-index: 2;
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.sector-card-body .sector-icon { margin-bottom: 1rem; }
.sector-card-accent {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  z-index: 3;
}
.sector-card-photo:hover .sector-card-accent { transform: scaleX(1); }

@media (max-width: 1024px) {
  .sectors-grid-photo { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .sectors-grid-photo { grid-template-columns: 1fr; }
  .sector-card-photo { min-height: 200px; }
}

/* ---- Steps / Werkwijze ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 42px; left: calc(16.66% + 1.5rem); right: calc(16.66% + 1.5rem);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
}
.step-card {
  padding: 0 2rem;
  text-align: center;
}
.step-num {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--anthracite-light);
  border: 2px solid var(--anthracite-border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem;
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--orange);
  position: relative;
  z-index: 2;
  transition: all var(--transition);
}
.step-card:hover .step-num {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.step-card h3 { margin-bottom: 1rem; }
.step-card p { margin: 0 auto; text-align: center; }

/* ---- Stats bar ---- */
.stats-bar {
  background: var(--orange);
  padding: 3rem 0;
}
.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; }
.stat-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* ---- CTA Block ---- */
.cta-block {
  background: var(--anthracite-mid);
  border: 1px solid var(--anthracite-border);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  text-align: center;
}
.cta-block h2 { margin-bottom: 1rem; }
.cta-block p { margin: 0 auto 2rem; max-width: 52ch; text-align: center; }
.cta-block .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- Info Cards ---- */
.info-card {
  background: var(--anthracite-mid);
  border: 1px solid var(--anthracite-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition);
}
.info-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}
.info-card-icon {
  width: 48px; height: 48px;
  background: rgba(232,97,26,0.12);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.info-card-icon svg { width: 24px; height: 24px; stroke: var(--orange); fill: none; stroke-width: 1.8; }
.info-card h4 { margin-bottom: 0.5rem; color: var(--white); }
.info-card p { font-size: 0.9rem; }

/* ---- Process Steps ---- */
.process-list { display: flex; flex-direction: column; gap: 0; }
.process-item {
  display: flex;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--anthracite-border);
  position: relative;
}
.process-item:last-child { border-bottom: none; }
.process-item-num {
  font-family: var(--font-head);
  font-size: 4rem;
  color: rgba(232,97,26,0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 70px;
  transition: color var(--transition);
}
.process-item:hover .process-item-num { color: var(--orange); }
.process-item-content h3 { margin-bottom: 0.5rem; font-size: 1.5rem; }
.process-item-content p { font-size: 0.9rem; }

/* ---- Vacatures / Jobs ---- */
.jobs-filters {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-group { display: flex; flex-direction: column; gap: 0.4rem; }
.filter-group label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); font-weight: 600; }
.filter-group select {
  background: var(--anthracite-mid);
  border: 1px solid var(--anthracite-border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.7rem 2.5rem 0.7rem 1rem;
  border-radius: var(--radius);
  appearance: none;
  cursor: pointer;
  transition: border-color var(--transition);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A9A9A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
}
.filter-group select:focus { outline: none; border-color: var(--orange); }

.jobs-grid { display: flex; flex-direction: column; gap: 1rem; }
.job-card {
  background: var(--anthracite-mid);
  border: 1px solid var(--anthracite-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: all var(--transition);
  cursor: pointer;
}
.job-card:hover {
  border-color: var(--orange);
  background: var(--anthracite-light);
  transform: translateX(4px);
}
.job-sector-badge {
  flex-shrink: 0;
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.badge-bouw { background: rgba(232,97,26,0.15); color: var(--orange); }
.badge-techniek { background: rgba(100,150,232,0.15); color: #6496E8; }
.badge-productie { background: rgba(100,200,100,0.12); color: #64C864; }
.badge-logistiek { background: rgba(232,200,50,0.12); color: #E8C832; }

.job-card-main { flex: 1; }
.job-card-title { font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 0.25rem; }
.job-card-meta { display: flex; gap: 1.5rem; font-size: 0.82rem; color: var(--grey); }
.job-card-meta span { display: flex; align-items: center; gap: 0.35rem; }
.job-card-meta svg { width: 13px; height: 13px; stroke: var(--grey); fill: none; stroke-width: 2; }
.job-card-arrow { color: var(--grey); transition: all var(--transition); }
.job-card:hover .job-card-arrow { color: var(--orange); transform: translateX(4px); }
.job-card-arrow svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }

.jobs-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--grey);
  display: none;
}
.jobs-empty.visible { display: block; }

/* ---- Fee Block ---- */
.fee-block {
  background: var(--orange);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fee-block::before {
  content: '20%';
  position: absolute;
  right: -1rem; top: -2rem;
  font-family: var(--font-head);
  font-size: 14rem;
  color: rgba(255,255,255,0.08);
  line-height: 1;
}
.fee-num {
  font-family: var(--font-head);
  font-size: 6rem;
  color: var(--white);
  line-height: 1;
}
.fee-label { font-size: 1rem; color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; }
.fee-block p { color: rgba(255,255,255,0.85); margin: 0 auto; max-width: 48ch; }

/* ---- Guarantee ---- */
.guarantee-card {
  background: var(--anthracite-light);
  border: 1px solid var(--anthracite-border);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
}
.guarantee-card h3 { margin-bottom: 0.75rem; }
.guarantee-card p { font-size: 0.95rem; }

/* ---- About ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.about-img-block { position: relative; }
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--anthracite-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--anthracite-border);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.about-img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 24px,
    rgba(232,97,26,0.05) 24px,
    rgba(232,97,26,0.05) 25px
  );
}
.about-img-label {
  font-family: var(--font-head);
  font-size: 4rem;
  color: var(--orange);
  opacity: 0.3;
  z-index: 1;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--orange);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  text-align: center;
  z-index: 2;
}
.about-badge .num {
  font-family: var(--font-head);
  font-size: 3rem;
  color: var(--white);
  line-height: 1;
}
.about-badge .label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
}
.about-content h2 { margin-bottom: 1.5rem; }
.about-content p { margin-bottom: 1.5rem; }
.values-list { display: flex; flex-direction: column; gap: 0.75rem; margin: 2rem 0; }
.value-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--grey-light);
}
.value-item::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

/* ---- Contact Form ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--grey-light);
}
.contact-detail-icon {
  width: 40px; height: 40px;
  background: rgba(232,97,26,0.12);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; stroke: var(--orange); fill: none; stroke-width: 1.8; }

.contact-form-card {
  background: var(--anthracite-mid);
  border: 1px solid var(--anthracite-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey); }
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--anthracite-light);
  border: 1px solid var(--anthracite-border);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,97,26,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { appearance: none; cursor: pointer; }
.form-type-toggle {
  display: flex;
  gap: 0;
  border: 1px solid var(--anthracite-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.form-type-toggle label {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--grey);
  border: none;
  background: transparent;
}
.form-type-toggle input[type="radio"] { display: none; }
.form-type-toggle input[type="radio"]:checked + label {
  background: var(--orange);
  color: var(--white);
}
.form-type-toggle label:hover { color: var(--white); }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success.visible { display: block; }
.form-success-icon {
  width: 64px; height: 64px;
  background: rgba(100,200,100,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.form-success-icon svg { width: 32px; height: 32px; stroke: #64C864; fill: none; stroke-width: 2; }

/* ---- Hero sub-pages ---- */
.page-hero {
  padding: 10rem 0 5rem;
  background: var(--anthracite);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 80% 50%, rgba(232,97,26,0.07) 0%, transparent 70%),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,0.015) 79px, rgba(255,255,255,0.015) 80px);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { font-size: 1.1rem; max-width: 60ch; }

/* ---- Footer ---- */
.footer {
  background: var(--anthracite);
  border-top: 1px solid var(--anthracite-border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.875rem;
  color: var(--grey);
  margin: 1rem 0 1.5rem;
  max-width: 30ch;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 2rem;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-logo .logo-mark {
  width: 32px; height: 32px;
  background: var(--orange);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
}
.footer-logo .logo-mark svg { width: 18px; height: 18px; fill: white; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--grey-light);
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--orange); }
.footer-slogan {
  font-family: var(--font-head);
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  color: var(--orange);
}
.footer-bottom {
  border-top: 1px solid var(--anthracite-border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--grey);
}

/* ---- Scroll Animations ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
[data-reveal="left"] { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal].revealed { opacity: 1; transform: none; }

[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-block { max-width: 400px; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }
  h1 { font-size: clamp(2.5rem, 10vw, 4rem); }
  h2 { font-size: clamp(1.75rem, 7vw, 3rem); }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-diagonal { display: none; }
  .hero-stats-inner { flex-direction: column; gap: 1.5rem; }
  .sectors-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
  .steps-grid::before { display: none; }
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .cta-block { padding: 2rem; }
  .fee-block { padding: 2rem; }
  .contact-form-card { padding: 1.5rem; }
  .job-card { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .stats-bar-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .grid-4 { grid-template-columns: 1fr; }
}
