/* BrickFlow landing v2 — Plocky-style scroll narrative */
#authPage {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background: #fff;
  color: #2e2c36;
  font-family: "Inter", sans-serif;
  --lp-display-font: "Sora", "Inter", sans-serif;
  --lp-mint: #40eec0;
}

.lp-scroll {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.lp-scroll::-webkit-scrollbar { display: none; }

.lp-section {
  min-height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  overflow: hidden;
}

/* En bakgrundsfärg per snap-sektion */
.lp-scroll > .lp-section[data-idx="1"] { background-color: #40eec0; }
.lp-scroll > .lp-section[data-idx="2"] { background-color: #fffe8b; }
.lp-scroll > .lp-section[data-idx="3"] { background-color: #fe8080; }
.lp-scroll > .lp-section[data-idx="4"] { background-color: #fdba74; }
.lp-scroll > .lp-section[data-idx="5"] { background-color: #e9d5ff; }


.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  width: 100%;
  height: 72px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  --lp-nav-op: 0;
  --lp-nav-shadow: 0;
  --lp-nav-radius: 0 0 20px 20px;
  isolation: isolate;
  contain: layout style;
}

/* Högst upp: transparent — samma mint som hero syns igenom (ingen extra färglager) */
.lp-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--lp-nav-radius);
  background: transparent;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}

/* Tunn kant under bar (syns bara högst upp) */
.lp-nav:not(.is-scrolled)::before {
  box-shadow:
    inset 0 -1px 0 rgba(0, 0, 0, 0.05),
    0 4px 12px rgba(0, 0, 0, 0.03);
}

/* Vid scroll: vit rundad bar tonas in */
.lp-nav::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--lp-nav-radius);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, calc(var(--lp-nav-op) * 0.08));
  border-top: none;
  opacity: var(--lp-nav-op);
  box-shadow:
    0 4px 18px rgba(0, 0, 0, calc(0.05 + var(--lp-nav-shadow) * 0.07)),
    0 1px 0 rgba(255, 255, 255, 0.5) inset;
  z-index: 0;
  pointer-events: none;
}

.lp-nav > * {
  position: relative;
  z-index: 2;
}

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

.lp-nav-links {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.lp-nav-links a {
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
  font-family: var(--lp-display-font);
}

.lp-nav-links a:hover { opacity: 1; }

.lp-nav-btn {
  border: 1px solid rgba(0,0,0,0.35);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px !important;
  font-weight: 700 !important;
}

.lp-dots {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 48;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-dot {
  width: 12px;
  height: 3px;
  border: 0;
  border-radius: 999px;
  background: #000000;
  opacity: 0.3;
  cursor: pointer;
  transition: width .25s ease, opacity .25s ease;
}

.lp-dot.active {
  width: 34px;
  opacity: 1;
}

.lp-section-hero {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  grid-template-columns: 1fr;
  min-height: 100dvh;
  padding-top: 84px;
  box-sizing: border-box;
  background-color: var(--lp-mint);
}

.lp-section-hero .lp-hero-split {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
}

.lp-section-hero .lp-bg-orange {
  left: 0;
  background: var(--lp-mint);
  grid-row: 1 / -1;
  grid-column: 1;
  z-index: 0;
}

.lp-hero-media {
  --lp-hero-cycle: 25s;
  --lp-hero-slot: 5s;
  grid-row: 1;
  grid-column: 1;
  justify-self: end;
  align-self: center;
  margin: 0 40px 0 0;
  display: flex;
  gap: 10px;
  width: min(52vw, calc(100vw - 520px));
  max-width: 700px;
  height: min(calc(100dvh - 220px), 500px);
  position: relative;
  z-index: 2;
  padding: 14px;
  border-radius: 28px;
  /* Solid kort — inget frostat glas (backdrop-filter / halvtransparent panel) */
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.12),
    0 10px 28px rgba(0, 0, 0, 0.08);
}

.lp-hero-media-frame {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
  margin: 0;
  z-index: 1;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.2));
}

.lp-hero-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  display: block;
}

.lp-hero-media-left {
  object-position: 52% 58%;
}

.lp-hero-media-right {
  object-position: center center;
}

.lp-hero-notif {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px 10px 10px;
  border-radius: 999px;
  background: #ffffff;
  color: #0f172a;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.9);
  animation: lpHeroSlot var(--lp-hero-cycle) ease-in-out infinite;
  animation-fill-mode: both;
  pointer-events: none;
}

