/* ==========================================================================
   PROST AKTIV — Premium Nordic Dark Theme Stylesheet
   Geotargeting: Sweden (SE) | High-converting CPA / Nutra Landing Page
   ========================================================================== */

:root {
  /* Color Palette matching PROST AKTIV aesthetic */
  --bg-main: #0a0f1a;
  --bg-surface: #101827;
  --bg-card: #152238;
  --bg-card-hover: #1a2a46;
  --bg-glass: rgba(18, 29, 48, 0.75);
  --bg-elevated: #1e2e4a;
  
  /* Accents */
  --accent-red: #e63946;
  --accent-red-hover: #d90429;
  --accent-red-glow: rgba(230, 57, 70, 0.4);
  --accent-cyan: #38bdf8;
  --accent-blue: #2563eb;
  --accent-emerald: #10b981;
  --accent-amber: #f59e0b;

  /* Text colors */
  --text-pure: #ffffff;
  --text-heading: #f8fafc;
  --text-body: #cbd5e1;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;

  /* Borders & Gradients */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(230, 57, 70, 0.6);
  --border-cyan: rgba(56, 189, 248, 0.3);
  --grad-card: linear-gradient(145deg, rgba(26, 42, 70, 0.6) 0%, rgba(16, 26, 42, 0.9) 100%);
  --grad-hero: radial-gradient(circle at 50% 20%, rgba(30, 58, 102, 0.35) 0%, rgba(10, 15, 26, 0.98) 75%);
  --grad-badge: linear-gradient(135deg, #e63946 0%, #b91c1c 100%);

  /* Spacing & Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --container-max: 1200px;
  --header-height: 76px;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 16px 50px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 35px var(--accent-red-glow);

  /* Transitions */
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-body);
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(230, 57, 70, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 90% 60%, rgba(56, 189, 248, 0.04) 0%, transparent 50%);
  background-attachment: fixed;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 20px;
}

/* --------------------------------------------------------------------------
   TYPOGRAPHY HELPERS
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  color: var(--text-heading);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }

p {
  margin-bottom: 1rem;
}

.text-accent {
  color: var(--accent-red);
}

.text-cyan {
  color: var(--accent-cyan);
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 30%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px;
}

.section-header .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(230, 57, 70, 0.12);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-full);
  color: #ff6b77;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 12px;
}

/* --------------------------------------------------------------------------
   HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(10, 15, 26, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(8, 12, 22, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-md);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo img {
  height: 44px;
  width: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: var(--text-body);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  position: relative;
  padding: 6px 2px;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-red);
  transition: width 0.25s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  border-radius: var(--radius-full);
  padding: 12px 26px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-badge);
  color: #ffffff;
  box-shadow: 0 4px 20px var(--accent-red-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(230, 57, 70, 0.6);
  background: linear-gradient(135deg, #ff4d5a 0%, #c1121f 100%);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.btn-pulse {
  animation: pulseGlow 2.4s infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(230, 57, 70, 0.4);
  }
  50% {
    box-shadow: 0 0 35px rgba(230, 57, 70, 0.8), 0 0 10px rgba(255, 255, 255, 0.4);
  }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.7rem;
  cursor: pointer;
  padding: 4px;
}

/* Mobile Menu */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: rgba(10, 15, 26, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 24px;
  flex-direction: column;
  gap: 18px;
  z-index: 999;
  box-shadow: var(--shadow-lg);
}

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

.mobile-nav .nav-link {
  font-size: 1.1rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* --------------------------------------------------------------------------
   HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 80px;
  background: var(--grad-hero);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--bg-main), transparent);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
}

.hero-badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-cyan);
}

.hero-content h1 {
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 600px;
}

.hero-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.05rem;
  color: #e2e8f0;
}

.bullet-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: var(--accent-emerald);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.8rem;
}

.hero-cta-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 480px;
}

.hero-guarantee-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.hero-guarantee-note svg {
  color: var(--accent-emerald);
  flex-shrink: 0;
}

/* Hero Media Showcase */
.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-showcase-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #080d16;
}

.product-showcase-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-showcase-wrap:hover img {
  transform: scale(1.03);
}

