/* ==========================================================================
   Kontentium — Main Stylesheet
   Design system: Scandinavian-minimal, elevated. Linear/Vercel-level polish.
   Fonts: Lato 400/700 (local woff2)
   ========================================================================== */


/* ==========================================================================
   1. FONT FACE
   ========================================================================== */

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Lato-regular.woff2") format("woff2");
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Lato-bold.woff2") format("woff2");
}


/* ==========================================================================
   2. DESIGN TOKENS (CSS Custom Properties)
   ========================================================================== */

:root {
  /* Brand colours */
  --brand-blue: #0a92dd;
  --brand-purple: #b607e0;
  --brand-green: #08bc9e;
  --brand-black: #000000;
  --brand-white: #ffffff;

  /* Functional colours */
  --bg: #f4f6f9;
  --bg-warm: #f8f7f5;
  --text: #0c1b33;
  --muted: #5a6577;
  --accent: #0a92dd;
  --accent-strong: #0873b3;
  --accent-alt: #b607e0;
  --cta-dark: #0c1b33;
  --cta-dark-hover: #000000;
  --card: #ffffff;
  --border: #e4e8f0;
  --border-light: #edf0f6;
  --banner: #0c1b33;
  --success: #08bc9e;
  --success-muted: #e8faf7;
  --warning: #f59e0b;

  /* Radius system */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Spacing scale */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
  --spacing-2xl: 6rem;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(12, 27, 51, 0.06);
  --shadow-sm: 0 2px 8px rgba(12, 27, 51, 0.07);
  --shadow-md: 0 6px 24px rgba(12, 27, 51, 0.09);
  --shadow-lg: 0 16px 48px rgba(12, 27, 51, 0.11);
  --shadow-xl: 0 28px 72px rgba(12, 27, 51, 0.15);

  /* Gradient tokens */
  --grad-hero: linear-gradient(145deg, #eef4fb 0%, #e8f2fa 40%, #eff2f8 100%);
  --grad-dark: linear-gradient(150deg, #0b223e 0%, #0d1a2e 55%, #091628 100%);
  --grad-section-alt: linear-gradient(180deg, #f0f3f8 0%, #f4f6f9 100%);
  --grad-trust: linear-gradient(135deg, #f0fbf9 0%, #e8f8f5 100%);
}


/* ==========================================================================
   3. RESET & BASE
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Lato, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover,
a:focus {
  color: var(--cta-dark);
}

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

button {
  font: inherit;
}


/* ==========================================================================
   4. LAYOUT
   ========================================================================== */

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

section {
  padding: var(--spacing-2xl) 0;
}

.section-header {
  max-width: 720px;
  margin-bottom: var(--spacing-lg);
}

.section-header.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}


/* ==========================================================================
   5. TYPOGRAPHY
   ========================================================================== */

h1,
h2,
h3,
h4 {
  color: var(--text);
  margin-top: 0;
  line-height: 1.25;
  font-family: Lato, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1.25rem;
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: var(--spacing-md);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.9rem;
  display: inline-block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}


/* ==========================================================================
   6. BUTTONS
   ========================================================================== */

.cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: var(--spacing-md);
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.22s ease;
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn.primary {
  background-color: var(--cta-dark);
  color: #fff;
  box-shadow: 0 2px 10px rgba(11, 35, 63, 0.18), 0 1px 2px rgba(11, 35, 63, 0.1);
}

.btn.primary:hover,
.btn.primary:focus {
  background-color: var(--cta-dark-hover);
  box-shadow: 0 6px 20px rgba(11, 35, 63, 0.28);
  transform: translateY(-2px);
  color: #fff;
}

.btn.ghost {
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--cta-dark);
  padding-inline: 1.8rem;
}

.btn.ghost:hover,
.btn.ghost:focus {
  border-color: rgba(12, 27, 51, 0.4);
  background: rgba(12, 27, 51, 0.035);
  transform: translateY(-1px);
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.btn.secondary:hover {
  background: var(--accent);
  color: var(--brand-white);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.btn.large {
  padding: 1.1rem 2.5rem;
  font-size: 1.1rem;
}

.btn.primary.full {
  width: 100%;
}

/* Ghost variant for dark backgrounds */
.btn--light,
.btn.ghost.btn--light {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn--light:hover,
.btn.ghost.btn--light:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* White CTA for dark backgrounds */
.btn.primary.btn--light-bg {
  background: #fff;
  color: var(--cta-dark);
  box-shadow: 0 2px 12px rgba(255, 255, 255, 0.15);
}

.btn.primary.btn--light-bg:hover,
.btn.primary.btn--light-bg:focus {
  background: rgba(255, 255, 255, 0.92);
  color: var(--cta-dark);
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Text link button */
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--cta-dark);
  border-bottom: 1.5px solid rgba(12, 27, 51, 0.25);
  padding-bottom: 0.15rem;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  transition: border-color 0.2s ease, color 0.2s ease;
  background: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  padding-left: 0;
  padding-right: 0;
  cursor: pointer;
}

.btn-link:hover {
  color: var(--cta-dark-hover);
  border-bottom-color: var(--cta-dark-hover);
}

/* Light variant for dark backgrounds */
.btn-link--light {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.45);
}

.btn-link--light:hover {
  color: rgba(255, 255, 255, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.8);
}

.footer-cookie-link {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}


/* ==========================================================================
   7. SITE HEADER & NAVIGATION
   ========================================================================== */

.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(12, 27, 51, 0.06), 0 2px 12px rgba(12, 27, 51, 0.04);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  position: relative;
  gap: 1rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-wrap img {
  width: 120px;
  height: auto;
  aspect-ratio: 140 / 88;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-size: 0.95rem;
}

.site-nav a {
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--cta-dark);
}

.nav-cta {
  color: var(--cta-dark);
  font-weight: 700;
}

/* Mobile hamburger toggle */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-sm);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(12, 27, 51, 0.12);
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  top: 6px;
}

