/* ==========================================================================
   Ordo Kurs — Landing Page Stylesheet (Redesign)
   ========================================================================== */

:root {
  --lp-primary: #3B63F6;
  --lp-primary-dark: #2548D0;
  --lp-primary-light: #6D85F8;
  --lp-accent: #A98DFB;
  --lp-accent-light: #C09EFF;
  --lp-surface: #ffffff;
  --lp-text: #1A1F36;
  --lp-text-muted: #5E6687;
  --lp-bg: #F8F9FC;
  --lp-bg-warm: #F6F5F3;
  --lp-border: #E4E7F1;
  --lp-radius: 0.75rem;
  --lp-radius-lg: 1rem;
  --lp-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
  --lp-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.07), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
  --lp-shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
  --lp-max-width: 1280px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--lp-text);
  background: var(--lp-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--lp-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover { color: var(--lp-primary-dark); }

ul { list-style: none; }

/* ==========================================================================
   Utility
   ========================================================================== */

.lp-container {
  max-width: var(--lp-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.lp-section {
  padding: 6rem 0;
}

.lp-section-warm {
  background: var(--lp-bg-warm);
}

.lp-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.lp-section-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  color: var(--lp-text);
}

.lp-section-header p {
  font-size: 1.1rem;
  color: var(--lp-text-muted);
  font-weight: 300;
  line-height: 1.7;
}

/* ==========================================================================
   Scroll Reveal
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ==========================================================================
   Navigation
   ========================================================================== */

.lp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.lp-nav.scrolled {
  border-bottom-color: var(--lp-border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.lp-nav-inner {
  max-width: var(--lp-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.lp-logo-img {
  height: 2.5rem;
  width: auto;
}

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

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.lp-nav-links a {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--lp-text-muted);
  transition: color 0.2s ease;
}

.lp-nav-links a:hover { color: var(--lp-text); }

.lp-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1.25rem;
  background: var(--lp-primary);
  color: white !important;
  border-radius: 0.5rem;
  font-size: 0.925rem;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.15s ease;
}

.lp-nav-cta:hover {
  background: var(--lp-primary-dark);
  color: white !important;
  transform: translateY(-1px);
}

/* Hamburger */
.lp-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.lp-hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--lp-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.lp-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-hamburger.open span:nth-child(2) { opacity: 0; }
.lp-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */

.lp-hero {
  background: linear-gradient(170deg, #ffffff 0%, #e8ecff 35%, #efe8ff 65%, #f8f6ff 100%);
  padding: 7rem 1.5rem 5rem;
  overflow: hidden;
  position: relative;
}

.lp-hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.lp-hero-blob-1 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(59, 99, 246, 0.14) 0%, transparent 70%);
  top: -300px;
  right: -200px;
}

.lp-hero-blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(169, 141, 251, 0.12) 0%, transparent 70%);
  bottom: -150px;
  left: -100px;
}

.lp-hero-brand-watermark {
  position: absolute;
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.025;
  pointer-events: none;
  z-index: 0;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.lp-hero-text {
  max-width: 560px;
}

.lp-badge {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  background: rgba(59, 99, 246, 0.08);
  border: 1px solid rgba(59, 99, 246, 0.15);
  border-radius: 100px;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--lp-primary);
  margin-bottom: 1.5rem;
  animation: badge-glow 2s ease-out 1s 1;
}

@keyframes badge-glow {
  0% { box-shadow: 0 0 0 0 rgba(59, 99, 246, 0.3); }
  70% { box-shadow: 0 0 0 8px rgba(59, 99, 246, 0); }
  100% { box-shadow: 0 0 0 0 rgba(59, 99, 246, 0); }
}

.lp-hero h1 {
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--lp-text);
  margin-bottom: 1.25rem;
}

.lp-hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--lp-text-muted);
  font-weight: 300;
  margin-bottom: 2rem;
}

.lp-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.lp-hero-trust {
  margin-top: 1.5rem;
  font-size: 0.825rem;
  color: var(--lp-text-muted);
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.975rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.lp-btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1.05rem;
}

.lp-btn-primary {
  background: var(--lp-primary);
  color: white;
  box-shadow: 0 1px 2px rgba(59, 99, 246, 0.2);
}

.lp-btn-primary:hover {
  background: var(--lp-primary-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 99, 246, 0.3);
}

.lp-btn-outline {
  background: transparent;
  color: var(--lp-primary);
  border: 1.5px solid var(--lp-border);
}

