/* Porto Betalt - Leken & Energisk */

/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800&family=General+Sans:wght@400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  /* Fresh, vibrant palette */
  --color-bg: #fefdfb;
  --color-bg-warm: #fff8f0;
  --color-bg-cool: #f0f4ff;
  --color-surface: #ffffff;

  --color-ink: #1a1a1a;
  --color-ink-light: #4a4a4a;
  --color-ink-muted: #7a7a7a;

  /* Fun colors */
  --color-coral: #ff6b4a;
  --color-coral-light: #ff8a70;
  --color-lavender: #8b7aff;
  --color-lavender-light: #b5aaff;
  --color-lime: #c8f547;
  --color-lime-dark: #a8d52b;
  --color-sky: #4ac4ff;
  --color-peach: #ffb59a;

  /* Typography */
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'General Sans', system-ui, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 10rem;

  /* Layout */
  --max-width: 1200px;
  --content-width: 800px;

  /* Animation */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --duration-fast: 0.15s;
  --duration-normal: 0.3s;

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-full: 9999px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-ink);
  background: var(--color-bg);
  overflow-x: hidden;
}

/* Playful background blobs */
body::before {
  content: '';
  position: fixed;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: var(--color-lime);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  opacity: 0.3;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
  animation: morphBlob 20s ease-in-out infinite;
}

body::after {
  content: '';
  position: fixed;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: var(--color-lavender);
  border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
  opacity: 0.25;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
  animation: morphBlob 25s ease-in-out infinite reverse;
}

@keyframes morphBlob {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  50% { border-radius: 50% 60% 30% 60% / 30% 40% 70% 60%; }
  75% { border-radius: 60% 40% 60% 30% / 70% 30% 50% 60%; }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  color: var(--color-ink);
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3.5rem, 10vw, 6rem);
}

h2 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  max-width: 60ch;
}

a {
  color: var(--color-coral);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

a:hover {
  color: var(--color-lavender);
}

strong {
  font-weight: 700;
}

/* Fun text highlight */
.highlight {
  background: linear-gradient(120deg, var(--color-lime) 0%, var(--color-lime) 100%);
  background-repeat: no-repeat;
  background-size: 100% 40%;
  background-position: 0 90%;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: var(--content-width);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: var(--space-sm);
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 2rem);
  max-width: 900px;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 12px 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  position: relative;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-ink);
  text-decoration: none;
  letter-spacing: -0.03em;
}

.nav__logo:hover {
  color: var(--color-coral);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-ink-light);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  transition: all var(--duration-fast) var(--ease-out);
}

.nav__link:hover {
  color: var(--color-ink);
  background: var(--color-bg-warm);
}

.nav__link.active {
  color: var(--color-ink);
  background: var(--color-lime);
}

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--color-lime);
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--color-ink);
  transition: all var(--duration-fast) var(--ease-out);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--color-lime);
    padding: var(--space-sm);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--duration-normal) var(--ease-out);
    z-index: 1000;
  }

  .nav__links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav__link {
    font-size: 1.1rem;
    font-family: var(--font-display);
    font-weight: 700;
    padding: 14px 20px;
    color: var(--color-ink);
    border-radius: var(--radius-md);
    text-align: left;
  }

  .nav__link:hover,
  .nav__link.active {
    background: rgba(0,0,0,0.08);
  }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 var(--space-2xl);
  position: relative;
}

.hero--compact {
  min-height: auto;
  padding-top: 160px;
  padding-bottom: var(--space-xl);
}

.hero__content {
  max-width: 850px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-ink);
  background: var(--color-lime);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: popUp 0.5s var(--ease-bounce) 0.1s forwards;
}

.hero__label::before {
  content: '✦';
  font-size: 1.1em;
}

.hero__title {
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: slideUp 0.7s var(--ease-out) 0.2s forwards;
}

.hero__subtitle {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 500;
  color: var(--color-ink);
  max-width: 600px;
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: slideUp 0.7s var(--ease-out) 0.3s forwards;
}

.hero__text {
  font-size: 1.1rem;
  color: var(--color-ink-muted);
  max-width: 520px;
  margin-bottom: var(--space-xl);
  opacity: 0;
  animation: slideUp 0.7s var(--ease-out) 0.4s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  opacity: 0;
  animation: slideUp 0.7s var(--ease-out) 0.5s forwards;
}

