@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Outfit:wght@600;700;800&display=swap');

:root {
  --yellow: #F5C400;
  --yellow-light: #FFD633;
  --orange: #F07A15;
  --orange-dark: #D8650A;
  --dark: #1a1a1f;
  --dark-soft: #2d2d35;
  --text: #2a2a32;
  --text-muted: #5c5c68;
  --bg: #f7f6f3;
  --bg-white: #ffffff;
  --border: #e4e2dc;
  --shadow-sm: 0 2px 8px rgba(26, 26, 31, 0.06);
  --shadow-md: 0 8px 30px rgba(26, 26, 31, 0.1);
  --shadow-lg: 0 16px 48px rgba(26, 26, 31, 0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Outfit', 'DM Sans', sans-serif;
  --header-height: 72px;
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  margin: 0;
  background: var(--bg);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--orange-dark); transition: color var(--transition); }
a:hover { color: var(--orange); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--dark);
  margin-top: 0;
}

h1 { font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem); font-weight: 800; }
h2 { font-size: clamp(1.25rem, 2.5vw + 0.5rem, 2rem); font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: clamp(1.05rem, 1.5vw + 0.5rem, 1.15rem); font-weight: 700; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 1.25rem);
}

.center { text-align: center; }
.muted { color: var(--text-muted); font-size: 0.9rem; }
.lead { font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem); color: var(--text-muted); max-width: 680px; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 3px solid var(--yellow);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
}

.brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  border-radius: 10px;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.brand-text strong { color: var(--yellow); font-weight: 800; }

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background var(--transition), color var(--transition);
}

.nav a:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }

.nav a.active:not(.cta) { color: var(--yellow); background: rgba(245, 196, 0, 0.1); }

.nav .cta {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--dark) !important;
  font-weight: 700;
  margin-left: 0.5rem;
}

.nav .cta:hover {
  background: linear-gradient(135deg, var(--yellow-light), var(--orange));
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.4rem;
  padding: 0;
  border-radius: 8px;
  cursor: pointer;
  line-height: 1;
  transition: background var(--transition);
}

.nav-toggle:hover { background: rgba(255, 255, 255, 0.18); }

/* ── Hero ── */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background:
    linear-gradient(135deg, rgba(26, 26, 31, 0.92) 0%, rgba(45, 45, 53, 0.88) 50%, rgba(240, 122, 21, 0.75) 100%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 20px,
      rgba(245, 196, 0, 0.04) 20px,
      rgba(245, 196, 0, 0.04) 40px
    );
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(245, 196, 0, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(240, 122, 21, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
  background: rgba(245, 196, 0, 0.15);
  border: 1px solid rgba(245, 196, 0, 0.35);
  color: var(--yellow);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.hero h1 {
  color: #fff;
  font-size: clamp(1.5rem, 5vw + 0.75rem, 2.75rem);
  max-width: 780px;
  margin-bottom: 1.25rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero h1 .highlight {
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero > .container > p,
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 620px;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: stretch;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 44px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff !important;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 0.95rem);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(240, 122, 21, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
  max-width: 100%;
  word-break: break-word;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240, 122, 21, 0.45);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  box-shadow: none;
  color: #fff !important;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  box-shadow: none;
}

.btn-dark {
  background: var(--dark);
  box-shadow: var(--shadow-sm);
}

.btn-dark:hover { background: var(--dark-soft); }

/* ── Stats / Trust ── */
.stats-section {
  background: var(--dark);
  padding: 0;
  margin-top: -1px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 1.75rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.stat-item:last-child { border-right: none; }

.stat-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }

.stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--yellow);
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
}

