/* ===================================================================
   Superkræfter — Global Stylesheet
   =================================================================== */

/* ===== ROOT VARIABLES ===== */
:root {
  --primary: #1a1a2e;
  --accent: #e94560;
  --gold: #f5c518;
  --bg: #ffffff;
  --text: #1a1a2e;
  --text-light: #555;
  --border: #e0e0e0;
  --success: #22c55e;
  --error: #ef4444;
}

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== NAVIGATION — LIGHT (default) ===== */
.nav {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  z-index: 100;
  border-bottom: 1px solid rgba(26,26,46,0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
}

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

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-cta {
  background: var(--accent);
  color: white !important;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600 !important;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: #d63851;
  transform: translateY(-1px);
}

/* ===== NAVIGATION — DARK VARIANT (inspiration page) ===== */
.nav-dark {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: none;
  padding: 1.25rem 0;
}

.nav-dark .nav-container {
  max-width: 1100px;
}

.nav-dark .logo {
  color: #fff;
  font-size: 1.125rem;
}

.nav-dark .logo span {
  color: #E8A838;
}

.nav-dark .nav-links {
  gap: 2rem;
}

.nav-dark .nav-links a {
  color: #a8bfcf;
  font-size: 0.875rem;
}

.nav-dark .nav-links a:hover,
.nav-dark .nav-links a.active {
  color: #fff;
}

.nav-dark .nav-cta {
  background: #E8475F;
  border-radius: 8px;
  font-size: 0.875rem;
}

.nav-dark .nav-cta:hover {
  background: #d03a50;
  transform: none;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #16213e 50%, #0f3460 100%);
  color: white;
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circuit" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(245,197,24,0.1)"/><path d="M2 2 L18 18 M18 2 L2 18" stroke="rgba(233,69,96,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23circuit)"/></svg>') repeat;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,197,24,0.15);
  color: var(--gold);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.0;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, white 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 3rem;
}

.hero-cta {
  background: var(--accent);
  color: white;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-cta:hover {
  background: #d63851;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(233,69,96,0.3);
}

/* Hero variants (smaller padding for interior pages) */
.hero-sm {
  padding: 5rem 0 4rem;
}

.hero-sm h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero-sm .hero-badge {
  margin-bottom: 1.5rem;
}

.hero-sm .hero-subtitle {
  font-size: 1.2rem;
  margin: 0 auto 2.5rem;
}

/* Hero CTA group */
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== SHARED BUTTON STYLES ===== */
.btn-primary {
  background: var(--accent);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #d63851;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(233,69,96,0.3);
}

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--primary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== STORY CARD ===== */
.story-card {
  background: #fafafa;
  padding: 3rem;
  border-radius: 20px;
  border-left: 5px solid var(--accent);
  margin: 3rem 0;
}

.story-card blockquote {
  font-size: 1.2rem;
  line-height: 1.8;
  font-style: italic;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.story-attribution {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}

.feature p {
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== ABOUT GRID ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin: 3rem 0;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
}

.about-text p {
  margin-bottom: 1.5rem;
}

.credentials {
  list-style: none;
  margin: 2rem 0;
}

.credentials li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
  font-weight: 500;
}

.credentials li::before {
  content: "⚡";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ===== TESTIMONIAL ===== */
.testimonial {
  background: var(--primary);
  color: white;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  margin: 3rem 0;
}

.testimonial blockquote {
  font-size: 1.3rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 2rem;
}

.testimonial-source {
  font-weight: 600;
  color: var(--gold);
}

/* ===== FAQ ===== */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  transition: all 0.2s ease;
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  font-family: inherit;
  line-height: 1.4;
  gap: 1rem;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question:focus {
  outline: none;
  color: var(--accent);
}

.faq-question:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.faq-question i {
  flex-shrink: 0;
  color: var(--accent);
  width: 20px;
  height: 20px;
}

.faq-answer {
  margin-top: 1rem;
  color: var(--text-light);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer.open {
  max-height: 200px;
}

/* ===== VIDEO ===== */
.trailer-section {
  padding: 5rem 0;
  background: var(--primary);
}

.trailer-section .section-title {
  color: #fff;
}

.trailer-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== SIGNUP FORM ===== */
.signup {
  background: linear-gradient(135deg, #f8f9ff 0%, #e6f3ff 100%);
  padding: 4rem 0;
}

.signup-form {
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.form-group input {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(233,69,96,0.1);
}

.signup-btn {
  width: 100%;
  background: var(--accent);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.signup-btn:hover {
  background: #d63851;
  transform: translateY(-1px);
}

.signup-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.message {
  padding: 1rem;
  border-radius: 10px;
  margin: 1rem 0;
  text-align: center;
  font-weight: 600;
}

.message.success {
  background: rgba(34, 197, 94, 0.1);
  color: var(--success);
  border: 1px solid var(--success);
}

.message.error {
  background: rgba(239, 68, 68, 0.1);
  color: var(--error);
  border: 1px solid var(--error);
}

/* ===== FOOTER ===== */
footer {
  background: var(--primary);
  color: white;
  padding: 3rem 0 2rem;
}

.footer-content {
  text-align: center;
}

.footer-cta {
  background: var(--accent);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.footer-cta:hover {
  background: #d63851;
  transform: translateY(-2px);
}

.footer-info {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-nav a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--gold);
}

/* Minimal footer variant (inspiration, privacy) */
.footer-minimal {
  background: var(--primary);
  color: #667;
  padding: 2.5rem 1.5rem;
  text-align: center;
  font-size: 0.8125rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-minimal a {
  color: #E8A838;
  text-decoration: none;
}

.footer-minimal a:hover {
  text-decoration: underline;
}

/* ===== BOG PAGE — Book cover placeholder ===== */
.book-intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}

.book-cover-placeholder {
  background: linear-gradient(135deg, var(--primary), #16213e);
  border-radius: 16px;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}

.book-cover-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="c" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(245,197,24,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23c)"/></svg>') repeat;
}

.book-cover-content {
  position: relative;
  z-index: 1;
}

.book-cover-zap {
  width: 70px;
  height: 70px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.book-cover-title {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, white, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.book-cover-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}

.book-cover-author {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.book-coming-soon {
  display: inline-block;
  background: rgba(245,197,24,0.15);
  color: var(--gold);
  border: 1px solid rgba(245,197,24,0.3);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 1rem;
}

.book-about p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.book-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.book-stat {
  text-align: center;
}

.book-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.book-stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

/* Chapters grid */
.chapters-bg {
  background: #fafafa;
}

.chapters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.chapter-card {
  background: white;
  border-radius: 15px;
  padding: 1.75rem;
  border: 1px solid var(--border);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.chapter-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-color: var(--accent);
}

.chapter-number {
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.chapter-card:hover .chapter-number {
  background: var(--accent);
}

.chapter-content {
  flex: 1;
}

.chapter-theme {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}

.chapter-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.chapter-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Teaser card */
.teaser-card {
  background: var(--primary);
  color: white;
  border-radius: 20px;
  padding: 3.5rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.teaser-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 2rem;
  font-size: 12rem;
  font-weight: 900;
  color: rgba(233,69,96,0.1);
  line-height: 1;
  pointer-events: none;
}

.teaser-card blockquote {
  font-size: 1.2rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
}

.teaser-card .chapter-ref {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.teaser-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.teaser-btn:hover {
  background: #d63851;
  transform: translateY(-2px);
}

/* Order section */
.order-bg {
  background: linear-gradient(135deg, #f8f9ff 0%, #e6f3ff 100%);
}

.order-card {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.order-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,197,24,0.1);
  color: #c4900a;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.order-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
}

.order-card p {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.order-signup-form {
  text-align: left;
}

.order-form-group {
  margin-bottom: 1.25rem;
}

.order-form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--primary);
  font-size: 0.9rem;
}

.order-form-group input {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.order-form-group input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(233,69,96,0.1);
}

.order-submit-btn {
  width: 100%;
  background: var(--accent);
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.order-submit-btn:hover:not(:disabled) {
  background: #d63851;
}

.order-submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.order-message {
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
  text-align: center;
  font-weight: 600;
  display: none;
}

.order-message.success {
  background: rgba(34,197,94,0.1);
  color: var(--success);
  border: 1px solid var(--success);
}

.order-message.error {
  background: rgba(239,68,68,0.1);
  color: var(--error);
  border: 1px solid var(--error);
}

/* ===== FOREDRAG PAGE — Packages ===== */
.packages-bg {
  background: #fafafa;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 0;
}

.package-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  border: 2px solid var(--border);
  position: relative;
  transition: all 0.3s ease;
}

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

.package-card.featured {
  border-color: var(--accent);
  box-shadow: 0 10px 40px rgba(233,69,96,0.15);
}

.package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.package-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent), #c73251);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 1.5rem;
}

.package-icon.gold {
  background: linear-gradient(135deg, var(--gold), #d4a017);
}

.package-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.package-duration {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.package-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 0.25rem;
  line-height: 1;
}

.package-price-note {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.package-includes {
  list-style: none;
  margin-bottom: 2rem;
}

.package-includes li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid #f0f0f0;
}

.package-includes li:last-child {
  border-bottom: none;
}

.package-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.package-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--primary);
  color: white;
  padding: 0.9rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.package-btn:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.package-btn.primary {
  background: var(--accent);
}

.package-btn.primary:hover {
  background: #d63851;
}

/* What's included */
.what-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 0;
}

.what-item {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  background: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.what-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.what-icon {
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}

.what-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.what-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Booking form */
.booking-bg {
  background: linear-gradient(135deg, #f8f9ff 0%, #e6f3ff 100%);
}

.booking-form-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
  color: var(--text);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(233,69,96,0.1);
}

.submit-btn {
  width: 100%;
  background: var(--accent);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.submit-btn:hover:not(:disabled) {
  background: #d63851;
  transform: translateY(-1px);
}

.submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.form-message {
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
  text-align: center;
  font-weight: 600;
  display: none;
}

.form-message.success {
  background: rgba(34,197,94,0.1);
  color: var(--success);
  border: 1px solid var(--success);
}

.form-message.error {
  background: rgba(239,68,68,0.1);
  color: var(--error);
  border: 1px solid var(--error);
}

.transport-note {
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text);
}

.transport-note .note-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== OM PAGE ===== */
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #c73251 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: 900;
  color: white;
  border: 4px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.hero-role {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-tag {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  border: 1px solid rgba(255,255,255,0.2);
}

/* Stats */
.stats-bg {
  background: #fafafa;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.stat-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-color: var(--accent);
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* Bio */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.bio-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.bio-text strong {
  color: var(--text);
}

.credential-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: 12px;
  background: #fafafa;
  border: 1px solid var(--border);
  margin-bottom: 1rem;
  transition: all 0.2s ease;
  list-style: none;
}

.credential-item:hover {
  border-color: var(--accent);
  background: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.credential-icon {
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.credential-icon.accent {
  background: var(--accent);
}

.credential-icon.gold {
  background: var(--gold);
  color: var(--primary);
}

.credential-text strong {
  display: block;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.2rem;
}

.credential-text span {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Timeline */
.story-bg {
  background: #fafafa;
}

.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--primary));
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  padding-left: 0;
}

.timeline-dot {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  z-index: 1;
  position: relative;
}

.timeline-dot.alt {
  background: var(--primary);
}

.timeline-dot.gold {
  background: var(--gold);
  color: var(--primary);
}

.timeline-content {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  flex: 1;
}

.timeline-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* CTA dark section */
.cta-bg {
  background: var(--primary);
  color: white;
  text-align: center;
}

.cta-bg .section-title {
  color: white;
}

.cta-bg .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ===== INSPIRATION PAGE ===== */
.insp-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #1b3a5c 100%);
  color: #fff;
  padding: 100px 24px 80px;
  text-align: center;
}

.insp-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  margin-bottom: 20px;
  color: white;
}

.insp-hero p {
  font-size: 1.125rem;
  color: #a8bfcf;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.insp-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px;
}

.carousel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.carousel-card {
  background: #fff;
  border: 1px solid #e8e8f0;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.carousel-preview {
  aspect-ratio: 1080/1350;
  background: linear-gradient(135deg, #1a1a2e, #1b3a5c);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.carousel-preview h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  line-height: 1.3;
}

.carousel-preview .label {
  color: #E8A838;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
  display: block;
}

.carousel-info {
  padding: 24px;
}

.carousel-info .tag {
  display: inline-block;
  background: #FFF3E0;
  color: #E8A838;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.carousel-info h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary);
}

.carousel-info p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 16px;
}

.carousel-info .read-link {
  color: #E8475F;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.carousel-info .read-link:hover {
  text-decoration: underline;
}

.insp-cta-section {
  background: linear-gradient(135deg, #1a1a2e, #1b3a5c);
  padding: 80px 24px;
  text-align: center;
  color: #fff;
  margin-top: 60px;
}

.insp-cta-section h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.insp-cta-section p {
  color: #a8bfcf;
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  background: #E8475F;
  color: #fff;
  padding: 16px 40px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s;
}

.cta-btn:hover {
  background: #d03a50;
}

/* ===== PRIVACY PAGE ===== */
.privacy-main {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.privacy-main h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.privacy-main .updated {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 3rem;
}

.privacy-main h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
}

.privacy-main p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.privacy-main p strong {
  color: var(--text);
}

.privacy-main a {
  color: var(--accent);
}

.privacy-main ul {
  margin: 0.5rem 0 1rem 1.5rem;
  color: var(--text-light);
}

.privacy-main li {
  margin-bottom: 0.3rem;
}

.privacy-footer {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: #999;
  background: var(--bg);
}

.privacy-footer a {
  color: var(--accent);
}

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

.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* ===== FOCUS STYLES ===== */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ===== RESPONSIVE ===== */
/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-dark .nav-toggle span {
  background: #fff;
}

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

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

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

@media (max-width: 768px) {
  .container,
  .nav-container {
    padding: 0 1rem;
  }

  .nav-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 1px solid var(--border);
    z-index: 100;
  }

  .nav-dark .nav-links {
    background: var(--primary);
    border-top-color: rgba(255,255,255,0.1);
  }

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

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-dark .nav-links a {
    border-bottom-color: rgba(255,255,255,0.1);
  }

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

  .nav-cta {
    margin-top: 0.5rem;
    text-align: center !important;
    display: block !important;
  }

  .nav {
    position: relative;
  }

  .hero {
    padding: 4rem 0;
  }

  section {
    padding: 3rem 0;
  }

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

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

  .story-card,
  .testimonial {
    padding: 2rem;
  }

  /* Bog */
  .book-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .book-cover-placeholder {
    max-width: 280px;
    margin: 0 auto;
  }

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

  .teaser-card {
    padding: 2rem;
  }

  .order-card {
    padding: 1.5rem;
  }

  /* Foredrag */
  .packages-grid {
    grid-template-columns: 1fr;
  }

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

  .booking-form-wrap {
    padding: 1.5rem;
  }

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

  /* Om */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-avatar {
    margin: 0 auto;
    width: 130px;
    height: 130px;
    font-size: 2.5rem;
  }

  .hero-tags {
    justify-content: center;
  }

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

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

  .timeline::before {
    left: 20px;
  }

  /* Inspiration */
  .insp-hero {
    padding: 60px 16px 50px;
  }

  .insp-content {
    padding: 40px 16px;
  }

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

  .nav-dark .nav-links {
    gap: 1rem;
  }

  .nav-dark .nav-links a:not(.nav-cta) {
    display: none;
  }
}

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

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

/* ===== COMING SOON (inspiration page) ===== */
.coming-soon {
  text-align: center;
  padding: 60px 20px;
  color: #999;
}

.coming-soon h3 {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 0.75rem;
}
