/* =========================================================
   Point FWD – Advanced Insights Landing
   Layout: 50/50 split-screen (wit links, paars rechts)
   ========================================================= */

   /* Karelia Bold font – pad aanpassen aan jouw Web File */
@font-face {
    font-family: 'Karelia Bold';
    src: url('/Home/KareliaBold.otf') format('opentype'); 
    font-weight: 700; 
    font-style: normal;
}

.pfwd-landing {


  --pf-left-bg: #ffffff;
  --pf-right-bg: #26257e;

  /* iets dieper paars voor tekst zoals mockup */
  --pf-text-main: #24135f;
  --pf-text-muted: #4b4e7c;
  --pf-text-subtle: #8c92c0;

  --pf-accent-blue: #2b9dff;
  --pf-accent-blue-dark: #1876cc;
  --pf-border-light: #dde2f5;

  --pf-input-border: #ccd1ea;
  --pf-input-focus: #2b9dff;

  font-family: var(--pf-font-sans);
  min-height: 100vh;
  height: 100vh;
  display: flex;
  position: relative; /* nodig voor logo rechtsboven */
}

/* ---------- Linker kolom (50%) ---------- */

.pfwd-landing__left {
  flex: 0 0 50%;
  max-width: 50%;
  background: var(--pf-left-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px 60px;
  box-sizing: border-box;
}

.pfwd-landing__left-inner {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
}

/* Logo rechtsboven in de hele hero */
.pfwd-landing__logo-row {
  position: absolute;
  top: 28px;
  right: 60px;
  padding-bottom: 0;
}
.pfwd-landing__logo {
  height: 26px;
  width: auto;
  display: block;
}

.pfwd-landing__content {
  flex: 1;
}

.pfwd-landing__title {
  font-family: "Karelia", var(--pf-font-heading);
  font-size: 32px;
  line-height: 1.25;
  margin: 0 0 6px;
  color: var(--pf-text-main);
  font-weight: 700;
}


.pfwd-landing__subtitle {
  margin: 0 0 24px;
  font-weight: 600;
  font-size: 14px;
  color: var(--pf-text-muted);
}

.pfwd-landing__form-card {
  padding: 4px 0 10px;
}

.pfwd-landing__footnote {
  margin-top: 22px;
  font-size: 12px;
  color: var(--pf-text-subtle);
}

.pfwd-landing__footnote a {
  color: var(--pf-accent-blue);
  text-decoration: none;
}
.pfwd-landing__footnote a:hover {
  color: var(--pf-accent-blue-dark);
  text-decoration: underline;
}

/* ---------- Buttons ---------- */

.pfwd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 6px;
  padding: 0 16px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 120ms ease, border-color 120ms ease, box-shadow 120ms ease,
    transform 80ms ease;
  min-height: 44px;          /* zelfde hoogte als inputs */
  box-sizing: border-box;
}

.pfwd-btn__text {
  flex: 1;
  text-align: center;
}

.pfwd-btn__icon {
  font-size: 13px;
  margin-left: 6px;
}

/* Microsoft-knop */

.pfwd-btn--ms {
  background-color: #ffffff;
  border-color: var(--pf-border-light);
  color: var(--pf-text-main);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.02), 0 6px 16px rgba(15, 23, 42, 0.08);
  gap: 10px;
}
.pfwd-btn--ms:hover {
  border-color: #c3caef;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.02), 0 8px 20px rgba(15, 23, 42, 0.12);
  transform: translateY(-0.5px);
}

/* Microsoft logo (4 blokjes) */