/* ── Sections ── */
.section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section-alt { background: var(--bg-white); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.section-header .lead { margin: 0.75rem auto 0; }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

/* ── Features / Lists ── */
.features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--bg-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.features li::before {
  content: '✓';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* ── Cards ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(245, 196, 0, 0.4);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(245, 196, 0, 0.2), rgba(240, 122, 21, 0.15));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card h3 { margin-bottom: 0.5rem; }

.card p { color: var(--text-muted); font-size: 0.95rem; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-grid article,
.card-grid article {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-grid article:hover,
.card-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-grid .card-icon { margin-bottom: 1rem; }

/* ── Process steps ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: step;
}

.process-step {
  position: relative;
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0 auto 0.75rem;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--dark);
  font-family: var(--font-display);
  font-weight: 800;
  border-radius: 50%;
  font-size: 1rem;
}

.process-step h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.process-step p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

.process-arrow {
  display: none;
}

/* ── Info blocks ── */
.info-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.info-block.reverse { direction: rtl; }
.info-block.reverse > * { direction: ltr; }

.info-visual {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.info-visual::after {
  content: '🚧';
  position: absolute;
  bottom: -10px;
  right: 10px;
  font-size: 5rem;
  opacity: 0.15;
}

.info-visual h3 { color: var(--yellow); margin-bottom: 1rem; }
.info-visual p { color: rgba(255, 255, 255, 0.85); }

.situation-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag {
  display: inline-block;
  background: rgba(245, 196, 0, 0.15);
  border: 1px solid rgba(245, 196, 0, 0.3);
  color: var(--yellow);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ── CTA strip ── */
.cta-strip {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
  padding: 2.5rem 0;
  text-align: center;
}

.cta-strip h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: 0.5rem;
}

.cta-strip p { font-size: 1.05rem; margin-bottom: 1.25rem; }
.cta-strip a:not(.btn) { color: var(--dark); font-weight: 700; }

/* ── Page hero (subpages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 60%, rgba(240, 122, 21, 0.3) 100%);
  color: #fff;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  margin-bottom: 0;
}

.page-hero h1 { color: #fff; margin-bottom: 0.75rem; }
.page-hero .lead { color: rgba(255, 255, 255, 0.85); max-width: 640px; }

.page-content { padding: clamp(2rem, 4vw, 3rem) 0 3rem; }

/* ── Company facts / Contact cards ── */
.company-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

.company-facts article,
.contact-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.company-facts article:hover,
.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.company-facts h3,
.contact-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: var(--dark);
}

.company-facts h3::before,
.contact-card h3 .icon { font-size: 1.25rem; }

.company-facts p,
.contact-card p { margin: 0; }

.contact-card a {
  font-weight: 600;
  font-size: 1.05rem;
  word-break: break-word;
}

.contact-highlight {
  background: linear-gradient(135deg, var(--dark), var(--dark-soft));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}

.contact-highlight h2 { color: var(--yellow); margin-bottom: 0.5rem; }
.contact-highlight p { color: rgba(255, 255, 255, 0.85); margin-bottom: 1.25rem; }

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.contact-highlight .btn-outline {
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}

.contact-highlight .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

.opening-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 196, 0, 0.12);
  border: 1px solid rgba(245, 196, 0, 0.25);
  color: var(--yellow);
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 1.5rem 0;
}

/* ── Service detail sections ── */
.service-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:last-of-type { border-bottom: none; }

.service-detail-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.service-detail h2 { margin-bottom: 0.5rem; font-size: 1.35rem; }
.service-detail p { color: var(--text-muted); }
.service-detail ul { margin: 0.75rem 0 0; padding-left: 1.25rem; color: var(--text-muted); }
.service-detail li { margin-bottom: 0.35rem; }

/* ── Gallery ── */
.gallery-section { padding: clamp(2rem, 4vw, 3rem) 0; }

.gallery-intro {
  color: var(--text-muted);
  margin: -0.25rem 0 1.5rem;
  max-width: 560px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-white);
  aspect-ratio: 3/2;
  min-height: 220px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item:hover,
.gallery-item:focus-visible {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.05);
}

/* ── Lightbox ── */
body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 3vw, 1.5rem);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 0.25s, opacity 0.25s ease;
}

.lightbox.open {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s, opacity 0.25s ease;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 31, 0.92);
  cursor: pointer;
}

.lightbox-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 1200px);
  max-height: calc(100dvh - 2rem);
  pointer-events: none;
}

.lightbox-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  max-width: 100%;
  max-height: calc(100dvh - 2rem);
  pointer-events: auto;
}

.lightbox-img {
  max-width: 100%;
  max-height: calc(100dvh - 3rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-family: var(--font-display);
  line-height: 1;
  transition: background var(--transition), transform var(--transition), color var(--transition);
}

.lightbox-close {
  top: clamp(0.5rem, 2vw, 1rem);
  right: clamp(0.5rem, 2vw, 1rem);
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--dark);
  font-size: 1.75rem;
  font-weight: 700;
  z-index: 2;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  transform: scale(1.08);
  background: linear-gradient(135deg, var(--yellow-light), var(--orange));
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lightbox-prev { left: clamp(0.25rem, 2vw, 0.5rem); }
.lightbox-next { right: clamp(0.25rem, 2vw, 0.5rem); }

.lightbox-prev:hover,
.lightbox-prev:focus-visible,
.lightbox-next:hover,
.lightbox-next:focus-visible {
  background: rgba(245, 196, 0, 0.25);
  border-color: rgba(245, 196, 0, 0.5);
  color: var(--yellow);
}

.lightbox-prev:hover,
.lightbox-prev:focus-visible {
  transform: translateY(-50%) scale(1.05);
}

.lightbox-next:hover,
.lightbox-next:focus-visible {
  transform: translateY(-50%) scale(1.05);
}

.lightbox-prev[hidden],
.lightbox-next[hidden] {
  display: none;
}

.gallery-empty {
  color: var(--text-muted);
  padding: 2rem;
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  background: var(--bg-white);
  grid-column: 1 / -1;
}

/* ── Footer ── */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding: 3rem 0 2rem;
}

