:root {
  --green: #1fa746;
  --green-soft: #e4f8ea;
  --green-soft-2: #c8f0d5;
  --bg: #d8f3e4;   /* MER grön än innan */
  --card-bg: #ffffff;
  /* resten som du hade */
}


*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Inter", sans-serif;
  background: var(--bg);
  color: var(--text-main);
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Layout helpers */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}

/* Header */

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(243, 245, 247, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(31, 167, 70, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;        /* avstånd mellan ikon och text */
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 0.95rem;
  font-weight: 700;
}

.logo-subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.nav {
  display: flex;
  gap: 16px;
  font-size: 0.9rem;
}

.nav a {
  text-decoration: none;
  color: var(--text-muted);
}

.nav a:hover {
  color: var(--text-main);
}

/* Hero */

.hero {
  padding: 32px 0 20px;
  background: linear-gradient(
    180deg,
    var(--green-soft) 0%,
    var(--bg) 55%,
    var(--bg) 100%
  );
}

.hero-inner {
  display: grid;
  gap: 24px;
}

@media (min-width: 800px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: center;
  }
}

.hero-text h1 {
  font-size: 2.1rem;
  line-height: 1.1;
  margin-bottom: 10px;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 460px;
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Buttons */

.btn-primary,
.btn-secondary,
button {
  font-family: inherit;
  border-radius: 999px;
  padding: 10px 18px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
}

.btn-primary {
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(31, 167, 70, 0.55);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-secondary {
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: var(--text-main);
}

.btn-secondary:hover {
  background: #f9fafb;
}

.full-width {
  width: 100%;
}

/* Hero card (preview) */

.hero-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-soft);
}

.hero-card-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.hero-card-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* Här kommer nya screenshot-layouten */
.hero-card-placeholder {
  height: 260px; /* mer plats för mobilerna */
  border-radius: 18px;
  background: linear-gradient(145deg, var(--green-soft-2), #ffffff);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Container för screenshotsen */
.hero-screens {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 100%;
}

/* Själva “mobilerna” */
.hero-screen {
  height: 100%;
  border-radius: 24px;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.35);
  object-fit: cover;
}

/* Ljud “depth” på sidorna */
.hero-screen-left,
.hero-screen-right {
  height: 82%;
  opacity: 0.9;
}

.hero-screen-left {
  transform: translateX(4px);
}

.hero-screen-right {
  transform: translateX(-4px);
}

/* Mobilanpassning – visa bara mitten-skärmen om du vill */
@media (max-width: 640px) {
  .hero-card-placeholder {
    height: 220px;
  }

  .hero-screens {
    gap: 6px;
  }

  .hero-screen-left,
  .hero-screen-right {
    display: none;
  }

  .hero-screen-main {
    height: 100%;
  }
}

/* Sections */


.section {
  padding: 32px 0 24px;
}

.section-light {
  background: #ffffff;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 6px;
  text-align: center;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 520px;
  margin: 0 auto 24px;
}


/* Funktioner-sida – layout med text + telefonmockup */

.feature-section {
  padding-top: 28px;
  padding-bottom: 28px;
}

.feature-layout {
  display: grid;
  gap: 24px;
  align-items: center;
}

/* Byter sida på telefonen när vi vill ha den till vänster */
.feature-layout-reverse {
  /* samma grid, vi styr ordningen med order på barnen */
}

.feature-text {
  font-size: 0.95rem;
  color: var(--text-main);
}

.feature-text p {
  margin-bottom: 10px;
}

.feature-text ul {
  margin: 0 0 10px 18px;
  padding: 0;
  list-style: disc;
}

.feature-text li {
  margin-bottom: 4px;
}

/* Telefon-mallen till höger/vänster */

.feature-phone {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 260px;
  max-width: 100%;
  background: #f9fafb;
  border-radius: 34px;
  padding: 10px;
  box-shadow: 0 24px 45px rgba(15, 23, 42, 0.22);
  position: relative;
}

.phone-img {
  width: 100%;
  border-radius: 26px;
  display: block;
}

/* Placeholder-text tills du har riktiga screenshots */
.phone-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 26px;
  pointer-events: none;
}

