/* ===============================
   Design tokens
=============================== */
:root {
  --primary-color: #111827; /* lite mörkare, bättre kontrast */
  --accent-color: #d4af37;
  --accent-hover: #b8941f;
  --bg-body: #ffffff;
  --bg-subtle: #f3f4f6;
  --text-main: #111827;
  --text-muted: #4b5563;
  --border-subtle: #e5e7eb;
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.12);
  --radius-md: 0.75rem;
  --radius-lg: 1.5rem;
  --max-width: 1120px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --transition: all 0.22s ease;
}

/* ===============================
   Reset + base
=============================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-body);
  -webkit-font-smoothing: antialiased;
}

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

/* ===============================
   Lucide Icon Styles
=============================== */
[data-lucide] {
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  stroke-width: 1.8;
  vertical-align: middle;
}

/* Specific icon sizing */
.trust-icon, .trust-badge-icon, .credential-icon, .pricing-icon {
  width: 1em;
  height: 1em;
  margin-right: 0.5rem;
}

.area-icon [data-lucide] {
  width: 2rem;
  height: 2rem;
  stroke-width: 1.5;
}

.thanks-icon [data-lucide] {
  width: 3rem;
  height: 3rem;
  stroke-width: 1.5;
}

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

main {
  display: block;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

section.section {
  padding: var(--space-xl) 0;
}

h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

h1 {
  font-size: clamp(3.2rem, 4.2vw, 4.8rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(2.6rem, 3vw, 3.4rem);
  margin-bottom: var(--space-sm);
}

h3 {
  font-size: 2rem;
  margin-bottom: var(--space-xs);
}

p {
  color: var(--text-muted);
  max-width: 70ch;
}

.section-intro {
  margin-bottom: var(--space-lg);
}

.text-link {
  font-weight: 500;
  color: var(--primary-color);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

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

/* ===============================
   Buttons - Premium Hover Effects
=============================== */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.95rem 2rem;
  font-size: 1.5rem;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 180ms ease-out;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent-color);
  color: #0b1120;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(180, 146, 39, 0.25);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 8px 24px rgba(148, 116, 26, 0.35);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(148, 116, 26, 0.3);
}

.btn-large {
  padding: 1.2rem 2.4rem;
  font-size: 1.6rem;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(180, 146, 39, 0.3);
}

.btn-large:hover {
  box-shadow: 0 12px 32px rgba(148, 116, 26, 0.4);
  transform: translateY(-3px);
}

.btn-secondary {
  background: transparent;
  color: #f9fafb;
  border-color: rgba(249, 250, 251, 0.4);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1);
}

.btn-secondary:hover {
  background: rgba(15, 23, 42, 0.2);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.2);
  transform: translateY(-1px);
}

/* Form-specific secondary button styling */
.form-step .btn-secondary,
.form-thanks .btn-secondary {
  background: #f3f4f6;
  color: #374151;
  border-color: #d1d5db;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-step .btn-secondary:hover,
.form-thanks .btn-secondary:hover {
  background: #e5e7eb;
  color: #1f2937;
  border-color: #9ca3af;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

/* ===============================
   Header / nav
=============================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.92));
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
  min-height: 70px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  color: #e5e7eb;
  position: relative;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 0.9rem;
  background: radial-gradient(circle at 30% 20%, #facc15 0, #d4af37 40%, #92400e 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0b1120;
  font-weight: 800;
  font-size: 1.6rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #f9fafb;
}

.brand-sub {
  font-size: 1.3rem;
  color: #9ca3af;
}

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

.brand-logo {
  height: 55px; /* Större logotyp enligt expertfeedback */
  width: auto;
  border-radius: 8px;
  transition: var(--transition);
}

.brand-logo:hover {
  transform: scale(1.05);
}

.nav-toggle {
  border: 1px solid rgba(148, 163, 184, 0.65);
  background: transparent;
  border-radius: 8px;
  padding: 0.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.nav-toggle:hover {
  border-color: rgba(148, 163, 184, 0.8);
  background: rgba(15, 23, 42, 0.3);
}

.nav-toggle-icon {
  width: 18px;
  height: 14px;
  position: relative;
}

.nav-toggle-icon span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  transition: var(--transition);
}

.nav-toggle-icon span:nth-child(1) { top: 0; }
.nav-toggle-icon span:nth-child(2) { top: 6px; }
.nav-toggle-icon span:nth-child(3) { top: 12px; }

/* Mobile hamburger menu styling */
@media (max-width: 839px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    gap: 0.6rem;
    padding: 1.2rem 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.95));
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.4);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.25s ease-out;
  }

  .nav-open .nav-menu {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }
}

/* Default nav-menu (gets overridden by desktop media query) */
.nav-menu {
  display: none;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 1.2rem;
}