.footer-brand .brand { margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; }

.footer-col h4 {
  color: var(--yellow);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li { margin-bottom: 0.5rem; }

.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom .socials { margin-top: 0.5rem; }
.footer-bottom .socials a { color: var(--yellow); font-weight: 600; }

/* ── Apply / Werken bij ── */
.apply-box {
  background: var(--bg-white);
  border: 2px solid var(--yellow);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
  box-shadow: var(--shadow-md);
}

.apply-box h3 { margin-bottom: 0.75rem; }
.apply-box p { color: var(--text-muted); margin-bottom: 1.25rem; }

.service-grid > *,
.card-grid > *,
.features-grid > *,
.company-facts > *,
.gallery > *,
.stats-grid > *,
.process-grid > * {
  min-width: 0;
}

/* ── Responsive ── */
/* Desktop: 1025px+ (default styles above) */

/* Tablet landscape / small laptop: 769px–1024px */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255, 255, 255, 0.08); }

  .process-grid { grid-template-columns: repeat(2, 1fr); }

  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .company-facts { grid-template-columns: repeat(2, 1fr); }

  .gallery { gap: 1.25rem; }

  .info-block { grid-template-columns: 1fr; gap: 1.5rem; }
  .info-block.reverse { direction: ltr; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2.5rem 0 1.75rem;
  }

  .footer-brand { grid-column: 1 / -1; }
}

/* Tablet portrait: 481px–768px */
@media (max-width: 768px) {
  :root { --header-height: 64px; }

  .site-header .container { position: relative; }

  .brand { font-size: 1.05rem; }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-soft);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    border-bottom: 3px solid var(--yellow);
    box-shadow: var(--shadow-lg);
    z-index: 101;
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
  }

  .nav.open { display: flex; }

  .nav a {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0.65rem 1rem;
    font-size: 1rem;
  }

  .nav .cta {
    margin-left: 0;
    margin-top: 0.5rem;
    justify-content: center;
  }

  .nav-toggle { display: inline-flex; }

  .hero { padding: clamp(2.5rem, 7vw, 4rem) 0; }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.35rem 0.85rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn { width: 100%; }

  .section { padding: clamp(2rem, 4vw, 3rem) 0; }
  .section-header { margin-bottom: 2rem; }

  .page-hero { padding: clamp(1.75rem, 4vw, 2.5rem) 0; }
  .page-content { padding: clamp(1.5rem, 3vw, 2.5rem) 0 2.5rem; }

  .process-grid { grid-template-columns: repeat(2, 1fr); }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem 0;
  }

  .service-detail-icon {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }

  .info-visual { padding: 1.75rem; }
  .info-visual::after { font-size: 3.5rem; }

  .cta-strip { padding: 2rem 0; }
  .cta-strip p { font-size: 1rem; }

  .contact-highlight { padding: 1.5rem; margin: 1.5rem 0; }

  .apply-box { padding: 1.5rem; margin: 1.5rem 0; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 0 1.5rem;
  }

  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
    gap: 1rem;
  }

  .gallery-item { min-height: 180px; }

  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .contact-highlight .btn,
  .contact-actions .btn,
  .apply-box .btn,
  .cta-strip .btn {
    width: 100%;
  }
}

/* Mobile phones: max 480px */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }

  .brand-text { font-size: 0.95rem; }

  .stats-grid { grid-template-columns: 1fr; }

  .stat-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 1rem;
  }

  .stat-item:last-child { border-bottom: none; }

  .stat-value { font-size: 1.35rem; }

  .process-grid { grid-template-columns: 1fr; }

  .service-grid,
  .card-grid,
  .features-grid,
  .company-facts { grid-template-columns: 1fr; }

  .gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery-item { min-height: 200px; }

  .opening-note {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }

  .situation-tags { gap: 0.4rem; }

  .tag { font-size: 0.75rem; }

  .footer-bottom { font-size: 0.8rem; padding: 1rem 0; }

  .contact-card a { font-size: 1rem; }
}