.floating-pill {
  position: absolute;
  background: rgba(16, 25, 42, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  z-index: 2;
  animation: float 4s ease-in-out infinite alternate;
}

.pill-top-left {
  top: 24px;
  left: -20px;
}

.pill-bottom-right {
  bottom: 24px;
  right: -20px;
  animation-delay: 2s;
}

@keyframes float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.pill-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: rgba(230, 57, 70, 0.15);
  color: var(--accent-red);
  border: 1px solid var(--accent-red-glow);
}

.pill-text h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.pill-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   STATS COUNTER RIBBON
   -------------------------------------------------------------------------- */
.stats-ribbon {
  background: var(--bg-surface);
  border-block: 1px solid var(--border-subtle);
  padding: 36px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 10px;
}

.stat-number {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   COMMON SECTION WRAPPERS
   -------------------------------------------------------------------------- */
.section {
  padding: 90px 0;
  position: relative;
}

.section-alt {
  background: var(--bg-surface);
}

/* --------------------------------------------------------------------------
   MICRO-ENGAGEMENT 1: QUIZ / SJÄLVTEST
   -------------------------------------------------------------------------- */
.quiz-wrapper {
  max-width: 820px;
  margin: 0 auto;
  background: var(--grad-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.quiz-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-cyan));
}

.quiz-progress-bar-wrap {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  margin-bottom: 30px;
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  width: 25%;
  background: var(--grad-badge);
  border-radius: var(--radius-full);
  transition: width 0.4s ease;
}

.quiz-step-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.quiz-question-title {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.35;
}

.quiz-options-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  cursor: pointer;
  transition: var(--transition);
}

.quiz-option:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateX(4px);
}

.quiz-option.selected {
  background: rgba(230, 57, 70, 0.12);
  border-color: var(--accent-red);
}

.quiz-radio-custom {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.quiz-option.selected .quiz-radio-custom {
  border-color: var(--accent-red);
}

.quiz-option.selected .quiz-radio-custom::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-red);
}

.quiz-option-text {
  font-size: 1.05rem;
  color: #e2e8f0;
}