.nav-link {
  font-size: 1.4rem;
  color: #d1d5db;
}

.nav-link span {
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-link.active span {
  background: rgba(15, 23, 42, 0.75);
  color: #f9fafb;
}

.nav-link:hover span {
  background: rgba(15, 23, 42, 0.55);
}

.nav-cta {
  display: none;
}

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

.nav-open .nav-toggle-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

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

.nav-open .nav-toggle-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Desktop nav */
@media (min-width: 840px) {
  .nav {
    padding: 0.9rem 0;
  }

  .nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
    padding-top: 0;
  }

  .nav-toggle {
    display: none;
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 1.2rem;
  }

  .nav-cta {
    display: inline-flex;
  }
}

/* ===============================
   Hero
=============================== */
.hero {
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.14), transparent 50%),
              radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.1), transparent 55%),
              linear-gradient(135deg, #020617, #020617 45%, #020617 100%);
  color: #e5e7eb;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.hero-grid {
  display: grid;
  gap: var(--space-xl);
  align-items: start;
}

.hero-heading {
  color: #f9fafb;
  margin-bottom: var(--space-sm);
}

.hero-body {
  color: #e5e7eb;
  margin-bottom: var(--space-sm);
  font-size: 1.7rem;
  line-height: 1.5;
}

.hero-personal {
  color: #d1d5db;
  margin-bottom: var(--space-lg);
  font-size: 1.6rem;
  line-height: 1.6;
  font-style: italic;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: var(--space-lg);
}

.trust-item {
  font-size: 1.4rem;
  color: #22c55e;
  font-weight: 500;
  background: rgba(34, 197, 94, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.hero-trust-card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
}

.hero-trust-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: 0.8rem;
}

.hero-trust-card p {
  color: #d1d5db;
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.credentials span {
  font-size: 1.3rem;
  color: #e5e7eb;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-card {
  background: rgba(15, 23, 42, 0.82);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: var(--shadow-soft);
}

.hero-card-title {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
  color: #f9fafb;
}

.hero-card-list {
  list-style: none;
  font-size: 1.4rem;
  color: #e5e7eb;
}

.hero-card-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  padding-block: 0.35rem;
}

.hero-card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.22);
  border: 1px solid rgba(34, 197, 94, 0.6);
  font-size: 1.2rem;
}

.hero-card-foot {
  margin-top: 0.8rem;
  font-size: 1.3rem;
  color: #9ca3af;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.5fr 1fr;
    align-items: start;
    gap: var(--space-xl);
  }
}

/* ===============================
   About Intro - Humanisering
=============================== */
.about-intro {
  background: #ffffff;
  padding: var(--space-lg) 0;
}

.about-intro-grid {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 768px) {
  .about-intro-grid {
    grid-template-columns: 200px 1fr;
    gap: var(--space-xl);
  }
}

.about-intro-image .portrait-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.about-intro-image .portrait-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.about-intro-image p {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.about-intro-content h2 {
  font-size: 2.4rem;
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
}

.about-intro-text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.about-intro-list {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  padding: 0;
}

.about-intro-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: var(--text-muted);
  font-size: 1.5rem;
}

.about-intro-list li::before {
  content: '✓';
  color: #22c55e; /* Grön istället för guld - mindre spam */
  font-weight: 700;
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: -0.1rem;
}

/* ===============================
   Services
=============================== */
.services {
  background: var(--bg-subtle);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: var(--space-md);
}

.section-kicker {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6b7280;
}

.services-grid {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

@media (min-width: 840px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  height: 100%;
  transition: all 200ms ease-out;
  cursor: pointer;
}

.service-card:hover {
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.15);
  transform: translateY(-4px);
  border-color: var(--accent-color);
  background: #fefffe;
}

.service-card:hover .service-title {
  color: var(--accent-color);
  transform: translateY(-1px);
}

.service-card:hover .service-list {
  opacity: 0.9;
}

/* Gör tjänstekort mer "klickbara" */
.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.6s ease-out;
}

.service-card:hover::before {
  left: 100%;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.2rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: #f3f4ff;
  color: #4338ca;
  font-weight: 500;
}

.service-title {
  font-size: 1.9rem;
  margin-top: 0.4rem;
}

.service-list {
  list-style: none;
  font-size: 1.4rem;
  color: var(--text-muted);
  display: grid;
  gap: 0.35rem;
  margin-top: 0.3rem;
}

.service-list li::before {
  content: '•';
  color: var(--primary-color); /* Mörkare färg istället för guld-spam */
  display: inline-block;
  width: 1.1rem;
  margin-right: 0.25rem;
}

.service-foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-note {
  font-size: 1.3rem;
  color: #6b7280;
}

