/* ========================================
   GlobeRemote Design System
   Based on Brandbook 2026
   ======================================== */

/* --- Brand Fonts (Google Fonts alternatieven) ---
   GLOBE: Outfit (alternatief voor Loew Next) - geometrisch, krachtig
   REMOTE: Josefin Sans Light (alternatief voor October Condensed Devanagari) - sierlijk, wijd
   TODO: Vervang door echte brand fonts (Loew Next + October Condensed Devanagari) zodra beschikbaar
   --- */

/* --- CSS Variables / Design Tokens --- */
:root {
  /* Brand Colors */
  --meridian-red: #E63123;
  --latitude-rose: #BF195A;
  --horizon-orange: #F08145;
  --atlas-grey: #575756;
  --ivory: #FFF8F5;
  --deep-night: #000000;
  --white: #FFFFFF;

  /* Functional */
  --bg-primary: var(--ivory);
  --bg-dark: var(--deep-night);
  --bg-red: var(--meridian-red);
  --text-primary: var(--deep-night);
  --text-secondary: var(--atlas-grey);
  --text-light: var(--white);
  --accent: var(--meridian-red);
  --accent-rose: var(--latitude-rose);
  --accent-orange: var(--horizon-orange);

  /* Spacing */
  --container-max: 1120px;
  --container-md: 880px;
  --section-padding: 80px;
  --section-padding-mobile: 48px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Transitions */
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.6;
  font-size: 16px;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; }

p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.text-red { color: var(--meridian-red); }
.text-rose { color: var(--latitude-rose); }
.text-orange { color: var(--horizon-orange); }
.text-white { color: var(--white); }
.text-grey { color: var(--atlas-grey); }

/* --- Layout --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

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

.section {
  padding: var(--section-padding) 0;
}

.section-mobile {
  padding: var(--section-padding-mobile) 0;
}

/* --- Backgrounds --- */
.bg-ivory { background-color: var(--ivory); }
.bg-dark { background-color: var(--deep-night); }
.bg-red { background-color: var(--meridian-red); }
.bg-rose { background-color: var(--latitude-rose); }
.bg-white { background-color: var(--white); }

/* --- Header / Navigation --- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-primary);
  border-bottom: 1px solid rgba(87, 87, 86, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text-primary);
}

.logo img {
  height: 48px;
  width: auto;
}

.logo .globe { letter-spacing: -2px; }
.logo .remote {
  font-weight: 300;
  letter-spacing: 4px;
  font-size: 20px;
}

.logo-mark {
  width: 40px;
  height: 40px;
}

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

.nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.nav a:hover {
  color: var(--meridian-red);
}

/* Nav dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: white;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  padding: 12px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 200;
  border: 1px solid rgba(87, 87, 86, 0.08);
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--deep-night);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-dropdown-menu a:hover {
  background: var(--ivory);
  color: var(--meridian-red);
}
.nav-dropdown-menu .dot {
  width: 8px;
  height: 8px;
  background: var(--meridian-red);
  border-radius: 50%;
  flex-shrink: 0;
}

.nav-cta {
  background: var(--meridian-red);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-cta:hover {
  background: #cc2a1e;
  color: var(--white) !important;
}

.menu-toggle {
  display: none;
  background: var(--meridian-red);
  border: none;
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

/* --- Hero --- */
.hero {
  background: var(--bg-dark);
  color: var(--white);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

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

.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--meridian-red);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image img {
  border-radius: var(--radius-xl);
  max-height: 420px;
  object-fit: cover;
  width: 100%;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--meridian-red);
  color: var(--white);
}

.btn-primary:hover {
  background: #cc2a1e;
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--white);
  color: var(--text-primary);
  border: 2px solid var(--text-primary);
}

.btn-secondary:hover {
  background: var(--text-primary);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--text-primary);
}

.btn-icon {
  width: 32px;
  height: 32px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.btn-primary .btn-icon {
  background: rgba(255, 255, 255, 0.2);
}

.btn:hover .btn-icon {
  background: var(--deep-night);
}

.btn:hover .btn-icon svg {
  fill: var(--white);
}

/* --- USP Bar --- */
.usp-bar {
  background: var(--meridian-red);
  padding: 12px 0;
}

.usp-bar-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

.usp-dot {
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  opacity: 0.6;
}

/* --- Location Cards --- */
.locations-section {
  padding: var(--section-padding) 0;
}

.locations-section h2 {
  text-align: center;
  margin-bottom: 12px;
}

.locations-section > .container > p {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

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

.location-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: var(--transition);
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.location-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--white);
}

.location-card-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.location-card-overlay p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

.location-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--meridian-red);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
}

/* --- How It Works --- */
.how-it-works {
  background: var(--bg-dark);
  color: var(--white);
  padding: var(--section-padding) 0;
}

.how-it-works h2 {
  text-align: center;
  color: var(--white);
  margin-bottom: 48px;
}

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

.step-card {
  text-align: center;
  padding: 32px 24px;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--meridian-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  margin: 0 auto 20px;
}

.step-card h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.step-card p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
}

/* --- Vacancies Section --- */
.vacancies-section {
  padding: var(--section-padding) 0;
}