/* Fun floating shapes */
.hero__decoration {
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.hero__decoration--1 {
  top: 20%;
  right: 8%;
  width: 180px;
  height: 180px;
  background: var(--color-coral);
  border-radius: 50%;
  animation: floatBounce 6s ease-in-out infinite;
}

.hero__decoration--2 {
  top: 55%;
  right: 18%;
  width: 100px;
  height: 100px;
  background: var(--color-lavender);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: floatBounce 8s ease-in-out infinite 1s;
}

.hero__decoration--3 {
  top: 35%;
  right: 3%;
  width: 50px;
  height: 50px;
  background: var(--color-lime);
  border-radius: 50%;
  animation: floatBounce 5s ease-in-out infinite 0.5s;
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(10deg); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: all var(--duration-fast) var(--ease-bounce);
}

.btn--primary {
  background: var(--color-coral);
  color: white;
  box-shadow: 0 4px 20px rgba(255, 107, 74, 0.4);
}

.btn--primary:hover {
  background: var(--color-lavender);
  box-shadow: 0 6px 30px rgba(139, 122, 255, 0.5);
  transform: translateY(-3px);
  color: white;
}

.btn--secondary {
  background: var(--color-ink);
  color: white;
}

.btn--secondary:hover {
  background: var(--color-lavender);
  transform: translateY(-3px);
}

.btn__arrow {
  transition: transform var(--duration-fast) var(--ease-out);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* Link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--color-coral);
}

.link-arrow::after {
  content: '→';
  transition: transform var(--duration-fast) var(--ease-out);
}

.link-arrow:hover::after {
  transform: translateX(5px);
}

.link-arrow:hover {
  color: var(--color-lavender);
}

/* ===== SECTIONS ===== */
.section {
  padding: var(--space-2xl) 0;
}

.section--alt {
  background: var(--color-bg-warm);
  border-radius: var(--radius-xl);
  margin: var(--space-lg) var(--space-sm);
  padding: var(--space-2xl) var(--space-md);
}

@media (min-width: 769px) {
  .section--alt {
    margin: var(--space-xl) auto;
    max-width: calc(var(--max-width) + 4rem);
    padding: var(--space-2xl) var(--space-xl);
  }
}

.section__header {
  margin-bottom: var(--space-xl);
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}

.section__label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--color-coral);
  border-radius: 50%;
}

.section__title {
  margin-bottom: var(--space-md);
}

.section__subtitle {
  font-size: 1.15rem;
  color: var(--color-ink-muted);
  max-width: 550px;
}

/* ===== CARDS ===== */
.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-coral), var(--color-lavender));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-normal) var(--ease-out);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card:hover::before {
  transform: scaleX(1);
}

.card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-bg-warm), var(--color-bg-cool));
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  color: var(--color-coral);
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.card__text {
  color: var(--color-ink-muted);
  font-size: 0.95rem;
}

/* ===== GRID LAYOUTS ===== */
.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* ===== TWO COLUMN ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
  align-items: start;
}

.two-col--reverse {
  grid-template-columns: 1.2fr 1fr;
}

@media (max-width: 900px) {
  .two-col, .two-col--reverse {
    grid-template-columns: 1fr;
  }
}

/* ===== LISTS ===== */
.list {
  list-style: none;
}

.list li {
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--color-coral);
  font-size: 0.8em;
}

.list--muted li::before {
  color: var(--color-ink-muted);
}

/* Numbered list */
.list--numbered {
  counter-reset: list-counter;
}

.list--numbered li {
  padding-left: 3rem;
  counter-increment: list-counter;
}

.list--numbered li::before {
  content: counter(list-counter);
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--color-coral), var(--color-lavender));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  position: absolute;
  left: 0;
  top: 0;
}

/* ===== PRICING ===== */
.pricing-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card--featured {
  background: linear-gradient(135deg, var(--color-coral), var(--color-lavender));
  color: white;
}

.pricing-card--featured .pricing-card__name,
.pricing-card--featured .pricing-card__price {
  color: white;
}

.pricing-card--featured .pricing-card__price span,
.pricing-card--featured .pricing-card__description {
  color: rgba(255,255,255,0.85);
}

.pricing-card--featured::before {
  content: '★ Populær';
  position: absolute;
  top: -12px;
  right: var(--space-md);
  background: var(--color-lime);
  color: var(--color-ink);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.pricing-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: var(--space-xs);
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-coral);
  margin-bottom: var(--space-md);
  letter-spacing: -0.03em;
}

.pricing-card__price span {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-ink-muted);
}

.pricing-card__description {
  color: var(--color-ink-muted);
  font-size: 0.95rem;
}

/* ===== QUOTE ===== */
.quote {
  position: relative;
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--color-bg-warm), var(--color-bg-cool));
  border-radius: var(--radius-xl);
}