.lp-hero-notif-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #1b4b8a;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

.lp-hero-notif--invoice {
  left: 5%;
  bottom: 22%;
  animation-delay: calc(var(--lp-hero-slot) * 0);
}

.lp-hero-notif--stamp {
  left: 5%;
  bottom: 22%;
  max-width: min(94%, 220px);
  border-radius: 14px;
  animation-delay: calc(var(--lp-hero-slot) * 1);
}

.lp-hero-notif--stamp .lp-hero-notif-text {
  white-space: normal;
}

.lp-hero-notif--offer {
  left: 5%;
  bottom: 22%;
  animation-delay: calc(var(--lp-hero-slot) * 2);
}

.lp-hero-notif--payroll {
  right: 4%;
  left: auto;
  bottom: 22%;
  top: auto;
  animation-delay: calc(var(--lp-hero-slot) * 4);
}

.lp-hero-notif-icon--money {
  background: #ecfdf5;
  color: inherit;
  font-size: 15px;
  line-height: 1;
}

.lp-hero-chat {
  position: absolute;
  right: 3%;
  bottom: 22%;
  z-index: 3;
  width: min(94%, 218px);
  padding: 12px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.9);
  animation: lpHeroSlot var(--lp-hero-cycle) ease-in-out infinite;
  animation-delay: calc(var(--lp-hero-slot) * 3);
  animation-fill-mode: both;
  pointer-events: none;
}

.lp-hero-chat-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.lp-hero-chat-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #1b4b8a;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-hero-chat-name {
  font-size: 11px;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.lp-hero-chat-msg {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
}

.lp-hero-chat-actions {
  display: flex;
  gap: 6px;
}

.lp-hero-chat-btn {
  flex: 1 1 0;
  text-align: center;
  border-radius: 999px;
  padding: 7px 8px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}

.lp-hero-chat-btn--yes {
  background: #40eec0;
  color: #000000;
}

.lp-hero-chat-btn--no {
  background: #f1f5f9;
  color: #334155;
}

@keyframes lpHeroSlot {
  0%, 17%, 100% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.92);
  }
  4%, 13% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-hero-notif,
  .lp-hero-chat {
    animation: none;
    opacity: 0;
    visibility: hidden;
    transform: none;
  }
  .lp-hero-notif--invoice {
    opacity: 1;
    visibility: visible;
  }
}

.lp-hero-bottom {
  position: relative;
  grid-row: 2;
  grid-column: 1;
  justify-self: stretch;
  align-self: end;
  width: 100%;
  z-index: 12;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  pointer-events: none;
}

.lp-hero-bottom::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000000;
  flex-shrink: 0;
}

.lp-hero-integrations {
  position: static;
  width: auto;
  max-width: min(520px, 90vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
}

.lp-hero-integrations-label {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0,0,0,.88);
}

.lp-hero-integrations-marquee {
  position: relative;
  width: 280px;
  overflow: hidden;
  margin: 0 auto;
}

.lp-hero-integrations-track {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: lpLogosRight 14s linear infinite;
}

.lp-hero-integrations-track img {
  height: 42px;
  width: auto;
  object-fit: contain;
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
}

.lp-hero-integrations-track img:nth-child(2),
.lp-hero-integrations-track img:nth-child(5) { height: 50px; }
.lp-hero-integrations-track img:nth-child(3),
.lp-hero-integrations-track img:nth-child(6) { height: 28px; }

@keyframes lpLogosRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.lp-content {
  position: relative;
  z-index: 10;
  max-width: 640px;
  padding: 96px 24px 56px;
  color: #000000;
}

.lp-section-hero .lp-content-hero {
  position: relative;
  grid-row: 1;
  grid-column: 1;
  justify-self: start;
  align-self: center;
  margin: 0 0 0 40px;
  width: min(600px, calc(100vw - min(52vw, 700px) - 100px));
  max-width: 620px;
  padding: 0 24px 0 0;
  z-index: 2;
}

.lp-section-hero .lp-content-hero .lp-brand {
  color: #000000;
}

.lp-section-hero .lp-content-hero h2 {
  margin: 0;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.045em;
  font-weight: 800;
  font-family: var(--lp-display-font);
  color: #000000;
}