/* Desktop: två kolumner (text + telefon) */

@media (min-width: 900px) {
  .feature-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }

  .feature-layout-reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  }

  /* gör det enkelt: text alltid första, telefon andra,
     men i reverse-sektionen byter vi ordning */
  .feature-layout-reverse .feature-text {
    order: 2;
  }
  .feature-layout-reverse .feature-phone {
    order: 1;
  }
}

/* Mobil: bara stapla allt under varandra */

@media (max-width: 899px) {
  .feature-layout,
  .feature-layout-reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}


/* Pricing */

.pricing-grid {
  display: grid;
  gap: 18px;
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.price-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 18px 18px 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.price-card-featured {
  border-color: var(--green);
  transform: translateY(-4px);
}

.price-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.price-tag {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.price-tag span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 4px;
}

.price-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.price-list {
  list-style: none;
  font-size: 0.88rem;
  color: var(--text-main);
  margin-bottom: 14px;
}

.price-list li + li {
  margin-top: 6px;
}

.badge {
  display: inline-block;
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  margin-bottom: 6px;
}


/* Extra layout i pricing cards */

.price-card {
  position: relative;       /* så pelikanen kan ligga delvis utanför kortet */
  overflow: visible;
}

.price-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.price-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Startavgift får lite annan look */
.price-card-start {
  border-style: dashed;
  border-color: rgba(148, 163, 184, 0.7);
}


/* Extra luft bara under Multi Pelikan */
.price-card-multi .price-card-header {
  margin-bottom: 26px; /* höj/sänk om du vill ha mer/mindre space */
}

/* Pelikan-ikon på kortet */

.pelican-icon {
  position: absolute;
  top: -10px;        /* hur mycket den sticker upp över kortet */
  right: 18px;
  width: 90px;       /* ungefär samma bredd som nu */
  height: 120px;     /* lite högre så hela pelikanen + krona får plats */
  background: none;  /* ingen vit bubbla */
  box-shadow: none;  /* ingen skugga runt */
  overflow: visible; /* klipp inte bilden */
}

.pelican-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;  /* visa hela pelikanen utan att klippa */
  border-radius: 0;     /* ingen rundad mask längre */
}


/* Små variationer om du vill finjustera senare */

.pelican-small {
  transform: scale(0.9);
}

.pelican-medium {
  transform: scale(1);
}

.pelican-large {
  transform: scale(1.05);
}

.pelican-multi,
.pelican-mega {
  transform: scale(1);
}


.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 360px;
  margin: 0 auto;
}

.contact-form input {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 0.9rem;
  outline: none;
}

.contact-form input:focus {
  border-color: var(--green);
}

/* Footer */

.footer {
  margin-top: auto;
  padding: 16px 0 20px;
  background: #f9fafb;
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

/* Mobile tweaks */

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    font-size: 0.85rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* Kontakt-layout */

.contact-layout {
  display: grid;
  gap: 24px;
  margin-top: 18px;
}

.contact-main {
  max-width: 520px;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-family: inherit;
  font-size: 0.9rem;
}

.contact-form textarea {
  resize: vertical;
}

.contact-note {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-side {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.06);
  font-size: 0.9rem;
  color: var(--text-main);
}

.contact-side h2 {
  font-size: 1rem;
  margin-bottom: 6px;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    align-items: flex-start;
  }
}



/* =========================
   Kontakt-sida
   ========================= */

.contact-layout {
  display: grid;
  gap: 24px;
  margin-top: 18px;
}

.contact-main {
  max-width: 520px;
}

/* Formulär */

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  background: #ffffff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease,
              background-color 0.15s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.20);
  background: #f9fffb;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

/* Text under formuläret */

.contact-note {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-note a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}

.contact-note a:hover {
  text-decoration: underline;
}

/* Fakta-kort + teknisk ansvarig */

.contact-side {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.06);
  font-size: 0.9rem;
  color: var(--text-main);
}

.contact-side h2 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.contact-side p {
  margin-bottom: 8px;
}

.contact-side a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}

.contact-side a:hover {
  text-decoration: underline;
}

