/* TransOasis website styles */

@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,500&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");

:root {
  --grad-start: #f4b6c0;
  --grad-end: #b6dceb;
  --accent: #7c5fb8;
  --bg: #f6f2ff;
  --surface: #ffffff;
  --soft: #efe9fb;
  --ink: #2a1f47;
  --ink-soft: #6b5d8a;
  --heading-font: "Quicksand", sans-serif;
  --body-font: "Plus Jakarta Sans", sans-serif;
  --radius: 28px;
  --radius-sm: 18px;
  --shadow-soft: 0 12px 40px -12px rgba(124, 95, 184, 0.18);
  --shadow-card: 0 24px 60px -20px rgba(124, 95, 184, 0.25);
  --grad: linear-gradient(135deg, var(--grad-start) 0%, var(--grad-end) 100%);
  --grad-soft: linear-gradient(135deg, color-mix(in oklab, var(--grad-start) 40%, white) 0%, color-mix(in oklab, var(--grad-end) 40%, white) 100%);
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body-font);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.55;
  scroll-behavior: smooth;
}

html, body { overflow-x: clip; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

em {
  font-style: normal;
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-style: italic;
  background: var(--grad);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.page {
  position: relative;
  min-height: 100vh;
}

.page.dark {
  --shadow-soft: 0 12px 40px -12px rgba(0, 0, 0, 0.45);
  --shadow-card: 0 24px 60px -20px rgba(0, 0, 0, 0.55);
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  transition: all 0.3s ease;
}
.nav--scrolled {
  background: color-mix(in oklab, var(--bg) 96%, transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 16px rgba(124, 95, 184, 0.12);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 17px;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.nav__logo {
  width: 96px; height: 96px;
  margin: -16px 0;
  filter: drop-shadow(0 2px 6px rgba(124, 95, 184, 0.25));
}
.nav__brand-name { display: none; }
.nav__tagline {
  display: inline-flex;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.005em;
  line-height: 1;
  align-items: center;
  gap: 6px;
  margin-left: 4px;
  flex-wrap: wrap;
}
.tag-rust { color: #1F9B8E; }
.tag-richting { color: #6ba8d6; }
.tag-kracht { color: #e89aae; }
.tag-dot { color: var(--ink-soft); opacity: 0.55; font-weight: 400; }
@media (min-width: 760px) {
  .nav__tagline { font-size: 18px; gap: 10px; }
}

.nav__toggle {
  background: transparent;
  border: 0;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  cursor: pointer;
  border-radius: 12px;
}
.nav__burger { position: relative; width: 22px; height: 16px; display: block; }
.nav__burger span {
  position: absolute; left: 0;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.25s ease;
}
.nav__burger span:nth-child(1) { top: 0; }
.nav__burger span:nth-child(2) { top: 7px; }
.nav__burger span:nth-child(3) { top: 14px; }
.nav__burger.open span:nth-child(1) { top: 7px; transform: rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

.nav__menu {
  position: fixed;
  inset: 64px 12px auto 12px;
  background: var(--surface);
  border-radius: 24px;
  padding: 12px;
  box-shadow: var(--shadow-card);
  display: none;
  flex-direction: column;
  gap: 2px;
}
.nav__menu.open { display: flex; }
.nav__menu a {
  padding: 14px 18px;
  border-radius: 14px;
  color: var(--ink);
  font-weight: 500;
  font-size: 16px;
  transition: background 0.2s;
}
.nav__menu a:hover { background: var(--soft); }
.nav__menu .nav__cta {
  margin-top: 4px;
  background: var(--grad);
  color: white;
  text-align: center;
  font-weight: 600;
}

@media (min-width: 760px) {
  .nav { padding: 18px 40px; }
  .nav__logo { width: 120px; height: 120px; margin: -24px 0; }
  .nav__toggle { display: none; }
  .nav__menu {
    position: static;
    display: flex;
    flex-direction: row;
    background: transparent;
    box-shadow: none;
    padding: 0;
    gap: 6px;
    align-items: center;
  }
  .nav__menu a { padding: 10px 14px; font-size: 15px; }
  .nav__brand-name { font-size: 19px; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 100px 22px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__gradient {
  position: absolute; inset: -10%;
  background:
    radial-gradient(ellipse 80% 60% at 30% 20%, color-mix(in oklab, var(--grad-start) 70%, transparent) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 80% 70%, color-mix(in oklab, var(--grad-end) 70%, transparent) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 100%, color-mix(in oklab, var(--accent) 30%, transparent) 0%, transparent 60%);
  filter: blur(40px);
  opacity: 0.85;
}
.page.dark .hero__gradient { opacity: 0.55; }

.hero__content {
  position: relative; z-index: 2;
  max-width: 720px;
}
.hero__logo-wrap {
  margin-bottom: 28px;
}
.hero__logo {
  width: 240px;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(124, 95, 184, 0.25));
}
@media (min-width: 760px) {
  .hero__logo { width: 340px; }
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in oklab, var(--surface) 70%, transparent);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 28px;
  border: 1px solid color-mix(in oklab, var(--accent) 15%, transparent);
}
.hero__eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--grad);
  border-radius: 50%;
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--grad-start) 25%, transparent);
}

.hero__title {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: clamp(40px, 9vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  text-wrap: balance;
}

.hero__sub {
  font-size: clamp(16px, 2.4vw, 19px);
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 0 36px;
  text-wrap: pretty;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 999px;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 15px;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--grad);
  color: white;
  box-shadow: 0 12px 30px -10px color-mix(in oklab, var(--grad-start) 60%, transparent);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px color-mix(in oklab, var(--grad-start) 70%, transparent); }
.btn--ghost {
  background: color-mix(in oklab, var(--surface) 70%, transparent);
  backdrop-filter: blur(8px);
  color: var(--ink);
  border: 1px solid color-mix(in oklab, var(--ink) 12%, transparent);
}
.btn--ghost:hover { background: var(--surface); }
.btn--full { width: 100%; justify-content: center; }

.hero__pwa {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid color-mix(in oklab, var(--accent) 15%, transparent);
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink);
  max-width: 460px;
  box-shadow: 0 4px 14px -8px rgba(124, 95, 184, 0.25);
}
.hero__pwa-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--soft);
  border-radius: 10px;
  color: var(--accent);
}
.hero__pwa strong { color: var(--accent); font-weight: 600; }

.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 14px;
  background: var(--ink);
  color: white;
  border-radius: 14px;
  font-family: var(--heading-font);
}
.page.dark .store-badge { background: #0c0817; }
.store-badge__icon { display: grid; place-items: center; }
.store-badge__sub { font-size: 11px; opacity: 0.7; line-height: 1; margin-bottom: 3px; }
.store-badge__label { font-size: 16px; font-weight: 600; line-height: 1; }

/* butterflies in hero */
.butterflies {
  position: absolute; inset: 0;
  pointer-events: none;
}
.butterfly {
  position: absolute;
  animation: float-bf 9s ease-in-out infinite;
  filter: drop-shadow(0 6px 12px rgba(124, 95, 184, 0.18));
}
.butterfly .bf-wings {
  transform-origin: 50px 55px;
  animation: flap 0.9s ease-in-out infinite alternate;
}
@keyframes flap {
  0% { transform: scaleX(1); }
  100% { transform: scaleX(0.55); }
}
@keyframes float-bf {
  0%, 100% { transform: translateY(0) translateX(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-30px) translateX(15px) rotate(var(--r, 0deg)); }
}

/* flowers */
.flowers { position: absolute; inset: 0; pointer-events: none; }
.flower {
  position: absolute;
  animation: sway 6s ease-in-out infinite;
  filter: drop-shadow(0 4px 10px rgba(244, 182, 192, 0.3));
}
@keyframes sway {
  0%, 100% { transform: rotate(-4deg); }
  50% { transform: rotate(4deg); }
}

/* abstract orbs */
.abstract { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
  animation: drift 20s ease-in-out infinite;
}
.orb--1 { width: 300px; height: 300px; background: var(--grad-start); top: 10%; left: -10%; }
.orb--2 { width: 400px; height: 400px; background: var(--grad-end); top: 30%; right: -15%; animation-delay: -5s; }
.orb--3 { width: 250px; height: 250px; background: var(--accent); bottom: 10%; left: 30%; opacity: 0.3; animation-delay: -10s; }
.orb--4 { width: 200px; height: 200px; background: var(--grad-start); top: 60%; left: 60%; animation-delay: -15s; }
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.1); }
  66% { transform: translate(-30px, 40px) scale(0.9); }
}