.lp-btn-outline:hover {
  background: var(--lp-bg);
  border-color: var(--lp-primary);
  color: var(--lp-primary-dark);
  transform: translateY(-1px);
}

.lp-btn-white {
  background: white;
  color: var(--lp-primary);
}

.lp-btn-white:hover {
  background: var(--lp-bg);
  color: var(--lp-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.lp-btn-block {
  width: 100%;
  text-align: center;
}

/* ==========================================================================
   Device Frame
   ========================================================================== */

.lp-device-frame {
  background: var(--lp-surface);
  border-radius: var(--lp-radius-lg);
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow-xl);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-device-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 56px -16px rgba(26, 31, 54, 0.15);
}

.lp-device-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 32px;
  padding: 0 12px;
  background: var(--lp-bg);
  border-bottom: 1px solid var(--lp-border);
}

.lp-device-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lp-border);
}

.lp-device-frame img {
  width: 100%;
  display: block;
}

/* ==========================================================================
   TTS Audio Comparison
   ========================================================================== */

.lp-tts-compare {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lp-tts-compare-intro {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--lp-text-muted);
  line-height: 1.6;
  margin-bottom: 0.15rem;
}

.lp-tts-sample {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 0.85rem 1.15rem;
  transition: box-shadow 0.3s ease;
}

.lp-tts-sample:hover {
  box-shadow: var(--lp-shadow);
}

.lp-tts-sample-hd {
  background: linear-gradient(135deg, rgba(59, 99, 246, 0.03) 0%, rgba(169, 141, 251, 0.05) 100%);
  border-color: rgba(169, 141, 251, 0.25);
}

.lp-tts-sample-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}

.lp-tts-sample-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--lp-text);
}

.lp-tts-sample-tier {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--lp-primary);
  background: rgba(59, 99, 246, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

.lp-tts-player {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  background: var(--lp-bg);
  border: 1px solid var(--lp-border);
  border-radius: 0.5rem;
}

.lp-tts-sample-hd .lp-tts-player {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(169, 141, 251, 0.15);
}

.lp-tts-play {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--lp-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.lp-tts-play:hover {
  background: var(--lp-primary-dark);
  transform: scale(1.05);
}

.lp-tts-play:active {
  transform: scale(0.95);
}

.lp-tts-play svg {
  margin-left: 2px;
}

.lp-tts-play .lp-tts-icon-pause {
  margin-left: 0;
}

.lp-tts-track {
  flex: 1;
  height: 4px;
  background: var(--lp-border);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.lp-tts-track:hover {
  height: 6px;
}

.lp-tts-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--lp-primary);
  border-radius: 2px;
  transition: width 0.1s linear;
}

.lp-tts-sample-hd .lp-tts-progress {
  background: var(--lp-accent);
}

.lp-tts-time {
  font-size: 0.75rem;
  color: var(--lp-text-muted);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  min-width: 5.5em;
  text-align: right;
}

[data-tts-player] audio {
  display: none;
}

/* ==========================================================================
   Trust Bar
   ========================================================================== */

.lp-trust-bar {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--lp-border);
}

.lp-trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.lp-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--lp-text-muted);
  font-size: 0.875rem;
  font-weight: 500;
}

.lp-trust-item svg {
  color: var(--lp-primary-light);
  flex-shrink: 0;
}

/* ==========================================================================
   Trust Section
   ========================================================================== */

.lp-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.lp-trust-card {
  background: var(--lp-surface);
  padding: 2rem;
  border-radius: var(--lp-radius-lg);
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.lp-trust-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(16, 185, 129, 0.08);
  color: #10B981;
  border-radius: var(--lp-radius);
  margin-bottom: 1.25rem;
}

.lp-trust-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--lp-text);
}

.lp-trust-card p {
  font-size: 0.95rem;
  color: var(--lp-text-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ==========================================================================
   Feature Showcases
   ========================================================================== */

.lp-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.lp-showcase + .lp-showcase {
  margin-top: 7rem;
}

.lp-showcase-reverse .lp-showcase-visual {
  order: -1;
}

.lp-showcase-text {
  max-width: 480px;
}

.lp-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lp-primary);
  margin-bottom: 0.75rem;
}

.lp-showcase-text h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--lp-text);
}

.lp-showcase-text p {
  font-size: 1.05rem;
  color: var(--lp-text-muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.lp-check-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.lp-check-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--lp-text);
  font-weight: 400;
}

.lp-check-list li svg {
  flex-shrink: 0;
}

/* Decorative blob behind showcases */
#funksjoner {
  position: relative;
  overflow: hidden;
}