.menu-toggle.is-open {
  border-color: var(--accent);
}

.menu-toggle.is-open .menu-icon {
  background: transparent;
}

.menu-toggle.is-open .menu-icon::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open .menu-icon::after {
  transform: translateY(-6px) rotate(-45deg);
}


/* ==========================================================================
   8. SITE FOOTER
   ========================================================================== */

.site-footer {
  background: var(--cta-dark);
  padding: var(--spacing-xl) 0 var(--spacing-lg);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-cookie-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-cookie-link:hover {
  color: #fff;
}


/* ==========================================================================
   9. HERO SECTION
   ========================================================================== */

.hero {
  padding: var(--spacing-xl) 0 var(--spacing-2xl);
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}

/* Subtle geometric accent behind hero */
.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -180px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 146, 221, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -100px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 188, 158, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero visual — image container */
.hero-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(145deg, #dbeeff 0%, #c5dffa 100%);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, 0.6);
  min-height: 340px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 80px rgba(12, 27, 51, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.6);
}

/* When an image loads, show it */
.hero-visual img,
.hero-visual picture {
  display: block;
  width: 100%;
  height: auto;
}

/* Graceful fallback when hero image is absent */
.hero-visual picture:not([loaded]) img[src=""],
.hero-visual img:not([src]),
.hero-visual img[src=""] {
  display: none;
}

/* Floating card overlay inside hero */
.hero-card {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 40px rgba(12, 27, 51, 0.14), 0 2px 8px rgba(12, 27, 51, 0.08);
  position: absolute;
  bottom: 1.75rem;
  left: 1.75rem;
  right: 1.75rem;
  max-width: 420px;
}

.hero-card h2 {
  color: var(--text);
  font-size: 1.3rem;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.hero-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

.hero-note {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 0.5rem 0;
}

/* Hero visual fallback: when no image, show a styled background placeholder */
.hero-visual-placeholder {
  width: 100%;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #dbeeff 0%, #c5dff8 50%, #d8eaf8 100%);
  border-radius: var(--radius-xl);
}


/* ==========================================================================
   10. PROBLEMS SECTION
   ========================================================================== */

.problems {
  background: var(--grad-section-alt);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
  align-items: center;
}

.problems ul {
  list-style: none;
  padding: 0;
  margin: var(--spacing-md) 0 0;
  display: grid;
  gap: 1.1rem;
}

.problems li {
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.7;
}

.problems li::before {
  content: "•";
  color: var(--accent);
  font-weight: 700;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  line-height: 1.7;
}

/* Illustration figure */
.illustration {
  margin: 0;
  display: block;
}

.problems .illustration {
  max-width: 420px;
  justify-self: end;
  width: 100%;
}

.illustration img,
.illustration picture {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

/* Hide broken illustration images gracefully */
.illustration img[src=""],
.illustration img:not([src]) {
  display: none;
}


/* ==========================================================================
   11. HOW IT WORKS (STEPS)
   ========================================================================== */

.steps {
  background: var(--card);
  padding: var(--spacing-2xl) 0;
}

.steps .illustration {
  margin-top: var(--spacing-lg);
  max-width: 100%;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: var(--spacing-lg);
}

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

.step-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  background: #fff;
  box-shadow: var(--shadow-xs);
  transition: all 0.28s ease;
}

.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: rgba(10, 146, 221, 0.3);
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #0873b3 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(10, 146, 221, 0.3);
}

.steps-cta {
  text-align: center;
  margin-top: var(--spacing-lg);
}

.steps-cta.cta-group {
  justify-content: center;
}


/* ==========================================================================
   12. CONTENT EXAMPLES SECTION
   ========================================================================== */

.content-examples {
  background: var(--grad-section-alt);
  padding: var(--spacing-2xl) 0;
}

.examples-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: var(--spacing-xl) 0;
}

.example-card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  border: 1px solid var(--border-light);
}

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

.example-card.bad {
  border: 1.5px solid rgba(239, 68, 68, 0.4);
  background: linear-gradient(to bottom, rgba(254, 242, 242, 0.7) 0%, var(--card) 50%);
}

.example-card.good {
  border: 1.5px solid rgba(8, 188, 158, 0.35);
  background: linear-gradient(to bottom, rgba(8, 188, 158, 0.05) 0%, var(--card) 50%);
}

.example-label {
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  display: inline-block;
  letter-spacing: 0.02em;
}

.example-card.bad .example-label {
  background: #fce8e8;
  color: #891515;
}

.example-card.good .example-label {
  background: rgba(8, 188, 158, 0.14);
  color: #065c4a;
}

.example-content {
  background: var(--bg);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.65;
  border: 1px solid var(--border-light);
}

.example-content p {
  margin: 0 0 0.75rem 0;
}

.example-content p:last-child {
  margin-bottom: 0;
}

.example-content strong {
  color: var(--text);
  font-weight: 700;
}

.example-note {
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
  margin: 0;
}

.examples-cta {
  text-align: center;
  margin-top: var(--spacing-xl);
}


/* ==========================================================================
   13. FIT SECTION (WHO IS IT FOR)
   ========================================================================== */

.fit {
  background: var(--card);
  padding: var(--spacing-2xl) 0;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-md);
}

.fit ul,
.solution ul {
  list-style: none;
  padding: 0;
  margin: var(--spacing-md) 0 0;
  display: grid;
  gap: 0.85rem;
}

.fit li,
.solution li {
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.7;
}

