/* ============================================================
   SYNS NU MEDIA — pages.css  v4
   Sektionsstilar för redesign (Buildium-inspired SaaS-layout)
   ============================================================ */

/* ============================================================
   PAGE HERO (kompakt variant för undersidor)
   ============================================================ */
.page-hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(72px, 8vw, 120px));
  padding-bottom: clamp(64px, 8vw, 104px);
  background: var(--bg);
  overflow: hidden;
  text-align: center;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 550px;
  background:
    radial-gradient(ellipse at 40% 30%, rgba(255, 200, 180, 0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 40%, rgba(200, 220, 255, 0.22) 0%, transparent 55%);
  pointer-events: none;
  filter: blur(50px);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  margin-bottom: 1.25rem;
}

.page-hero__subtitle,
.page-hero .lead {
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  line-height: 1.6;
  color: var(--text-2);
  max-width: 640px;
  margin: 0 auto 1.75rem;
}

.page-hero__cta,
.page-hero__cta-row {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FEATURE GRID (tjänst-sidor — 3 eller 6 cards)
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

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

.feature-grid > *,
.feature-grid--4 > * { min-width: 0; }

.feature-card {
  position: relative;
  padding: 2.25rem;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  background: var(--bg);
  transition: border-color 400ms var(--ease-out), box-shadow 400ms var(--ease-out), transform 400ms var(--ease-out);
}

.feature-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -12px rgba(15, 15, 16, 0.12);
}

.feature-card .icon-chip {
  transition: transform 400ms var(--ease-out), background 400ms var(--ease-out);
}
.feature-card:hover .icon-chip {
  transform: scale(1.08) rotate(-3deg);
  background: var(--text);
  color: white;
}

.feature-card .icon-chip {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.feature-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-3);
}

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

/* ============================================================
   COMPARE TABLE (Jämförelse — Syns Nu vs göra det själv)
   ============================================================ */
/* Wrapper enables horizontal scroll on mobile when table gets too tight */
.compare-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--r-xl);
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  min-width: 520px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}

.compare-table th,
.compare-table td {
  padding: 1.125rem 1.5rem;
  text-align: left;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--border);
}

.compare-table thead th {
  background: var(--bg-tint);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
}

.compare-table tbody tr:last-child td { border-bottom: none; }

.compare-table tbody td:first-child {
  font-weight: 600;
  color: var(--text);
}

.compare-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  color: var(--success);
  font-weight: 700;
  margin-right: 0.5rem;
  font-size: 0.8125rem;
}

.compare-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.12);
  color: #EF4444;
  font-weight: 700;
  margin-right: 0.5rem;
  font-size: 0.8125rem;
}

@media (max-width: 640px) {
  .compare-table th,
  .compare-table td { padding: 0.875rem 1rem; font-size: 0.875rem; }
}

/* ============================================================
   REVIEW CARDS (3-col quotes)
   ============================================================ */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.review-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.review-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}

.review-card .stars {
  color: #F59E0B;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.review-card .review-text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex: 1;
}

.review-card hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 1rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.8125rem;
  flex-shrink: 0;
  background: var(--text);
}

.review-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text);
}

.review-role {
  font-size: 0.8125rem;
  color: var(--text-3);
}

@media (max-width: 1024px) { .review-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .review-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SPLIT GRID (split-grid) — 2-col layout
   ============================================================ */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split-grid--start { align-items: start; }

@media (max-width: 1024px) {
  .split-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CHECKLIST (bullet list med gröna checks)
   ============================================================ */
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.5;
}

.checklist li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--g-blue-50) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A73E8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/12px no-repeat;
}

/* ============================================================
   CONTACT FORM BOX
   ============================================================ */
.contact-form-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}

.contact-form-box h2,
.contact-form-box h3 {
  font-size: 1.375rem;
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.form-input,
textarea.form-input {
  width: 100%;
  padding: 0.75rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--bg);
  font-size: 0.9375rem;
  color: var(--text);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}

.form-input:focus,
textarea.form-input:focus {
  outline: none;
  border-color: var(--g-blue);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.15);
}

textarea.form-input { resize: vertical; min-height: 100px; font-family: inherit; }

.contact-form,
.lead-form { display: flex; flex-direction: column; gap: 1rem; }

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   SECTION HEADER (undersidor)
   ============================================================ */
.section-header {
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-header.reveal { opacity: 0; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--g-blue);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  margin-top: 0.75rem;
  font-size: 1.0625rem;
  color: var(--text-3);
}

/* ============================================================
   STAT STRIP (horisontell rad med siffror)
   ============================================================ */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 2.5rem;
  background: var(--bg-dark);
  border-radius: var(--r-2xl);
  color: white;
  text-align: center;
}

.stat-strip__item .stat-strip__value {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.375rem;
}

.stat-strip__item .stat-strip__label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 640px) { .stat-strip { grid-template-columns: repeat(2, 1fr); padding: 1.75rem; } }

/* ============================================================
   CASE / BLOG CARDS
   ============================================================ */
.case-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.case-card,
.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  background: var(--bg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 400ms var(--ease-out), box-shadow 400ms var(--ease-out), transform 400ms var(--ease-out);
}

.case-card:hover,
.blog-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 16px 40px -16px rgba(15, 15, 16, 0.18);
  transform: translateY(-4px);
}

.case-card__photo,
.blog-card__photo {
  aspect-ratio: 16 / 10;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
  transition: transform 700ms var(--ease-out);
}

.case-card:hover .case-card__photo,
.blog-card:hover .blog-card__photo {
  transform: scale(1.04);
}

.case-card__photo img,
.blog-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms var(--ease-out);
}

.case-card:hover .case-card__photo img,
.blog-card:hover .blog-card__photo img {
  transform: scale(1.06);
}

.case-card__body,
.blog-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.case-card__tag,
.blog-card__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-3);
  margin-bottom: 0.25rem;
  padding: 0.25rem 0.625rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  align-self: flex-start;
}

