/*
Theme Name: Reicon SD Official Brand
Description: Zelfstandige Reicon SD-homepage met de officiële logo-assets, vaste header, hero-afbeelding en specialistische diensten.
Version: 1.3.0
Text Domain: reicon-sd-brand
*/

/* Design contract: light technical service interface, with navy expertise,
   signal-blue action, generous white space and a permanently visible header. */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --reicon-navy: #0b1f3b;
  --reicon-blue: #1f73ce;
  --reicon-blue-dark: #175eab;
  --reicon-mist: #eaf3fd;
  --reicon-line: #dbe7f4;
  --reicon-slate: #566173;
  --reicon-shadow: 0 10px 26px rgba(11, 31, 59, 0.08);
  --reicon-ease: cubic-bezier(0.23, 1, 0.32, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body { margin: 0; background: #fbfcfe; color: var(--reicon-navy); font-family: "DM Sans", sans-serif; }
body.menu-open { overflow: hidden; }

.reicon-site-main { min-height: 72vh; overflow: hidden; }
.reicon-shell { width: min(100% - 40px, 1240px); margin: 0 auto; }

.reicon-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  border-bottom: 1px solid rgba(219, 231, 244, 0.92);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  transition: box-shadow 180ms var(--reicon-ease), background 180ms var(--reicon-ease);
}
.reicon-header.is-scrolled { box-shadow: var(--reicon-shadow); background: rgba(255, 255, 255, 0.985); }
.reicon-header__inner { width: min(100% - 40px, 1240px); min-height: 76px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 22px; }

.reicon-brand { display: inline-flex; align-items: center; gap: 11px; color: var(--reicon-navy); text-decoration: none; min-width: max-content; }
.reicon-brand--official { display: flex; min-width: 0; }
.reicon-brand__logo { display: block; width: clamp(176px, 14vw, 240px); height: auto; max-height: 52px; object-fit: contain; }
.reicon-brand__mark { position: relative; display: grid; width: 42px; height: 42px; place-items: center; overflow: hidden; border-radius: 11px; background: var(--reicon-navy); color: #fff; font-family: "Manrope", sans-serif; font-size: 25px; font-weight: 800; line-height: 1; }
.reicon-brand__mark::after { position: absolute; right: -2px; bottom: -7px; content: ""; width: 29px; height: 29px; border: 3px solid #83c0f5; border-left: 0; border-bottom: 0; border-radius: 50%; transform: rotate(-28deg); opacity: .96; }
.reicon-brand__name { display: grid; gap: 2px; line-height: 1; }
.reicon-brand__name strong { font-family: "Manrope", sans-serif; font-size: 17px; letter-spacing: -0.052em; font-weight: 800; }
.reicon-brand__name small { color: var(--reicon-slate); font-size: 8px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.reicon-brand .custom-logo { display: block; max-width: 205px; width: auto; max-height: 52px; height: auto; }

.reicon-nav-wrap { display: flex; align-items: center; gap: 25px; }
.reicon-navigation .menu,
.reicon-navigation ul { display: flex; align-items: center; gap: 28px; margin: 0; padding: 0; list-style: none; }
.reicon-navigation a { position: relative; display: inline-block; color: #26374e; font-family: "Manrope", sans-serif; font-size: 14px; font-weight: 700; line-height: 76px; text-decoration: none; transition: color 160ms var(--reicon-ease); }
.reicon-navigation a::after { position: absolute; right: 0; bottom: 18px; left: 0; height: 2px; width: 0; margin: auto; background: var(--reicon-blue); content: ""; transition: width 180ms var(--reicon-ease); }
.reicon-navigation a:hover, .reicon-navigation .current-menu-item > a { color: var(--reicon-blue); }
.reicon-navigation a:hover::after, .reicon-navigation .current-menu-item > a::after { width: 100%; }

.reicon-damage-button { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; gap: 9px; border-radius: 10px; background: var(--reicon-blue); box-shadow: 0 8px 18px rgba(31, 115, 206, 0.2); color: #fff; font-family: "Manrope", sans-serif; font-size: 14px; font-weight: 700; padding: 0 18px; text-decoration: none; transition: transform 160ms var(--reicon-ease), background 160ms var(--reicon-ease); }
.reicon-damage-button:hover { background: var(--reicon-blue-dark); color: #fff; transform: translateY(-2px); }
.reicon-damage-button:active { transform: scale(.97); }
.reicon-damage-button svg { width: 18px; height: 18px; }

.reicon-menu-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border: 1px solid var(--reicon-line); border-radius: 10px; background: #fff; color: var(--reicon-navy); cursor: pointer; }
.reicon-menu-toggle span, .reicon-menu-toggle::before, .reicon-menu-toggle::after { display: block; width: 19px; height: 2px; border-radius: 99px; background: currentColor; content: ""; transition: transform 180ms var(--reicon-ease), opacity 180ms var(--reicon-ease); }
.reicon-menu-toggle span { margin: 4px 0; }
.reicon-menu-toggle[aria-expanded="true"] span { opacity: 0; }
.reicon-menu-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.reicon-menu-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.reicon-mobile-panel { display: none; border-top: 1px solid var(--reicon-line); background: #fff; padding: 12px 20px 20px; }
.reicon-mobile-panel.is-open { display: grid; }
.reicon-mobile-panel .reicon-navigation .menu,
.reicon-mobile-panel .reicon-navigation ul { display: grid; gap: 0; }
.reicon-mobile-panel .reicon-navigation a { display: block; border-bottom: 1px solid #eef4fa; line-height: 1.25; padding: 14px 3px; }
.reicon-mobile-panel .reicon-navigation a::after { display: none; }
.reicon-mobile-panel .reicon-damage-button { margin-top: 16px; }

/* Hero — an asymmetric, high-key technical scene, keeping copy readable on a light field. */
.reicon-hero { position: relative; padding: clamp(52px, 6vw, 92px) 0 46px; background: radial-gradient(circle at 30% 30%, #ffffff 0, #f7fafe 44%, #edf5fc 100%); }
.reicon-hero::before { position: absolute; inset: 0; background-image: radial-gradient(rgba(31,115,206,.09) 1px, transparent 1px); background-size: 19px 19px; content: ""; mask-image: linear-gradient(90deg, #000 0%, transparent 60%); opacity: .46; pointer-events: none; }
.reicon-hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, .95fr) minmax(390px, 1.05fr); align-items: center; gap: clamp(36px, 5vw, 84px); }
.reicon-hero__copy { max-width: 580px; padding: 34px 0 24px; }
.reicon-eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 17px; color: var(--reicon-blue); font-family: "Manrope", sans-serif; font-size: 11px; font-weight: 800; letter-spacing: .115em; text-transform: uppercase; }
.reicon-eyebrow span { width: 28px; height: 2px; background: currentColor; }
.reicon-hero h1, .reicon-section-heading h2 { margin: 0; color: var(--reicon-navy); font-family: "Manrope", sans-serif; font-weight: 800; letter-spacing: -.064em; line-height: .99; }
.reicon-hero h1 { font-size: clamp(44px, 5.1vw, 74px); }
.reicon-hero__lead { max-width: 540px; margin: 28px 0 0; color: #526077; font-size: 17px; line-height: 1.75; }
.reicon-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.reicon-secondary-button { display: inline-flex; min-height: 46px; align-items: center; gap: 11px; border: 1px solid #b8c8d8; border-radius: 10px; color: var(--reicon-navy); font-family: "Manrope", sans-serif; font-size: 14px; font-weight: 700; padding: 0 18px; text-decoration: none; transition: background 160ms var(--reicon-ease), border-color 160ms var(--reicon-ease), transform 160ms var(--reicon-ease); }
.reicon-secondary-button:hover { border-color: var(--reicon-blue); background: #fff; transform: translateY(-2px); }
.reicon-secondary-button span { font-size: 20px; line-height: 0; }
.reicon-hero__proof { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 41px 0 0; padding: 0; list-style: none; }
.reicon-hero__proof li { display: grid; gap: 4px; border-left: 2px solid #9bcaf3; padding-left: 13px; }
.reicon-hero__proof strong { font-family: "Manrope", sans-serif; font-size: 13px; }
.reicon-hero__proof span { color: var(--reicon-slate); font-size: 12px; line-height: 1.45; }
.reicon-hero__visual { position: relative; min-height: 510px; }
.reicon-hero__image { position: absolute; inset: 0 0 30px 0; overflow: hidden; border-radius: 22px 22px 62px 22px; background: linear-gradient(115deg, rgba(6,21,43,.06), rgba(6,21,43,.01)), url('assets/images/hero-vochtinventarisatie.jpg') 60% center / cover no-repeat; box-shadow: 0 22px 42px rgba(11,31,59,.16); }
.reicon-hero__image::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.2), transparent 55%); content: ""; }
.reicon-hero__label { position: absolute; z-index: 1; bottom: 0; left: -38px; display: flex; align-items: center; gap: 12px; max-width: 273px; border: 1px solid rgba(219,231,244,.9); border-radius: 14px; background: rgba(255,255,255,.96); box-shadow: var(--reicon-shadow); padding: 15px 17px; }
.reicon-hero__label-icon { display: grid; width: 37px; height: 37px; flex: 0 0 37px; place-items: center; border-radius: 50%; background: var(--reicon-mist); color: var(--reicon-blue); font-size: 22px; font-weight: 700; }
.reicon-hero__label strong { display: block; color: var(--reicon-navy); font-family: "Manrope", sans-serif; font-size: 12px; }
.reicon-hero__label small { display: block; margin-top: 3px; color: var(--reicon-slate); font-size: 11px; line-height: 1.4; }
.reicon-hero__badge { position: absolute; top: 20px; right: -25px; display: grid; gap: 2px; border: 1px solid #d9e8f7; border-radius: 11px; background: #fff; box-shadow: 0 10px 20px rgba(11,31,59,.08); color: #637189; font-size: 11px; line-height: 1.25; padding: 10px 13px; }
.reicon-hero__badge span { color: var(--reicon-navy); font-family: "Manrope", sans-serif; font-size: 17px; font-weight: 800; }

/* Process and services — precise cards rather than generic equal-width content blocks. */
.reicon-process { position: relative; z-index: 2; margin-top: -14px; padding: 70px 0; background: #fff; }
.reicon-section-heading--inline { display: flex; align-items: flex-end; justify-content: space-between; gap: 45px; }
.reicon-section-heading h2 { font-size: clamp(32px, 3.6vw, 50px); }
.reicon-section-heading--inline > p { max-width: 380px; margin: 0 0 4px; color: var(--reicon-slate); font-size: 15px; line-height: 1.65; }
.reicon-process__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 45px 0 0; border: 1px solid var(--reicon-line); border-radius: 18px; box-shadow: 0 10px 26px rgba(11,31,59,.045); overflow: hidden; padding: 0; list-style: none; }
.reicon-process__list li { position: relative; display: grid; grid-template-columns: auto auto 1fr; align-items: start; gap: 14px; background: #fff; padding: 26px 23px 28px; }
.reicon-process__list li + li { border-left: 1px solid var(--reicon-line); }
.reicon-process__number { color: #9eb6ce; font-family: "Manrope", sans-serif; font-size: 12px; font-weight: 800; }
.reicon-process__icon { display: grid; width: 39px; height: 39px; place-items: center; border-radius: 50%; background: var(--reicon-mist); color: var(--reicon-blue); font-family: "Manrope", sans-serif; font-size: 21px; font-weight: 800; }
.reicon-process__list h3 { margin: 1px 0 7px; color: var(--reicon-navy); font-family: "Manrope", sans-serif; font-size: 15px; letter-spacing: -.02em; }
.reicon-process__list p { margin: 0; color: var(--reicon-slate); font-size: 13px; line-height: 1.55; }
.reicon-services { padding: 86px 0 96px; background: #f4f8fc; }
.reicon-section-heading { max-width: 670px; }
.reicon-section-heading > p:last-child { max-width: 550px; margin: 21px 0 0; color: var(--reicon-slate); font-size: 16px; line-height: 1.75; }
.reicon-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; margin-top: 46px; }
.reicon-service-card { display: flex; min-height: 330px; flex-direction: column; border: 1px solid #dfeaf5; border-radius: 18px; background: #fff; box-shadow: 0 8px 18px rgba(11,31,59,.035); padding: 27px; transition: transform 180ms var(--reicon-ease), box-shadow 180ms var(--reicon-ease); }
.reicon-service-card:hover { box-shadow: var(--reicon-shadow); transform: translateY(-5px); }
.reicon-service-card--featured { background: var(--reicon-navy); border-color: var(--reicon-navy); color: #fff; box-shadow: 0 16px 28px rgba(11,31,59,.16); }
.reicon-service-card__icon { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 14px; background: var(--reicon-mist); color: var(--reicon-blue); font-family: "Manrope", sans-serif; font-size: 27px; font-weight: 800; }
.reicon-service-card--featured .reicon-service-card__icon { background: rgba(131,192,245,.17); color: #9dd1fb; }
.reicon-service-card__tag { margin: 28px 0 11px; color: #7791ad; font-family: "Manrope", sans-serif; font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.reicon-service-card--featured .reicon-service-card__tag { color: #9ccaf0; }
.reicon-service-card h3 { margin: 0; color: var(--reicon-navy); font-family: "Manrope", sans-serif; font-size: 23px; letter-spacing: -.052em; line-height: 1.1; }
.reicon-service-card--featured h3 { color: #fff; }
.reicon-service-card > p:not(.reicon-service-card__tag) { margin: 16px 0 22px; color: var(--reicon-slate); font-size: 14px; line-height: 1.65; }
.reicon-service-card--featured > p:not(.reicon-service-card__tag) { color: #c6d8ea; }
.reicon-service-card a { display: flex; align-items: center; justify-content: space-between; margin-top: auto; border-top: 1px solid var(--reicon-line); color: var(--reicon-navy); font-family: "Manrope", sans-serif; font-size: 13px; font-weight: 800; padding-top: 17px; text-decoration: none; }
.reicon-service-card--featured a { border-top-color: rgba(255,255,255,.17); color: #fff; }
.reicon-service-card a span { color: var(--reicon-blue); font-size: 20px; transition: transform 160ms var(--reicon-ease); }
.reicon-service-card--featured a span { color: #9dd1fb; }
.reicon-service-card a:hover span { transform: translateX(4px); }
.reicon-network-note { display: flex; align-items: center; gap: 15px; margin-top: 23px; border: 1px solid #d8e7f4; border-radius: 13px; background: rgba(255,255,255,.65); padding: 17px 20px; }
.reicon-network-note__mark { display: grid; width: 28px; height: 28px; flex: 0 0 28px; place-items: center; border-radius: 50%; background: var(--reicon-blue); color: #fff; font-family: "Manrope", sans-serif; font-weight: 700; }
.reicon-network-note p { margin: 0; color: var(--reicon-slate); font-size: 13px; line-height: 1.55; }
.reicon-network-note strong { color: var(--reicon-navy); }
.reicon-theme-footer { border-top: 1px solid var(--reicon-line); background: #fff; padding: 28px 0; }
.reicon-footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.reicon-footer__logo { display: block; width: min(215px, 52vw); height: auto; }
.reicon-footer__inner p { margin: 0; color: var(--reicon-slate); font-size: 13px; line-height: 1.55; text-align: right; }
.reicon-footer__inner a { color: var(--reicon-blue); font-weight: 700; text-decoration: none; }

@media (max-width: 960px) {
  .reicon-header__inner { min-height: 70px; }
  .reicon-nav-wrap { display: none; }
  .reicon-menu-toggle { display: block; }
  .reicon-hero__grid { grid-template-columns: 1fr; }
  .reicon-hero__copy { max-width: 680px; }
  .reicon-hero__visual { min-height: 440px; max-width: 760px; width: calc(100% - 30px); margin-left: auto; }
  .reicon-process__list, .reicon-services__grid { grid-template-columns: 1fr; }
  .reicon-process__list li + li { border-top: 1px solid var(--reicon-line); border-left: 0; }
  .reicon-section-heading--inline { align-items: flex-start; flex-direction: column; gap: 18px; }
}

@media (max-width: 560px) {
  .reicon-header__inner { width: min(100% - 32px, 1240px); }
  .reicon-brand__name strong { font-size: 15px; }
  .reicon-brand__name small { font-size: 7px; }
	.reicon-brand__mark { width: 38px; height: 38px; font-size: 22px; }
	.reicon-brand__logo { width: min(184px, 53vw); max-height: 46px; }
	.reicon-brand .custom-logo { max-width: 170px; max-height: 44px; }
  .reicon-shell { width: min(100% - 32px, 1240px); }
  .reicon-hero { padding-top: 35px; }
  .reicon-hero h1 { font-size: 43px; }
  .reicon-hero__lead { font-size: 15px; }
  .reicon-hero__proof { grid-template-columns: 1fr; margin-top: 31px; }
  .reicon-hero__visual { min-height: 350px; width: 100%; margin-top: 3px; }
  .reicon-hero__image { border-radius: 18px 18px 40px 18px; }
  .reicon-hero__label { bottom: -12px; left: 12px; max-width: 248px; }
  .reicon-hero__badge { top: 14px; right: 12px; }
  .reicon-process, .reicon-services { padding: 62px 0; }
  .reicon-process__list { margin-top: 30px; }
  .reicon-process__list li { grid-template-columns: auto 1fr; }
  .reicon-process__list li > div:last-child { grid-column: 2; }
  .reicon-service-card { min-height: 292px; }
	.reicon-network-note { align-items: flex-start; }
	.reicon-footer__inner { align-items: flex-start; flex-direction: column; gap: 14px; }
	.reicon-footer__inner p { text-align: left; }
}