.quote::before {
  content: '"';
  position: absolute;
  top: var(--space-md);
  left: var(--space-lg);
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 800;
  color: var(--color-coral);
  opacity: 0.2;
  line-height: 1;
}

.quote__text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-ink);
  line-height: 1.5;
  position: relative;
}

/* ===== DIVIDER ===== */
.divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-ink), transparent);
  opacity: 0.1;
  margin: var(--space-2xl) 0;
}

/* ===== INFO BOX ===== */
.info-box {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.info-box--accent {
  background: linear-gradient(135deg, var(--color-lime) 0%, var(--color-lime-dark) 100%);
}

.info-box__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: var(--space-sm);
}

/* ===== CTA ===== */
.cta {
  text-align: center;
  padding: var(--space-3xl) var(--space-md);
  background: linear-gradient(135deg, var(--color-coral), var(--color-lavender));
  border-radius: var(--radius-xl);
  margin: var(--space-xl) var(--space-sm);
  position: relative;
  overflow: hidden;
}

@media (min-width: 769px) {
  .cta {
    margin: var(--space-xl) auto;
    max-width: calc(var(--max-width) + 4rem);
  }
}

.cta::before {
  content: '✦';
  position: absolute;
  font-size: 20rem;
  color: white;
  opacity: 0.1;
  top: -50px;
  right: -50px;
}

.cta .section__label {
  color: white;
}

.cta .section__label::before {
  background: white;
}

.cta__content {
  position: relative;
  z-index: 1;
}

.cta__title {
  color: white;
  margin-bottom: var(--space-md);
}

.cta__text {
  color: rgba(255,255,255,0.9);
  margin: 0 auto var(--space-lg);
  max-width: 450px;
}

.cta .btn--primary {
  background: white;
  color: var(--color-coral);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.cta .btn--primary:hover {
  background: var(--color-lime);
  color: var(--color-ink);
}

/* ===== CONTACT EMAIL ===== */
.contact-email {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--color-ink);
  text-decoration: none;
  position: relative;
  transition: color var(--duration-fast) var(--ease-out);
}

.contact-email::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--color-lime);
  z-index: -1;
  transition: height var(--duration-fast) var(--ease-out);
}

.contact-email:hover {
  color: var(--color-coral);
}

.contact-email:hover::after {
  height: 50%;
}

.cta .contact-email {
  color: white;
}

.cta .contact-email::after {
  background: rgba(255,255,255,0.3);
}

/* ===== FOOTER ===== */
.footer {
  padding: var(--space-2xl) 0 var(--space-xl);
  background: var(--color-ink);
  color: white;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin-top: var(--space-xl);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  gap: var(--space-xl);
}

.footer__brand {
  max-width: 280px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: var(--space-sm);
}

.footer__tagline {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.footer__nav {
  display: flex;
  gap: var(--space-2xl);
}

.footer__column h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-lime);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: var(--space-xs);
}

.footer__links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color var(--duration-fast) var(--ease-out);
}

.footer__links a:hover {
  color: white;
}

.footer__bottom {
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__copyright {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

.footer__email {
  font-weight: 600;
  color: var(--color-lime);
}

.footer__email:hover {
  color: white;
}

/* ===== INSIGHTS ===== */
.insight-card {
  display: block;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-decoration: none;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.insight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-coral), var(--color-lavender));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-normal) var(--ease-out);
}

.insight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.insight-card:hover::before {
  transform: scaleX(1);
}

.insight-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: var(--space-xs);
}

.insight-card__text {
  color: var(--color-ink-muted);
  font-size: 0.9rem;
}

/* ===== PROCESS ===== */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 60px;
  right: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-coral), var(--color-lavender));
  border-radius: 2px;
}

.process__step {
  text-align: center;
  position: relative;
}

.process__number {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-coral), var(--color-lavender));
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
  position: relative;
  z-index: 1;
}

.process__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: var(--space-xs);
}

.process__text {
  font-size: 0.85rem;
  color: var(--color-ink-muted);
}

@media (max-width: 768px) {
  .process {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .process::before { display: none; }
}

/* ===== PAGE INTRO ===== */
.page-intro {
  max-width: 650px;
}

.page-intro__text {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-ink);
  line-height: 1.8;
}

/* ===== ANIMATIONS ===== */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes popUp {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s var(--ease-out);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.6s; }

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-muted { color: var(--color-ink-muted); }
.text-accent { color: var(--color-coral); }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

/* ===== BADGE ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--color-coral), var(--color-lavender));
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--radius-full);
}

/* ===== ACCESSIBILITY ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