.case-card h3,
.blog-card h3 {
  font-size: 1.125rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.case-card p,
.blog-card p {
  font-size: 0.9375rem;
  color: var(--text-3);
  line-height: 1.55;
}

.case-card__stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.case-card__stat-val {
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: -0.035em;
  color: var(--text);
  line-height: 1;
}

.case-card__stat-label {
  font-size: 0.75rem;
  color: var(--text-3);
  margin-top: 0.25rem;
}

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

/* ============================================================
   VIDEO WRAP (testimonial video)
   ============================================================ */
.video-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #0F0F10;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}

.video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 40% 30%, rgba(139, 92, 246, 0.4), transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(26, 115, 232, 0.35), transparent 55%),
    rgba(15, 15, 16, 0.35);
  transition: opacity var(--dur) var(--ease);
}

.video-wrap.playing .video-overlay { opacity: 0; pointer-events: none; }

.video-play-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  font-size: 1.25rem;
  padding-left: 4px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  transition: transform var(--dur) var(--ease);
}

.video-wrap:hover .video-play-btn { transform: scale(1.08); }

/* ============================================================
   PRICING (subpage-variant — 3-kolumn, mitten highlight)
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
  margin-top: 2.5rem;
}

.pricing-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.pricing-card--featured {
  background: var(--bg-dark);
  color: white;
  border: 1px solid var(--bg-dark);
  transform: translateY(-12px);
  box-shadow: 0 24px 60px -16px rgba(15, 15, 16, 0.4);
  padding-top: 2.5rem;
}

.pricing-card--featured .pricing-name,
.pricing-card--featured .pricing-price,
.pricing-card--featured .pricing-price span,
.pricing-card--featured .pricing-features li { color: white; }

.pricing-card--featured .pricing-features li::before {
  background: rgba(255,255,255,0.12) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/12px no-repeat;
}

.pricing-card--featured .pricing-name { color: rgba(255,255,255,0.7); }

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 0.875rem;
  background: white;
  color: var(--text);
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.pricing-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-3);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-3);
  margin-left: 0.25rem;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.5;
}

.pricing-features li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--g-blue-50) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A73E8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/12px no-repeat;
}

.pricing-card .btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  border-radius: var(--r-pill);
  text-align: center;
  transition: all var(--dur) var(--ease);
}

.pricing-card .btn--outline:hover {
  border-color: var(--text);
  background: var(--bg-soft);
}

@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .pricing-card--featured { transform: none; }
}

/* ============================================================
   CONTACT INFO CARD (kontakt-sida)
   ============================================================ */
.contact-info__item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-info__item:last-child { border-bottom: none; }

.contact-info__item .icon-chip {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-info__item strong {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.125rem;
  font-size: 0.875rem;
}

.contact-info__item a,
.contact-info__item span { font-size: 0.9375rem; color: var(--text-2); }

/* ============================================================
   ACCORDION (FAQ på undersidor)
   ============================================================ */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 780px;
  margin-inline: auto;
}

.accordion__item {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease);
}

.accordion__item.open,
.accordion__item:hover {
  border-color: var(--border-strong);
}

.accordion__trigger {
  width: 100%;
  padding: 1.125rem 1.5rem;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text);
  gap: 1rem;
}

.accordion__trigger::after {
  content: '';
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-tint) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A1A1A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/></svg>") center/14px no-repeat;
  transition: transform var(--dur) var(--ease);
  flex-shrink: 0;
}

.accordion__item.open .accordion__trigger::after {
  transform: rotate(45deg);
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease);
}

.accordion__body-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-2);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* ============================================================
   STEPS ROW (process — 1, 2, 3)
   ============================================================ */
.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.step-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--text);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.step-item h4 {
  font-size: 1.0625rem;
  margin-bottom: 0.375rem;
}

.step-item p {
  font-size: 0.9375rem;
  color: var(--text-3);
  max-width: 240px;
}

.step-connector {
  height: 1px;
  background: var(--border-strong);
  margin-top: 24px;
  min-width: 40px;
}

@media (max-width: 768px) {
  .steps-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .step-connector { display: none; }
}

/* ============================================================
   PORTFOLIO CARDS
   ============================================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.portfolio-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.portfolio-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(15,15,16,0.85), transparent);
  color: white;
}

.portfolio-card__overlay h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 0.125rem;
}

.portfolio-card__overlay p {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  margin: 0;
}

@media (max-width: 1024px) { .portfolio-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .portfolio-grid { grid-template-columns: 1fr; } }

/* ============================================================
   JOB LIST
   ============================================================ */
.job-list { display: flex; flex-direction: column; gap: 0.75rem; }

.job-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.job-card:hover {
  border-color: var(--g-blue);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.job-card h3 { font-size: 1.125rem; margin-bottom: 0.25rem; }

.job-card__meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--text-3);
  flex-wrap: wrap;
}

.job-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

@media (max-width: 640px) {
  .job-card { grid-template-columns: 1fr; }
}


/* ============================================================
   HERO — quieter, cleaner
   ============================================================ */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(80px, 10vw, 140px));
  padding-bottom: clamp(80px, 10vw, 140px);
  background: var(--bg);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 700px;
  background:
    radial-gradient(ellipse at 40% 30%, rgba(255, 200, 180, 0.3) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 40%, rgba(200, 220, 255, 0.3) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 70%, rgba(230, 210, 255, 0.22) 0%, transparent 55%);
  pointer-events: none;
  filter: blur(60px);
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto clamp(56px, 7vw, 88px);
}

.hero h1 {
  margin-bottom: 1.75rem;
}

.hero .lead {
  margin: 0 auto 2.25rem;
  text-align: center;
}

.hero__cta-row {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__trust {
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem 2rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--text-3);
}

.hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.hero__trust svg {
  width: 16px;
  height: 16px;
  color: var(--success);
}

/* ============================================================
   DASHBOARD MOCKUP (hero visual)
   ============================================================ */
.dashboard-mockup {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow:
    0 1px 2px rgba(15,15,16,0.04),
    0 24px 48px -12px rgba(15,15,16,0.18),
    0 48px 80px -32px rgba(26,115,232,0.22);
}

