/*******************************************************************************
** Stylesheet Heights Payments Terminals B.V. — versie 2026
** Pin-t.nl brand integration
*******************************************************************************/

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700;900&family=DM+Mono:wght@400;500&display=swap');

:root {
  --navy:       #0F1E3D;
  --navy-deep:  #081529;
  --navy-mid:   #172847;
  --orange:     #F26522;
  --orange-dim: #c95318;
  --white:      #FFFFFF;
  --grey-light: #F4F6FA;
  --grey-text:  #6B7A99;
  --blue-hpt:   #0055CC;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--navy);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/*— Achtergrondpatroon —*/
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(242,101,34,0.12) 0%, transparent 60%),
    linear-gradient(135deg, transparent 25%, rgba(255,255,255,0.015) 25%, rgba(255,255,255,0.015) 50%, transparent 50%, transparent 75%, rgba(255,255,255,0.015) 75%);
  background-size: cover, 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/*— Layout wrapper —*/
.wrap {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/*— Header —*/
.site-header {
  background-color: var(--navy-deep);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header img {
  height: 84px;
  width: auto;
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: 8px;
  padding: 4px;
}

.site-header .contact-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-text);
  text-decoration: none;
  transition: color 0.2s;
}

.site-header .contact-link:hover { color: var(--white); }

/*— Hero —*/
.hero {
  padding: 80px 0 72px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(242,101,34,0.15);
  border: 1px solid rgba(242,101,34,0.4);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(32px, 6vw, 58px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  max-width: 740px;
  margin: 0 auto 22px;
  letter-spacing: -0.02em;
}

.hero h1 span { color: var(--orange); }

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

/*— Knoppen —*/
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--orange-dim);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 6px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, color 0.2s;
  margin-left: 12px;
}

.btn-secondary:hover {
  border-color: var(--white);
  color: var(--white);
}

/*— Sectie: pin-t introductie —*/
.intro-section {
  padding: 64px 0;
}

.intro-section .inner {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid var(--orange);
  border-radius: 12px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.intro-section h2 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.intro-section h2 span { color: var(--orange); }

.intro-section p {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 12px;
}

.intro-section p:last-child { margin-bottom: 0; }

.pin-t-logo-block {
  background: var(--navy);
  border-radius: 10px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
  min-height: 220px;
}

.pin-t-wordmark {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 12px;
}

.pin-t-wordmark span { color: var(--orange); }

.pin-t-sub {
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/*— Kenmerken —*/
.features-section {
  padding: 24px 0 72px;
}

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

.feature-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: rgba(242,101,34,0.4);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 24px;
  margin-bottom: 14px;
  display: block;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.feature-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/*— Divider —*/
.divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 0;
}

/*— Footer —*/
.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-inner img {
  height: 76px;
  width: auto;
  opacity: 0.9;
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: 8px;
  padding: 4px;
}

.footer-meta {
  font-size: 13px;
  color: var(--grey-text);
}

.footer-meta a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
}

.footer-meta a:hover { text-decoration: underline; }

.footer-bar {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(242,101,34,0.3);
  text-align: center;
  font-size: 12px;
  color: var(--grey-text);
}

/*— Responsief —*/
@media (max-width: 720px) {
  .intro-section .inner {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

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

  .btn-secondary { margin-left: 0; margin-top: 12px; }

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