.fit li::before,
.solution li::before {
  content: "•";
  color: var(--accent);
  font-weight: 700;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  line-height: 1.7;
}

.solution-content ul li {
  background: rgba(255, 255, 255, 0.95);
  padding: 1.15rem 1.25rem;
  padding-left: 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  transition: all 0.22s ease;
}

.solution-content ul li::before {
  position: relative;
  left: auto;
  margin-right: 0.5rem;
}

.solution-content ul li:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(10, 146, 221, 0.25);
}

.fit-cta {
  text-align: center;
  margin-top: var(--spacing-lg);
}


/* ==========================================================================
   14. SOCIAL PROOF / REAL POSTS
   ========================================================================== */

.social-proof {
  background: linear-gradient(180deg, var(--card) 0%, var(--grad-section-alt) 100%);
  padding: var(--spacing-2xl) 0;
}

.real-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin: var(--spacing-xl) 0;
}

.real-post-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--text);
}

.real-post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(10, 146, 221, 0.2);
}

.post-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--border-light);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.company-badge {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent-strong);
  padding: 0.35rem 0.85rem;
  background: rgba(10, 146, 221, 0.08);
  border-radius: 6px;
  border: 1px solid rgba(10, 146, 221, 0.18);
}

.linkedin-link {
  font-size: 0.82rem;
  color: #0a4c82;
  font-weight: 600;
  transition: color 0.2s ease;
}

.linkedin-link:hover {
  color: #062d56;
  text-decoration: underline;
}

.post-content {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text);
}

.post-hook {
  margin: 0 0 1rem 0;
  font-size: 0.95rem;
}

.post-content p {
  margin: 0 0 0.75rem 0;
}

.post-content ol,
.post-content ul {
  margin: 0.75rem 0;
  padding-left: 1.25rem;
}

.post-content li {
  margin-bottom: 0.5rem;
  line-height: 1.55;
}

.post-content li strong {
  color: var(--text);
  font-weight: 700;
}

.post-note {
  font-style: italic;
  color: var(--muted);
  margin: 1rem 0 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.88rem;
}

.post-meta {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
  text-align: center;
  padding: 0.6rem 1rem;
  background: rgba(8, 188, 158, 0.08);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(8, 188, 158, 0.18);
  color: #065c4a;
}

/* Proof CTA */
.proof-cta {
  margin-top: var(--spacing-xl);
  text-align: center;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  padding: var(--spacing-lg);
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.proof-cta h3 {
  margin: 0 0 1rem 0;
  color: var(--text);
  font-size: 1.5rem;
}

.proof-cta p {
  margin: 0 0 1.5rem 0;
  line-height: 1.7;
  color: var(--muted);
}


/* ==========================================================================
   15. PACKAGES SECTION
   ========================================================================== */

.packages {
  background: var(--grad-dark);
  color: #fff;
  padding: var(--spacing-2xl) 0;
  position: relative;
  overflow: hidden;
}

/* Subtle glow accent in packages section */
.packages::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 146, 221, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.packages .section-header h2,
.packages .section-header p {
  color: #fff;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
  position: relative;
  z-index: 1;
}

/* Two-column layout for pages showing only Standard + Premium */
.packages-grid--two {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.package-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg) var(--spacing-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(4px);
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.package-card.featured {
  border-color: rgba(10, 146, 221, 0.5);
  background: rgba(10, 146, 221, 0.1);
  box-shadow: 0 16px 40px rgba(10, 146, 221, 0.15), 0 0 0 1px rgba(10, 146, 221, 0.2);
}

.package-card.featured:hover {
  box-shadow: 0 28px 60px rgba(10, 146, 221, 0.25);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-alt));
  color: #fff;
  padding: 0.5rem 1.4rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 16px rgba(10, 146, 221, 0.5);
  white-space: nowrap;
}

.package-tag {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.4rem;
}

.package-card h3 {
  color: #fff;
  font-size: 1.9rem;
  margin-bottom: 0.2rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.package-subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  margin-bottom: var(--spacing-md);
}

/* Price display area */
.package-price {
  margin: 0 0 var(--spacing-md) 0;
  padding: var(--spacing-sm) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-amount {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
}

.price-period {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 0.25rem;
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--spacing-md) 0;
  display: grid;
  gap: 0.65rem;
  flex-grow: 1;
}

.package-card ul li {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.93rem;
  padding-left: 1.35rem;
  position: relative;
  line-height: 1.5;
}

.package-card ul li::before {
  content: "•";
  color: var(--accent);
  font-weight: 700;
  position: absolute;
  left: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.package-footer {
  margin-top: auto;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.setup-fee {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  margin-bottom: var(--spacing-sm);
}

.package-card .btn.primary {
  background: rgba(255, 255, 255, 0.95);
  color: var(--cta-dark);
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.package-card .btn.primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  color: var(--cta-dark);
}

.packages-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.88rem;
  margin-top: var(--spacing-md);
  position: relative;
  z-index: 1;
}

.packages-footer-cta {
  text-align: center;
  margin-top: var(--spacing-lg);
  position: relative;
  z-index: 1;
}

/* Enterprise row on homepage */
.enterprise-row {
  text-align: center;
  margin-top: var(--spacing-lg);
  padding: var(--spacing-md) var(--spacing-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.enterprise-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}


/* ==========================================================================
   16. GUARANTEE SECTION
   ========================================================================== */

.guarantee {
  background: var(--grad-trust);
  padding: var(--spacing-2xl) 0;
  border-top: 1px solid rgba(8, 188, 158, 0.15);
  border-bottom: 1px solid rgba(8, 188, 158, 0.15);
}

.guarantee-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.guarantee-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.guarantee h2 {
  color: var(--text);
  margin-bottom: 1rem;
}

.guarantee .lead {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-lg);
  color: var(--muted);
}

.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: var(--spacing-lg) 0;
  text-align: left;
}