.dashboard__chrome {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 1rem;
  background: #F5F5F7;
  border-bottom: 1px solid var(--border);
}

.dashboard__chrome > span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #D1D5DB;
}
.dashboard__chrome > span:nth-child(1) { background: #FF5F57; }
.dashboard__chrome > span:nth-child(2) { background: #FEBC2E; }
.dashboard__chrome > span:nth-child(3) { background: #28C840; }

.dashboard__url {
  margin-left: 0.75rem;
  padding: 4px 12px;
  background: #FFFFFF;
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--text-3);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.dashboard__body {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 460px;
  background: var(--bg);
}

.dashboard__sidebar {
  background: #FAFAFC;
  border-right: 1px solid var(--border);
  padding: 1.25rem 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.dashboard__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.625rem 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.dashboard__logo-dot {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--g-gradient);
}

.dashboard__nav-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.625rem;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text-3);
}

.dashboard__nav-item svg {
  width: 14px;
  height: 14px;
}

.dashboard__nav-item.is-active {
  background: var(--g-blue-50);
  color: var(--g-blue);
  font-weight: 600;
}

.dashboard__main {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dashboard__metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.dashboard__metric {
  padding: 0.875rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.dashboard__metric-label {
  font-size: 0.6875rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.dashboard__metric-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.dashboard__metric-delta {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--success);
  margin-top: 0.25rem;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.dashboard__charts {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0.75rem;
  flex: 1;
}

.dashboard__chart {
  padding: 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

.dashboard__chart-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.dashboard__chart-sub {
  font-size: 0.6875rem;
  color: var(--text-3);
  margin-bottom: 0.75rem;
}

.dashboard__chart svg { flex: 1; }

/* Chart draw-in animation */
@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

@keyframes fadeInPoint {
  from { opacity: 0; transform: scale(0); transform-origin: center; }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes growBar {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

.dashboard-mockup .chart-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 2200ms var(--ease-out) forwards;
  animation-delay: 900ms;
}

.dashboard-mockup .chart-point {
  opacity: 0;
  transform-origin: center;
  animation: fadeInPoint 400ms var(--ease-out) forwards;
  animation-delay: 2900ms;
}

.dashboard-mockup .chart-bar {
  transform-origin: bottom center;
  transform: scaleY(0);
  animation: growBar 700ms var(--ease-out) forwards;
}

.dashboard-mockup .chart-bar:nth-child(1) { animation-delay: 1100ms; }
.dashboard-mockup .chart-bar:nth-child(2) { animation-delay: 1200ms; }
.dashboard-mockup .chart-bar:nth-child(3) { animation-delay: 1300ms; }
.dashboard-mockup .chart-bar:nth-child(4) { animation-delay: 1400ms; }
.dashboard-mockup .chart-bar:nth-child(5) { animation-delay: 1500ms; }
.dashboard-mockup .chart-bar:nth-child(6) { animation-delay: 1600ms; }
.dashboard-mockup .chart-bar:nth-child(7) { animation-delay: 1700ms; }

/* ============================================================
   BENTO GRID (Aldrig en tråkig dag)
   ============================================================ */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}

.bento__card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  background: var(--bg-soft);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: border-color 400ms var(--ease-out), background 400ms var(--ease-out), transform 400ms var(--ease-out), box-shadow 400ms var(--ease-out);
}

.bento__card:hover {
  border-color: var(--border-strong);
  background: var(--bg);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -12px rgba(15, 15, 16, 0.12);
}

.bento__card--lg { grid-column: span 4; grid-row: span 2; }
.bento__card--md { grid-column: span 2; grid-row: span 2; }
.bento__card--sm { grid-column: span 2; grid-row: span 1; }

.bento__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-3);
  margin-bottom: 0.5rem;
}

.bento__title {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.bento__card--lg .bento__title { font-size: 1.75rem; }

.bento__desc {
  font-size: 0.9375rem;
  color: var(--text-3);
  line-height: 1.55;
}

.bento__visual {
  margin-top: auto;
  padding-top: 1.25rem;
}

/* Bento visual — IG grid, monokrom */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.ig-grid div {
  aspect-ratio: 1;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.ig-grid div:nth-child(1) { background: linear-gradient(135deg, #F4F4F2 0%, #EAEAE6 100%); }
.ig-grid div:nth-child(2) { background: linear-gradient(135deg, #EAEAE6 0%, #F4F4F2 100%); }
.ig-grid div:nth-child(3) { background: linear-gradient(135deg, #F7F7F5 0%, #E5E5E0 100%); }
.ig-grid div:nth-child(4) { background: linear-gradient(135deg, #E5E5E0 0%, #F4F4F2 100%); }
.ig-grid div:nth-child(5) { background: #0F0F10; }
.ig-grid div:nth-child(6) { background: linear-gradient(135deg, #F4F4F2 0%, #EAEAE6 100%); }
.ig-grid div:nth-child(7) { background: linear-gradient(135deg, #EAEAE6 0%, #F4F4F2 100%); }
.ig-grid div:nth-child(8) { background: linear-gradient(135deg, #F7F7F5 0%, #E5E5E0 100%); }
.ig-grid div:nth-child(9) { background: linear-gradient(135deg, #F4F4F2 0%, #EAEAE6 100%); }

/* Bento stat card */
.bento--stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.bento__stat {
  font-size: clamp(3.5rem, 5.5vw, 5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--text);
  margin-bottom: 0.75rem;
}

/* Bento chart */
.bento-chart {
  margin-top: 1rem;
  width: 100%;
}

/* Bento photo placeholder */
.bento-photo {
  position: relative;
  margin-top: 1rem;
  flex: 1;
  border-radius: 14px;
  background: linear-gradient(135deg, #1A1A1A, #3F3F46);
  overflow: hidden;
  min-height: 140px;
}

.bento-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(139, 92, 246, 0.35), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(236, 72, 153, 0.25), transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(26, 115, 232, 0.3), transparent 60%);
}

.bento-photo__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.bento-photo__play span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.bento-photo__play svg {
  width: 20px;
  height: 20px;
  color: var(--text);
  margin-left: 3px;
}

/* Bento mini-website mockup */
.mini-site {
  margin-top: 1rem;
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  min-height: 140px;
}

.mini-site__bar {
  padding: 6px 10px;
  background: #F5F5F7;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 4px;
}

.mini-site__bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #D1D5DB;
}

.mini-site__body {
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--bg);
}

.mini-site__body::before {
  content: '';
  flex: 1;
  background: linear-gradient(135deg, #E3EDFC, #F0F4FA);
  border-radius: 6px;
}

.mini-site__row {
  display: flex;
  gap: 4px;
}

.mini-site__row span {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
}

/* ============================================================
   TABS (Vilken restaurang driver du?)
   ============================================================ */
.tabs__nav {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.25rem;
}

.tabs__btn {
  padding: 0.75rem 1.125rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-3);
  border-radius: var(--r-sm) var(--r-sm) 0 0;
  position: relative;
  transition: color var(--dur) var(--ease);
}

.tabs__btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0.5rem;
  right: 0.5rem;
  height: 2px;
  background: transparent;
  border-radius: 2px;
  transition: background var(--dur) var(--ease);
}

.tabs__btn:hover { color: var(--text); }

.tabs__btn.is-active {
  color: var(--text);
  font-weight: 600;
}

.tabs__btn.is-active::after {
  background: var(--text);
}

.tabs__panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  animation: tabFade 500ms var(--ease-out);
}

.tabs__panel.is-active { display: grid; }

@keyframes tabFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

.tabs__visual {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.tabs__big-stat {
  font-size: 3.5rem;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.tabs__big-stat-sub {
  font-size: 0.875rem;
  color: var(--text-3);
  margin-bottom: 1.5rem;
}

.tabs__content h3 { margin-bottom: 1rem; font-size: clamp(1.75rem, 2.4vw, 2.25rem); }
.tabs__content p { margin-bottom: 2rem; }

.feature-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.feature-duo__item { }
.feature-duo__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.875rem;
}

.feature-duo__icon svg { width: 22px; height: 22px; }

.feature-duo h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.375rem; }
.feature-duo p { font-size: 0.9375rem; }

/* ============================================================
   MAP + ACCORDION (Partners i Sverige)
   ============================================================ */
.map-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.sweden-map {
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  aspect-ratio: 1 / 1.1;
  padding: 2rem;
  overflow: hidden;
}

.sweden-map svg {
  width: 100%;
  height: 100%;
  color: var(--border-strong);
}

.sweden-map__dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text);
  box-shadow: 0 0 0 4px rgba(15, 15, 16, 0.08);
  animation: pulse 2.4s var(--ease-out) infinite;
}

.sweden-map__dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--text);
  opacity: 0.25;
  animation: ring 2.4s var(--ease-out) infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

@keyframes ring {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}

.map-features { display: flex; flex-direction: column; gap: 1rem; }

.feature-row {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg);
  display: flex;
  gap: 1.25rem;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.feature-row:hover {
  border-color: var(--text);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.feature-row__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.feature-row__icon svg { width: 22px; height: 22px; }

.feature-row h4 { font-size: 1.0625rem; font-weight: 600; margin-bottom: 0.25rem; }
.feature-row p { font-size: 0.9375rem; margin: 0; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.price-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.price-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.price-card--highlight {
  background: var(--bg-dark);
  color: var(--text-inv);
  border: 1px solid var(--bg-dark);
  transform: translateY(-12px);
  box-shadow: 0 24px 60px -16px rgba(15, 15, 16, 0.4);
  padding-top: 2.5rem;
}

.price-card--highlight h3,
.price-card--highlight .price-card__price,
.price-card--highlight .price-card__unit { color: var(--text-inv); }

.price-card--highlight p,
.price-card--highlight li { color: rgba(255, 255, 255, 0.92); }

.price-card--highlight .price-card__features svg { color: #FFFFFF; }

.price-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 0.875rem;
  background: var(--bg);
  color: var(--text);
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.price-card__tier {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-3);
  margin-bottom: 0.5rem;
}

.price-card--highlight .price-card__tier { color: rgba(255, 255, 255, 0.85); }

.price-card__price {
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
}

.price-card__unit {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-3);
  margin-left: 0.25rem;
}

.price-card__desc {
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-3);
}

.price-card--highlight .price-card__desc { color: rgba(255, 255, 255, 0.82); }

.price-card__cta { margin-bottom: 1.5rem; }
.price-card__cta .btn { width: 100%; }

.price-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
}

.price-card__features li {
  display: flex;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.5;
  align-items: flex-start;
}

.price-card__features svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--success);
  margin-top: 2px;
}

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.testimonial-video {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #0F0F10;
  box-shadow: var(--shadow-lg);
}

.testimonial-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 40% 30%, rgba(139, 92, 246, 0.4), transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(26, 115, 232, 0.35), transparent 55%);
  pointer-events: none;
}

.testimonial-video__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.testimonial-video__play span {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  transition: transform var(--dur) var(--ease);
}

.testimonial-video:hover .testimonial-video__play span { transform: scale(1.08); }

.testimonial-video__play svg { width: 26px; height: 26px; color: var(--text); margin-left: 4px; }

.testimonial-video__tag {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.625rem 0.875rem;
  border-radius: var(--r-md);
  z-index: 2;
}

.testimonial-video__tag-label {
  font-size: 0.6875rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.testimonial-video__tag-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: #F59E0B;
  margin-bottom: 1.25rem;
}

.testimonial-stars svg { width: 18px; height: 18px; fill: currentColor; }

.testimonial-quote {
  font-size: clamp(1.375rem, 2.2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial-author__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--text);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
}

.testimonial-author__name { font-weight: 600; color: var(--text); font-size: 1rem; }
.testimonial-author__role { font-size: 0.875rem; color: var(--text-3); }

/* ============================================================
   FAQ (dark section)
   ============================================================ */
.faq-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.faq-split__intro p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; font-size: 1.0625rem; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.faq-item[open],
.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.faq-item summary {
  list-style: none;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  font-size: 1rem;
  color: white;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '';
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease), background-color var(--dur) var(--ease);
}

.faq-item[open] summary::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><line x1='5' y1='12' x2='19' y2='12'/></svg>");
  background-color: white;
}

.faq-item__body {
  padding: 0 1.5rem 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* ============================================================
   CTA BANNER (gradient)
   ============================================================ */
.cta-banner {
  margin-top: calc(var(--section-y) * -0.5);
  margin-bottom: calc(var(--section-y) * 0.3);
  position: relative;
  z-index: 2;
}

.cta-banner__inner {
  background: var(--bg-dark);
  border-radius: var(--r-2xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.4fr auto;
  align-items: center;
  gap: 2rem;
  color: white;
  box-shadow: 0 32px 80px -24px rgba(15, 15, 16, 0.35);
  overflow: hidden;
  position: relative;
}

.cta-banner__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(139, 92, 246, 0.2), transparent 50%),
    radial-gradient(ellipse at 20% 90%, rgba(236, 72, 153, 0.12), transparent 50%);
  pointer-events: none;
}

.cta-banner h2 {
  color: white;
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  position: relative;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.75rem;
  font-size: 1.0625rem;
  position: relative;
}

.cta-banner .btn { position: relative; }

/* ============================================================
   LOGO MARQUEE
   ============================================================ */
.marquee {
  padding: 2.5rem 0;
  border-block: 1px solid var(--border);
  background: var(--bg);
  overflow: hidden;
}

.marquee__label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1.5rem;
}

.marquee__track {
  display: flex;
  gap: 4rem;
  animation: scroll 50s linear infinite;
  width: max-content;
  align-items: center;
}

.marquee:hover .marquee__track { animation-play-state: paused; }

.marquee__item {
  height: 40px;
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity var(--dur) var(--ease), filter var(--dur) var(--ease);
  flex-shrink: 0;
}

.marquee__item:hover { opacity: 1; filter: grayscale(0); }

.marquee__item img { height: 100%; width: auto; }

@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .bento {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
  }
  .bento__card--lg { grid-column: span 4; grid-row: span 2; }
  .bento__card--md { grid-column: span 2; grid-row: span 2; }
  .bento__card--sm { grid-column: span 2; grid-row: span 1; }

  .tabs__panel { grid-template-columns: 1fr; gap: 2.5rem; }
  .map-split { grid-template-columns: 1fr; gap: 3rem; }
  .sweden-map { aspect-ratio: 3 / 2; max-width: 480px; margin-inline: auto; }

  .testimonial-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .testimonial-video { max-width: 420px; aspect-ratio: 1 / 1; margin-inline: auto; }

  .faq-split { grid-template-columns: 1fr; gap: 2rem; }

  .cta-banner__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }

  .dashboard__body { grid-template-columns: 72px 1fr; }
  .dashboard__sidebar { padding: 1rem 0.375rem; }
  .dashboard__logo { padding: 0 0.25rem 1rem; font-size: 0; gap: 0; }
  .dashboard__nav-item { justify-content: center; font-size: 0; padding: 0.5rem; }
  .dashboard__nav-item svg { width: 18px; height: 18px; }
  .dashboard__metrics { grid-template-columns: repeat(2, 1fr); }
  .dashboard__charts { grid-template-columns: 1fr; }

  .pricing { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .price-card--highlight { transform: none; }
}

@media (max-width: 768px) {
  .bento {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .bento__card,
  .bento__card--lg,
  .bento__card--md,
  .bento__card--sm {
    grid-column: span 1;
    grid-row: auto;
    min-height: 280px;
    padding: 1.75rem;
  }

  .tabs__nav { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.5rem; margin-left: calc(var(--gutter) * -1); margin-right: calc(var(--gutter) * -1); padding-inline: var(--gutter); }
  .tabs__btn { white-space: nowrap; }

  .feature-duo { grid-template-columns: 1fr; }

  .hero__trust {
    gap: 0.625rem 1rem;
    font-size: 0.8125rem;
    flex-direction: column;
    align-items: center;
  }

  .dashboard__body { grid-template-columns: 1fr; min-height: auto; }
  .dashboard__sidebar { display: none; }
  .dashboard__metrics { grid-template-columns: repeat(2, 1fr); }
  .dashboard__main { padding: 1rem; }
  .dashboard__metric { padding: 0.625rem 0.75rem; }
  .dashboard__metric-value { font-size: 1rem; }
  .dashboard__url { font-size: 0.625rem; max-width: 60%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

  .split-grid { gap: 2rem; }

  .cta-banner__inner { padding: 2rem 1.5rem; text-align: center; }

  .stat-strip { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; padding: 1.75rem 1.25rem; }
  .stat-strip__item .stat-strip__value { font-size: 1.75rem; }

  .pricing-card { padding: 1.5rem; }
  .pricing-price { font-size: 2.25rem; }

  .price-card { padding: 1.5rem; }
  .price-card__price { font-size: 2.25rem; }

  .page-hero__subtitle,
  .page-hero .lead { font-size: 1rem; line-height: 1.55; }

  .testimonial-quote { font-size: 1.125rem; line-height: 1.45; }
}

@media (max-width: 480px) {
  .hero h1 { word-break: break-word; hyphens: auto; -webkit-hyphens: auto; }
  .hero .lead { font-size: 0.9375rem; }

  .bento__card { padding: 1.5rem; min-height: 240px; }
  .bento__title { font-size: 1.125rem; }
  .bento__card--lg .bento__title { font-size: 1.25rem; }

  .feature-card { padding: 1.5rem; }

  .pricing-grid, .pricing { gap: 1rem; }

  .compare-table th,
  .compare-table td { padding: 0.75rem 0.875rem; font-size: 0.8125rem; }

  .dashboard-mockup { border-radius: 14px; }
  .dashboard__chrome { padding: 0.5rem 0.75rem; }
  .dashboard__metrics { gap: 0.5rem; }
}
/* ============================================================
   SYNS NU MEDIA — pages.css  v3 (CargoWave-stil)
   Page-level layouts for all inner pages
   ============================================================ */

/* ──────────────────────────────────────────────
   PAGE HERO (light bg — används på alla inner pages)
────────────────────────────────────────────── */
.page-hero {
  background: var(--bg-soft);
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero__blob {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.05;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.page-hero h1 {
  margin: 12px 0 16px;
}

.page-hero__subtitle {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.page-hero__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ──────────────────────────────────────────────
   HERO GRID (2-col: photo left, text right — or vice versa)
────────────────────────────────────────────── */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.hero-grid--reverse {
  direction: rtl;
}

.hero-grid--reverse > * {
  direction: ltr;
}

/* ──────────────────────────────────────────────
   FEATURE GRID (6 feature cards in 2×3)
────────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.feature-card h3 {
  font-size: 18px;
  margin: 12px 0 8px;
}

.feature-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* ──────────────────────────────────────────────
   COMPARE TABLE
────────────────────────────────────────────── */
.compare-section {
  margin-top: 64px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.compare-table th {
  background: var(--navy);
  color: white;
  font-family: var(--heading);
  font-weight: 600;
  font-size: 15px;
  padding: 16px 20px;
  text-align: left;
}

.compare-table th:first-child {
  width: 40%;
}

.compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table tr:nth-child(even) td {
  background: var(--bg-soft);
}

.compare-check {
  color: var(--green);
  font-size: 18px;
}

.compare-x {
  color: #EF4444;
  font-size: 18px;
}

/* ──────────────────────────────────────────────
   PRICING GRID
────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pricing-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured {
  background: var(--bg-dark);
  color: white;
  border-color: var(--bg-dark);
  box-shadow: 0 24px 60px -16px rgba(15, 15, 16, 0.4);
  transform: translateY(-8px);
}

.pricing-card--featured .pricing-name,
.pricing-card--featured .pricing-price,
.pricing-card--featured .pricing-price span,
.pricing-card--featured .pricing-features li { color: white; }

.pricing-card--featured .pricing-name { color: rgba(255,255,255,0.7); }

.pricing-card--featured:hover {
  transform: translateY(-12px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-name {
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.pricing-price {
  font-family: var(--heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--navy);
  margin: 16px 0 4px;
  line-height: 1;
}

.pricing-price span {
  font-size: 18px;
  font-weight: 500;
  color: var(--muted);
}

.pricing-price--strike {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0;
}

.pricing-period {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}

/* pricing-features already defined above — removed duplicate */

/* ──────────────────────────────────────────────
   PORTFOLIO GRID
────────────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  cursor: pointer;
  transition: transform 0.3s;
}

.portfolio-card:hover {
  transform: scale(1.02);
}

.portfolio-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.portfolio-card__overlay h3 {
  color: white;
  font-size: 18px;
  margin-bottom: 4px;
}

.portfolio-card__overlay p {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  margin: 0;
}

/* ──────────────────────────────────────────────
   WHY-PHOTO (split: checklist left, photo right)
────────────────────────────────────────────── */
.why-photo-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #1f2937, #111827);
}

.why-photo-stat {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}

.why-photo-stat__value {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  display: block;
}

.why-photo-stat__label {
  font-size: 12px;
  color: var(--muted);
  display: block;
}

/* ──────────────────────────────────────────────
   STORY SECTION (om-oss split text + photo)
────────────────────────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #c8a47c, #4a2c10);
}

.story-year {
  display: inline-block;
  font-family: var(--heading);
  font-size: 72px;
  font-weight: 800;
  color: var(--blue);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: -24px;
}

/* ──────────────────────────────────────────────
   VALUES GRID (4 cards with icon-chip)
────────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.value-card h3 {
  font-size: 17px;
  margin: 16px 0 8px;
}

.value-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ──────────────────────────────────────────────
   TEAM GRID
────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.team-card {
  text-align: center;
}

.team-card__photo {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.team-card__name {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 13px;
  color: var(--muted);
}

/* ──────────────────────────────────────────────
   STATS STRIP (4 counters in a row)
────────────────────────────────────────────── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stats-strip__item {}

.stats-strip__value {
  font-family: var(--heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--blue);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stats-strip__label {
  font-size: 15px;
  color: var(--muted);
}

/* ──────────────────────────────────────────────
   CONTACT 2-COL (info left, form right)
────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: flex-start;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info__item h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.contact-info__item p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.contact-form-box {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 40px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form-box h2 {
  font-size: 24px;
  margin-bottom: 28px;
}

/* ──────────────────────────────────────────────
   CASE GRID (6 kundcase cards)
────────────────────────────────────────────── */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.case-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.case-card__photo {
  height: 200px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.case-card__body {
  padding: 24px;
}

.case-card__body h3 {
  font-size: 18px;
  margin: 8px 0;
}

.case-card__body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.case-card__stats {
  display: flex;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.case-card__stat-val {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--blue);
  display: block;
}

.case-card__stat-label {
  font-size: 12px;
  color: var(--muted);
}

/* ──────────────────────────────────────────────
   FEATURED CASE (big 2-col case study)
────────────────────────────────────────────── */
.featured-case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow);
  margin-bottom: 64px;
}

.featured-case__video {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--navy);
}

.featured-case__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.featured-case__stat {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}

.featured-case__stat-val {
  font-family: var(--heading);
  font-weight: 800;
  font-size: 32px;
  color: var(--blue);
  display: block;
}

.featured-case__stat-label {
  font-size: 13px;
  color: var(--muted);
}

/* ──────────────────────────────────────────────
   BLOG HEADER (featured article 2-col)
────────────────────────────────────────────── */
.blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 72px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.blog-featured__photo {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #667eea, #764ba2);
  min-height: 320px;
}

.blog-featured__body {
  padding: 40px 40px 40px 0;
}

.blog-featured__body h2 {
  font-size: 26px;
  margin: 12px 0 16px;
}

.blog-featured__meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ──────────────────────────────────────────────
   NEWSLETTER CTA (centered box)
────────────────────────────────────────────── */
.newsletter-box {
  background: var(--blue);
  border-radius: var(--radius);
  padding: 56px 48px;
  text-align: center;
  color: white;
  margin-top: 72px;
}

.newsletter-box h2 {
  color: white;
  margin-bottom: 12px;
}

.newsletter-box p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: none;
  font-size: 15px;
  outline: none;
}

/* ──────────────────────────────────────────────
   CULTURE CARDS (4 cards, jobb page)
────────────────────────────────────────────── */
.culture-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.culture-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow);
}

.culture-card__icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.culture-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.culture-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ──────────────────────────────────────────────
   JOB LISTING CARDS
────────────────────────────────────────────── */
.job-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
}

.job-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.job-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-lg);
}

.job-card__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.job-card h3 {
  font-size: 20px;
  color: var(--navy);
}

/* ──────────────────────────────────────────────
   QOPLA HERO (blue bg special)
────────────────────────────────────────────── */
.qopla-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.qopla-hero h1 {
  color: white;
}

.qopla-hero .page-hero__subtitle {
  color: rgba(255,255,255,0.85);
}

.qopla-hero__blob {
  position: absolute;
  border-radius: 50%;
  background: white;
  opacity: 0.06;
}

/* ──────────────────────────────────────────────
   PARTNER MARQUEE (kundcase page)
────────────────────────────────────────────── */
.partner-strip {
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.partner-strip__track {
  display: flex;
  gap: 48px;
  animation: scroll-left 20s linear infinite;
  width: max-content;
}

.partner-strip__item {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--muted);
  letter-spacing: 0.04em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ──────────────────────────────────────────────
   FAQ ACCORDION (kontakt page override)
────────────────────────────────────────────── */
.faq-accordion {
  max-width: 720px;
  margin: 0 auto;
}

/* ──────────────────────────────────────────────
   ABOUT CHIPS STRIP (icon chips row)
────────────────────────────────────────────── */
.chips-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.chips-label {
  display: block;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-top: 20px;
}

/* ──────────────────────────────────────────────
   SECTION SPLIT (generic 2-col text+content)
────────────────────────────────────────────── */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.split-grid--60-40 {
  grid-template-columns: 1.5fr 1fr;
}

/* ──────────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .values-grid,
  .team-grid,
  .culture-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card--featured {
    transform: none;
    order: -1;
  }

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

@media (max-width: 768px) {
  .page-hero {
    padding-top: calc(var(--nav-h) + 48px);
    padding-bottom: 56px;
  }

  .page-hero h1 {
    font-size: clamp(28px, 8vw, 42px);
  }

  .page-hero__subtitle {
    font-size: 16px;
  }

  .hero-grid,
  .story-grid,
  .split-grid,
  .contact-grid,
  .featured-case,
  .blog-featured {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-grid--reverse {
    direction: ltr;
  }

  .feature-grid,
  .portfolio-grid,
  .case-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .values-grid,
  .team-grid,
  .culture-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-strip {
    grid-template-columns: 1fr 1fr;
  }

  .job-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .featured-case {
    padding: 24px;
  }

  .featured-case__stats {
    grid-template-columns: 1fr 1fr;
  }

  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-featured__photo {
    min-height: 240px;
    border-radius: 0;
  }

  .blog-featured__body {
    padding: 24px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .contact-form-box {
    padding: 24px;
  }

  .chips-strip {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .values-grid,
  .team-grid,
  .culture-grid,
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .featured-case__stats {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SOCIAL PROOF BENTO  (.sp-*)
   index.html — section below hero
   ============================================================ */

.sp-section {
  background: #fff;
  padding: 96px 0 0;
  overflow: hidden;
}

/* ── A. Heading + Stats row ── */
.sp-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 56px;
}

.sp-head__text {
  max-width: 500px;
}

.sp-head__text h2 {
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 20px;
}

.sp-head__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font: 600 15px/1 var(--font);
  color: var(--blue);
  text-decoration: none;
  transition: gap 0.2s;
}

