/* ============================================ */
/* OTRIMS - Custom Theme Overrides             */
/* Tailwind CDN handles layout & spacing       */
/* This file handles brand-specific styles     */
/* ============================================ */

/* Base */
html { scroll-behavior: smooth; }
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================ */
/* GEOMETRIC DECORATIONS                        */
/* ============================================ */
.geo-triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  pointer-events: none;
  z-index: 1;
}

/* Vereenvoudigd: diamonds, lines en rects verborgen */
.geo-rect,
.geo-line,
.geo-diamond {
  display: none;
}

/* ============================================ */
/* EYEBROW LABEL                                */
/* ============================================ */
.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #1C636D;
}
.eyebrow--light {
  color: #A9EEDB;
}

/* ============================================ */
/* BUTTONS                                      */
/* ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.85rem 1.75rem;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: #133C40;
  color: #fff;
}
.btn-primary:hover {
  background: #1C636D;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(28, 99, 109, 0.35);
}
.btn-outline {
  background: transparent;
  color: #133C40;
  border: 2px solid #133C40;
}
.btn-outline:hover {
  background: #133C40;
  color: #fff;
  transform: translateY(-1px);
}
.btn-white {
  background: #fff;
  color: #133C40;
}
.btn-white:hover {
  background: #F7F4F0;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255,255,255,0.3);
}
.btn-ghost-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-ghost-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1C636D;
  transition: all 0.3s ease;
}
.text-link:hover {
  color: #133C40;
  gap: 0.75rem;
}
.text-link svg {
  width: 18px; height: 18px;
  transition: transform 0.3s ease;
}
.text-link:hover svg { transform: translateX(3px); }

/* ============================================ */
/* SCROLL ANIMATIONS                            */
/* ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ============================================ */
/* NAVIGATION                                   */
/* ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 254, 251, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.nav--scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.nav--scrolled .nav-inner {
  padding: 0.4rem 0;
}
.nav--scrolled .nav-logo-img {
  height: 56px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  transition: padding 0.3s ease;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 88px;
  width: auto;
  transition: height 0.3s ease;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: #5E5E5E;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: #133C40;
  transition: width 0.3s ease;
}
.nav-links a:hover { color: #133C40; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-size: 0.82rem !important;
  padding: 0.6rem 1.3rem;
  border: 1.5px solid #133C40;
  color: #133C40 !important;
  border-radius: 3px;
  transition: all 0.3s ease !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: #133C40 !important;
  color: #fff !important;
}

/* Language switcher */
.nav-lang {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-lang a::after { display: none !important; }
.lang-active {
  font-weight: 700 !important;
  color: #133C40 !important;
  font-size: 0.8rem !important;
}
.lang-inactive {
  font-weight: 400 !important;
  color: #5E5E5E !important;
  opacity: 0.5;
  font-size: 0.8rem !important;
}
.lang-inactive:hover { opacity: 1; }
.lang-sep {
  font-size: 0.75rem;
  color: #E8E4E0;
  pointer-events: none;
}

/* Mobile nav button */
.nav-mobile {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-mobile svg { width: 24px; height: 24px; color: #133C40; }

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: rgba(255, 254, 251, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: #21233D;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: #133C40; }
.mobile-menu .btn {
  margin-top: 1rem;
  font-size: 1rem;
  padding: 1rem 2.5rem;
}
.mobile-menu-close {
  position: absolute;
  top: 2rem; right: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.mobile-menu-close svg { width: 28px; height: 28px; color: #21233D; }
.mobile-lang {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}
.mobile-lang .lang-active { font-size: 1rem !important; color: #21233D !important; }
.mobile-lang .lang-inactive { font-size: 1rem !important; color: rgba(33,35,61,0.4) !important; }
.mobile-lang .lang-sep { color: rgba(33,35,61,0.2); font-size: 1rem; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile { display: block; }
}

/* ============================================ */
/* HERO                                         */
/* ============================================ */
.hero {
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
  background: #FFFEFB;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hero-eyebrow {
  animation: fadeUp 0.6s ease both;
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  color: #21233D;
  margin: 1rem 0 1.5rem;
  animation: fadeUp 0.6s ease 0.15s both;
}
.hero h1 em {
  font-style: italic;
  color: #133C40;
}
.hero-text {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 500px;
  animation: fadeUp 0.6s ease 0.3s both;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  animation: fadeUp 0.6s ease 0.45s both;
  flex-wrap: wrap;
}
.hero-image-wrapper {
  position: relative;
  animation: slideInRight 0.8s ease 0.3s both;
}
.hero-image-wrapper img {
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 5/6;
  object-fit: cover;
  position: relative;
  z-index: 2;
  transform: scaleX(-1);
}
.hero-image-accent {
  position: absolute;
  top: -25px; right: -25px;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 0 320px 320px;
  border-color: transparent transparent #A9EEDB transparent;
  opacity: 0.25;
  z-index: 1;
}
.hero-image-line {
  position: absolute;
  bottom: -20px; left: -20px;
  width: 0; height: 0;
  border-style: solid;
  border-width: 220px 220px 0 0;
  border-color: #6480C8 transparent transparent transparent;
  opacity: 0.18;
  z-index: 1;
}
.hero .geo-triangle-1 {
  top: -30px; right: -40px;
  border-width: 0 0 350px 350px;
  border-color: transparent transparent #133C40 transparent;
  opacity: 0.25;
}
.hero .geo-triangle-2 {
  bottom: 0; left: -30px;
  border-width: 260px 260px 0 0;
  border-color: #6480C8 transparent transparent transparent;
  opacity: 0.18;
}
.hero .geo-triangle-3 {
  top: 60px; right: 5%;
  border-width: 0 160px 160px 0;
  border-color: transparent #A9EEDB transparent transparent;
  opacity: 0.30;
}
.hero .geo-rect-1 {
  bottom: 10%; left: 3%;
  width: 160px; height: 50px;
  background: #C7BDCE;
  opacity: 0.28;
  transform: skewX(-12deg);
}
.hero .geo-line-1 {
  top: 30%; right: 0;
  width: 280px;
  background: #A9EEDB;
  opacity: 0.35;
  transform: rotate(-35deg);
}

@media (max-width: 968px) {
  .hero { padding: 8rem 0 4rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-image-wrapper { max-width: 500px; }
  .hero .geo-triangle-2, .hero .geo-triangle-3 { display: none; }
}

/* ============================================ */
/* USPs — Dark numbered section                 */
/* ============================================ */
.usps {
  background: #21233D;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.usps::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(100, 128, 200, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(169, 238, 219, 0.08) 0%, transparent 50%);
}
.usps .geo-triangle-usps-1 {
  top: 0; left: 0;
  border-width: 280px 280px 0 0;
  border-color: rgba(100, 128, 200, 0.25) transparent transparent transparent;
}
.usps .geo-triangle-usps-2 {
  bottom: 0; right: 0;
  border-width: 0 0 220px 220px;
  border-color: transparent transparent rgba(169, 238, 219, 0.20) transparent;
}
.usps .geo-line-usps {
  top: 40%; right: -50px;
  width: 400px; height: 2px;
  background: rgba(199, 189, 206, 0.35);
  transform: rotate(-20deg);
}
.usps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  position: relative;
  z-index: 2;
}
.usp-number {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: #1C636D;
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.usp-item h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}
.usp-item p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.7;
}
.usp-divider {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 60%;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.1), transparent);
}
.usp-item { position: relative; }

@media (max-width: 968px) {
  .usps-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .usp-divider { display: none; }
}
@media (max-width: 580px) {
  .usps-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================ */
/* SERVICES — 6 cards                           */
/* ============================================ */
.services {
  padding: 6rem 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.services .geo-triangle-services-1 {
  top: 0; right: 0;
  border-width: 220px 0 0 220px;
  border-color: transparent transparent transparent #6480C8;
  opacity: 0.12;
}
.services .geo-triangle-services-2 {
  bottom: 0; left: 0;
  border-width: 0 180px 180px 0;
  border-color: transparent #A9EEDB transparent transparent;
  opacity: 0.15;
}
.services .geo-diamond-1 {
  top: 15%; left: 5%;
  width: 55px; height: 55px;
  border: 2px solid #6480C8;
  opacity: 0.22;
  transform: rotate(45deg);
}
.services .geo-line-services {
  bottom: 30%; right: -30px;
  width: 300px; height: 2px;
  background: #C7BDCE;
  opacity: 0.25;
  transform: rotate(18deg);
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}
.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin: 0.75rem 0 1.2rem;
}
.section-header p {
  font-size: 1.05rem;
  line-height: 1.8;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  background: #FFFEFB;
  border: 1px solid #E8E4E0;
  border-radius: 8px;
  padding: 2.2rem 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: #1C636D;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(19, 60, 64, 0.08);
  border-color: transparent;
}
.service-card:hover::before {
  height: 100%;
}
.service-card-icon {
  width: 48px; height: 48px;
  background: rgba(28, 99, 109, 0.10);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.service-card-icon svg {
  width: 24px; height: 24px;
  color: #1C636D;
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}
.service-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #5E5E5E;
}

@media (max-width: 968px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================ */
/* CONTENT SPLIT — Aanpak (cream bg)            */
/* ============================================ */
.aanpak {
  padding: 6rem 0;
  background: #F7F4F0;
  position: relative;
  overflow: hidden;
}
.aanpak .geo-triangle-aanpak {
  top: 0; right: 0;
  border-width: 240px 0 0 240px;
  border-color: transparent transparent transparent #133C40;
  opacity: 0.12;
}
.aanpak .geo-rect-aanpak {
  bottom: 5%; left: 2%;
  width: 120px; height: 35px;
  background: #6480C8;
  opacity: 0.20;
  transform: skewX(-15deg);
}
.aanpak .geo-triangle-aanpak-2 {
  bottom: 0; left: 0;
  border-width: 0 160px 160px 0;
  border-color: transparent #A9EEDB transparent transparent;
  opacity: 0.12;
}
.aanpak-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.aanpak-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 0.75rem 0 1.5rem;
}
.aanpak-text > p {
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 2rem;
}
.aanpak-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
  padding: 0;
}
.aanpak-checks li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #21233D;
}
.aanpak-checks li svg {
  width: 20px; height: 20px;
  color: #133C40;
  flex-shrink: 0;
  margin-top: 2px;
}
.aanpak-image { position: relative; }
.aanpak-image img {
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.aanpak-image-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 0 240px 240px;
  border-color: transparent transparent #C7BDCE transparent;
  opacity: 0.25;
  z-index: -1;
}

@media (max-width: 968px) {
  .aanpak-grid { grid-template-columns: 1fr; gap: 3rem; }
  .aanpak-image { max-width: 500px; }
}

/* ============================================ */
/* CASES — 6 cards                              */
/* ============================================ */
.cases {
  padding: 6rem 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.cases .geo-triangle-cases {
  top: 0; left: 0;
  border-width: 200px 200px 0 0;
  border-color: #C7BDCE transparent transparent transparent;
  opacity: 0.18;
}
.cases .geo-triangle-cases-2 {
  bottom: 0; right: 0;
  border-width: 0 0 160px 160px;
  border-color: transparent transparent #6480C8 transparent;
  opacity: 0.10;
}
.cases .geo-line-cases {
  bottom: 20%; right: -20px;
  width: 350px; height: 2px;
  background: #A9EEDB;
  opacity: 0.30;
  transform: rotate(15deg);
}
.cases .geo-diamond-cases {
  top: 12%; right: 8%;
  width: 45px; height: 45px;
  border: 2px solid #6480C8;
  opacity: 0.18;
  transform: rotate(45deg);
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.case-card {
  background: #FFFEFB;
  border: 1px solid #E8E4E0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(19, 60, 64, 0.08);
  border-color: transparent;
}
.case-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.case-card-body {
  padding: 1.5rem 1.8rem 1.8rem;
}
.case-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6480C8;
  background: rgba(100, 128, 200, 0.08);
  padding: 0.3rem 0.75rem;
  border-radius: 3px;
  margin-bottom: 0.8rem;
}
.case-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}
.case-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #5E5E5E;
}

@media (max-width: 968px) {
  .cases-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .cases-grid { grid-template-columns: 1fr; }
}

/* ============================================ */
/* ABOUT — Peter Willems                        */
/* ============================================ */
.about {
  padding: 6rem 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.about .geo-triangle-about {
  bottom: 0; right: 0;
  border-width: 0 0 260px 260px;
  border-color: transparent transparent #A9EEDB transparent;
  opacity: 0.18;
}
.about .geo-triangle-about-2 {
  top: 0; left: 0;
  border-width: 180px 180px 0 0;
  border-color: #C7BDCE transparent transparent transparent;
  opacity: 0.12;
}
.about .geo-rect-about {
  top: 10%; right: 5%;
  width: 70px; height: 70px;
  border: 2px solid #6480C8;
  opacity: 0.22;
  transform: rotate(15deg);
}
.about-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 5rem;
  align-items: start;
}
.about-image-wrapper { position: relative; }
.about-image-wrapper img {
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 6/7;
  object-fit: cover;
}
.about-stats-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: #133C40;
  color: #fff;
  padding: 1.2rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  z-index: 3;
  box-shadow: 0 8px 30px rgba(19, 60, 64, 0.3);
}
.about-stats-number {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem;
  line-height: 1;
  color: #A9EEDB;
}
.about-stats-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
  opacity: 0.8;
}
.about-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 0.75rem 0 1.5rem;
}
.about-content > p {
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.about-motto {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: #133C40;
  border-left: 3px solid #A9EEDB;
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.6;
}
.about-sectors {
  background: #F7F4F0;
  border-radius: 8px;
  padding: 1.8rem 2rem;
  margin-top: 2rem;
}
.about-sectors p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: #5E5E5E;
}
.about-sectors p:first-child {
  margin-bottom: 0.8rem;
}

