
/* NAV (shared shell) */
/* Language switcher in nav */

.solutions-wrap,
.resources-wrap {
  position: relative;
  display: inline-flex;
}
.solutions-btn::after,
.resources-btn::after {
  content: "▾";
  font-size: 9px;
  transition: transform 0.15s;
  opacity: 0.7;
}
.solutions-wrap:hover .solutions-btn::after,
.resources-wrap:hover .resources-btn::after {
  transform: rotate(180deg);
}

/* BUTTONS */

/* VEE */
.vee-badge {
  display: inline-block;
}
@keyframes veeBlink {
  0%,
  86%,
  94%,
  100% {
    transform: scaleY(1);
  }
  90% {
    transform: scaleY(0.08);
  }
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
h2.section-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.02;
  margin-bottom: 18px;
}
h2.section-title .accent {
  background: linear-gradient(135deg, #a78bfa, #ec4899 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
p.section-sub {
  font-size: 17px;
  color: var(--w55);
  max-width: 640px;
  line-height: 1.55;
  margin-bottom: 48px;
}
section {
  padding: 90px 0;
  position: relative;
}

/* HERO */
.sec-hero {
  min-height: 72vh;
  padding: 120px 0 80px;
  display: flex;
  align-items: center;
  text-align: center;
  background:
    radial-gradient(
      ellipse at 50% 35%,
      rgba(52, 211, 153, 0.12) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 20% 80%,
      rgba(124, 58, 237, 0.22) 0%,
      transparent 55%
    ),
    #050208;
}
.sec-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
}
.sec-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 12px;
  border-radius: 20px;
  background: rgba(52, 211, 153, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(52, 211, 153, 0.3);
  font-size: 11px;
  font-weight: 800;
  color: #6ee7b7;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.sec-hero-badge .vee-badge {
  width: 48px;
  height: 48px;
  display: inline-block;
  margin: -14px 6px -14px -10px;
  animation: veeBadgeIdle 3.8s ease-in-out infinite;
  filter: drop-shadow(0 6px 14px rgba(52, 211, 153, 0.35));
}
.sec-hero h1 {
  font-size: clamp(46px, 6vw, 84px);
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 0.98;
  margin-bottom: 22px;
  color: #fff;
}
.sec-hero h1 .accent {
  background: linear-gradient(135deg, #34d399, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sec-hero p.lede {
  font-size: 19px;
  color: var(--w80);
  line-height: 1.5;
  max-width: 620px;
  margin: 0 auto 10px;
}
.sec-hero p.sub {
  font-size: 14px;
  color: var(--w55);
  max-width: 520px;
  margin: 0 auto;
}

/* 01 · PRINCIPLES */
.sec-principles {
  background: #0a0712;
  border-top: 1px solid var(--w04);
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}
.principle {
  padding: 32px 28px;
  background: var(--dark2);
  border: 1px solid var(--w08);
  border-radius: 20px;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.principle:hover {
  transform: translateY(-3px);
  border-color: rgba(52, 211, 153, 0.3);
}
.principle-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(52, 211, 153, 0.2),
    rgba(124, 58, 237, 0.1)
  );
  border: 1px solid rgba(52, 211, 153, 0.25);
  margin-bottom: 18px;
  color: #6ee7b7;
}
.principle-icon svg {
  width: 24px;
  height: 24px;
}
.principle h4 {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.4px;
  color: #fff;
  margin-bottom: 10px;
}
.principle p {
  font-size: 14px;
  color: var(--w55);
  line-height: 1.6;
}
.principle p strong {
  color: #fff;
  font-weight: 700;
}

/* 02 · DATA HANDLING TABLE */
.sec-data {
  background: var(--dark);
}
.data-frame {
  margin-top: 32px;
  background: var(--dark2);
  border: 1px solid var(--w08);
  border-radius: 22px;
  overflow: hidden;
}
.data-row {
  display: grid;
  grid-template-columns: 280px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 20px 28px;
  border-bottom: 1px solid var(--w04);
}
.data-row:last-child {
  border-bottom: none;
}
.data-row:hover {
  background: rgba(255, 255, 255, 0.02);
}
.data-label {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.2px;
}
.data-label .tag {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--purple-light);
  text-transform: uppercase;
  margin-top: 3px;
}
.data-value {
  font-size: 13.5px;
  color: var(--w80);
  line-height: 1.55;
}
.data-value strong {
  color: #fff;
  font-weight: 700;
}
.data-status {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
}
.data-status.ok {
  background: rgba(52, 211, 153, 0.15);
  color: #6ee7b7;
  border: 1px solid rgba(52, 211, 153, 0.3);
}
.data-status.soon {
  background: rgba(255, 255, 255, 0.05);
  color: var(--w55);
  border: 1px solid var(--w08);
}