/* ---------- LAUNCH ---------- */
.launch {
  padding: 0 16px;
  margin: -30px 0 0;
  position: relative; z-index: 3;
}
.launch__card {
  background: var(--grad);
  border-radius: var(--radius);
  padding: 22px 22px 22px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-card);
  color: white;
  position: relative;
  overflow: hidden;
}
.launch__card::after {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.4), transparent);
  pointer-events: none;
}
.launch__pill {
  background: rgba(255, 255, 255, 0.85);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 999px;
  flex-shrink: 0;
}
.launch__body { flex: 1; min-width: 0; }
.launch__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--heading-font);
  margin-bottom: 2px;
}
.launch__big { font-size: 28px; font-weight: 700; }
.launch__per { font-size: 14px; opacity: 0.85; margin-right: 4px; }
.launch__strike {
  font-size: 16px;
  text-decoration: line-through;
  opacity: 0.7;
}
.launch__note {
  font-size: 13px;
  opacity: 0.92;
}
.launch__arrow {
  width: 44px; height: 44px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  color: white;
  transition: transform 0.2s;
}
.launch__arrow:hover { transform: translateX(3px); background: rgba(255,255,255,0.4); }

@media (min-width: 760px) {
  .launch { padding: 0 40px; }
  .launch__card { padding: 28px 32px; }
  .launch__big { font-size: 36px; }
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 80px 22px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 760px) {
  .section { padding: 110px 40px; }
}