/* Layout för större skärmar */

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    align-items: flex-start;
  }
}

/* Lite tajtare på mobil */

@media (max-width: 899px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-side {
    margin-top: 18px;
  }
}


.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;        /* behåll textfärg */
}

.logo-link:hover {
  opacity: 0.9;          /* liten hover-effekt */
}


/* Logo-länken – alltid samma färg, ingen underline */
.logo-link {
  display: flex;              /* så layouten ser ut som innan */
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo-link:link,
.logo-link:visited,
.logo-link:hover,
.logo-link:active {
  text-decoration: none;
  color: inherit;             /* använd samma färg som texten hade innan */
}


.btn-primary,
.btn-secondary {
  text-decoration: none;   /* ta bort understrykning */
}

/* om du har hover-stilar kan du också vara tydlig där */
.btn-primary:hover,
.btn-secondary:hover {
  text-decoration: none;
}


/* Knapplänkar – inga understrykningar, ingen lila visited-färg */
a.btn-primary:link,
a.btn-primary:visited,
a.btn-primary:hover,
a.btn-primary:active {
  text-decoration: none;
  color: #ffffff;          /* samma som din knappfärg */
}

a.btn-secondary:link,
a.btn-secondary:visited,
a.btn-secondary:hover,
a.btn-secondary:active {
  text-decoration: none;
  color: var(--text-main); /* samma som du hade innan */
}


.store-badges {
  margin-top: 1rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.store-badge-link {
  display: inline-block;
}

.store-badge {
  height: 45px;
  width: auto;
  display: block;
}


/* Tvinga rätt storlek på store-badgarna i hero */
.hero .store-badges img.store-badge {
  height: 38px !important;   /* prova 38px, ändra om du vill större/mindre */
  width: auto !important;
  max-width: 200px;
  display: inline-block;
}


/* ===== Registrera företag ===== */

.register-form {
  max-width: 800px;
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 1.5rem;
}

.register-form .form-group {
  display: flex;
  flex-direction: column;
}

.register-form label {
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.register-form input,
.register-form textarea {
  font: inherit;
  padding: 0.6rem 0.8rem;
  border-radius: 0.5rem;
  border: 1px solid #d0d0d0;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
  box-sizing: border-box;
}

.register-form input:focus,
.register-form textarea:focus {
  border-color: #2563eb;       /* blå ton */
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

/* Checkbox-raderna */

.register-form .form-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: 400;
}

.register-form .form-checkbox input[type="checkbox"] {
  margin-top: 0.2rem;
}

.register-form .form-checkbox a {
  text-decoration: underline;
}

/* Skapa konto-knappen */

.register-form .form-group:last-child {
  margin-top: 0.5rem;
}

/* Desktop-layout: två kolumner */

@media (min-width: 768px) {
  .register-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Checkboxar & knapprad över hela bredden */
  .register-form .form-checkbox,
  .register-form .form-group:last-child {
    grid-column: 1 / -1;
  }
}

/* ===== Team-kort + KMA-logga på kontaktsidan ===== */

.team-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 14px 16px 12px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.team-card h2 {
  margin-top: 0;
  margin-bottom: 4px;
}

.team-card p {
  margin: 0;
}

/* loggan längst ned i kortet */
.team-logo {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px dashed rgba(148, 163, 184, 0.45);
  display: flex;
  align-items: center;
}

.team-logo img {
  max-width: 150px;
  height: auto;
  display: block;
}


/* =========================
   Ny kontakt-design
   ========================= */

.contact-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.contact-header {
  text-align: center;
  margin-bottom: 24px;
}

.contact-header h1 {
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.contact-header p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Grid layout: formulär + info */
.contact-grid {
  display: grid;
  gap: 22px;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    align-items: flex-start;
  }
}

/* Card-komponent */
.contact-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 20px 20px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.10);
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.contact-card h2 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Formulär i vänstra kortet */

.contact-card-main h2 {
  margin-bottom: 4px;
}

.contact-lead {
  color: var(--text-muted);
  margin-bottom: 10px;
}

.contact-form {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.contact-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-form label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.contact-form input,
.contact-form textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.85);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  background: #ffffff;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background-color 0.15s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.20);
  background: #f9fffb;
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-message {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Direktkontakt-block under formuläret */

.contact-direct {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px dashed rgba(148, 163, 184, 0.5);
  font-size: 0.88rem;
}

.contact-direct h3 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-direct a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}

.contact-direct a:hover {
  text-decoration: underline;
}

.contact-callout {
  margin-top: 6px;
  font-size: 0.85rem;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--green-soft);
  color: #065f46;
  font-weight: 600;
}

/* Högra kortet – info, support, logga */

.contact-card-side h2 {
  margin-bottom: 6px;
}

.contact-card-side h3 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-divider {
  margin: 10px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.4);
}