/* 03 · EU / COPENHAGEN */
.sec-eu {
  background: #0a0712;
  border-top: 1px solid var(--w04);
}
.eu-frame {
  margin-top: 24px;
  padding: 48px;
  background: linear-gradient(
    135deg,
    rgba(52, 211, 153, 0.06),
    rgba(124, 58, 237, 0.08)
  );
  border: 1px solid rgba(52, 211, 153, 0.18);
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.eu-copy h3 {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.8px;
  line-height: 1.1;
  margin-bottom: 18px;
}
.eu-copy h3 .accent {
  background: linear-gradient(135deg, #34d399, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.eu-copy p {
  font-size: 15px;
  color: var(--w80);
  line-height: 1.7;
  margin-bottom: 16px;
}
.eu-copy p strong {
  color: #fff;
  font-weight: 700;
}
.eu-facts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.eu-fact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--w80);
}
.eu-fact::before {
  content: "✓";
  color: #6ee7b7;
  font-weight: 900;
  font-size: 14px;
  width: 20px;
  text-align: center;
}

.eu-map {
  aspect-ratio: 1;
  border-radius: 22px;
  background:
    radial-gradient(
      circle at 52% 38%,
      rgba(52, 211, 153, 0.5) 0%,
      transparent 12%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(124, 58, 237, 0.2) 0%,
      transparent 60%
    ),
    linear-gradient(135deg, #1a1528, #0d0a14);
  border: 1px solid var(--w08);
  position: relative;
  overflow: hidden;
}
.eu-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent 0,
    transparent 22px,
    rgba(255, 255, 255, 0.03) 22px,
    rgba(255, 255, 255, 0.03) 23px
  );
}
.eu-pin {
  position: absolute;
  top: 38%;
  left: 52%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #34d399;
  box-shadow:
    0 0 0 8px rgba(52, 211, 153, 0.25),
    0 0 40px rgba(52, 211, 153, 0.6);
  animation: pinPulse 2.2s infinite;
}
@keyframes pinPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}
.eu-pin-label {
  position: absolute;
  top: 48%;
  left: 52%;
  transform: translateX(-50%);
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(10, 6, 18, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(52, 211, 153, 0.3);
  font-size: 11px;
  font-weight: 800;
  color: #6ee7b7;
  letter-spacing: 0.5px;
  z-index: 2;
}

/* 04 · WHAT WE DON'T DO */
.sec-nopes {
  background: var(--dark);
}
.nope-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.nope {
  padding: 24px 26px;
  background: var(--dark2);
  border: 1px solid var(--w08);
  border-radius: 16px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.3s;
}
.nope:hover {
  border-color: rgba(239, 68, 68, 0.25);
}
.nope-x {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(239, 68, 68, 0.12);
  color: #fca5a5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  flex-shrink: 0;
}
.nope h4 {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.2px;
  margin-bottom: 4px;
}
.nope p {
  font-size: 13px;
  color: var(--w55);
  line-height: 1.55;
}

/* 05 · COMPLIANCE CONTACT */
.sec-contact {
  padding: 100px 0 120px;
  text-align: center;
  background:
    radial-gradient(
      ellipse at 50% 50%,
      rgba(52, 211, 153, 0.1) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 50% 50%,
      rgba(124, 58, 237, 0.15) 0%,
      transparent 60%
    );
}
.sec-contact-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  display: block;
  filter: drop-shadow(0 8px 32px rgba(52, 211, 153, 0.4));
}
.sec-contact h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -2.2px;
  line-height: 1.02;
  margin-bottom: 16px;
  color: #fff;
}
.sec-contact h2 .accent {
  background: linear-gradient(135deg, #34d399, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sec-contact p {
  font-size: 17px;
  color: var(--w55);
  max-width: 580px;
  margin: 0 auto 28px;
}
.sec-contact .emails {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto 40px;
}
.email-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: var(--dark2);
  border: 1px solid var(--w08);
  border-radius: 12px;
  font-size: 14px;
}
.email-row .lbl {
  color: var(--w55);
  font-weight: 600;
}
.email-row .v {
  color: #fff;
  font-weight: 700;
  font-family: "SF Mono", monospace;
}
.sec-contact-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 1310px) {
  .principles-grid {
    grid-template-columns: 1fr;
  }
  .data-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .eu-frame {
    grid-template-columns: 1fr;
    padding: 32px;
  }
  .nope-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {  .wrap {
    padding: 0 20px;
  }
  section {
    padding: 60px 0;
  }
}