.guarantee-item {
  background: rgba(255, 255, 255, 0.85);
  padding: 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(8, 188, 158, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.guarantee-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.guarantee-item h3 {
  font-size: 1.05rem;
  margin: 0 0 0.6rem 0;
  color: var(--text);
}

.guarantee-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.guarantee-cta {
  margin-top: var(--spacing-xl);
  text-align: center;
}

.guarantee-cta .btn {
  margin: 0.4rem;
}

.guarantee-note {
  margin: 1rem 0 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}


/* ==========================================================================
   17. FAQ SECTION
   ========================================================================== */

.faq {
  background: var(--card);
  padding: var(--spacing-2xl) 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
  align-items: start;
}

.faq-layout .illustration {
  align-self: start;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: var(--spacing-md);
}

.faq article {
  background: #fafbfc;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 1.5rem var(--spacing-md);
  transition: all 0.22s ease;
}

.faq article:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(10, 146, 221, 0.22);
  background: #fff;
}

.faq article h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.faq article p {
  color: var(--muted);
  font-size: 0.93rem;
  margin: 0;
  line-height: 1.65;
}

/* Wide FAQ — no illustration column (used on priser.php) */
.faq-content--wide {
  max-width: 100%;
  grid-column: 1 / -1;
}


/* ==========================================================================
   18. CONTACT CTA BLOCK
   ========================================================================== */

.contact {
  background: var(--grad-dark);
  padding: var(--spacing-2xl) 0;
  position: relative;
  overflow: hidden;
}

/* Glow accent for contact section */
.contact::before {
  content: "";
  position: absolute;
  bottom: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 146, 221, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* Simplified CTA block (replaces old contact form) */
.contact-cta-block {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.contact-cta-block h2 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.contact-cta-block p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--spacing-md);
  font-size: 1.1rem;
  line-height: 1.75;
}

.contact-cta-block .cta-group {
  justify-content: center;
}

.contact-email-fallback {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.contact-email-fallback a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.contact-email-fallback a:hover {
  color: #4eb8f0;
}

/* Legacy contact grid / form (kept for fallback) */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  align-items: start;
}

.contact-intro p {
  margin-bottom: 1.25rem;
  color: var(--muted);
  line-height: 1.7;
}

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

.contact-form label {
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
  font: inherit;
  background: #fff;
  transition: all 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(10, 146, 221, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  cursor: pointer;
}

.checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.response-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0.5rem 0 0;
}


/* ==========================================================================
   19. COOKIE BANNER
   ========================================================================== */

.cookie-banner {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1.5rem;
  width: min(560px, calc(100vw - 2rem));
  background: var(--banner);
  color: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(5, 9, 18, 0.35);
  padding: 1.5rem;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.cookie-banner__content p {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.cookie-banner .cookie-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-banner .btn {
  flex: 1;
  min-width: 140px;
}

.cookie-banner .btn.ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.cookie-banner .btn.ghost:hover,
.cookie-banner .btn.ghost:focus {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
}

.cookie-banner .btn.primary {
  background: #fff;
  color: var(--banner);
}

.cookie-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner[hidden] {
  display: none;
}


/* ==========================================================================
   20. POLICY PAGES
   ========================================================================== */

.policies {
  background: #fefefe;
  padding: var(--spacing-2xl) 0;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
}

.policy-grid article {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
}

.policy-grid--narrow {
  grid-template-columns: minmax(0, 1fr);
  max-width: 800px;
  margin-inline: auto;
}

.policy-grid a {
  color: var(--accent);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.policy-grid a:hover {
  color: var(--accent-strong);
}

.policy-grid > article > div {
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
  border-bottom: 1px solid var(--border-light);
}

.policy-grid > article > div:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.policy-grid h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 1rem 0 1.5rem 0;
  color: var(--text);
  line-height: 1.2;
}

.policy-grid h2 {
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  margin: 0 0 1.25rem 0;
  color: var(--text);
  line-height: 1.3;
  padding-top: 0.5rem;
}

.policy-grid h3 {
  font-size: 1.2rem;
  margin: 1.5rem 0 1rem 0;
  color: var(--accent);
  font-weight: 700;
}

.policy-grid .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0;
}

.policy-grid p {
  margin: 0 0 1rem 0;
  line-height: 1.7;
}

.policy-grid ul {
  margin: 1rem 0 1.5rem 0;
  padding-left: 1.5rem;
}

.policy-grid table {
  width: 100%;
  margin: 1.5rem 0;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.policy-grid th {
  background: var(--bg);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 700;
  border: 1px solid var(--border);
  color: var(--text);
}

.policy-grid td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  line-height: 1.6;
}


/* ==========================================================================
   21. PAGE HERO (INNER PAGES)
   ========================================================================== */

.page-hero {
  padding: var(--spacing-xl) 0 var(--spacing-lg);
  background: linear-gradient(145deg, #eef4fb 0%, #e6f0f8 60%, #f0f3f8 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  position: relative;
  overflow: hidden;
}

/* Subtle decorative accent */
.page-hero::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 146, 221, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero .lead {
  margin-bottom: 0;
  max-width: 760px;
}

/* Page hero with background image (via <img> element for responsive loading) */
.page-hero--with-image {
  position: relative;
  overflow: hidden;
  padding: var(--spacing-xl) 0 var(--spacing-lg);
  border-bottom: none;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Dark overlay when image is present */
.page-hero--with-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 34, 62, 0.78) 0%,
    rgba(11, 25, 43, 0.68) 50%,
    rgba(8, 18, 32, 0.55) 100%
  );
  z-index: 1;
}

/* Remove the decorative radial in image heroes */
.page-hero--with-image::after {
  display: none;
}

.page-hero--with-image .container {
  position: relative;
  z-index: 2;
}

.page-hero--with-image h1 {
  color: #fff;
}

.page-hero--with-image .lead {
  color: rgba(255, 255, 255, 0.78);
}

.page-hero--with-image .eyebrow {
  color: rgba(255, 255, 255, 0.65);
}

/* Booking hero needs extra bottom padding for the bullets */
.page-hero--with-image .booking-hero {
  padding-bottom: var(--spacing-md);
}

.page-hero--with-image .booking-hero .lead {
  margin-bottom: var(--spacing-md);
}


/* ==========================================================================
   22. PRICING PAGE — SPECIFIC COMPONENTS
   ========================================================================== */

/* Full comparison table */
.pricing-comparison {
  background: var(--card);
  padding: var(--spacing-2xl) 0;
}

.comparison-table-wrap {
  overflow-x: auto;
  margin-top: var(--spacing-lg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
  min-width: 520px;
}

.comparison-table th,
.comparison-table td {
  padding: 0.9rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.comparison-table thead th {
  background: var(--cta-dark);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-bottom: none;
}

.comparison-table thead th:first-child {
  background: #162843;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.comparison-table th.th-featured {
  background: var(--accent-strong);
}

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

.comparison-table tbody tr:hover {
  background: rgba(10, 146, 221, 0.04);
}

.th-price {
  font-size: 0.78rem;
  font-weight: 400;
  display: block;
  margin-top: 0.2rem;
}

.cell-no {
  color: rgba(90, 101, 119, 0.5);
}

/* Enterprise section (priser.php) */
.enterprise-section {
  background: var(--grad-section-alt);
  padding: var(--spacing-xl) 0;
}

.enterprise-box {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.enterprise-box h3 {
  margin-bottom: 0.75rem;
}

.enterprise-box p {
  color: var(--muted);
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
}

.enterprise-features {
  list-style: none;
  padding: 0;
  margin: 0 auto var(--spacing-md);
  max-width: 420px;
  text-align: left;
}

.enterprise-features li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--text);
  line-height: 1.6;
}

.enterprise-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* Add-ons table */
.addons-section {
  background: var(--grad-section-alt);
  padding: var(--spacing-xl) 0;
}

.addons-section h3 {
  margin-bottom: var(--spacing-md);
}

.addons-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
}

.addons-table {
  border-collapse: collapse;
  font-size: 0.93rem;
  min-width: 340px;
  width: 100%;
}

.addons-table th,
.addons-table td {
  padding: 0.85rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.addons-table thead th {
  background: #f0f3f8;
  font-weight: 700;
  color: var(--text);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
}

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

.addons-table tbody tr:hover {
  background: rgba(10, 146, 221, 0.03);
}

/* Cost anchor comparison table */
.cost-anchor {
  background: var(--card);
  padding: var(--spacing-xl) 0;
}

.cost-anchor h3 {
  margin-bottom: var(--spacing-md);
}

.cost-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.cost-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 500px;
}

.cost-table th,
.cost-table td {
  padding: 0.85rem 1.1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border-light);
}