.contact-tech-block p {
  margin-bottom: 4px;
}

.contact-tech-block a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}

.contact-tech-block a:hover {
  text-decoration: underline;
}

.contact-team-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Logga längst ned i kortet */
.contact-brand {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px dashed rgba(148, 163, 184, 0.45);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.contact-brand-logo {
  max-width: 160px;
  height: auto;
  display: block;
}

/* Lite tajtare på mobil */
@media (max-width: 899px) {
  .contact-card {
    padding: 16px 16px 18px;
  }

  .contact-direct {
    margin-top: 14px;
  }
}


/* Pelikan-affisch – bild vänster, text höger */
.section-pelican .pelican-layout {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.section-pelican .pelican-image {
  flex: 1;
}

.section-pelican .pelican-image img {
  width: 100%;
  max-width: 420px;   /* justera om du vill större/mindre */
  height: auto;
  display: block;
  border-radius: 16px;
}

.section-pelican .pelican-text {
  flex: 1;
}

/* Mobil / surfplatta: stapla bild över text */
@media (max-width: 768px) {
  .section-pelican .pelican-layout {
    flex-direction: column;
    text-align: left;
  }

  .section-pelican .pelican-image img {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* =========================
   Animationer & microinteractions
   ========================= */

/* 1. Svävande hero-mobiler */
@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

.hero-screen-left {
  animation: float 6s ease-in-out infinite;
}

.hero-screen-main {
  animation: float 7s ease-in-out infinite;
}

.hero-screen-right {
  animation: float 5.5s ease-in-out infinite;
}

/* Respekt för användare som stängt av animationer */
@media (prefers-reduced-motion: reduce) {
  .hero-screen-left,
  .hero-screen-main,
  .hero-screen-right {
    animation: none;
  }
}

/* 2. Knappar – smooth hover */
.btn-primary,
.btn-secondary,
button {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    filter 0.18s ease;
}

/* Primärknapp */
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(31, 167, 70, 0.65);
  filter: brightness(1.05);
}

/* Sekundärknapp */
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
  background: #f9fafb;
}

/* 3. Priskort – lyft lite på hover */
.price-card {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.16);
}

/* Featured-kortet får lite extra pop */
.price-card-featured:hover {
  transform: translateY(-8px) scale(1.02);
}

/* 4. “Reveal on scroll” – sektioner som glider in mjukt */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   Rubriker med Montserrat
   ========================= */
h1,
h2,
h3,
h4,
.section-title,
.logo-title,
.price-card h3,
.pelican-text h2,
.contact-header h1,
.contact-card h2 {
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
  font-weight: 700;
}

/* Extra vikt på stora rubriker */
.hero-text h1 {
  font-weight: 800;
}


/* ===== FAQ ===== */

.section-faq {
  background: #f0fdf4; /* Ljusgrön bakgrund */
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 12px 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 700;
  transition: 0.2s ease;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== Pelikan-affisch – textstil ===== */

.section-pelican {
  background: #ffffff;              /* ren bakgrund runt affischen */
}

.section-pelican .pelican-text {
  max-width: 520px;
}

.section-pelican .pelican-text h2 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.section-pelican .pelican-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 8px;
}

/* Gör andra stycket lite “call to action”-känsla */
.section-pelican .pelican-text p:last-of-type {
  font-weight: 500;
  color: var(--green);              /* kopplar till din brand-färg */
}