.sp-head__link:hover { gap: 10px; }

.sp-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  flex-shrink: 0;
  width: 340px;
}

.sp-stat {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 22px;
}

.sp-stat__num {
  font: 800 30px/1 var(--font);
  color: var(--navy);
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}

.sp-stat__label {
  font: 400 12px/1.4 var(--font);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── B. Bento grid ── */
.sp-bento {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
  align-items: stretch;
}

/* ── B-left: Instagram content grid ── */
.sp-ig {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
}

.sp-ig__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.sp-ig__handle {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 700 14px/1 var(--font);
  color: var(--navy);
  text-decoration: none;
}

.sp-ig__handle svg {
  flex-shrink: 0;
}

.sp-ig__count {
  font: 400 13px/1 var(--font);
  color: var(--muted);
}

.sp-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  border-radius: 12px;
  overflow: hidden;
}

.sp-post {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

.sp-post img,
.sp-post .sp-post__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}

.sp-post__bg {
  position: absolute;
  inset: 0;
}

.sp-post__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.52);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.sp-post:hover .sp-post__overlay { opacity: 1; }
.sp-post:hover img,
.sp-post:hover .sp-post__bg { transform: scale(1.06); }

.sp-post__stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font: 700 13px/1 var(--font);
  color: #fff;
}