#funksjoner::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169, 141, 251, 0.04) 0%, transparent 70%);
  top: 20%;
  left: -200px;
  pointer-events: none;
}

#funksjoner::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 99, 246, 0.04) 0%, transparent 70%);
  bottom: 10%;
  right: -150px;
  pointer-events: none;
}

/* ==========================================================================
   Bento Grid
   ========================================================================== */

.lp-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.lp-bento-card {
  background: var(--lp-surface);
  padding: 2rem;
  border-radius: var(--lp-radius-lg);
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.lp-bento-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(59, 99, 246, 0.06);
  color: var(--lp-primary);
  border-radius: var(--lp-radius);
  margin-bottom: 1.25rem;
}

.lp-bento-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--lp-text);
}

.lp-bento-card p {
  font-size: 0.95rem;
  color: var(--lp-text-muted);
  line-height: 1.6;
  font-weight: 300;
}

.lp-bento-accent {
  background: linear-gradient(135deg, rgba(59, 99, 246, 0.04) 0%, rgba(169, 141, 251, 0.06) 100%);
  border-color: rgba(169, 141, 251, 0.2);
}

.lp-bento-accent .lp-bento-icon {
  background: rgba(169, 141, 251, 0.1);
  color: var(--lp-accent);
}

/* ==========================================================================
   Steps
   ========================================================================== */

.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
}

.lp-steps::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(16.67% + 1.25rem);
  right: calc(16.67% + 1.25rem);
  height: 2px;
  background: linear-gradient(90deg, var(--lp-primary-light), var(--lp-accent));
  opacity: 0.3;
}

.lp-step {
  text-align: center;
  position: relative;
}

.lp-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--lp-primary);
  color: white;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.lp-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(59, 99, 246, 0.06);
  color: var(--lp-primary);
  border-radius: 50%;
  margin-bottom: 1.25rem;
}

.lp-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--lp-text);
}

.lp-step p {
  font-size: 0.95rem;
  color: var(--lp-text-muted);
  line-height: 1.6;
  font-weight: 300;
  max-width: 280px;
  margin: 0 auto;
}

/* ==========================================================================
   Pricing
   ========================================================================== */

.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.lp-pricing-card {
  background: var(--lp-surface);
  border-radius: var(--lp-radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-pricing-card .lp-btn {
  margin-top: auto;
}

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

/* Gradient border for featured card */
.lp-pricing-featured {
  background: linear-gradient(var(--lp-surface), var(--lp-surface)) padding-box,
              linear-gradient(135deg, var(--lp-primary), var(--lp-accent)) border-box;
  border: 2px solid transparent;
  box-shadow: var(--lp-shadow-lg);
  transform: scale(1.03);
  z-index: 1;
}

.lp-pricing-featured:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: var(--lp-shadow-xl);
}

.lp-pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 1.25rem;
  background: linear-gradient(135deg, var(--lp-primary), var(--lp-accent));
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lp-pricing-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 0.3rem;
}

.lp-pricing-desc {
  font-size: 0.9rem;
  color: var(--lp-text-muted);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.lp-pricing-price {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--lp-border);
}

.lp-pricing-amount {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--lp-text);
  letter-spacing: -0.02em;
}

.lp-pricing-period {
  font-size: 0.95rem;
  color: var(--lp-text-muted);
  font-weight: 400;
}

.lp-pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.lp-pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.925rem;
  color: var(--lp-text);
}

.lp-pricing-features li svg { flex-shrink: 0; }

.lp-pricing-features-header {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lp-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding-bottom: 0.25rem;
}

/* Pricing toggle (monthly/yearly) */
.lp-pricing-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.lp-pricing-toggle-inner {
  display: inline-flex;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 100px;
  padding: 4px;
}

.lp-toggle-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  background: transparent;
  color: var(--lp-text-muted);
}

.lp-toggle-btn.active {
  background: var(--lp-primary);
  color: white;
}

.lp-toggle-btn:not(.active):hover {
  color: var(--lp-text);
}

.lp-toggle-save {
  display: inline-block;
  background: rgba(59, 99, 246, 0.1);
  color: var(--lp-primary);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 100px;
  padding: 0.15rem 0.5rem;
  margin-left: 0.35rem;
}

.lp-toggle-btn.active .lp-toggle-save {
  background: rgba(255, 255, 255, 0.25);
  color: white;
}

/* Free banner */
.lp-pricing-free {
  background: linear-gradient(135deg, rgba(59, 99, 246, 0.04), rgba(169, 141, 251, 0.04));
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: 2rem 2.5rem;
  margin-bottom: 2rem;
}