.cost-table thead th {
  background: var(--cta-dark);
  color: #fff;
  font-weight: 700;
  border-bottom: none;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

.cost-table tbody tr:hover {
  background: rgba(0, 0, 0, 0.02);
}

.cost-table-highlight {
  background: rgba(8, 188, 158, 0.07) !important;
}

.cost-table-highlight td {
  font-weight: 700;
  color: var(--text);
}


/* ==========================================================================
   23. BOOKING PAGE
   ========================================================================== */

.booking-hero {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Step bullets in the booking page hero */
.booking-bullets {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: var(--spacing-lg);
  text-align: left;
}

.booking-bullet {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
  font-size: 1rem;
  line-height: 1.6;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.booking-bullet:hover {
  box-shadow: var(--shadow-sm);
  border-color: rgba(10, 146, 221, 0.2);
  transform: translateY(-2px);
}

.booking-bullet .bullet-number {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #0873b3 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(10, 146, 221, 0.3);
}

.booking-section {
  padding: var(--spacing-xl) 0;
  background: var(--grad-hero);
}

.booking-container {
  max-width: 860px;
}

/* CTA box that replaces the old iframe */
.booking-cta-box {
  background: var(--card);
  border: 1.5px solid rgba(10, 146, 221, 0.25);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl) var(--spacing-lg);
  text-align: center;
  margin-bottom: var(--spacing-md);
  box-shadow: var(--shadow-lg), 0 0 0 4px rgba(10, 146, 221, 0.05);
}

.booking-cta-box h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.75rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.booking-cta-box p {
  color: var(--muted);
  margin-bottom: var(--spacing-md);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.booking-cta-box .btn.primary {
  font-size: 1.1rem;
  padding: 1.15rem 2.75rem;
}

/* Legacy iframe embed (kept in case restored) */
.booking-embed {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--spacing-md);
}

.booking-embed iframe {
  display: block;
  width: 100%;
  min-height: 700px;
  border: none;
}

.booking-email-fallback {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.booking-email-fallback a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.booking-email-fallback a:hover {
  color: var(--accent-strong);
}

.boka-softexit {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: var(--spacing-md);
}

.boka-softexit a {
  color: var(--accent);
  text-decoration: underline;
}

.boka-softexit a:hover {
  color: var(--accent-strong);
}

.booking-support-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.95rem;
  color: var(--muted);
}


/* ==========================================================================
   24. RESULTS PAGE
   ========================================================================== */

.transparency-section {
  padding: var(--spacing-lg) 0 0;
}

.transparency-box {
  border-radius: var(--radius-lg);
  padding: 1.5rem var(--spacing-lg);
  max-width: 820px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(10, 146, 221, 0.06) 0%, rgba(10, 146, 221, 0.02) 100%);
  border: 1px solid rgba(10, 146, 221, 0.18);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.transparency-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #0873b3 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(10, 146, 221, 0.25);
  margin-top: 0.15rem;
}

.transparency-icon svg {
  width: 20px;
  height: 20px;
}

.transparency-box h2.transparency-heading,
.transparency-box h3 {
  color: var(--accent-strong);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.transparency-box p {
  margin: 0 0 0.6rem 0;
  color: var(--muted);
  line-height: 1.72;
  font-size: 0.93rem;
}

.transparency-box p:last-child {
  margin-bottom: 0;
}

/* Case blocks */
.cases-section {
  padding: var(--spacing-xl) 0;
}

.case-block {
  margin-bottom: var(--spacing-2xl);
  padding-bottom: var(--spacing-2xl);
  border-bottom: 1px solid var(--border-light);
}

.case-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.case-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: var(--spacing-lg);
}

.case-header__left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.case-number {
  font-size: 2.4rem;
  font-weight: 700;
  color: #2e8fc5;
  line-height: 1;
  letter-spacing: -0.04em;
}

.case-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.case-subtitle {
  margin: 0.15rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
}

.case-header .linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: #0a66c2;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(10, 102, 194, 0.2);
  background: rgba(10, 102, 194, 0.04);
  transition: all 0.2s ease;
}