.section__label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section__line {
  width: 30px; height: 2px;
  background: var(--grad);
  border-radius: 2px;
}

.section__title {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: clamp(32px, 6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  text-wrap: balance;
}

.section__lead {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 0 48px;
  text-wrap: pretty;
}

/* ---------- MISSION ---------- */
.mission__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 760px) {
  .mission__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
.mcard {
  background: var(--surface);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid color-mix(in oklab, var(--accent) 8%, transparent);
}
.page.dark .mcard { background: var(--surface); border-color: color-mix(in oklab, white 10%, transparent); }
.mcard__icon {
  width: 52px; height: 52px;
  background: var(--grad);
  border-radius: 16px;
  display: grid; place-items: center;
  color: white;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px -8px color-mix(in oklab, var(--grad-start) 60%, transparent);
}
.mcard__title {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 20px;
  margin: 0 0 8px;
  color: var(--ink);
}
.mcard__body {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- FEATURES ---------- */
.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 600px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (min-width: 900px) {
  .features__grid { grid-template-columns: repeat(3, 1fr); }
}
.fcard {
  position: relative;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid color-mix(in oklab, var(--accent) 8%, transparent);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.page.dark .fcard { border-color: color-mix(in oklab, white 10%, transparent); }
.fcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.fcard__icon-wrap {
  width: 56px; height: 56px;
  border-radius: 18px;
  background: var(--grad-soft);
  display: grid; place-items: center;
  margin-bottom: 18px;
  position: relative;
}
.fcard__icon { color: var(--accent); }
.fcard__title {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 19px;
  margin: 0 0 6px;
}
.fcard__body {
  color: var(--ink-soft);
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
}

/* ---------- APP PREVIEW ---------- */
.preview { text-align: left; }
.preview__phones {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  perspective: 1200px;
}
.phone {
  position: relative;
  flex: 1;
  max-width: 280px;
  animation: phone-float 6s ease-in-out infinite;
}
.preview__compat {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}
.compat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--surface);
  border: 1px solid var(--soft);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  box-shadow: 0 4px 12px -6px rgba(124, 95, 184, 0.15);
}
.preview__phones--single {
  perspective: none;
  margin-top: 24px;
}
.preview__hero-img {
  width: 100%;
  max-width: 760px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 30px 50px rgba(124, 95, 184, 0.25));
  animation: phone-float 8s ease-in-out infinite;
}
.app-teaser__phones .preview__hero-img {
  max-width: 480px;
}
.phone--phone-bare {
  max-width: 280px;
  align-self: center;
  animation: phone-float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 30px rgba(124, 95, 184, 0.25));
}
.phone__bare-img {
  width: 100%;
  display: block;
}
.phone--phone .phone__frame {
  border-radius: 36px;
  padding: 6px;
}
.phone--phone .phone__notch {
  width: 52px; height: 14px; top: 10px;
}
.phone--phone .phone__screen {
  border-radius: 30px;
  background: linear-gradient(135deg, #f4d6dc 0%, #d4d0ee 50%, #b6dceb 100%);
}
.phone--tablet { max-width: 280px; }
.phone:nth-child(1) { animation-delay: 0s; }
.phone:nth-child(2) { animation-delay: -2s; }
.phone:nth-child(3) { animation-delay: -4s; }
@keyframes phone-float {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-10px) rotate(var(--rot, 0deg)); }
}
.phone__frame {
  position: relative;
  border-radius: 32px;
  background: #1a1230;
  padding: 8px;
  box-shadow:
    var(--shadow-card),
    inset 0 0 0 2px rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.phone__notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 16px;
  background: #000;
  border-radius: 999px;
  z-index: 2;
}
.phone__screen {
  width: 100%;
  border-radius: 26px;
  display: block;
}
.phone__shadow {
  position: absolute;
  bottom: -20px; left: 10%; right: 10%;
  height: 30px;
  background: radial-gradient(ellipse, rgba(124, 95, 184, 0.25), transparent 70%);
  filter: blur(15px);
}