.sp-post__stat svg {
  flex-shrink: 0;
}

/* ── B-right: Clients ── */
.sp-clients {
  background: var(--navy);
  border-radius: 24px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}

.sp-clients__top {
  margin-bottom: 28px;
}

.sp-clients__num {
  font: 800 64px/1 var(--font);
  letter-spacing: -0.05em;
  color: #fff;
  margin-bottom: 4px;
}

.sp-clients__num-label {
  font: 400 14px/1 var(--font);
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.sp-clients__divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 24px 0;
}

.sp-clients__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.sp-clients__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 500 14px/1 var(--font);
  color: rgba(255,255,255,0.8);
}

.sp-clients__list li svg {
  flex-shrink: 0;
  color: #3b82f6;
}

.sp-clients__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 600 14px/1 var(--font);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}

.sp-clients__cta:hover { color: #fff; gap: 12px; }

/* ── C. Marquee ── */
.sp-marquee {
  margin-top: 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
}

.sp-marquee .marquee-track {
  gap: 56px;
  animation-duration: 22s;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .sp-head {
    flex-direction: column;
    gap: 32px;
  }
  .sp-stats { width: 100%; grid-template-columns: repeat(4, 1fr); }
  .sp-bento { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .sp-section { padding-top: 64px; }
  .sp-stats { grid-template-columns: 1fr 1fr; }
  .sp-stat__num { font-size: 24px; }
  .sp-clients__num { font-size: 48px; }
}

/* ══════════════════════════════════════════════
   QOPLA PARTNER SECTION  (.qp-*)
   ══════════════════════════════════════════════ */
.qp-section {
  position: relative;
  background: var(--qp-bg, var(--navy)) center / cover no-repeat;
  padding: 120px 0;
  color: #fff;
  overflow: hidden;
}

/* Dark gradient overlay — heavy on left for text legibility, fades out right */
.qp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 10, 20, 0.92) 0%,
    rgba(8, 10, 20, 0.80) 45%,
    rgba(8, 10, 20, 0.35) 100%
  );
}