.quiz-footer-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Quiz Result Card */
.quiz-result-card {
  display: none;
  text-align: center;
  padding: 10px 0;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.result-meter-box {
  background: rgba(10, 15, 26, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 20px auto 30px;
  max-width: 580px;
}

.result-score-badge {
  display: inline-block;
  padding: 8px 24px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.badge-warning {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid var(--accent-amber);
  color: #fbbf24;
}

.badge-alert {
  background: rgba(230, 57, 70, 0.18);
  border: 1px solid var(--accent-red);
  color: #ff6b77;
}

.result-recommendation {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* --------------------------------------------------------------------------
   MICRO-ENGAGEMENT 2: KEGEL & MIKROCIRCULATION TIMER
   -------------------------------------------------------------------------- */
.timer-widget-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--grad-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 44px 30px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.timer-circle-container {
  position: relative;
  width: 240px;
  height: 240px;
  margin: 0 auto 28px;
}

.timer-svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.timer-bg-circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 12;
}

.timer-progress-circle {
  fill: none;
  stroke: var(--accent-cyan);
  stroke-width: 12;
  stroke-linecap: round;
  stroke-dasharray: 691; /* 2 * PI * 110 */
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.15s linear, stroke 0.3s ease;
}

.timer-circle-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.timer-countdown {
  font-size: 3.5rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.timer-phase-label {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-cyan);
  margin-top: 6px;
}

.timer-guidance-instruction {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  min-height: 40px;
  margin-bottom: 24px;
}

.timer-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   MICRO-ENGAGEMENT 3: FÖRE / EFTER INTERAKTIVT JÄMFÖRELSE
   -------------------------------------------------------------------------- */
.comparison-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.comparison-toggle-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}

.toggle-pill-group {
  display: inline-flex;
  background: rgba(16, 25, 42, 0.9);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 6px;
  gap: 6px;
}

.toggle-pill-btn {
  padding: 10px 28px;
  border-radius: var(--radius-full);
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}

.toggle-pill-btn.active {
  background: var(--grad-badge);
  color: #ffffff;
  box-shadow: 0 4px 15px var(--accent-red-glow);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.comparison-card {
  background: var(--grad-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.comparison-card.card-before {
  border-color: rgba(239, 68, 68, 0.25);
}

.comparison-card.card-after {
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.08);
}

.card-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.card-before .card-status-badge {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.card-after .card-status-badge {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
}

.comparison-list li strong {
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   FORMEL & AKTIVA KOMPONENTER (INGREDIENTS TABS/GRID)
   -------------------------------------------------------------------------- */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ingredient-card {
  background: var(--grad-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.ingredient-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: var(--shadow-md);
}

.ingredient-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(230, 57, 70, 0.12);
  border: 1px solid var(--accent-red-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-red);
  margin-bottom: 20px;
}

.ingredient-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.ingredient-latin {
  font-size: 0.85rem;
  color: var(--accent-cyan);
  font-style: italic;
  margin-bottom: 14px;
}

.ingredient-card p {
  font-size: 0.95rem;
  color: var(--text-body);
  flex-grow: 1;
}

.ingredient-benefit-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   CERTIFIKAT & KVALITETSSTANDARDER (MODAL INTERACTIVE)
   -------------------------------------------------------------------------- */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cert-card {
  background: var(--grad-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.cert-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-cyan);
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.15);
}

.cert-card::after {
  content: 'Klicka för att granska certifikat →';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(56, 189, 248, 0.15);
  color: var(--accent-cyan);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.cert-card:hover::after {
  opacity: 1;
}

.cert-seal {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.2) 0%, rgba(10, 15, 26, 0.6) 80%);
  border: 2px dashed rgba(230, 57, 70, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent-red);
}

.cert-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.cert-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Certificate Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 10, 18, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.modal-backdrop.active {
  display: flex;
}

.cert-modal {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  padding: 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: modalScale 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalScale {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: var(--accent-red);
}

.cert-modal-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.modal-icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(230, 57, 70, 0.15);
  border: 1px solid var(--accent-red-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent-red);
}

.modal-cert-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.92rem;
}

.modal-cert-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.modal-cert-table td {
  padding: 10px 0;
}

.modal-cert-table td:first-child {
  color: var(--text-muted);
  width: 45%;
}

.modal-cert-table td:last-child {
  color: #ffffff;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   OFFER & CONSULTATION SECTION
   -------------------------------------------------------------------------- */
.offer-section {
  position: relative;
  background: radial-gradient(circle at 50% 50%, rgba(26, 46, 80, 0.4) 0%, rgba(10, 15, 26, 0.98) 75%);
  padding: 100px 0;
  border-top: 1px solid var(--border-subtle);
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 50px;
}

.offer-showcase-box {
  position: relative;
  text-align: center;
}

.offer-image-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  background: #080d16;
}

.offer-image-card img {
  width: 100%;
  display: block;
}

.callcenter-hours-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(16, 25, 42, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius-full);
  padding: 10px 22px;
  margin-top: 24px;
  font-size: 0.92rem;
  color: #ffffff;
}

.callcenter-hours-ribbon .status-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-emerald);
  box-shadow: 0 0 10px var(--accent-emerald);
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Order Consultation Card */
.order-card {
  background: var(--grad-card);
  border: 1px solid rgba(230, 57, 70, 0.35);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(230, 57, 70, 0.15);
  position: relative;
}

.order-card-header {
  margin-bottom: 24px;
}

.consultation-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230, 57, 70, 0.15);
  border: 1px solid var(--accent-red);
  color: #ff6b77;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.order-card-header h3 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.order-notice-box {
  background: rgba(10, 15, 26, 0.7);
  border-left: 3px solid var(--accent-cyan);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.55;
  margin-bottom: 28px;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #e2e8f0;
  display: flex;
  justify-content: space-between;
}

.form-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.form-input-wrap svg {
  position: absolute;
  left: 18px;
  color: var(--text-muted);
  pointer-events: none;
}

.form-control {
  width: 100%;
  padding: 16px 20px 16px 50px;
  background: rgba(10, 15, 26, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: #38bdf8;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.25);
  background: rgba(10, 15, 26, 0.98);
}

.form-control.input-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.25) !important;
}

/* Phone input with fixed prefix badge */
.phone-input-wrap {
  display: flex;
  align-items: center;
  background: rgba(10, 15, 26, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.phone-input-wrap:focus-within {
  border-color: #38bdf8;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.25);
  background: rgba(10, 15, 26, 0.98);
}

.phone-input-wrap.input-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.25) !important;
}

.phone-prefix-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 16px 16px 18px;
  background: rgba(255, 255, 255, 0.05);
  border-right: 1.5px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
  user-select: none;
  flex-shrink: 0;
}

.phone-prefix-badge .country-flag {
  font-size: 1.2rem;
  line-height: 1;
}

.phone-control {
  width: 100%;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 16px 18px;
}