@media (max-width: 500px) {
  .preview__phones { gap: 8px; }
}

/* ---------- CATEGORIES ---------- */
.cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cat-chip {
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--grad-soft);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 15px;
  color: var(--accent);
  border: 1px solid color-mix(in oklab, var(--accent) 12%, transparent);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default;
}
.cat-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -10px color-mix(in oklab, var(--grad-start) 50%, transparent);
}

/* ---------- PRICING ---------- */
.plan-toggle {
  display: inline-flex;
  background: var(--soft);
  border-radius: 999px;
  padding: 4px;
  margin: 24px auto 32px;
  gap: 4px;
}
.plan-toggle__btn {
  border: 0;
  background: transparent;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.plan-toggle__btn.is-active {
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 4px 12px -4px rgba(124, 95, 184, 0.2);
}
.plan-toggle__badge {
  background: var(--grad);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}
.plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 540px;
  margin: 0 auto;
}
@media (min-width: 760px) {
  .plans { grid-template-columns: 1fr 1fr; max-width: 900px; gap: 24px; }
}
.plans .price-card { max-width: none; transition: opacity 0.3s, transform 0.3s; }
.plans .price-card.is-dim { opacity: 0.5; transform: scale(0.98); }
.price-card--featured { border: 2px solid var(--accent); }
.price-card__pill--accent { background: var(--accent); color: white; }
.price-card__sub { font-size: 13px; color: var(--ink-soft); }
.price-card__small--center { text-align: center; margin-top: 24px; }

