@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

.open-sans-h1 {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}


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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Open Sans', sans-serif;
  background: white;
  overflow-x: hidden;
}

/* NAV */
.l-nav {
  background: #0f2419;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.l-nav__logo {
  color: white;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.3px;
  text-decoration: none;
  border-radius: 5px;
}

.l-nav__right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.l-nav__lang {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  text-decoration: none;
}

.l-nav__cta {
  background: white;
  color: #0f2419;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

/* HERO */
.l-hero {
  background-image: url("/assets/topdown-a8b18726.jpg");
  background-size: cover;
  padding: 100px 48px 0;
  text-align: center;
}

.l-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 32px;
}

.l-hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
}

.l-hero__eyebrow-dot {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

.l-hero__eyebrow-text {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.l-hero__title {
  color: white;
  font-size: 64px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -1.5px;
  max-width: 700px;
  margin: 0 auto 24px;
}

.l-hero__title em {
  color: #86efac;
  font-style: normal;
}

.l-hero__sub {
  color: #ffbb4d;
  font-size: 18px;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 48px;
}

.l-hero__btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 72px;
}

.l-btn-primary {
  background: white;
  color: #0f2419;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.l-btn-secondary {
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 100px;
  border: 0.5px solid rgba(255,255,255,0.12);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

/* PHONES */
.l-phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.l-phone {
  width: 200px;
  background: #1a3d2b;
  border-radius: 32px;
  border: 0.5px solid rgba(255,255,255,0.1);
  overflow: hidden;
  flex-shrink: 0;
}

.l-phone--main {
  width: 220px;
}

.l-phone--side {
  margin-bottom: 24px;
}

.l-phone__header {
  background: #1a3d2b;
  padding: 20px 16px 14px;
}

.l-phone__body {
  background: #f5f5f0;
  padding: 14px;
}

.l-phone__title {
  color: white;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
}

.l-phone__sub {
  color: rgba(255,255,255,0.45);
  font-size: 11px;
}

.l-phone__card {
  background: white;
  border-radius: 12px;
  border: 0.5px solid #e5e5e0;
  padding: 12px;
  margin-bottom: 8px;
}

.l-phone__badge {
  background: #fef3e2;
  border-radius: 100px;
  padding: 2px 8px;
  display: inline-block;
  margin-bottom: 8px;
  color: #854f0b;
  font-size: 9px;
  font-weight: 500;
}

.l-phone__bar-row {
  margin-bottom: 5px;
}

.l-phone__bar-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3px;
}

.l-phone__bar-label {
  font-size: 9px;
  color: #888;
}

.l-phone__bar-value {
  font-size: 9px;
  color: #1a3d2b;
  font-weight: 500;
}

.l-phone__bar-track {
  height: 3px;
  background: #eee;
  border-radius: 2px;
  overflow: hidden;
}

.l-phone__bar-fill {
  height: 100%;
  background: #1a3d2b;
  border-radius: 2px;
}

.l-phone__section-label {
  font-size: 9px;
  color: #888;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.l-phone__hot-grid {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.l-phone__hot-card {
  flex: 1;
  border-radius: 10px;
  padding: 10px;
}

.l-phone__hot-card--dark {
  background: #1a3d2b;
}

.l-phone__hot-card--light {
  background: white;
  border: 0.5px solid #e5e5e0;
}

.l-phone__hot-badge {
  border-radius: 100px;
  padding: 2px 6px;
  display: inline-block;
  margin-bottom: 4px;
  font-size: 8px;
  font-weight: 500;
}

.l-phone__hot-badge--gold {
  background: #e8a030;
  color: white;
}

.l-phone__hot-badge--red {
  background: #fee2e2;
  color: #991b1b;
}

.l-phone__hot-name--dark {
  color: white;
  font-size: 10px;
  font-weight: 500;
}

.l-phone__hot-name--light {
  color: #1a1a1a;
  font-size: 10px;
  font-weight: 500;
}

.l-phone__hot-dist--dark {
  color: rgba(255,255,255,0.4);
  font-size: 9px;
}

.l-phone__hot-dist--light {
  color: #888;
  font-size: 9px;
}

.l-phone__list-item {
  background: white;
  border-radius: 10px;
  border: 0.5px solid #e5e5e0;
  padding: 10px 12px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.l-phone__list-icon {
  width: 28px;
  height: 28px;
  background: #eaf3de;
  border-radius: 7px;
  flex-shrink: 0;
}

.l-phone__list-name {
  font-size: 10px;
  font-weight: 500;
  color: #1a1a1a;
}

.l-phone__list-dist {
  font-size: 9px;
  color: #888;
}

.l-phone__rating-card {
  background: white;
  border-radius: 10px;
  border: 0.5px solid #e5e5e0;
  padding: 10px 12px;
  margin-bottom: 8px;
}

.l-phone__rating-label {
  font-size: 9px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.l-phone__rating-btns {
  display: flex;
  gap: 4px;
}

.l-phone__rating-btn {
  flex: 1;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 500;
}

.l-phone__submit {
  background: #1a3d2b;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  color: white;
  font-size: 11px;
  font-weight: 500;
  margin-top: 4px;
}

/* PROBLEM SECTION */
.l-section {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.l-section--dark {
  background: #0f2419;
  max-width: 100%;
  padding: 100px 48px;
}

.l-section--gray {
  background: #f5f5f0;
  max-width: 100%;
  padding: 100px 48px;
  text-align: center;
}

.l-section__label {
  font-size: 11px;
  color: #888;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.l-section__label--light {
  color: rgba(255,255,255,0.3);
}

.l-section__title {
  font-size: 44px;
  font-weight: 500;
  color: #0f2419;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
  max-width: 560px;
}

.l-section__title--light {
  color: white;
  max-width: 100%;
  margin-bottom: 48px;
}

.l-section__title--center {
  max-width: 100%;
  text-align: center;
  margin: 0 auto 16px;
}

.l-section__body {
  font-size: 17px;
  color: #666;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 16px;
}

.l-section__body--center {
  max-width: 440px;
  margin: 0 auto 48px;
  text-align: center;
}

.l-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* RATINGS CARD */
.l-ratings-card {
  background: #f5f5f0;
  border-radius: 24px;
  padding: 32px;
}

.l-ratings-card__label {
  font-size: 12px;
  color: #888;
  margin-bottom: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.l-ratings-card__row {
  margin-bottom: 16px;
}

.l-ratings-card__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.l-ratings-card__name {
  font-size: 14px;
  color: #333;
}

.l-ratings-card__value {
  font-size: 14px;
  font-weight: 500;
  color: #1a3d2b;
}

.l-ratings-card__track {
  height: 5px;
  background: #e5e5e0;
  border-radius: 3px;
  overflow: hidden;
}

.l-ratings-card__fill {
  height: 100%;
  background: #1a3d2b;
  border-radius: 3px;
}

.l-ratings-card__footer {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  align-items: center;
}

.l-ratings-card__badge {
  background: #fef3e2;
  border-radius: 100px;
  padding: 5px 12px;
  color: #854f0b;
  font-size: 12px;
  font-weight: 500;
}

.l-ratings-card__meta {
  font-size: 12px;
  color: #aaa;
}

/* FEATURES */
.l-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #e8e8e0;
  border: 1px solid #e8e8e0;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 60px;
}

.l-feature {
  background: white;
  padding: 32px;
}

.l-feature__icon {
  width: 40px;
  height: 40px;
  background: #eaf3de;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.l-feature__title {
  font-size: 16px;
  font-weight: 500;
  color: #0f2419;
  margin-bottom: 8px;
}

.l-feature__desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* STATS */
.l-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.l-stat {
  padding: 32px;
  background: rgba(255,255,255,0.03);
}

.l-stat__num {
  font-size: 44px;
  font-weight: 500;
  color: white;
  letter-spacing: -1px;
  margin-bottom: 4px;
}

.l-stat__label {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* LIVE PING */
.l-ping-container {
  position: fixed;
  bottom: 32px;
  left: 32px;
  display: flex;
  flex-direction: column-reverse; /* nya kommer längst ner */
  gap: 10px;
  z-index: 1000;
}

/* Ping card */
.l-ping {
  background: white;
  border: 0.5px solid #e5e5e0;
  border-radius: 16px;
  padding: 14px 18px;
  max-width: 280px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);

  display: flex;
  align-items: center;
  gap: 10px;

  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Innehåll */
.l-ping__dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
}

.l-ping__text {
  font-size: 13px;
  color: #333;
  margin: 0;
  line-height: 1.4;
}

/* Visa */
.l-ping.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Hide */
.l-ping.hide {
  opacity: 0;
  transform: translateY(10px) scale(0.98);
}

/* FOOTER */
.l-footer {
  background: #0f2419;
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 0.5px solid rgba(255,255,255,0.08);
}

.l-footer__copy {
  color: rgba(255,255,255,0.25);
  font-size: 13px;
}

.l-footer__links {
  display: flex;
  gap: 24px;
}

.l-footer__link {
  color: rgba(255,255,255,0.35);
  font-size: 13px;
  text-decoration: none;
}

.l-questions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.l-question {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 1px solid #e5e5e0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  flex-direction: column;
}

/* Hover */
.l-question:hover {
  border-color: #cfd4c7;
  background: #fafaf8;
}

/* Header rad */
.l-question__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  width: 100%;
}

/* Text */
.l-question__text {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  flex: 1;
}

/* Ikon rotation */
.l-question__icon {
  transition: transform 0.3s ease;
}

.l-question.open .l-question__icon {
  transform: rotate(90deg);
}

/* Answer animation */
.l-question__answer {
  max-height: 0;
  text-align: left;
  overflow: hidden;
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
}

.l-question.open {
  border-color: #3B6D11;
  background: #f6f9f2;
}

/* När öppen */
.l-question.open .l-question__answer {
  max-height: 200px;
  margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .l-nav { padding: 16px 24px; }
  .l-hero { padding: 60px 24px 0; }
  .l-hero__title { font-size: 40px; }
  .l-hero__btns { flex-direction: column; align-items: center; }
  .l-phones .l-phone--side { display: none; }
  .l-section { padding: 60px 24px; }
  .l-section--dark { padding: 60px 24px; }
  .l-section--gray { padding: 60px 24px; }
  .l-two-col { grid-template-columns: 1fr; gap: 40px; }
  .l-features { grid-template-columns: 1fr; }
  .l-stats { grid-template-columns: 1fr; }
  .l-footer { flex-direction: column; gap: 16px; text-align: center; }
  .l-section__title { font-size: 32px; }
}