.qp-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.qp-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(34,197,94,0.18);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.35);
  border-radius: 100px;
  padding: 6px 14px;
  font: 600 13px/1 var(--font);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.qp-heading {
  font: 700 clamp(32px, 4vw, 54px)/1.12 var(--font);
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.qp-sub {
  font: 400 17px/1.65 var(--font);
  color: rgba(255,255,255,0.65);
  margin: 0 0 36px;
  max-width: 440px;
}

/* ── Perks list ── */
.qp-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 40px;
}

.qp-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 500 15px/1.4 var(--font);
  color: rgba(255,255,255,0.85);
}

.qp-perks li svg {
  flex-shrink: 0;
  color: var(--green);
}

/* ── CTA ── */
.qp-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 100px;
  font: 700 15px/1 var(--font);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, gap 0.2s;
}

.qp-cta:hover {
  background: var(--green);
  color: #fff;
  gap: 12px;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .qp-section { padding: 80px 0; }
  .qp-overlay {
    background: linear-gradient(
      to bottom,
      rgba(8,10,20,0.88) 0%,
      rgba(8,10,20,0.72) 100%
    );
  }
}

/* ── Blog section header ── */
.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

@media (max-width: 600px) {
  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* ============================================================
   CASE-PAGE — shared dark/light story variants
   Override the global h1–h6 { color: var(--text) } rule so the
   "story 02" dark section reads white on every case page,
   without per-page tweaks.
   ============================================================ */
.case-story--dark .case-story__heading,
.case-story--dark .case-story__heading em { color: #fff; }
.case-story--light .case-story__heading,
.case-story--light .case-story__heading em { color: var(--text); }

/* ============================================================
   FOOTER — hash-mark logo replaces newsletter signup
   Sits in the .footer-big__brand column on every page that uses
   the big footer pattern.
   ============================================================ */
.footer-big__mark-img {
  width: clamp(96px, 9vw, 132px);
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
}

/* ============================================================
   WORD-REVEAL — prevent descender clipping
   The `.word` reveal pattern uses overflow:hidden on each word
   so the inner span can slide up from below. With tight heading
   line-heights (0.9), descenders (g, j, p, q, y) and italic
   glyphs from Instrument Serif sit below the box and get clipped.
   The padding/negative-margin pair extends the visible region
   downward without changing layout.
   ============================================================ */
.word {
  padding-bottom: 0.18em;
  margin-bottom: -0.18em;
}

/* ============================================================
   CROSS-LINKS: card-grid (Fler tjänster)
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .card-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   KUNDCASE: press section (copied from index editorial styles)
   ============================================================ */
.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.875rem 0.625rem 1.25rem;
  background: white;
  color: var(--text);
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}
.pill-btn__arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--text);
  color: white;
  display: inline-grid; place-items: center;
  transition: transform 300ms var(--ease-out);
}
.pill-btn__arrow svg { width: 14px; height: 14px; }
.pill-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px -8px rgba(0,0,0,0.25); }
.pill-btn:hover .pill-btn__arrow { transform: translateX(2px); }