.price-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid color-mix(in oklab, var(--accent) 10%, transparent);
  position: relative;
  overflow: hidden;
  max-width: 540px;
}
.page.dark .price-card { border-color: color-mix(in oklab, white 12%, transparent); }
.price-card::before {
  content: "";
  position: absolute;
  top: -50%; right: -30%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, color-mix(in oklab, var(--grad-start) 50%, transparent), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.price-card > * { position: relative; }
.price-card__pill {
  display: inline-block;
  background: var(--grad);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.price-card__amount {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: clamp(48px, 10vw, 72px);
  letter-spacing: -0.03em;
  line-height: 1;
  background: var(--grad);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.price-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.price-card__strike {
  font-size: 18px;
  color: var(--ink-soft);
  text-decoration: line-through;
}
.price-card__per {
  font-size: 13px;
  color: var(--ink-soft);
}
.price-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-card__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}
.price-card__small {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-soft);
  text-align: center;
}

/* ---------- ARTICLES ---------- */
.articles__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 760px) {
  .articles__list { grid-template-columns: repeat(3, 1fr); }
}
.article {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid color-mix(in oklab, var(--accent) 8%, transparent);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.page.dark .article { border-color: color-mix(in oklab, white 10%, transparent); }
.article:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.article__visual {
  height: 160px;
  position: relative;
  overflow: hidden;
}
.article__visual.hue-0 { background: linear-gradient(135deg, #f4b6c0, #f9d6db); }
.article__visual.hue-1 { background: linear-gradient(135deg, #b6dceb, #d4eaf2); }
.article__visual.hue-2 { background: linear-gradient(135deg, #d9c2ec, #ecdef5); }
.article__visual--cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.article__pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.4), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.3), transparent 40%);
}
.article__visual::after {
  content: none;
}

/* ─── Type toggle (Alles / Blog / Artikel) ─── */
.type-toggle {
  display: flex;
  gap: 10px;
  margin: 0 0 22px;
  flex-wrap: wrap;
}
.type-toggle__btn {
  flex: 1 1 180px;
  min-width: 160px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1.5px solid color-mix(in oklab, var(--accent) 14%, transparent);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-family: var(--body-font);
  transition: border-color 0.2s, background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.type-toggle__btn:hover {
  border-color: color-mix(in oklab, var(--accent) 32%, transparent);
  transform: translateY(-1px);
}
.type-toggle__btn.is-active {
  background: linear-gradient(135deg, color-mix(in oklab, var(--accent) 10%, var(--surface)), var(--surface));
  border-color: var(--accent);
  box-shadow: 0 6px 18px -8px color-mix(in oklab, var(--accent) 40%, transparent);
}
.type-toggle__label {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  grid-column: 1;
  grid-row: 1;
}
.type-toggle__sub {
  font-size: 12.5px;
  color: var(--ink-soft);
  grid-column: 1;
  grid-row: 2;
  margin-top: 2px;
}
.type-toggle__count {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-width: 28px;
  padding: 3px 9px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--accent) 10%, var(--surface));
  color: var(--accent);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 12.5px;
  text-align: center;
  align-self: center;
}
.type-toggle__btn.is-active .type-toggle__count {
  background: var(--accent);
  color: white;
}

/* ─── Kind-pill op het kaartje (Blog / Artikel) ─── */
.article__kind {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(42, 31, 71, 0.10);
}
.article__kind--blog {
  background: rgba(31, 155, 142, 0.92);
  color: white;
}
.article__kind--artikel {
  background: rgba(124, 95, 184, 0.92);
  color: white;
}

/* ─── "Binnenkort"-badge (rechtsboven op de cover) ─── */
.article__soon {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--ink);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(42, 31, 71, 0.08);
}

/* "Binnenkort" cards — niet klikbaar, lichte fade */
.article--soon {
  cursor: default;
  position: relative;
}
.article--soon:hover {
  transform: none;
  box-shadow: var(--shadow-card-soft, 0 2px 12px rgba(42, 31, 71, 0.06));
}
.article--soon .article__visual {
  opacity: 0.7;
}
.article--soon .article__title {
  color: var(--ink-soft);
}
.article__body { padding: 22px; }
.article__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.article__title {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.3;
  margin: 0 0 12px;
  text-wrap: balance;
}
.article__meta {
  font-size: 13px;
  color: var(--ink-soft);
}

/* ---------- CONTACT ---------- */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 460px;
}
.input {
  padding: 16px 20px;
  border-radius: 999px;
  border: 1.5px solid color-mix(in oklab, var(--accent) 15%, transparent);
  background: var(--surface);
  font-family: var(--body-font);
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 15%, transparent);
}
.contact__thanks {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  background: var(--grad-soft);
  border-radius: var(--radius);
  max-width: 460px;
}
.contact__thanks-icon {
  width: 48px; height: 48px;
  background: var(--grad);
  color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact__alt {
  margin-top: 32px;
  font-size: 14px;
  color: var(--ink-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.contact__alt a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- FOOTER ---------- */
.footer {
  margin-top: 60px;
  padding: 60px 22px 30px;
  background:
    linear-gradient(180deg, transparent, color-mix(in oklab, var(--accent) 6%, transparent));
}
.page.dark .footer {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.3));
}
.footer__top { margin-bottom: 32px; max-width: 1100px; margin-inline: auto; }
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 8px;
}
.footer__logo { width: 44px; height: 44px; }
.footer__tag { color: var(--ink-soft); margin: 0; }