.case-header .linkedin-link:hover {
  background: rgba(10, 102, 194, 0.1);
  border-color: rgba(10, 102, 194, 0.35);
  color: #004182;
  text-decoration: none;
}

.case-badge {
  font-weight: 700;
  font-size: 0.95rem;
  color: #065a8c;
  padding: 0.45rem 1rem;
  background: rgba(10, 146, 221, 0.07);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(10, 146, 221, 0.18);
}

.case-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 0;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.case-meta-item {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.case-meta-item:last-child {
  border-bottom: none;
}

.case-meta-item strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--accent-strong);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.case-meta-item p {
  margin: 0;
  color: var(--text);
  font-size: 0.93rem;
  line-height: 1.6;
}

.case-layout {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.case-block .real-posts-grid {
  margin: 0;
}

/* Post cards — LinkedIn-inspired */
.cases-section .real-post-card {
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.cases-section .real-post-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(10, 146, 221, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cases-section .real-post-card:hover::before {
  opacity: 1;
}

.post-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  background: var(--bg);
  border-radius: 4px;
}

/* Process detail — timeline style */
.process-detail {
  background: var(--grad-dark);
  padding: var(--spacing-2xl) 0;
  color: #fff;
}

.process-detail .section-header h2 {
  color: #fff;
}

.process-detail__lead {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
}

.eyebrow--dark {
  color: var(--accent);
}

.process-detail .eyebrow--dark {
  color: rgba(10, 146, 221, 0.8);
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--spacing-lg);
  position: relative;
  padding-left: 2rem;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(10, 146, 221, 0.15) 100%);
}

.process-timeline__step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.25rem 0;
  position: relative;
}

.process-timeline__number {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #0873b3 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(10, 146, 221, 0.15), 0 3px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.process-timeline__content strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1rem;
  color: #fff;
}

.process-timeline__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.93rem;
  line-height: 1.6;
}

/* Legacy process-step classes kept for other pages */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: var(--spacing-lg);
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.4rem 1.5rem;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.process-step:hover {
  border-color: rgba(10, 146, 221, 0.25);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.process-step .step-number {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #0873b3 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-bottom: 0;
  box-shadow: 0 3px 10px rgba(10, 146, 221, 0.28);
}

.process-step strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1rem;
  color: var(--text);
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* Fit CTA */
.fit-cta {
  text-align: center;
  margin-top: var(--spacing-lg);
}


/* ==========================================================================
   25. CLOUDFLARE TURNSTILE
   ========================================================================== */

.cf-turnstile {
  min-height: 70px;
  display: block;
}


/* ==========================================================================
   26. RESPONSIVE — TABLET (max 768px)
   ========================================================================== */

@media (max-width: 768px) {
  section {
    padding: var(--spacing-xl) 0;
  }

  .problems .illustration {
    max-width: none;
    justify-self: stretch;
  }

  .packages-grid,
  .step-grid,
  .step-grid--3col {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    position: static;
    transform: none;
    margin-top: var(--spacing-md);
    border-radius: var(--radius-md);
  }

  .hero-visual {
    border-radius: var(--radius-lg);
  }

  .examples-grid {
    grid-template-columns: 1fr;
  }

  .guarantee-grid {
    grid-template-columns: 1fr;
  }

  .real-posts-grid {
    grid-template-columns: 1fr;
  }

  .booking-cta-box {
    padding: var(--spacing-lg) var(--spacing-md);
  }

  .contact-cta-block h2 {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
  }
}

@media (min-width: 768px) {
  .examples-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

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

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

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

  .booking-hero {
    text-align: center;
  }
}


/* ==========================================================================
   27. RESPONSIVE — MOBILE (max 640px)
   ========================================================================== */

@media (max-width: 640px) {
  /* Show hamburger */
  .menu-toggle {
    display: inline-flex;
  }

  /* Flyout mobile nav */
  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-lg);
    width: min(280px, 88vw);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    gap: 0.75rem;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    width: 100%;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
  }

  .site-nav a:last-child {
    border-bottom: none;
  }

  /* CTA group stacks vertically */
  .cta-group {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .cta-group .btn,
  .cta-group .btn-link {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Contact CTA centered buttons on mobile */
  .contact-cta-block .cta-group {
    align-items: center;
  }

  /* Hero card goes below image on mobile */
  .hero-card {
    position: static;
    transform: none;
    margin-top: var(--spacing-md);
    border-radius: var(--radius-md);
  }

  .hero-visual {
    border-radius: var(--radius-lg);
  }

  .illustration img,
  .illustration picture {
    border-radius: var(--radius-md);
  }

  /* Cookie banner */
  .cookie-banner {
    padding: 1.25rem;
  }

  /* Booking */
  .booking-bullet {
    padding: 1rem 1.25rem;
  }

  .booking-hero {
    text-align: center;
  }

  .booking-bullets {
    text-align: left;
  }

  /* Steps CTA */
  .steps-cta.cta-group {
    align-items: center;
  }

  /* Process step: no horizontal shift on mobile */
  .process-step:hover {
    transform: none;
  }

  /* Resultat page: mobile tweaks */
  .transparency-box {
    flex-direction: column;
    padding: 1.25rem;
  }

  .case-header .linkedin-link {
    width: 100%;
    justify-content: center;
  }

  .case-number {
    font-size: 2rem;
  }

  .case-title {
    font-size: 1.25rem;
  }
}


/* ==========================================================================
   28. RESPONSIVE — DESKTOP OVERRIDES
   ========================================================================== */

@media (min-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr 2fr;
  }
}