.pill-btn--dark {
  background: var(--text);
  color: white;
}
.pill-btn--dark .pill-btn__arrow {
  background: white;
  color: var(--text);
}

.sec-press {
  background: #F3F1EC;
  color: var(--text);
  padding: clamp(80px, 10vw, 140px) 0;
}
.sec-press__inner {
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.sec-press h2 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.sec-press__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.press-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 400ms var(--ease-out), box-shadow 400ms var(--ease-out);
  text-decoration: none;
  color: inherit;
}
.press-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -12px rgba(0,0,0,0.12); }

.press-card--feature .press-card__img { aspect-ratio: 16 / 10; }
.press-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.press-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease-out); }
.press-card:hover .press-card__img img { transform: scale(1.04); }

.press-card__body { padding: 1.5rem; }
.press-card__tag {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  background: #F3F1EC;
  border: 1px solid #E5E5E0;
  color: var(--text-2);
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 0.875rem;
}
.press-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 0.875rem;
}
.press-card__meta {
  font-size: 0.8125rem;
  color: var(--text-3);
}

.press-card--small { flex-direction: row; align-items: stretch; }
.press-card--small .press-card__img { flex: 1; aspect-ratio: auto; min-height: 140px; }
.press-card--small .press-card__body { flex: 1.3; padding: 1.5rem; display: flex; flex-direction: column; justify-content: center; }
.press-card--small h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }

.press-col { display: grid; gap: 1.25rem; }

.sec-press__cta-row { text-align: center; }

@media (max-width: 960px) {
  .sec-press__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .press-card--small { flex-direction: column; }
  .press-card--small .press-card__img { min-height: 160px; }
}