.lp-pricing-free-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.lp-pricing-free-text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--lp-text);
  margin: 0;
}

.lp-pricing-free-text p {
  font-size: 0.95rem;
  color: var(--lp-text-muted);
  margin: 0.3rem 0 0.75rem;
}

.lp-pricing-free-pills {
  display: flex;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: var(--lp-text-muted);
}

.lp-pricing-free-pills span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* Band selector (Organisasjon) */
.lp-band-selector {
  display: inline-flex;
  gap: 0;
  background: var(--lp-bg);
  border-radius: 0.5rem;
  padding: 3px;
  margin-bottom: 1rem;
}

.lp-band-btn {
  padding: 0.35rem 0.75rem;
  border: none;
  border-radius: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  background: transparent;
  color: var(--lp-text-muted);
}

.lp-band-btn.active {
  background: var(--lp-primary);
  color: white;
  box-shadow: 0 1px 3px rgba(59, 99, 246, 0.3);
}

.lp-band-btn:not(.active):hover {
  color: var(--lp-text);
}

/* Price line with original/strikethrough */
.lp-pricing-price-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0;
}

.lp-pricing-original {
  text-decoration: line-through;
  color: var(--lp-text-muted);
  font-size: 1.1rem;
  margin-right: 0.5rem;
  font-weight: 400;
}

/* Per-user price */
.lp-pricing-per-user {
  font-size: 0.8rem;
  color: var(--lp-text-muted);
  margin-top: 0.25rem;
  font-weight: 400;
}

/* Price animation */
.lp-pricing-amount {
  transition: opacity 0.2s ease;
}

.lp-pricing-amount.fade {
  opacity: 0;
}

/* Footnote */
.lp-pricing-footnote {
  text-align: center;
  font-size: 0.85rem;
  color: var(--lp-text-muted);
  margin-top: 2rem;
}

/* ==========================================================================
   Testimonial
   ========================================================================== */

.lp-testimonial-featured {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
  background: var(--lp-bg);
  border-radius: var(--lp-radius-lg);
  border: 1px solid var(--lp-border);
  position: relative;
}

.lp-testimonial-quote {
  font-size: 4rem;
  line-height: 1;
  color: var(--lp-accent);
  font-family: Georgia, serif;
  margin-bottom: -0.75rem;
}