/* ===============================
   Why choose me
=============================== */
.why-grid {
  display: grid;
  gap: var(--space-lg);
  align-items: flex-start;
}

.why-list {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  margin-top: var(--space-sm);
  font-size: 1.45rem;
}

.why-list li {
  display: flex;
  gap: 0.6rem;
}

.why-bullet {
  margin-top: 0.25rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #facc15 0, #d4af37 35%, #92400e 80%);
  flex-shrink: 0;
}

.testimonial {
  background: #0f172a;
  color: #e5e7eb;
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: var(--shadow-soft);
}

.testimonial p {
  color: #e5e7eb;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.testimonial cite {
  font-size: 1.3rem;
  color: #9ca3af;
  font-style: normal;
}

@media (min-width: 880px) {
  .why-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  }
}

/* ===============================
   Process - Behåller snygg design, kortare texter
=============================== */
.process {
  background: #ffffff;
}
.process-grid {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.process-step {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  padding: var(--space-md);
  background: #f9fafb;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: default;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.process-step:hover {
  background: #ffffff;
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.process-step:hover::before {
  color: rgba(212, 175, 55, 0.15);
}

.process-step:hover .process-title {
  color: var(--accent-color);
}

.process-step::before {
  content: attr(data-step);
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(148, 163, 184, 0.35);
  letter-spacing: -0.06em;
}

.process-label {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6b7280;
  margin-bottom: 0.2rem;
}

.process-title {
  margin-bottom: 0.4rem;
  transition: color 0.3s ease;
}

.process-time {
  font-size: 1.35rem;
  color: #6b7280;
  margin-bottom: 0.4rem;
}

.process-actions {
  margin-top: var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
  justify-content: space-between;
}

.process-note {
  font-size: 1.35rem;
  color: #6b7280;
}

@media (min-width: 880px) {
  .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ===============================
   Pricing
=============================== */
.pricing {
  background: var(--bg-subtle);
}

.pricing-layout {
  display: grid;
  gap: var(--space-lg);
  align-items: flex-start;
}

.pricing-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: #ecfdf5;
  color: #166534;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.pricing-list {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  margin: var(--space-md) 0;
  font-size: 1.4rem;
}

.pricing-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.pricing-dot {
  margin-top: 0.55rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: var(--accent-color);
  flex-shrink: 0;
}

.payment-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 1.4rem;
}

.payment-pill {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: #f9fafb;
}

@media (min-width: 880px) {
  .pricing-layout {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.15fr);
  }
}

/* ===============================
   CTA
=============================== */
.cta {
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.17), transparent 55%),
              linear-gradient(135deg, #020617, #020617);
  color: #f9fafb;
  text-align: center;
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: var(--shadow-soft);
}

.cta h2 {
  color: #f9fafb;
  margin-bottom: var(--space-sm);
}

.cta p {
  color: #e5e7eb;
  margin: 0 auto var(--space-md);
}

.cta-list {
  list-style: none;
  display: grid;
  gap: 0.4rem;
  margin: 0 auto var(--space-md);
  max-width: 46rem;
  font-size: 1.45rem;
  text-align: left;
}

.cta-list li::before {
  content: '•';
  color: var(--accent-color);
  display: inline-block;
  width: 1.1rem;
  margin-right: 0.25rem;
}

/* ===============================
   FAQ
=============================== */
.faq-list {
  display: grid;
  gap: 1.5rem;
  margin-top: var(--space-lg);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-subtle);
  background: #ffffff;
  padding: 0;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.faq-item[open] {
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  transition: all 0.3s ease;
  padding: 1.5rem 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  margin: 0;
}

.faq-item[open] summary {
  background: linear-gradient(135deg, #fff8e1 0%, #fef3c7 100%);
  color: var(--text-main);
}

.faq-item summary::after {
  content: '';
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3e%3c/svg%3e") center/contain no-repeat;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23d4af37'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3e%3c/svg%3e") center/contain no-repeat;
}

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

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

.faq-item p {
  margin: 0;
  padding: 0 2rem 1.5rem 2rem;
  line-height: 1.7;
  color: var(--text-muted);
  animation: fadeInContent 0.3s ease forwards;
}


/* ===============================
   Situations Section
=============================== */
.situations-content {
  display: grid;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
}

.situations-subtitle {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: var(--space-md);
}

.situations-icon {
  color: var(--accent-color);
  width: 1.2em;
  height: 1.2em;
}