.lp-section-hero .lp-content-hero .lp-body {
  margin-top: 18px;
  max-width: none;
  font-size: 1.0625rem;
  line-height: 1.68;
  color: rgba(0, 0, 0, 0.92);
}

.lp-section-hero .lp-hero-actions {
  margin-top: 32px;
  gap: 14px;
}

.lp-section-hero .lp-hero-actions .lp-btn-primary,
.lp-section-hero .lp-hero-actions .lp-btn-ghost {
  padding: 15px 28px;
  font-size: 15px;
  font-weight: 800;
  min-height: 48px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-section-hero .lp-hero-actions .lp-btn-primary:hover,
.lp-section-hero .lp-hero-actions .lp-btn-ghost:hover {
  transform: scale(1.06);
}

.lp-section-hero .lp-hero-actions .lp-btn-primary {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
}

.lp-section-hero .lp-hero-actions .lp-btn-primary:hover {
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.18);
}

.lp-section-hero .lp-hero-actions .lp-btn-ghost {
  background: #ffffff;
  color: #000000;
  border: 2px solid rgba(0, 0, 0, 0.75);
}

@media (prefers-reduced-motion: reduce) {
  .lp-section-hero .lp-hero-actions .lp-btn-primary,
  .lp-section-hero .lp-hero-actions .lp-btn-ghost {
    transition: none;
  }
  .lp-section-hero .lp-hero-actions .lp-btn-primary:hover,
  .lp-section-hero .lp-hero-actions .lp-btn-ghost:hover {
    transform: none;
  }
}

.lp-content h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 800;
  font-family: var(--lp-display-font);
}