.phone-control::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.btn-submit {
  width: 100%;
  padding: 18px 24px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  margin-top: 10px;
}

.order-trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.trust-item svg {
  color: var(--accent-emerald);
}

.trust-item span {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* --------------------------------------------------------------------------
   FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-wrapper {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--grad-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: rgba(56, 189, 248, 0.4);
}

.faq-header {
  padding: 22px 26px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.faq-header h3 {
  font-size: 1.12rem;
  margin-bottom: 0;
  font-weight: 700;
  color: #ffffff;
}

.faq-toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent-cyan);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
  background: var(--accent-red);
  color: #ffffff;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-body {
  max-height: 800px;
  transition: max-height 0.45s ease-in-out;
}

.faq-content {
  padding: 0 26px 26px;
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.65;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 16px;
}

/* --------------------------------------------------------------------------
   FOOTER & LEGAL COMPLIANCE
   -------------------------------------------------------------------------- */
.footer {
  background: #060911;
  border-top: 1px solid var(--border-subtle);
  padding: 70px 0 40px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  margin-top: 14px;
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 360px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.disclaimer-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin-bottom: 36px;
  font-size: 0.82rem;
  line-height: 1.6;
  color: #94a3b8;
}

.disclaimer-box strong {
  color: #cbd5e1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   COOKIE CONSENT BANNER
   -------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 580px;
  background: rgba(16, 25, 42, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: 9999;
  animation: slideUp 0.4s ease;
}

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

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-content p {
  font-size: 0.88rem;
  margin-bottom: 0;
  color: #cbd5e1;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.btn-cookie {
  padding: 8px 18px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

/* --------------------------------------------------------------------------
   THANK YOU PAGE (koszonjuk.html) STYLES
   -------------------------------------------------------------------------- */
.thankyou-wrapper {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + 40px) 20px 60px;
}

.thankyou-card {
  max-width: 680px;
  width: 100%;
  background: var(--grad-card);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(16, 185, 129, 0.15);
}

.thankyou-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 2px solid var(--accent-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2.5rem;
  color: var(--accent-emerald);
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.3);
}

.order-number-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-family: monospace;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-cyan);
  margin: 16px 0 24px;
}

.next-steps-box {
  background: rgba(10, 15, 26, 0.7);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: left;
  margin: 28px 0;
}

.next-steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.next-steps-list li {
  display: flex;
  gap: 14px;
  font-size: 0.95rem;
  align-items: flex-start;
}

.step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-red);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   LEGAL PAGES BASE STYLES
   -------------------------------------------------------------------------- */
.legal-content-page {
  padding-top: calc(var(--header-height) + 50px);
  padding-bottom: 90px;
}

.legal-article-card {
  background: var(--grad-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 50px;
  box-shadow: var(--shadow-md);
}

.legal-article-card h1 {
  margin-bottom: 12px;
}

.legal-last-updated {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-body h2 {
  font-size: 1.4rem;
  margin-top: 36px;
  margin-bottom: 14px;
  color: #ffffff;
}

.legal-body h3 {
  font-size: 1.15rem;
  margin-top: 24px;
  margin-bottom: 10px;
  color: var(--accent-cyan);
}

.legal-body p, .legal-body li {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.legal-body ul, .legal-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

/* --------------------------------------------------------------------------
   RESPONSIVE DESIGN (MEDIA QUERIES)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }

  .hero-badge-group {
    justify-content: center;
  }

  .hero-subtitle {
    margin-inline: auto;
  }

  .hero-bullets {
    align-items: center;
  }

  .hero-cta-box {
    margin-inline: auto;
    align-items: center;
  }

  .offer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

  .footer-top-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

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

  .order-card {
    padding: 30px 20px;
  }

  .order-trust-badges {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .quiz-wrapper {
    padding: 26px 18px;
  }

  .timer-widget-card {
    padding: 32px 18px;
  }

  .legal-article-card {
    padding: 30px 20px;
  }

  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .floating-pill {
    position: static;
    margin-top: 14px;
    display: inline-flex;
  }

  .hero-media {
    flex-direction: column;
  }
}

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

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

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

  .timer-circle-container {
    width: 200px;
    height: 200px;
  }

  .timer-countdown {
    font-size: 2.8rem;
  }

  .btn-large {
    padding: 14px 24px;
    font-size: 1rem;
    width: 100%;
  }
}