@media (max-width: 968px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrapper { max-width: 400px; }
}

/* ============================================ */
/* CTA BANNER                                   */
/* ============================================ */
.cta-banner {
  background: #1C636D;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(100, 128, 200, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(169, 238, 219, 0.07) 0%, transparent 50%);
}
.cta-banner .geo-triangle-left {
  top: 0; left: 0;
  border-width: 380px 380px 0 0;
  border-color: rgba(100, 128, 200, 0.25) transparent transparent transparent;
}
.cta-banner .geo-triangle-right {
  bottom: 0; right: 0;
  border-width: 0 0 320px 320px;
  border-color: transparent transparent rgba(169, 238, 219, 0.22) transparent;
}
.cta-banner .geo-triangle-center {
  top: 15%; left: 10%;
  border-width: 0 180px 180px 0;
  border-color: transparent rgba(19, 60, 64, 0.30) transparent transparent;
}
.cta-banner .geo-diamond-cta {
  bottom: 12%; left: 35%;
  width: 60px; height: 60px;
  border: 2px solid rgba(199, 189, 206, 0.38);
  transform: rotate(45deg);
}
.cta-banner .geo-line-cta {
  top: 60%; right: 8%;
  width: 300px; height: 2px;
  background: rgba(169, 238, 219, 0.30);
  transform: rotate(-25deg);
}
.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}
.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1.2rem;
}
.cta-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.cta-banner-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================ */
/* FOOTER                                       */
/* ============================================ */
.footer {
  background: #21233D;
  padding: 5rem 0 2rem;
  color: rgba(255,255,255,0.6);
  position: relative;
  overflow: hidden;
}
.footer .geo-triangle-footer {
  top: 0; right: 0;
  border-width: 180px 0 0 180px;
  border-color: transparent transparent transparent rgba(100, 128, 200, 0.18);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-logo {
  height: 96px;
  width: auto;
  margin-bottom: 1.5rem;
}
.footer-tagline {
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.footer h4 {
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: #1C636D; }
.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  font-size: 0.88rem;
}
.footer-contact-line svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: rgba(255,255,255,0.4);
}
.footer-contact-line a {
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-contact-line a:hover { color: #1C636D; }
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: rgba(255,255,255,0.1);
  border-color: #A9EEDB;
}
.footer-social a svg {
  width: 16px; height: 16px;
  color: rgba(255,255,255,0.5);
}
.footer-social a:hover svg { color: #1C636D; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
}
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

@media (max-width: 968px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================ */
/* CONTACT PAGE                                 */
/* ============================================ */
.page-header {
  padding: 10rem 0 4rem;
  background: #FFFEFB;
  position: relative;
  overflow: hidden;
}
.page-header h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin: 0.75rem 0 1rem;
}
.page-header p {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 600px;
}
.contact-section {
  padding: 5rem 0;
  background: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: start;
}
.contact-form {
  background: #FFFEFB;
  border: 1px solid #E8E4E0;
  border-radius: 8px;
  padding: 2.5rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #21233D;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #E8E4E0;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: #5E5E5E;
  background: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #133C40;
  box-shadow: 0 0 0 3px rgba(19, 60, 64, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.form-checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  accent-color: #133C40;
}
.form-checkbox label {
  font-size: 0.85rem;
  font-weight: 400;
  color: #5E5E5E;
  margin-bottom: 0;
}
.contact-info-card {
  background: #F7F4F0;
  border-radius: 8px;
  padding: 2.5rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-info-item:last-child {
  margin-bottom: 0;
}
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(19, 60, 64, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg {
  width: 20px; height: 20px;
  color: #133C40;
}
.contact-info-item h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #21233D;
  margin-bottom: 0.3rem;
}
.contact-info-item p,
.contact-info-item a {
  font-size: 0.9rem;
  color: #5E5E5E;
  line-height: 1.6;
}
.contact-info-item a:hover {
  color: #133C40;
}

@media (max-width: 968px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ============================================ */
/* GEOMETRIC RESPONSIVE                         */
/* ============================================ */
@media (max-width: 768px) {
  .geo-line, .geo-diamond, .geo-rect {
    display: none;
  }
  .geo-triangle {
    opacity: 0.10 !important;
  }
  .hero .geo-triangle-1 {
    border-width: 0 0 180px 180px !important;
  }
  .hero-image-accent {
    border-width: 0 0 180px 180px !important;
    opacity: 0.15 !important;
  }
  .hero-image-line {
    border-width: 120px 120px 0 0 !important;
    opacity: 0.10 !important;
  }
  .cta-banner .geo-triangle-left {
    border-width: 200px 200px 0 0 !important;
  }
  .cta-banner .geo-triangle-right {
    border-width: 0 0 160px 160px !important;
  }
}

/* ============================================ */
/* UTILITY: Container                           */
/* ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

/* General resets for production */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* Base typography */
body {
  font-family: 'DM Sans', sans-serif;
  color: #5E5E5E;
  background: #FFFEFB;
  line-height: 1.7;
  font-size: 16px;
}
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
  color: #21233D;
  line-height: 1.2;
  font-weight: 400;
}