.lp-content-hero h1 {
  margin: 0;
  font-size: clamp(40px, 6.4vw, 86px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 700;
  color: #000000;
  font-family: var(--lp-display-font);
}

.lp-glow {
  margin: 0 0 14px;
  font-size: clamp(30px, 4.6vw, 72px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.045em;
  color: #000000;
  text-shadow: none;
  font-family: var(--lp-display-font);
}

.lp-body {
  margin: 20px 0 0;
  max-width: 560px;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #000000;
  letter-spacing: -0.015em;
}

.lp-hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.lp-btn-primary,
.lp-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 22px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
}

.lp-btn-primary { background: #ffffff; color: #000000; }
.lp-btn-ghost {
  background: rgba(255,255,255,0.35);
  color: #000000;
  border: 1px solid rgba(0,0,0,0.35);
}

.lp-hint {
  position: static;
  display: flex;
  justify-content: center;
  color: rgba(0,0,0,.7);
  animation: lpHint 1.8s ease-in-out infinite;
}
.lp-hint-icon { width: 20px; height: 20px; }
@keyframes lpHint {
  0%,100% { transform: translateY(0); opacity: .4; }
  50% { transform: translateY(6px); opacity: .9; }
}


.lp-screen {
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 70px rgba(0,0,0,.35);
  padding: 20px;
  color: #1f2937;
}

.lp-screen-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
}

.lp-pill {
  background: #40eec0;
  color: #000000;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
}

.lp-kpi-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.lp-kpi-grid div {
  border-radius: 10px;
  background: #f3f4f6;
  padding: 10px 8px;
  text-align: center;
}
.lp-kpi-grid strong { display: block; font-size: 18px; color: #111827; }
.lp-kpi-grid span { font-size: 11px; color: #6b7280; }

.lp-row-item {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
}
.lp-row-item em {
  margin-left: auto;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  color: #000000;
}

.lp-green, .lp-yellow, .lp-blue {
  width: 8px; height: 8px; border-radius: 50%;
}
.lp-green { background: #16a34a; }
.lp-yellow { background: #f59e0b; }
.lp-blue { background: #2563eb; }

.lp-bg-orange { background-color: var(--lp-mint); }
.lp-bg-time { background-color: #fffe8b; }

.lp-visual {
  position: absolute;
  right: 2%;
  top: 12%;
  bottom: 0;
  width: min(68vw, 820px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
}

.lp-section-projects {
  min-height: 100dvh;
  height: auto;
  overflow: visible;
  padding-bottom: 54px;
}

.lp-section-projects .lp-content {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 26px;
}

.lp-project-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.lp-project-item {
  display: grid;
  grid-template-columns: minmax(180px, 290px) minmax(0, 1fr);
  align-items: center;
  gap: 30px;
}

.lp-project-item img,
.lp-project-item .lp-time-lottie {
  width: 100%;
  max-width: 340px;
  max-height: 240px;
  height: auto;
  object-fit: contain;
  display: block;
  background: transparent;
}

.lp-project-item .lp-time-lottie svg {
  width: 100% !important;
  height: auto !important;
  max-height: 240px;
  display: block;
}

.lp-project-item h3 {
  margin: 0;
  color: #000000;
  font-size: clamp(36px, 4vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 800;
  font-family: var(--lp-display-font);
}

.lp-project-item p {
  margin: 14px 0 0;
  max-width: 760px;
  color: rgba(0,0,0,.9);
  font-size: 1.0625rem;
  line-height: 1.65;
  letter-spacing: -0.015em;
}

.lp-card {
  width: min(92%, 520px);
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  padding: 24px;
  color: #000000;
}

.lp-card h3 {
  margin: 0;
  font-size: clamp(20px, 3vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.lp-card p {
  margin: 10px 0 0;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(0,0,0,.82);
}

.lp-brand-row {
  display: inline-flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 10px;
}

.lp-brand {
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.045em;
  font-family: var(--lp-display-font);
}

.lp-link {
  margin-top: 30px;
  display: inline-block;
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: rgba(0,0,0,.35);
  font-weight: 600;
}

.lp-section-contact {
  background: #000000;
  padding: 120px 24px 34px;
  position: relative;
}

.lp-section-contact::after {
  content: none;
}

.lp-contact-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.lp-contact-copy h2 {
  color: #ffffff;
  margin: 0;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  font-weight: 800;
  font-family: var(--lp-display-font);
}

.lp-contact-label {
  margin: 0 0 12px;
  color: rgba(255,255,255,.82);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
  font-family: var(--lp-display-font);
}

.lp-section-contact .lp-body {
  color: rgba(255,255,255,.92);
}

.lp-contact-form {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.lp-contact-form label {
  font-size: 12px;
  color: #6b7280;
  font-weight: 700;
  margin-top: 8px;
}

.lp-contact-form input,
.lp-contact-form textarea {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 11px 12px;
  font-size: 14px;
  font-family: inherit;
  color: #111827;
  box-sizing: border-box;
}

.lp-contact-form textarea { resize: vertical; min-height: 96px; }
.lp-btn-full { width: 100%; margin-top: 10px; justify-content: center; }

.lp-confirm {
  display: none;
  margin: 2px 0 0;
  font-size: 13px;
  color: #047857;
  font-weight: 700;
  text-align: center;
}

/* App Store / Google Play (samma stil som Plocky) */
.lp-app-download {
  max-width: 1080px;
  margin: 36px auto 0;
  text-align: center;
}

.lp-app-download-label {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  font-family: var(--lp-display-font);
}

.lp-app-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}

.lp-app-badge {
  display: inline-flex;
  flex: 1 1 140px;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  height: 52px;
  min-width: 140px;
  max-width: 200px;
  padding: 8px 16px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.14);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.lp-app-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}

.lp-app-badge:active {
  transform: scale(0.98);
}

.lp-app-badge img {
  display: block;
  height: 26px;
  width: auto;
  max-width: 100%;
}

@media (min-width: 768px) {
  .lp-app-badges {
    max-width: none;
    gap: 12px;
  }

  .lp-app-badge {
    flex: 0 0 auto;
    height: 56px;
    min-width: 152px;
    padding: 8px 20px;
  }

  .lp-app-badge img {
    height: 28px;
  }
}

.lp-footer {
  max-width: 1080px;
  margin: 24px auto 0;
  border-top: 1px solid rgba(255,255,255,.2);
  border-radius: 0;
  background: transparent;
  padding: 14px 0;
  color: rgba(255,255,255,.78);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .lp-nav {
    height: 76px;
    padding: 0 40px;
    --lp-nav-radius: 0 0 22px 22px;
  }
  .lp-content { padding: 116px 72px 62px; max-width: 610px; }
  .lp-section.lp-section-hero .lp-content.lp-content-hero {
    margin: 0 0 0 40px;
    width: min(620px, calc(100vw - min(50vw, 700px) - 96px));
    max-width: 640px;
    padding: 0 28px 0 0;
  }
  .lp-section-hero .lp-content-hero h2 {
    font-size: clamp(34px, 4.5vw, 56px);
  }
  .lp-hero-media {
    height: min(calc(100dvh - 210px), 520px);
  }
  .lp-content h2 { font-size: clamp(38px, 4.5vw, 72px); }
  .lp-body { font-size: 1.1875rem; line-height: 1.7; }
}

@media (min-width: 1100px) {
  .lp-section.lp-section-hero .lp-content.lp-content-hero {
    margin-left: 40px;
    width: min(640px, calc(100vw - 780px));
    max-width: 660px;
  }
}

@media (max-width: 1100px) {
  .lp-dots { display: none; }
}

/* Mobil — enklare upplevelse (ingen avancerad hero-animation) */
@media (max-width: 768px) {
  .lp-scroll {
    scroll-snap-type: none;
  }

  .lp-section {
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

  .lp-hero-notif,
  .lp-hero-chat {
    display: none !important;
    animation: none !important;
  }

  .lp-nav {
    height: 64px;
    padding: 0 16px;
    --lp-nav-radius: 0 0 16px 16px;
  }

  .lp-section-hero {
    padding-top: 76px;
  }

  .lp-logo .bf-logo {
    height: 44px;
    max-width: min(240px, 72vw);
  }

  .lp-nav-links {
    gap: 10px;
  }

  .lp-nav-links {
    gap: 8px;
  }

  .lp-nav-links a {
    font-size: 12px;
  }

  .lp-nav-btn {
    padding: 7px 12px;
    font-size: 11px !important;
  }

  .lp-section { min-height: 100dvh; }
  .lp-section-hero {
    grid-template-rows: auto auto auto;
  }
  .lp-section-hero .lp-content-hero {
    grid-row: 1;
    align-self: start;
    margin: 0;
    width: auto;
    max-width: 100%;
    padding: 0 24px 12px;
  }
  .lp-hero-media {
    grid-row: 2;
    justify-self: center;
    align-self: center;
    margin: 0 auto;
    width: min(94vw, 460px);
    height: min(34dvh, 280px);
    gap: 3px;
  }
  .lp-hero-media-frame img {
    border-radius: 16px;
  }
  .lp-hero-notif {
    font-size: 10px;
    padding: 8px 10px 8px 8px;
  }
  .lp-hero-notif-icon {
    width: 22px;
    height: 22px;
    font-size: 11px;
  }
  .lp-hero-notif--stamp {
    max-width: min(94%, 170px);
  }
  .lp-hero-chat {
    width: min(94%, 180px);
    padding: 10px;
  }
  .lp-hero-chat-msg {
    font-size: 11px;
  }
  .lp-hero-chat-btn {
    font-size: 10px;
    padding: 6px 6px;
  }
  .lp-hero-bottom {
    grid-row: 3;
    padding-bottom: 12px;
  }
  .lp-hero-integrations-label { font-size: 11px; }
  .lp-hero-integrations-marquee { width: 250px; }
  .lp-hero-integrations-track { gap: 12px; }
  .lp-hero-integrations-track img { height: 32px; }
  .lp-hero-integrations-track img:nth-child(2),
  .lp-hero-integrations-track img:nth-child(5) { height: 38px; }
  .lp-hero-integrations-track img:nth-child(3),
  .lp-hero-integrations-track img:nth-child(6) { height: 22px; }
  .lp-content { padding: 98px 24px 28px; max-width: 100%; }
  .lp-section-hero .lp-content-hero h2 {
    font-size: clamp(30px, 8.5vw, 44px);
  }
  .lp-section-projects .lp-content { padding-bottom: 16px; }
  .lp-project-list { padding: 0 24px 30px; gap: 18px; }
  .lp-project-item { grid-template-columns: 1fr; gap: 14px; }
  .lp-project-item img,
  .lp-project-item .lp-time-lottie { max-width: 220px; }
  .lp-project-item .lp-time-lottie svg { max-height: 200px; }
  .lp-project-item h3 { font-size: clamp(30px, 9vw, 44px); }
  .lp-visual {
    width: 100%;
    right: 0;
    top: auto;
    bottom: 0;
    padding: 0 12px 10px;
    justify-content: center;
    align-items: flex-end;
  }
  .lp-card { width: 100%; max-width: 520px; }
  .lp-section-contact { padding-top: 90px; }
  .lp-contact-grid { grid-template-columns: 1fr; }
  .lp-footer { flex-direction: column; }
}