.footer__cols {
  max-width: 1100px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid color-mix(in oklab, var(--accent) 12%, transparent);
}
.footer__h {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 12px;
}
.footer__cols a {
  display: block;
  color: var(--ink-soft);
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer__cols a:hover { color: var(--accent); }
.footer__bottom {
  max-width: 1100px;
  margin: 24px auto 0;
  font-size: 13px;
  color: var(--ink-soft);
}
@media (min-width: 760px) {
  .footer { padding: 80px 40px 30px; }
  .footer__cols { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

/* ---------- FLOATING BUTTERFLIES ---------- */
.floating-bfs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.float-bf {
  position: absolute;
  animation: float-down 18s ease-in-out infinite;
  opacity: 0.5;
}
@keyframes float-down {
  0% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(50vh) translateX(40px); }
  100% { transform: translateY(100vh) translateX(-30px); }
}

/* keep content above floating */
.section, .launch, .footer, .hero { position: relative; z-index: 2; }

/* ---------- HOME TEASER SECTIONS ---------- */
.mission-teaser { text-align: center; padding-top: 80px; padding-bottom: 60px; }
.mission-teaser .btn { margin-top: 24px; }

.app-teaser__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .app-teaser__grid { grid-template-columns: 1fr 1fr; gap: 60px; }
}
.app-teaser__phones {
  display: flex; gap: 20px; justify-content: center;
}
.app-teaser__phones .phone { width: 180px; }

.price-teaser { padding: 60px 22px 100px; }
.price-teaser__card {
  background: var(--grad);
  border-radius: var(--radius);
  padding: 48px 28px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-card);
  text-align: center;
}
.price-teaser__card::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.4), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.3), transparent 50%);
  pointer-events: none;
}
.price-teaser__inner { position: relative; }
.price-teaser__card .section__label { color: rgba(255, 255, 255, 0.85); justify-content: center; }
.price-teaser__card .section__line { background: rgba(255, 255, 255, 0.6); }
.price-teaser__title { color: white; }
.price-teaser__title em {
  background: linear-gradient(135deg, #fff, rgba(255,255,255,0.7));
  background-clip: text; -webkit-background-clip: text;
  color: transparent; font-style: normal;
}
.price-teaser__lead { color: rgba(255, 255, 255, 0.92); }
.price-teaser .btn--primary {
  background: white; color: var(--accent);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.2);
}
@media (min-width: 760px) {
  .price-teaser { padding: 80px 40px 120px; }
  .price-teaser__card { padding: 64px; }
}

