/* ===========================================================
   Present24 — Onderhoudspagina
   =========================================================== */

:root {
  --petrol: #0c5f7d;
  --petrol-dark: #0a5169;
  --cyan: #18a8e8;
  --red: #e23b34;
  --ink: #2f3b40;
  --muted: #5d6b72;
  --line: #e6ebed;
  --bg: #f4f7f8;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Raleway", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

/* ---- Header ---- */
header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 22px clamp(20px, 6vw, 80px);
  display: flex;
  align-items: center;
}

.logo, .logo img {
  display: block;
  width: 200px;
  height: 58px;
}


/* ---- Main ---- */
main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 8vw, 100px) clamp(20px, 6vw, 80px);
}

.card {
  width: 100%;
  max-width: 720px;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--petrol);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 26px rgba(12, 95, 125, 0.07);
}

.badge .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(24, 168, 232, 0.5);
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(24, 168, 232, 0.5); }
  70%  { box-shadow: 0 0 0 12px rgba(24, 168, 232, 0); }
  100% { box-shadow: 0 0 0 0 rgba(24, 168, 232, 0); }
}

.gear-wrap {
  margin: 38px auto 30px;
  width: 132px;
  height: 132px;
  position: relative;
  display: grid;
  place-items: center;
}

.gear-wrap .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 18px 50px rgba(12, 95, 125, 0.13);
}

.gear {
  position: relative;
  width: 64px;
  height: 64px;
  color: var(--petrol);
}

.gear.big {
  animation: spin 9s linear infinite;
}

.gear.small {
  position: absolute;
  width: 34px;
  height: 34px;
  color: var(--cyan);
  right: 26px;
  bottom: 28px;
  animation: spin-rev 6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes spin-rev {
  to { transform: rotate(-360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .gear.big,
  .gear.small,
  .badge .dot {
    animation: none;
  }
}

h1 {
  font-size: clamp(28px, 4.6vw, 44px);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 16ch;
  margin: 0 auto;
  text-wrap: balance;
}

h1 .accent {
  color: var(--cyan);
}

.lead {
  margin: 22px auto 0;
  max-width: 46ch;
  font-size: clamp(16px, 2.1vw, 19px);
  line-height: 1.65;
  color: var(--muted);
  text-wrap: pretty;
}

.divider {
  width: 56px;
  height: 4px;
  border-radius: 4px;
  background: var(--cyan);
  margin: 34px auto 0;
}

.contact {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.contact a svg {
  width: 18px;
  height: 18px;
}

.contact .primary {
  background: var(--cyan);
  color: #fff;
  box-shadow: 0 10px 24px rgba(24, 168, 232, 0.32);
}

.contact .primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(24, 168, 232, 0.4);
}

.contact .ghost {
  background: #fff;
  color: var(--petrol);
  border: 1px solid var(--line);
}

.contact .ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(12, 95, 125, 0.1);
}

/* ---- Footer band ---- */
footer {
  background: var(--petrol);
  color: rgba(255, 255, 255, 0.82);
  padding: 22px clamp(20px, 6vw, 80px);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

footer b {
  color: #fff;
  font-weight: 700;
}