.vacancies-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.vacancy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.vacancy-card {
  background: var(--white);
  border: 1px solid rgba(87,87,86,0.15);
  border-radius: var(--radius-xl);
  padding: 24px 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vacancy-card:hover {
  border-color: var(--meridian-red);
  box-shadow: 0 4px 24px rgba(230, 49, 35, 0.08);
  transform: translateY(-2px);
}

.vacancy-card h3 {
  font-size: 1.125rem;
  color: var(--text-primary);
}

.vacancy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vacancy-tag {
  background: var(--ivory);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.vacancy-tag svg {
  width: 14px;
  height: 14px;
  fill: var(--meridian-red);
}

.vacancy-card-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}

.vacancy-arrow {
  width: 36px;
  height: 36px;
  background: var(--meridian-red);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.vacancy-card:hover .vacancy-arrow {
  background: var(--deep-night);
}

.vacancy-arrow svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
}

/* --- CTA Section --- */
.cta-section {
  background: var(--meridian-red);
  padding: var(--section-padding) 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- About / Value Props --- */
.values-section {
  padding: var(--section-padding) 0;
}

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

.value-card {
  padding: 32px;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid rgba(87,87,86,0.1);
}

.value-card-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--meridian-red);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
}

.value-card h3 {
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
}

/* --- Working Together Badge --- */
.wt-badge {
  display: inline-block;
  background: var(--meridian-red);
  color: var(--white);
  padding: 8px 20px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* --- Footer --- */
.footer {
  background: #1e2a3a;
  color: var(--white);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-top: 16px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--meridian-red);
}

.footer-tagline {
  color: var(--meridian-red);
  font-weight: 700;
  font-size: 14px;
  margin-top: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social:hover {
  background: var(--meridian-red);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
}

/* --- Contact Cards --- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contact-card {
  border: 2px solid var(--deep-night);
  border-radius: var(--radius-xl);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: var(--meridian-red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.contact-card span {
  font-size: 14px;
  color: var(--text-secondary);
}

.contact-card a {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-card a:hover {
  color: var(--meridian-red);
}

/* --- Landing Page Hero --- */
.landing-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.landing-hero-content {
  background: var(--bg-dark);
  color: var(--white);
  padding: 80px 48px 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.landing-hero-content h1 {
  color: var(--meridian-red);
}

.landing-hero-content p {
  color: rgba(255,255,255,0.8);
  margin: 16px 0 32px;
}

.landing-hero-image {
  position: relative;
}

.landing-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Vacancy Detail --- */
.vacancy-detail {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px;
}

.vacancy-detail h1 {
  margin-bottom: 16px;
}

.vacancy-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.vacancy-detail-body h2 {
  font-size: 1.25rem;
  margin: 32px 0 12px;
}

.vacancy-detail-body ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.vacancy-detail-body li {
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.vacancy-apply-box {
  background: var(--deep-night);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  margin-top: 48px;
}

.vacancy-apply-box h3 {
  color: var(--white);
  margin-bottom: 12px;
}

.vacancy-apply-box p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(87,87,86,0.2);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: inherit;
  background: var(--white);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--meridian-red);
  box-shadow: 0 0 0 3px rgba(230, 49, 35, 0.1);
}

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

/* --- Zigzag Steps --- */
.zigzag-steps {
  display: flex;
  flex-direction: column;
  gap: 56px;
  position: relative;
}

.zigzag-steps::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 8%;
  bottom: 8%;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(230, 49, 35, 0.3) 0,
    rgba(230, 49, 35, 0.3) 6px,
    transparent 6px,
    transparent 14px
  );
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.zigzag-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.zigzag-step.reverse {
  direction: rtl;
}

.zigzag-step.reverse > * {
  direction: ltr;
}

.zigzag-visual {
  position: relative;
  border-radius: 32px;
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  box-shadow: 0 20px 60px rgba(230, 49, 35, 0.08);
  border: 1px solid rgba(230, 49, 35, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.zigzag-step:hover .zigzag-visual {
  transform: translateY(-6px);
  box-shadow: 0 28px 80px rgba(230, 49, 35, 0.15);
}

.step-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.zigzag-content {
  padding: 12px 0;
}

.step-tag {
  display: inline-block;
  background: rgba(230, 49, 35, 0.1);
  color: var(--meridian-red);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.zigzag-content h3 {
  font-size: 1.75rem;
  margin-bottom: 12px;
  color: #2d2d2d;
  letter-spacing: -0.5px;
}

.zigzag-content p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.7;
  color: var(--atlas-grey);
}

.step-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #2d2d2d;
  font-weight: 500;
}

.step-features li::before {
  content: '';
  width: 22px;
  height: 22px;
  background: var(--meridian-red);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='white' d='M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

/* --- Premium Value Cards --- */
.value-card-premium {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #fff8f5 100%);
  border-radius: 28px;
  padding: 48px 36px 36px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  overflow: hidden;
}

.value-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.value-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.1);
  border-color: var(--accent);
}

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

.value-icon {
  width: 72px;
  height: 72px;
  background: var(--accent);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease;
}

.value-card-premium:hover .value-icon {
  transform: scale(1.08) rotate(-4deg);
}

.value-number {
  position: absolute;
  top: 36px;
  right: 36px;
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.12;
  line-height: 1;
}

.value-card-premium h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #2d2d2d;
}

.value-card-premium p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--atlas-grey);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .zigzag-step,
  .zigzag-step.reverse {
    grid-template-columns: 1fr;
    gap: 24px;
    direction: ltr;
  }
  .zigzag-steps::before {
    display: none;
  }
  .zigzag-visual {
    min-height: 220px;
    padding: 36px 28px;
  }
  .value-card-premium {
    padding: 36px 28px 28px;
  }
  .value-card-premium .value-number {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-image {
    order: -1;
  }

  .hero {
    padding: 48px 0 64px;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .location-card {
    aspect-ratio: 16/9;
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

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

  .landing-hero {
    grid-template-columns: 1fr;
  }

  .landing-hero-content {
    padding: 48px 24px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .section {
    padding: var(--section-padding-mobile) 0;
  }
}

@media (max-width: 480px) {
  .usp-bar-inner {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

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

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