/* ---------- NAV active state ---------- */
.nav__menu a.is-active {
  color: var(--accent);
  font-weight: 600;
}
@media (min-width: 760px) {
  .nav__menu a.is-active {
    background: color-mix(in oklab, var(--accent) 10%, transparent);
    border-radius: 999px;
  }
}

/* ---------- BUTTONS extra ---------- */
.btn--sm { padding: 12px 18px; font-size: 14px; }

/* ---------- ARTICLES head row ---------- */
.articles__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.articles__head .section__label,
.articles__head .section__title { margin-bottom: 0; }
.articles__head .section__title { margin-top: 8px; }

/* ---------- CONTACT TEASER ---------- */
.contact-teaser { padding: 60px 22px 100px; }
.contact-teaser__card {
  background: var(--grad);
  border-radius: var(--radius);
  padding: 48px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.contact-teaser__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.4), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.3), transparent 50%);
  pointer-events: none;
}
.contact-teaser__inner { position: relative; }
.contact-teaser__card .section__label { color: rgba(255, 255, 255, 0.85); }
.contact-teaser__card .section__line { background: rgba(255, 255, 255, 0.6); }
.contact-teaser__title { color: white; }
.contact-teaser__title em {
  background: linear-gradient(135deg, #fff, rgba(255,255,255,0.7));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.contact-teaser__lead { color: rgba(255, 255, 255, 0.92); }
.contact-teaser .btn--primary {
  background: white;
  color: var(--accent);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.2);
}
@media (min-width: 760px) {
  .contact-teaser { padding: 80px 40px 120px; }
  .contact-teaser__card { padding: 64px; }
}

/* ---------- PAGE HERO (sub-pages) ---------- */
.page-hero {
  position: relative;
  padding: 120px 22px 60px;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.page-hero__bg .hero__gradient {
  position: absolute; inset: -10%;
  background:
    radial-gradient(ellipse 70% 50% at 30% 20%, color-mix(in oklab, var(--grad-start) 60%, transparent) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 60%, color-mix(in oklab, var(--grad-end) 60%, transparent) 0%, transparent 60%);
  filter: blur(40px);
  opacity: 0.7;
}
.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
.page-hero__title {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: clamp(36px, 7vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  text-wrap: balance;
}
.page-hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0;
  text-wrap: pretty;
}
@media (min-width: 760px) {
  .page-hero { padding: 140px 40px 80px; }
}

/* ---------- FILTER CHIPS ---------- */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.filter-chip {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1.5px solid color-mix(in oklab, var(--accent) 15%, transparent);
  background: var(--surface);
  color: var(--ink-soft);
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-chip:hover { border-color: var(--accent); color: var(--ink); }
.filter-chip.is-active {
  background: var(--grad);
  color: white;
  border-color: transparent;
}

.articles__list--full {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 600px) {
  .articles__list--full { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .articles__list--full { grid-template-columns: repeat(3, 1fr); }
}

.empty {
  padding: 60px 0;
  text-align: center;
  color: var(--ink-soft);
}

/* ---------- ARTICLE PAGE ---------- */
.article-page { padding-bottom: 80px; }
.article-page__hero {
  padding: 100px 22px 60px;
  position: relative;
}
.article-page__hero.hue-0 { background: linear-gradient(135deg, #f4b6c0, #f9d6db); }
.article-page__hero.hue-1 { background: linear-gradient(135deg, #b6dceb, #d4eaf2); }
.article-page__hero.hue-2 { background: linear-gradient(135deg, #d9c2ec, #ecdef5); }
.article-page__hero-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.article-page__back {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 24px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.article-page__back:hover { opacity: 1; }
.article-page__tag {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 0 16px;
  display: inline-block;
}
.article-page__title {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: clamp(32px, 6vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--ink);
  text-wrap: balance;
}
.article-page__meta {
  font-size: 14px;
  color: var(--ink-soft);
}
.article-page__body {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 22px 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
}
.article-page__lede {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid color-mix(in oklab, var(--accent) 15%, transparent);
}
.article-page__body h2 {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 24px;
  margin: 40px 0 16px;
  letter-spacing: -0.01em;
}
.article-page__body p { margin: 0 0 20px; text-wrap: pretty; }
.article-page__body ul {
  margin: 0 0 24px;
  padding-left: 24px;
}
.article-page__body li {
  margin-bottom: 10px;
}
.article-page__cta {
  margin-top: 60px;
  padding: 32px;
  background: var(--grad-soft);
  border-radius: var(--radius);
  text-align: center;
}
.article-page__cta h3 {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 8px;
}
.article-page__cta p {
  color: var(--ink-soft);
  margin: 0 0 20px;
}
@media (min-width: 760px) {
  .article-page__hero { padding: 140px 40px 80px; }
  .article-page__body { padding: 60px 40px 0; }
}

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

/* Naam + e-mail naast elkaar zodat het formulier breder en minder hoog is */
.form-duo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) {
  .form-duo { grid-template-columns: 1fr 1fr; gap: 20px; }
}

.contact-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid color-mix(in oklab, var(--accent) 8%, transparent);
}
.page.dark .contact-card { border-color: color-mix(in oklab, white 10%, transparent); }
@media (min-width: 760px) {
  .contact-card { padding: 40px; }
}

.form-row { margin-bottom: 18px; }
.form-label {
  display: block;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 8px;
}
.input--area {
  border-radius: 18px;
  padding: 14px 18px;
  font-family: var(--body-font);
  resize: vertical;
  min-height: 100px;
}

/* Invoervelden vullen de volledige breedte van het formulier — het berichtveld
   strekt zo over de hele breedte, wat prettiger leest tijdens het typen */
.contact-card .input { width: 100%; }
.contact-card .input--area { min-height: 150px; }

.reason-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.reason-chip {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1.5px solid color-mix(in oklab, var(--accent) 15%, transparent);
  background: var(--surface);
  color: var(--ink-soft);
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.reason-chip:hover { border-color: var(--accent); }
.reason-chip.is-active {
  background: var(--grad);
  color: white;
  border-color: transparent;
}

.form-foot {
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
}

.form-error {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: color-mix(in oklab, #963F9E 8%, transparent);
  border: 1px solid color-mix(in oklab, #963F9E 22%, transparent);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
}

.form-error a {
  color: #963F9E;
  font-weight: 600;
}

.contact__thanks p {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.contact-grid__aside {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) {
  .contact-grid__aside { grid-template-columns: 1fr 1fr; align-items: stretch; }
}
.contact-info {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 24px;
  border: 1px solid color-mix(in oklab, var(--accent) 8%, transparent);
}
.page.dark .contact-info { border-color: color-mix(in oklab, white 10%, transparent); }
.contact-info--soft {
  background: var(--grad-soft);
  border-color: transparent;
}

/* Trans-vlag accentkleuren — beide kaders even groot (stretch in de grid) */
.contact-info--blue {
  background: #55CDFC;
  border-color: transparent;
}
.contact-info--pink {
  background: #F7A8B8;
  border-color: transparent;
}
.contact-info.contact-info--blue .contact-info__h,
.contact-info.contact-info--pink .contact-info__h,
.contact-info.contact-info--blue p,
.contact-info.contact-info--pink p,
.contact-info.contact-info--blue strong,
.contact-info.contact-info--pink strong {
  color: #20283A;
}
.contact-info.contact-info--blue .contact-info__link,
.contact-info.contact-info--pink .contact-info__link {
  color: #16263B;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-info--blue .contact-info__icon,
.contact-info--pink .contact-info__icon {
  background: rgba(255, 255, 255, 0.55);
  color: #20283A;
}
.contact-info__icon {
  width: 44px; height: 44px;
  background: var(--grad);
  color: white;
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.contact-info__h {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 6px;
  color: var(--ink);
}
.contact-info p {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--ink-soft);
}
.contact-info__link {
  color: var(--accent);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 15px;
}
