/* =========================================================
   Point FWD – Advanced Insights Landing 
   ========================================================= */

/* Font Definitions */
@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;
}

/* ---------------------------------------------------------
   1. MAIN CONTAINER & VARIABELEN
   --------------------------------------------------------- */
.pfwd-landing {
  --pf-left-bg: #ffffff;
  --pf-right-bg: #132A79; 

  --pf-text-main: #132A79; 
  
  --pf-accent-blue: #132A79;      
  --pf-accent-blue-dark: #132A79; 

  font-family: 'Basis Grotesque Arabic Pro', 'Segoe UI', sans-serif;
  min-height: 100vh;
  width: 100%;
  display: flex; 
  flex-direction: row;
  position: relative; 
  overflow-x: hidden;
}

.pfwd-landing * {
  box-sizing: border-box;
}

/* ---------------------------------------------------------
   2. LEFT COLUMN 
   --------------------------------------------------------- */
.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;
  position: relative;
}

.pfwd-landing__left-inner {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
}

.pfwd-landing__logo-row {
  position: absolute;
  top: 40px;
  left: 60px;
  z-index: 10;
}
.pfwd-landing__logo {
  height: 32px;
  width: auto;
  display: block;
}

/* TYPOGRAFIE LINKS */
.pfwd-landing__title {
  font-family: "Karelia", sans-serif;
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--pf-text-main);
  font-weight: 700;
}

.pfwd-landing__subtitle {
  margin: 0 0 32px;
  font-weight: 400;
  font-size: 16px;
  color: var(--pf-text-main); 
}

/* FOOTER LINKS */
.pfwd-landing__footnote {
  margin-top: 24px;
  font-size: 14px;
  color: var(--pf-text-main); 
  font-weight: 500;
}

.pfwd-landing__footnote a {
  color: var(--pf-accent-blue);
  text-decoration: none;
  font-weight: 700;
}

.pfwd-landing__footnote a:hover {
  text-decoration: underline;
  color: var(--pf-accent-blue-dark);
}

/* ---------------------------------------------------------
   3. RIGHT COLUMN 
   --------------------------------------------------------- */
.pfwd-landing__right {
  flex: 0 0 50%;
  max-width: 50%;
  background-color: var(--pf-right-bg) !important;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pfwd-landing__right-inner {
  width: 100%;
  max-width: 560px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.pfwd-landing__tagline {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 400;
  color: #ffffff;
  opacity: 0.95;
}

/* ---------------------------------------------------------
   4. BUTTON STYLING
   --------------------------------------------------------- */
.pfwd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  padding: 0 24px;
  min-height: 52px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.pfwd-btn--primary {
  background-color: var(--pf-accent-blue) !important;
  color: #ffffff !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.pfwd-btn--primary:hover {
  background-color: var(--pf-accent-blue-dark) !important;
  transform: translateY(-1px); 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ---------------------------------------------------------
   5. MONITOR OPTIMALISATIE (> 1600px)
   --------------------------------------------------------- */
@media (min-width: 1600px) {
  .pfwd-landing__left-inner { max-width: 680px; }
  .pfwd-landing__logo { height: 48px; }
  .pfwd-landing__title { font-size: 48px; margin-bottom: 16px; }
  .pfwd-landing__subtitle { font-size: 20px; margin-bottom: 48px; }
  .pfwd-btn { min-height: 64px; font-size: 18px; }
  .pfwd-landing__footnote { font-size: 16px; }
  .pfwd-landing__right-inner { max-width: 800px; }
  .pfwd-landing__tagline { font-size: 28px; }
}

/* ---------------------------------------------------------
   6. RESPONSIVE (Mobiel)
   --------------------------------------------------------- */
@media (max-width: 992px) {
  .pfwd-landing { flex-direction: column; }
  .pfwd-landing__left, .pfwd-landing__right { flex: 0 0 auto; max-width: 100%; width: 100%; }
  .pfwd-landing__left { padding: 100px 24px 40px; }
  .pfwd-landing__logo-row { top: 32px; left: 24px; }
  .pfwd-landing__right { padding: 60px 24px; }
}

.pfwd-landing .pfwd-btn__icon {
  margin-left: 20px !important; 
  font-size: 18px !important;   
  transition: transform 0.2s ease;
  display: inline-block;
}

.pfwd-landing .pfwd-btn__text {
  flex: 1;
  text-align: center;
  padding-left: 38px; 
}