@media (min-width: 1024px) {
  .faq-layout {
    grid-template-columns: 1fr 2fr;
  }

  .faq-layout .illustration {
    grid-row: 1;
    grid-column: 1 / 2;
  }

  .faq-layout .faq-content {
    grid-column: 2 / 3;
  }

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

  /* Cases page: 2-column layout — meta left, post right */
  .case-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
  }

  .case-layout .case-meta {
    grid-template-columns: 1fr;
  }

  .case-block .real-posts-grid {
    grid-template-columns: 1fr;
    margin: 0;
  }

  .case-number {
    font-size: 3.2rem;
  }

  .case-title {
    font-size: 1.75rem;
  }

  /* Process timeline — horizontal on desktop */
  .process-timeline {
    flex-direction: row;
    padding-left: 0;
    padding-top: 2.5rem;
    gap: 0;
  }

  .process-timeline::before {
    left: 0;
    right: 0;
    top: 39px;
    bottom: auto;
    width: auto;
    height: 2px;
    background: linear-gradient(90deg, rgba(10, 146, 221, 0.15) 0%, var(--accent) 50%, rgba(10, 146, 221, 0.15) 100%);
  }

  .process-timeline__step {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 0.75rem;
    gap: 1rem;
  }

  .process-timeline__content p {
    font-size: 0.88rem;
  }

  /* Legacy process-steps for other pages */
  .process-steps {
    max-width: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .process-steps .process-step {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

@media (min-width: 700px) {
  .packages-grid--two {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Tjänster page ── */

.tjanster-steps {
  background: var(--bg-light);
}

.not-included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .not-included-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.not-included-item {
  padding: 1.5rem;
  background: var(--bg-warm);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.not-included-item strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.not-included-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

.tjanster-not-included {
  background: var(--bg-light);
}

.objections-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .objections-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.objection-card {
  padding: 2rem;
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.objection-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.objection-card h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.objection-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.objection-card p + p {
  margin-top: 0.75rem;
}

.tjanster-includes .packages-note {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ── Om page ── */

.om-content {
  max-width: 720px;
  margin: 0 auto;
}

.om-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.om-content p + p {
  margin-top: 1.25rem;
}

.om-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .om-facts {
    grid-template-columns: repeat(3, 1fr);
  }
}

.om-fact {
  padding: 1.5rem;
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  text-align: center;
}

.om-fact strong {
  display: block;
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.om-fact span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ── Footer upgrade ── */

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

@media (min-width: 640px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.footer-col h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-sm);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a,
.footer-bottom .footer-cookie-link {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
  margin-right: 1rem;
}

.footer-bottom a:hover,
.footer-bottom .footer-cookie-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Compact dark hero (blog, industry, comparison, tools) */
.page-hero--compact {
  padding: var(--spacing-xl) 0 var(--spacing-lg);
  background: var(--cta-dark);
  color: #fff;
  text-align: center;
}
.page-hero--compact h1,
.page-hero--compact h2 {
  color: #fff;
}
.page-hero--compact .eyebrow {
  color: rgba(255, 255, 255, 0.65);
}
.page-hero--compact .lead {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}
.blog-listing {
  padding: var(--spacing-xl) 0;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  max-width: 900px;
  margin: 0 auto;
}
.blog-card {
  display: block;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  text-decoration: none;
  color: var(--text);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.blog-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.blog-card__tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.blog-card h2 {
  font-size: 1.15rem;
  line-height: 1.4;
  margin-bottom: 0.6rem;
}
.blog-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}
.blog-card__read {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
}
@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* Blog article */
.article-content {
  max-width: 680px;
  margin: 0 auto;
  padding: var(--spacing-xl) var(--spacing-sm);
}
.article-content h1 {
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.article-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: var(--spacing-lg);
}
.article-content h2 {
  font-size: 1.4rem;
  margin-top: var(--spacing-lg);
  margin-bottom: 0.6rem;
}
.article-content h3 {
  font-size: 1.1rem;
  margin-top: var(--spacing-md);
  margin-bottom: 0.4rem;
}
.article-content p {
  margin-bottom: 1rem;
  line-height: 1.75;
}
.article-content ul,
.article-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.article-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.article-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 0.8rem 1.2rem;
  margin: 1.5rem 0;
  background: var(--bg);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.article-content blockquote p {
  margin-bottom: 0;
  color: var(--muted);
  font-style: italic;
}
.article-cta-box {
  background: var(--cta-dark);
  color: #fff;
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  text-align: center;
  margin: var(--spacing-lg) 0;
}
.article-cta-box h3 {
  color: #fff;
  margin-top: 0;
}
.article-cta-box p {
  color: rgba(255, 255, 255, 0.7);
}
.article-back {
  display: inline-block;
  margin-bottom: var(--spacing-sm);
  font-size: 0.85rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

/* Industry pages */
.industry-problems {
  padding: var(--spacing-xl) 0;
}
.industry-problems h2 {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}
.industry-problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  max-width: 960px;
  margin: 0 auto;
}
.industry-problem {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
}
.industry-problem strong {
  display: block;
  margin-bottom: 0.4rem;
}
.industry-problem p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}
.industry-solution {
  padding: var(--spacing-xl) 0;
  background: var(--bg);
}
.industry-solution h2 {
  margin-bottom: 0.6rem;
}
.industry-solution > .container > p {
  max-width: 680px;
  color: var(--muted);
  margin-bottom: var(--spacing-md);
}
.industry-example {
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.industry-example h3 {
  margin-bottom: 0.6rem;
}
.industry-example ul {
  margin: 0;
  padding-left: 1.2rem;
}
.industry-example li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.industry-proof {
  padding: var(--spacing-lg) 0;
}
.industry-proof-box {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: var(--spacing-md);
  background: var(--bg);
  border-radius: var(--radius-md);
}
.industry-proof-box h3 {
  margin-bottom: 0.4rem;
}
.industry-proof-box p {
  color: var(--muted);
  margin-bottom: 0.8rem;
}

/* LinkedIn post example section */
.industry-post-example {
  padding: var(--spacing-lg) 0;
}
.industry-post-example h2 {
  margin-bottom: var(--spacing-md);
}
.example-post {
  max-width: 680px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.example-post__text {
  line-height: 1.7;
  margin-bottom: 0.8rem;
}
.example-post__text:last-of-type {
  margin-bottom: 1.2rem;
}
.example-post__note {
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 0.8rem;
  margin-bottom: 0;
}

/* Proof points (typiskt resultat) */
.proof-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}
.proof-point {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.proof-point strong {
  font-size: 1.1rem;
}
.proof-point span {
  color: var(--muted);
  line-height: 1.6;
}
.proof-note {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: italic;
}

.industry-pricing {
  padding: var(--spacing-xl) 0;
}
.industry-pricing h2 {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}
.industry-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  max-width: 600px;
  margin: 0 auto var(--spacing-md);
}
.industry-price-card {
  background: var(--cta-dark);
  color: #fff;
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  text-align: center;
}
.industry-price-card.featured {
  background: var(--accent);
}
.industry-price-card h3 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}
.industry-price {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.industry-price-card p:last-child {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.industry-pricing-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .industry-problems-grid {
    grid-template-columns: 1fr;
  }
  .industry-pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* Comparison pages */
.comparison-intro {
  padding: var(--spacing-xl) 0;
}
.comparison-intro > .container {
  max-width: 680px;
}
.comparison-intro p {
  color: var(--muted);
  line-height: 1.7;
}
.comparison-grid-section {
  padding: var(--spacing-xl) 0;
  background: var(--bg);
}
.comparison-grid-section h2 {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}
.comparison-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  max-width: 960px;
  margin: 0 auto;
}
.comparison-item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.comparison-item.highlight {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(10, 146, 221, 0.15);
}
.comparison-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}
.comparison-item p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.comparison-verdict {
  padding: var(--spacing-lg) 0;
}
.comparison-verdict > .container {
  max-width: 680px;
  text-align: center;
}
.comparison-verdict p {
  color: var(--muted);
}
@media (max-width: 640px) {
  .comparison-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* LinkedIn grader tool */
.grader-section {
  padding: var(--spacing-xl) 0;
}
.grader-wrap {
  max-width: 600px;
  margin: 0 auto;
}
.grader-progress {
  height: 6px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.grader-progress__bar {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
  transition: width 0.3s ease;
}
.grader-step {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: var(--spacing-md);
}
.grader-question__text {
  font-size: 1.2rem;
  line-height: 1.4;
  margin-bottom: var(--spacing-md);
}
.grader-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.grader-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 1rem 1.2rem;
  background: #fff;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
  font-family: inherit;
}
.grader-option:hover {
  border-color: var(--accent);
  background: rgba(10, 146, 221, 0.04);
}
.grader-score-wrap {
  text-align: center;
  margin-bottom: var(--spacing-md);
}
.grader-score {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}
.grader-score-label {
  font-size: 0.9rem;
  color: var(--muted);
}
.grader-results h2 {
  text-align: center;
  margin-bottom: var(--spacing-md);
}
.grader-recommendations {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}
.grader-recommendations h3 {
  margin-bottom: 0.6rem;
}
.grader-recommendations ul {
  padding-left: 1.2rem;
}
.grader-recommendations li {
  margin-bottom: 0.6rem;
  line-height: 1.6;
  font-size: 0.9rem;
}
.grader-cta-box {
  background: var(--cta-dark);
  color: #fff;
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  text-align: center;
}
.grader-cta-box h3 {
  color: #fff;
  margin-bottom: 0.4rem;
}
.grader-cta-box p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.8rem;
}

/* Booking: next steps */
.booking-next-steps {
  padding: var(--spacing-xl) 0;
  background: var(--bg);
}
.booking-next-steps h2 {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}
.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  max-width: 900px;
  margin: 0 auto;
}
.next-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.next-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}
.next-step strong {
  display: block;
  margin-bottom: 0.3rem;
}
.next-step p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}
@media (max-width: 640px) {
  .next-steps-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }
}

/* Accessibility: reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