.lp-testimonial-featured blockquote {
  font-size: 1.2rem;
  color: var(--lp-text);
  line-height: 1.7;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.lp-testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.lp-testimonial-avatar {
  width: 44px;
  height: 44px;
  background: rgba(59, 99, 246, 0.08);
  color: var(--lp-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.lp-testimonial-author strong {
  display: block;
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--lp-text);
  text-align: left;
}

.lp-testimonial-author span {
  display: block;
  font-size: 0.825rem;
  color: var(--lp-text-muted);
  text-align: left;
}

/* ==========================================================================
   Social Proof
   ========================================================================== */

.lp-social-proof {
  background: var(--lp-surface, #f8f9fa);
}

.lp-proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
  margin-top: 2.5rem;
}

.lp-proof-stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lp-proof-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--lp-primary, #2d3cd4);
}

.lp-proof-label {
  font-size: 0.95rem;
  color: var(--lp-muted, #64748b);
}

/* ==========================================================================
   Case Studies
   ========================================================================== */

.lp-case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.lp-case-card {
  background: #fff;
  border: 1px solid var(--lp-border, #e2e8f0);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.lp-case-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--lp-primary, #2d3cd4);
  margin-bottom: 0.5rem;
}

.lp-case-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.lp-case-card p {
  font-size: 0.9rem;
  color: var(--lp-muted, #64748b);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */

.lp-cta-banner {
  padding: 5rem 0;
  background: linear-gradient(135deg, #10173B 0%, #1E275F 50%, #2D1B69 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lp-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.03) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255,255,255,0.02) 0%, transparent 40%);
  pointer-events: none;
}

.lp-cta-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  display: block;
}

.lp-cta-ghost {
  position: absolute;
  pointer-events: none;
}

.lp-cta-ghost-right {
  width: 220px;
  height: 220px;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.06;
}

.lp-cta-ghost-left {
  width: 200px;
  height: 200px;
  left: -3rem;
  bottom: -4rem;
  opacity: 0.035;
}

.lp-cta-content {
  position: relative;
  z-index: 1;
}

.lp-cta-banner h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.lp-cta-banner p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.lp-footer {
  background: linear-gradient(180deg, #0F1629 0%, #141B33 100%);
  color: rgba(255, 255, 255, 0.7);
  padding: 2.75rem 0 2rem;
}

.lp-footer-centered {
  text-align: center;
  margin-bottom: 1.75rem;
}

.lp-footer-logo-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

.lp-footer-logo-link:hover {
  transform: scale(1.05);
}

.lp-footer-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 0.5rem;
}

.lp-footer-wordmark {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.8);
}

.lp-footer-tagline {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
  margin-top: 0.25rem;
}

.lp-footer-bottom {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.lp-footer-bottom p {
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Lightbox
   ========================================================================== */

.lp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lp-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lp-lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow-xl);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-lightbox.open .lp-lightbox-img {
  transform: scale(1);
}

.lp-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lp-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .lp-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .lp-hero h1 { font-size: 2.5rem; }

  .lp-showcase { gap: 3rem; }

  .lp-trust-grid {
    grid-template-columns: 1fr;
  }

  .lp-bento {
    grid-template-columns: 1fr 1fr;
  }

  .lp-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .lp-steps::before {
    left: calc(16.67% + 0.75rem);
    right: calc(16.67% + 0.75rem);
  }

  .lp-pricing-featured { transform: scale(1.02); }
  .lp-pricing-featured:hover { transform: scale(1.02) translateY(-4px); }

  .lp-cta-ghost-right { width: 160px; right: 1rem; }
  .lp-cta-ghost-left { width: 140px; }
}

@media (max-width: 768px) {
  .lp-section { padding: 4rem 0; }
  .lp-section-header { margin-bottom: 2.5rem; }
  .lp-section-header h2 { font-size: 1.75rem; }

  /* Nav mobile */
  .lp-hamburger { display: flex; }

  .lp-nav-links {
    display: none;
    position: absolute;
    top: 4rem;
    left: 0;
    right: 0;
    background: var(--lp-surface);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.25rem;
    border-bottom: 1px solid var(--lp-border);
    box-shadow: var(--lp-shadow-lg);
  }

  .lp-nav-links.open { display: flex; }

  .lp-nav-links a {
    padding: 0.75rem 1rem;
    border-radius: var(--lp-radius);
    font-size: 1rem;
  }

  .lp-nav-links a:hover { background: var(--lp-bg); }

  .lp-nav-cta {
    margin-top: 0.5rem;
    text-align: center;
    justify-content: center;
  }

  /* Hero mobile */
  .lp-hero { padding: 5rem 1.5rem 3rem; }
  .lp-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .lp-hero h1 { font-size: 2rem; }
  .lp-hero-sub { font-size: 1.05rem; }
  .lp-hero-text { max-width: 100%; }

  .lp-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .lp-hero-actions .lp-btn {
    width: 100%;
    justify-content: center;
  }

  /* Trust bar mobile */
  .lp-trust-items {
    gap: 1.5rem;
    justify-content: flex-start;
  }

  /* Showcases: single column, text always first */
  .lp-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .lp-showcase + .lp-showcase { margin-top: 4rem; }

  .lp-showcase-reverse .lp-showcase-visual { order: 0; }
  .lp-showcase-text { max-width: 100%; }

  .lp-showcase-text h2 { font-size: 1.5rem; }

  /* Bento: single column */
  .lp-bento {
    grid-template-columns: 1fr;
  }

  /* Steps: single column */
  .lp-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .lp-steps::before { display: none; }

  /* Pricing: single column */
  .lp-pricing-grid { grid-template-columns: 1fr; }

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

  .lp-pricing-featured:hover { transform: translateY(-4px); }

  /* Pricing toggle: full width */
  .lp-pricing-toggle-inner { width: 100%; display: flex; }
  .lp-toggle-btn { flex: 1; text-align: center; padding: 0.5rem 0.75rem; }

  /* Free banner: stack */
  .lp-pricing-free { padding: 1.5rem; }
  .lp-pricing-free-content {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }
  .lp-pricing-free-pills { justify-content: center; flex-wrap: wrap; }
  .lp-pricing-free .lp-btn { width: 100%; text-align: center; }

  /* CTA mobile */
  .lp-cta-banner h2 { font-size: 1.75rem; }
  .lp-cta-ghost-right { width: 120px; right: -1rem; opacity: 0.04; }
  .lp-cta-ghost-left { display: none; }
  .lp-hero-brand-watermark { width: 200px; height: 200px; top: -20px; right: -40px; }

  /* Testimonial */
  .lp-testimonial-featured { padding: 2rem; }
  .lp-testimonial-featured blockquote { font-size: 1.05rem; }
}