.situation-cards {
  display: grid;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .situation-cards {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

.situation-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 2px solid #fecaca;
  background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
  transition: all 0.3s ease;
}

.situation-card:hover {
  border-color: #f87171;
  box-shadow: 0 8px 24px rgba(248, 113, 113, 0.15);
  transform: translateY(-2px);
}

.situation-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.situation-icon {
  color: #dc2626;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.situation-card h4 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-main);
  margin: 0;
}

.situation-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.situation-timing {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: #dc2626;
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
}

.scope-grid {
  display: grid;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .scope-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.scope-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.scope-card.focus {
  border-color: #bbf7d0;
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.scope-card.focus:hover {
  border-color: #4ade80;
  box-shadow: 0 8px 24px rgba(74, 222, 128, 0.15);
}

.scope-card.no-focus {
  border-color: #e5e7eb;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.scope-card.no-focus:hover {
  border-color: #9ca3af;
  box-shadow: 0 8px 24px rgba(156, 163, 175, 0.15);
}

.scope-card h4 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.scope-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.scope-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.scope-list.positive li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: bold;
}

.scope-list.negative li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: bold;
}

.scope-cta {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
  border: 1px solid #bfdbfe;
  text-align: center;
}

.scope-cta p {
  margin: 0;
  color: var(--text-muted);
}

/* ===============================
   Final CTA Section
=============================== */
.final-cta {
  background: linear-gradient(135deg, #fff8e1 0%, #fef3c7 100%);
  padding: var(--space-xl) 0;
}

.cta-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.25);
  border: 2px solid var(--accent-color);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-header {
  margin-bottom: var(--space-lg);
}

.cta-header h2 {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.cta-benefits {
  display: grid;
  gap: 1.5rem;
  margin: var(--space-lg) 0;
  text-align: left;
}

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

.cta-benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #fff8e1 0%, #ffffff 100%);
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.cta-benefit-icon {
  color: var(--accent-color);
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.cta-benefit-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.cta-benefit-text strong {
  font-weight: 600;
  color: var(--text-main);
  font-size: 1.4rem;
}

.cta-benefit-text span {
  color: var(--text-muted);
  font-size: 1.3rem;
  line-height: 1.4;
}

.cta-simple {
  margin: var(--space-lg) 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, #fef9c3 0%, #fef3c7 100%);
  border-radius: var(--radius-md);
  border: 1px solid var(--accent-color);
  border-left: 4px solid var(--accent-color);
}

.cta-simple h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.8rem;
}

.cta-simple p {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.cta-action {
  margin-top: var(--space-lg);
}

.cta-button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1.5rem 3rem;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.btn-text {
  font-size: 1.8rem;
  font-weight: 700;
}

.btn-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  font-weight: 400;
}

.cta-reassurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 1.3rem;
  margin: 0;
}

.cta-lock-icon {
  width: 1.4rem;
  height: 1.4rem;
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .cta-card {
    padding: var(--space-lg);
  }
  
  .cta-header h2 {
    font-size: 2.4rem;
  }
  
  .cta-subtitle {
    font-size: 1.6rem;
  }
  
  .cta-benefit {
    padding: 1rem;
  }
}

/* ===============================
   Footer
=============================== */
.site-footer {
  padding: var(--space-lg) 0 var(--space-md);
  background: #020617;
  color: #9ca3af;
  border-top: 1px solid rgba(148, 163, 184, 0.5);
}

.footer-main {
  margin-bottom: var(--space-md);
}

.footer-brand {
  margin-bottom: var(--space-sm);
}

.footer-logo {
  height: 35px;
  width: auto;
  border-radius: 8px;
  opacity: 0.9;
  transition: var(--transition);
}

.footer-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

.footer-main p {
  color: #e5e7eb;
}

.footer-contact a {
  color: var(--accent-color);
  font-weight: 500;
}

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

.footer-meta {
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  padding-top: var(--space-sm);
  font-size: 1.3rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* ===============================
   Utilities
=============================== */
.stack-md {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.stack-sm {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.text-muted {
  color: var(--text-muted);
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus-visible {
  width: auto;
  height: auto;
  left: var(--space-sm);
  top: var(--space-sm);
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: #f9fafb;
  color: #111827;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
  z-index: 30;
}

*:focus-visible {
  outline: 3px solid var(--accent-color);
  outline-offset: 3px;
}

/* ===============================
   Global Hover Effects
=============================== */
a:hover {
  transition: all 150ms ease-out;
}

.text-link:hover {
  text-decoration-thickness: 2px;
  transform: translateY(-1px);
}

/* Hover för alla klickbara kort */
[role="button"], 
.clickable,
.area-card,
.service-card,
.step-card,
.safety-card,
.expertise-item,
.highlight-item {
  transition: all 200ms ease-out;
}

/* Mild hover-shadow för alla kort */
.service-card,
.step-card,
.safety-card,
.expertise-item,
.about-expertise .expertise-card,
.about-approach .approach-card {
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

.service-card:hover,
.safety-card:hover,
.expertise-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* ===============================
   Scroll Animations - Extremely Subtle
=============================== */
.fade-in-element {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 300ms ease-out, transform 300ms ease-out;
}

.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animations for grids */
.service-card:nth-child(1) { transition-delay: 0ms; }
.service-card:nth-child(2) { transition-delay: 100ms; }
.service-card:nth-child(3) { transition-delay: 200ms; }

.step-card:nth-child(1) { transition-delay: 0ms; }
.step-card:nth-child(2) { transition-delay: 100ms; }
.step-card:nth-child(3) { transition-delay: 200ms; }
.step-card:nth-child(4) { transition-delay: 300ms; }

/* Disable animations on mobile for performance */
@media (max-width: 768px) {
  .fade-in-element {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Layout tweaks */
@media (max-width: 480px) {
  .btn {
    width: 100%;
  }
}

/* ===============================
   Contact Form - Premium Design
=============================== */
.form-progress {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: var(--space-md);
}

.progress-bar {
  flex: 1;
  height: 8px;
  background: var(--border-subtle);
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-hover));
  border-radius: 999px;
  transition: width 0.3s ease;
}

.progress-text {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.form-step-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: var(--space-sm);
  text-align: center;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: #ecfdf5;
  color: #166534;
  font-size: 1.3rem;
  font-weight: 500;
  border: 1px solid #bbf7d0;
}

.area-cards {
  display: grid;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.area-cards form {
  display: block !important;
  width: 100%;
}

@media (min-width: 768px) {
  .area-cards {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: var(--space-md) auto 0;
  }
}

.area-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: var(--space-md);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
  min-width: 100%;
  width: 100%;
}

.area-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

.area-card:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.area-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.area-card .area-icon {
  font-size: 2.4rem;
  flex-shrink: 0;
}

.area-card .area-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
}

.area-card .area-description {
  font-size: 1.4rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.area-arrow {
  position: absolute;
  top: 50%;
  right: var(--space-md);
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: var(--accent-color);
  font-weight: 700;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.area-card:hover .area-arrow {
  opacity: 1;
  transform: translateY(-50%) translateX(4px);
}

.contact-intro {
  text-align: center;
  padding: var(--space-lg) 0;
  background: var(--bg-subtle);
}

.page-heading {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.page-intro {
  font-size: 1.6rem;
  color: var(--text-muted);
  max-width: 60ch;
  margin: 0 auto var(--space-sm);
}

.contact-notice {
  font-size: 1.4rem;
  color: var(--accent-color);
  font-weight: 600;
  margin: 0;
}

.contact-form-section {
  padding: var(--space-xl) 0;
}

.form-footer {
  margin-top: var(--space-lg);
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-subtle);
}

.form-footer-text {
  font-size: 1.4rem;
  color: var(--text-muted);
  margin: 0 auto 0.8rem;
  max-width: 50ch;
}

.form-footer-text:last-child {
  margin-bottom: 0;
}

/* ===============================
   Services Page - Premium Design
=============================== */
.services-intro {
  background: var(--bg-subtle);
  padding: var(--space-xl) 0;
  text-align: center;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  margin-top: var(--space-md);
}

.trust-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: #ecfdf5;
  color: #166534;
  font-size: 1.4rem;
  font-weight: 600;
  border: 1px solid #bbf7d0;
}

.service-card-section {
  padding: var(--space-xl) 0;
}

.service-card-white {
  background: #ffffff;
}

.service-card-gray {
  background: #f9fafb;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  max-width: 800px;
  margin: 0 auto;
}

.service-card-gray .service-card {
  background: #ffffff;
}

.service-card-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: var(--space-sm);
  text-align: center;
  line-height: 1.2;
}

.service-card-intro {
  font-size: 1.7rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: var(--space-lg);
  line-height: 1.5;
}

.service-card-content {
  display: grid;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .service-card-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}

.service-subheading {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.8rem;
}

.service-bullets {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  font-size: 1.5rem;
  color: var(--text-muted);
}

.service-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  line-height: 1.4;
}

.service-bullets li::before {
  content: '•';
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: -0.1rem;
}

.service-card-cta {
  text-align: center;
  padding: var(--space-md) 0;
  border-top: 1px solid var(--border-subtle);
}

.btn-large {
  padding: 1.2rem 2.4rem;
  font-size: 1.6rem;
  font-weight: 600;
}

.cta-note {
  margin-top: 0.8rem;
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.unsure-section {
  background: linear-gradient(135deg, #020617, #0f172a);
  padding: var(--space-xl) 0;
}

.unsure-card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
}

.unsure-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: var(--space-sm);
}

.unsure-text {
  font-size: 1.6rem;
  color: #e5e7eb;
  margin-bottom: var(--space-lg);
  line-height: 1.5;
}

/* ===============================
   About Page - Premium Design
=============================== */
.about-hero {
  background: var(--bg-subtle);
  padding: var(--space-xl) 0;
}

.about-hero-content {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 768px) {
  .about-hero-content {
    grid-template-columns: 200px 1fr;
    gap: var(--space-xl);
  }
}

.roble-photo {
  display: flex;
  justify-content: center;
}

.photo-placeholder {
  width: 160px;
  height: 200px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.3);
  color: #ffffff;
}

.photo-icon {
  font-size: 4rem;
  margin-bottom: 0.8rem;
}

.photo-label {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  text-align: center;
}

.about-title {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.about-lead {
  font-size: 1.8rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.4;
}

.about-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.about-expertise {
  background: #ffffff;
  padding: var(--space-xl) 0;
}

.expertise-card {
  background: var(--bg-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.expertise-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: var(--space-sm);
  text-align: center;
}

.expertise-intro {
  font-size: 1.6rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: var(--space-lg);
  line-height: 1.5;
}

.expertise-grid {
  display: grid;
  gap: var(--space-md);
}

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

.expertise-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.expertise-icon {
  font-size: 2.4rem;
  margin-bottom: 0.8rem;
}

.expertise-area {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.expertise-item p {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin: 0;
}

.about-background {
  background: #f9fafb;
  padding: var(--space-xl) 0;
}

.background-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: var(--space-sm);
}

.background-intro {
  font-size: 1.6rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.5;
}

.credentials-grid {
  display: grid;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .credentials-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

.credential-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.credential-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.15);
}

.credential-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--accent-color);
}

.credential-icon {
  color: var(--accent-color);
  width: 2.4rem;
  height: 2.4rem;
}

.credential-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
}

.credential-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.credential-item {
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  border: 1px solid #f3f4f6;
  background: #fafbfc;
}

.credential-item.primary {
  background: linear-gradient(135deg, #fef9e7, #f7f3e6);
  border: 1px solid var(--accent-color);
  border-left: 4px solid var(--accent-color);
}

.credential-item h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.credential-item p {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

.institution {
  font-size: 1.2rem;
  color: var(--text-muted);
  opacity: 0.8;
  font-style: italic;
}

.credentials-summary {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border: 1px solid #0ea5e9;
  border-left: 4px solid #0ea5e9;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-top: var(--space-md);
}

.credentials-note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.4rem;
  color: var(--text-main);
  margin: 0;
  line-height: 1.5;
}

.note-icon {
  color: #0ea5e9;
  width: 1.8rem;
  height: 1.8rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.about-approach {
  background: #ffffff;
  padding: var(--space-xl) 0;
}

.approach-card {
  max-width: 900px;
  margin: 0 auto;
}

.approach-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.approach-grid {
  display: grid;
  gap: var(--space-md);
}

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

.approach-point {
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.approach-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.approach-point h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.6rem;
}

.approach-point p {
  font-size: 1.4rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

.about-cta {
  background: linear-gradient(135deg, #020617, #0f172a);
  padding: var(--space-xl) 0;
}

.cta-card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
}

.cta-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: var(--space-sm);
}

.cta-text {
  font-size: 1.6rem;
  color: #e5e7eb;
  margin-bottom: var(--space-lg);
  line-height: 1.5;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-actions {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}

.cta-actions .text-link {
  color: #e5e7eb;
  font-size: 1.4rem;
}

/* ===============================
   Process Page - Premium Design
=============================== */
.process-hero {
  background: var(--bg-subtle);
  padding: var(--space-xl) 0;
  text-align: center;
}

.process-hero-title {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.process-hero-intro {
  font-size: 1.7rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.4;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.process-highlights {
  display: grid;
  gap: 1rem;
  margin-bottom: var(--space-lg);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

@media (min-width: 900px) {
  .process-highlights {
    grid-template-columns: repeat(4, 1fr);
  }
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
  font-size: 1.4rem;
  font-weight: 500;
}

.highlight-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.process-hero-cta {
  margin-top: var(--space-lg);
}

.hero-cta-note {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
  margin-bottom: 0;
}

.process-steps {
  background: #ffffff;
  padding: var(--space-xl) 0;
}

.process-progression {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.step-indicator {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--border-subtle);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.4rem;
  transition: var(--transition);
}

.step-indicator.active {
  background: var(--accent-color);
  color: #0b1120;
}

.progress-arrow {
  font-size: 1.5rem;
  color: var(--text-muted);
  font-weight: 700;
}

.steps-grid {
  display: grid;
  gap: var(--space-lg);
}

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

@media (min-width: 1100px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  border-color: rgba(212, 175, 55, 0.3);
}

.step-card:hover .step-number {
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  transform: translateX(-50%) scale(1.05);
}

.step-card:hover .step-title {
  color: var(--accent-color);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #0b1120;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  border: 2px solid #ffffff;
}

.step-icon {
  font-size: 3rem;
  margin: 1rem 0;
}

.step-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.8rem;
}

.step-description {
  font-size: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.4;
}

.step-bullets {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  text-align: left;
  margin-bottom: 1.2rem;
}

.step-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 1.3rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.step-bullets li::before {
  content: '•';
  color: var(--accent-color);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.step-time {
  font-size: 1.3rem;
  color: var(--accent-color);
  font-weight: 600;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.process-safety {
  background: #f9fafb;
  padding: var(--space-xl) 0;
}

.safety-grid {
  display: grid;
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}

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

.safety-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.safety-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.safety-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.8rem;
}

.safety-card p {
  font-size: 1.4rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

.process-final-cta {
  background: linear-gradient(135deg, #020617, #0f172a);
  padding: var(--space-xl) 0;
}

.final-cta-card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
}

.final-cta-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: var(--space-sm);
}

.final-cta-text {
  font-size: 1.7rem;
  color: #e5e7eb;
  margin-bottom: var(--space-lg);
  line-height: 1.5;
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.final-cta-actions .btn-large {
  box-shadow: 0 8px 28px rgba(180, 146, 39, 0.4);
  transition: all 200ms ease-out;
}

.final-cta-actions .btn-large:hover {
  box-shadow: 0 16px 40px rgba(148, 116, 26, 0.5);
  transform: translateY(-4px) scale(1.02);
}

.final-cta-note {
  font-size: 1.3rem;
  color: #9ca3af;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* About list styling */
.about-list {
  margin-top: 1.5rem;
  padding-left: 1.5rem;
  list-style-type: disc;
}

.about-list li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
  color: #4a5568;
}

/* ===============================
   Form Styling
=============================== */
.form-step {
  max-width: 600px;
  margin: 0 auto;
  padding: var(--space-lg);
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.form-progress {
  margin-bottom: var(--space-lg);
  text-align: center;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #e5e7eb;
  border-radius: 999px;
  margin-bottom: var(--space-xs);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-hover));
  border-radius: 999px;
  transition: width 0.3s ease;
}

.progress-text {
  font-size: 1.3rem;
  color: var(--text-muted);
  font-weight: 500;
}

.form-step-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  text-align: center;
  color: var(--text-main);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: var(--space-xs);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  font-family: inherit;
  transition: var(--transition);
  background: #ffffff;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

.form-help {
  margin-top: var(--space-xs);
  font-size: 1.3rem;
  color: var(--text-muted);
  padding: 0.8rem 1.2rem;
  background: #f9fafb;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent-color);
}

.form-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: space-between;
  margin-top: var(--space-xl);
  flex-wrap: wrap;
}

.form-fieldset {
  margin-bottom: var(--space-lg);
}

.form-legend {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: var(--space-sm);
}

.radio-group {
  display: grid;
  gap: 0.8rem;
}

.radio-label {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  background: #ffffff;
}

.radio-label:hover {
  border-color: var(--accent-color);
  background: rgba(212, 175, 55, 0.05);
}

.radio-label input[type="radio"] {
  margin-right: 1rem;
  transform: scale(1.2);
}

.radio-label input[type="radio"]:checked + .radio-text {
  color: var(--accent-color);
  font-weight: 600;
}

.radio-text {
  font-size: 1.4rem;
  color: var(--text-main);
}

.form-error {
  background: #fef2f2;
  color: #dc2626;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  border-left: 3px solid #dc2626;
  font-size: 1.4rem;
}

@media (max-width: 600px) {
  .form-step {
    margin: 0 var(--space-sm);
    padding: var(--space-md);
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .form-actions .btn {
    width: 100%;
  }
}

/* ===============================
   Consent styling
=============================== */
.form-consent {
  background: #fffbeb;
  border: 2px solid #f59e0b;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin: var(--space-lg) 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
}

.form-checkbox {
  margin-top: 0.2rem;
  transform: scale(1.3);
  flex-shrink: 0;
}

.consent-required {
  color: #dc2626 !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  line-height: 1.5;
}

.checkbox-text {
  font-size: 1.4rem;
  color: var(--text-main);
  line-height: 1.6;
}

.form-summary {
  background: #f9fafb;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
  border: 1px solid var(--border-subtle);
}

.summary-section {
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border-subtle);
}

.summary-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.summary-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.3rem;
}

.summary-value {
  font-size: 1.4rem;
  color: var(--text-muted);
  margin: 0;
}

.form-notice {
  background: #f0f9ff;
  border-left: 3px solid #0ea5e9;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.form-notice p {
  font-size: 1.4rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.form-notice p:last-child {
  margin-bottom: 0;
}

/* ===============================
   Social Proof / Testimonials
=============================== */
.social-proof {
  background: #f9fafb;
  padding: var(--space-xl) 0;
}

.social-proof .section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.social-proof .section-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
}

@media (max-width: 768px) {
  .social-proof .section-header h2 {
    font-size: 2rem;
  }
}

.testimonials-grid {
  display: grid;
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    gap: var(--space-lg);
    margin-bottom: var(--space-md);
  }
}

.testimonial-card {
  background: #0f172a;
  border: 1px solid var(--accent-color);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.15);
}

.quote-icon {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  color: var(--accent-color);
  opacity: 0.7;
}

.quote-icon i {
  width: 2.4rem;
  height: 2.4rem;
}

.testimonial-quote {
  color: #f8fafc;
  font-size: 1.5rem;
  line-height: 1.5;
  font-style: italic;
  margin: 0 0 var(--space-md) 0;
  padding-right: 3rem;
}

@media (max-width: 768px) {
  .testimonial-quote {
    font-size: 1.4rem;
    line-height: 1.6;
    padding-right: 2rem;
  }
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.author-name {
  color: #e2e8f0;
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

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

.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 2px solid var(--border-subtle);
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.4rem;
  transition: var(--transition);
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.btn-small {
  padding: 0.6rem 1.2rem;
  font-size: 1.3rem;
}

/* ===============================
   Thanks page styling
=============================== */
.form-thanks {
  max-width: 600px;
  margin: 0 auto;
  padding: var(--space-xl);
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.thanks-icon {
  font-size: 4rem;
  color: #10b981;
  margin-bottom: var(--space-md);
}

.thanks-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: var(--space-lg);
}

.thanks-content {
  text-align: left;
}

.thanks-message {
  font-size: 1.6rem;
  color: var(--text-main);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.thanks-details h4 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: var(--space-sm);
}

.thanks-steps {
  list-style: none;
  counter-reset: step-counter;
  margin-bottom: var(--space-lg);
}

.thanks-steps li {
  counter-increment: step-counter;
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.thanks-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: var(--accent-color);
  color: #0b1120;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.2rem;
}

.thanks-info {
  background: #f9fafb;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
  border: 1px solid var(--border-subtle);
}

.thanks-info p {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.thanks-info p:last-child {
  margin-bottom: 0;
}

.thanks-notice {
  background: #fef7cd;
  border: 1px solid #f59e0b;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
}

.thanks-notice p {
  font-size: 1.4rem;
  color: #92400e;
  margin: 0;
}

.thanks-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}

@media (max-width: 600px) {
  .thanks-actions {
    flex-direction: column;
  }
  
  .thanks-actions .btn {
    width: 100%;
  }
}

/* ===========================================
   HTMX FÖRBÄTTRINGAR - Form Navigation
   =========================================== */

/* Vald area markering */
.area-card-selected {
  border-color: #d4af37 !important;
  background-color: #fff9e6 !important;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.25) !important;
}

.area-card-selected .area-title {
  color: #d4af37 !important;
}

.area-card-selected .area-icon {
  color: #d4af37 !important;
}

/* Loading indikatorer */
.htmx-indicator {
  display: none;
}

.htmx-request .htmx-indicator {
  display: inline;
}

.htmx-request .btn {
  opacity: 0.8;
  cursor: wait;
}

/* Simple loading indicator for inline use in buttons */
.loading {
  display: inline;
  margin-left: 0.5rem;
}

/* Professional loading message for standalone use */
.loading-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: var(--space-md);
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border: 1px solid #0ea5e9;
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-size: 1.4rem;
  font-weight: 500;
  margin: var(--space-sm) 0;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* =========================================
   PROFESSIONAL IMAGE STYLING - ROBLE PHOTO
   ======================================== */

/* Startsida - About image container och Portrait image styling */
.about-image {
  max-width: 300px;
  max-height: 400px;
  margin: 0 auto;
  aspect-ratio: 3/4;
}

@media (min-width: 768px) {
  .about-image {
    max-width: 350px;
    max-height: 467px;
  }
}

.portrait-photo {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.portrait-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: var(--transition);
}

.portrait-image:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  border-color: rgba(212, 175, 55, 0.25);
}

/* Om Roble-sidan - Hero image styling */
.photo-frame {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.roble-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: var(--transition);
}

.roble-image:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  border-color: rgba(212, 175, 55, 0.25);
}

/* Responsiv bildanpassning */
@media (max-width: 768px) {
  .portrait-image, .roble-image {
    border-radius: 8px;
  }
  
  .portrait-photo, .photo-frame {
    border-radius: 12px;
  }
}