.pfwd-ms-logo {
  display: inline-grid;
  grid-template-columns: repeat(2, 8px);
  grid-template-rows: repeat(2, 8px);
  gap: 1px;
  width: 17px;
  height: 17px;
}
.pfwd-ms-logo__sq {
  display: block;
  width: 8px;
  height: 8px;
}
.pfwd-ms-logo__sq--1 { background: #f25022; }
.pfwd-ms-logo__sq--2 { background: #7fba00; }
.pfwd-ms-logo__sq--3 { background: #00a4ef; }
.pfwd-ms-logo__sq--4 { background: #ffb900; }

.pfwd-btn--primary {
  margin-top: 22px;
  background-color: #181c3d;
  border-color: #181c3d;
  color: #ffffff;
}
.pfwd-btn--primary:hover {
  background-color: #111534;
  border-color: #111534;
  transform: translateY(-0.5px);
}

.pfwd-btn:focus-visible {
  outline: 2px solid #111534;
  outline-offset: 2px;
}

/* ---------- OR-separator ---------- */

.pfwd-or {
  margin: 20px 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pfwd-or__line {
  flex: 1;
  height: 1px;
  background-color: var(--pf-border-light);
}
.pfwd-or__text {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pf-text-subtle);
}

/* ---------- Form fields ---------- */

.pfwd-field {
  margin-bottom: 14px;
}

.pfwd-label {
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
  color: var(--pf-text-main);
}

.pfwd-input {
  display: block;
  width: 100%;
  height: 44px;          /* zelfde hoogte als knoppen */
  padding: 0 10px;
  border-radius: 6px;
  border: 1px solid var(--pf-input-border);
  font-size: 13px;
  color: var(--pf-text-main);
  background-color: #ffffff;
  box-sizing: border-box;
}
.pfwd-input:focus {
  outline: none;
  border-color: var(--pf-input-focus);
  box-shadow: 0 0 0 1px rgba(43, 157, 255, 0.25);
}

/* ---------- Rechter kolom (50%) ---------- */

.pfwd-landing__right {
  flex: 0 0 50%;
  max-width: 50%;
  background: var(--pf-right-bg);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.pfwd-landing__right-inner {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.pfwd-landing__art-wrap {
  text-align: center;
}

.pfwd-landing__art {
  max-width: 520px;
  width: 100%;
  height: auto;
  display: inline-block;
}

.pfwd-landing__tagline {
  max-width: 460px;
  font-size: 20px;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

/* ---------- Responsiveness ---------- */

@media (max-width: 992px) {
  .pfwd-landing {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }

  .pfwd-landing__left,
  .pfwd-landing__right {
    flex: 0 0 auto;
    max-width: none;
    width: 100%;
  }

  .pfwd-landing__left {
    padding: 32px 24px 28px;
    align-items: flex-start;
  }

  .pfwd-landing__right-inner {
    padding: 32px 24px 40px;
  }

  .pfwd-landing__logo-row {
    right: 24px;
  }
}

@media (max-width: 640px) {
  .pfwd-landing__title {
    font-size: 26px;
  }
}

/* Geen animaties bij prefers-reduced-motion */

@media (prefers-reduced-motion: reduce) {
  .pfwd-btn,
  .pfwd-input {
    transition: none;
  }
}

/* Logo linksboven binnen de hele hero */
.pfwd-landing__logo-row {
  position: absolute;
  top: 24px;
  left: 40px;
  z-index: 20;
}

.pfwd-landing__logo {
  height: 42px;     /* vergroot logo */
  width: auto;
  display: block;
}

/* Font Definitions (Landing only) */
@font-face {
  font-family: 'Karelia';
  src: url('/KareliaBold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Karelia';
  src: url('/KareliaMedium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Basis Grotesque Arabic Pro';
  src: url('/BasisGrotesqueArabicProRegular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* =========================================================
   FORCE TYPOGRAPHY – Landing page only
   ========================================================= */

/* Alles op de landing */
.pfwd-landing,
.pfwd-landing * {
  font-family: 'Basis Grotesque Arabic Pro', 'Segoe UI', sans-serif !important;
  font-weight: 400;
}

/* Headings */
.pfwd-landing h1,
.pfwd-landing h2,
.pfwd-landing h3,
.pfwd-landing h4,
.pfwd-landing h5,
.pfwd-landing h6,
.pfwd-landing .pfwd-landing__title {
  font-family: 'Karelia', 'Segoe UI', sans-serif !important;
  font-weight: 700;
}

/* Buttons iets zwaarder */
.pfwd-landing .pfwd-btn,
.pfwd-landing .pfwd-btn * {
  font-family: 'Basis Grotesque Arabic Pro', 'Segoe UI', sans-serif !important;
  font-weight: 600;
}

/* Inputs/labels expliciet (Bootstrap is hier agressief) */
.pfwd-landing input,
.pfwd-landing label,
.pfwd-landing button,
.pfwd-landing a {
  font-family: 'Basis Grotesque Arabic Pro', 'Segoe UI', sans-serif !important;
}
