/* RättsKlart – priser-sidan */

:root {
  --navy:        #001f3f;
  --navy-light:  #1a3a5c;
  --green:       #2d4a3e;
  --green-dark:  #1f3329;
  --green-tint:  #e6ede8;
  --warm-white:  #fafaf8;
  --gray-bg:     #f4f4f1;
  --gray-border: #d6d6d0;
  --gray-text:   #5a5a55;
  --ink:         #1a1a1a;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--warm-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }

/* ── NAV ── */
.nav {
  background: var(--warm-white);
  border-bottom: 1px solid var(--gray-border);
  position: sticky; top: 0; z-index: 100;
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; padding: 16px 0;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--ink);
}
.logo-mark {
  width: 44px; height: 44px; background: var(--navy);
  border-radius: 6px; display: flex; align-items: center;
  justify-content: center; font-family: var(--serif);
  font-weight: 700; font-size: 17px; color: white; flex-shrink: 0;
}
.logo-text {
  font-family: var(--serif); font-size: 22px;
  font-weight: 700; color: var(--navy);
  line-height: 1.1; letter-spacing: -0.01em;
}
.logo-text .accent { color: var(--green); }
.logo-tag {
  display: block; font-family: var(--sans);
  font-size: 10px; color: var(--green);
  margin-top: 2px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
}
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  color: var(--ink); text-decoration: none;
  font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: 2px; transition: color 0.15s;
}
.nav-links a:hover { color: var(--green); }
.nav-links a.active { background: var(--navy); color: white; }
.nav-links a.active:hover { color: white; opacity: 0.9; }

/* ── HERO ── */
.hero {
  text-align: center;
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--gray-border);
}
.eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px; color: var(--green);
  margin-bottom: 16px; text-transform: uppercase;
}
h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600; color: var(--navy);
  line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 16px;
  max-width: 780px; margin-left: auto; margin-right: auto;
}
.lede {
  font-size: 18px; color: var(--gray-text);
  max-width: 600px; margin: 0 auto; line-height: 1.55;
}

/* ── PILOT-NOTIS ── */
.pilot-notice {
  background: var(--green-tint);
  border-left: 3px solid var(--green);
  padding: 22px 28px;
  margin: 40px auto;
  max-width: 760px;
  border-radius: 4px;
}
.pilot-notice .label {
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  color: var(--green-dark); text-transform: uppercase; margin-bottom: 6px;
}
.pilot-notice p {
  font-size: 15px; color: var(--ink); line-height: 1.6; margin: 0;
}
.pilot-notice strong { color: var(--green-dark); }
.pilot-notice a {
  color: var(--green-dark); font-weight: 600;
  text-decoration: underline; text-underline-offset: 3px;
}
.pilot-notice a:hover { text-decoration: none; }

/* ── TJÄNSTKORT ── */
.tjanst-section { padding: 24px 0 80px; }
.tjanst-card {
  max-width: 760px; margin: 0 auto;
  background: white; border: 1px solid var(--gray-border);
  border-radius: 8px; overflow: hidden;
}
.tjanst-card-head {
  padding: 28px 36px 24px;
  border-bottom: 1px solid var(--gray-border);
}
.tjanst-card-head .small-label {
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  color: var(--green); text-transform: uppercase; margin-bottom: 8px;
}
.tjanst-card-head h2 {
  font-family: var(--serif); font-size: 32px;
  font-weight: 600; color: var(--navy);
  margin-bottom: 12px; letter-spacing: -0.01em;
}
.pilot-tag {
  display: inline-block; background: var(--navy); color: white;
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 4px 12px;
  border-radius: 999px; margin-bottom: 12px;
}
.tjanst-card-head p {
  font-size: 15.5px; color: var(--gray-text); line-height: 1.55;
}
.tjanst-card-body { padding: 28px 36px; }
.features-label {
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  color: var(--gray-text); text-transform: uppercase; margin-bottom: 16px;
}
.features { list-style: none; padding-left: 0; }
.features li {
  padding: 10px 0 10px 32px; position: relative;
  font-size: 15px; color: var(--ink); line-height: 1.5;
  border-bottom: 1px solid var(--gray-bg);
}
.features li:last-child { border-bottom: none; }
.features li::before {
  content: '✓'; position: absolute; left: 0; top: 10px;
  color: var(--green); font-weight: 700; font-size: 16px;
}
.tjanst-card-foot {
  padding: 24px 36px; background: var(--gray-bg);
  border-top: 1px solid var(--gray-border);
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.pris-text { font-size: 14px; color: var(--gray-text); }
.pris-text strong { color: var(--ink); }

/* ── KNAPPAR ── */
.btn {
  display: inline-block; padding: 12px 24px; border-radius: 2px;
  font-weight: 600; font-size: 14.5px; text-decoration: none;
  transition: all 0.15s ease; cursor: pointer;
  border: 1px solid transparent; font-family: var(--sans);
}
.btn-primary { background: var(--navy); color: white; }
.btn-primary:hover { background: var(--green); }
.btn-secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: white; }

/* ── KONTAKT-CTA ── */
.contact-cta {
  background: var(--navy); color: white;
  padding: 64px 0; text-align: center;
}
.contact-cta .eyebrow { color: #b0c2b6; margin-bottom: 12px; }
.contact-cta h2 {
  font-family: var(--serif); font-size: 36px;
  font-weight: 600; margin-bottom: 12px; color: white;
}
.contact-cta p {
  color: rgba(255,255,255,0.75); font-size: 16px;
  max-width: 540px; margin: 0 auto 28px; line-height: 1.55;
}
.contact-cta .btn-white {
  background: white; color: var(--navy);
  padding: 14px 32px; border: none;
}
.contact-cta .btn-white:hover { background: var(--green-tint); }

/* ── FOOTER ── */
footer {
  background: var(--navy); color: #c5cfd0;
  padding: 56px 0 32px; font-size: 14px;
}
footer .footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px; padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
footer h4 { font-family: var(--serif); color: white; font-size: 18px; margin-bottom: 12px; }
footer p { line-height: 1.6; margin-bottom: 8px; }
footer ul { list-style: none; }
footer li { margin-bottom: 8px; }
footer a { color: #c5cfd0; text-decoration: none; }
footer a:hover { color: white; }
footer .footer-bottom {
  padding-top: 24px; display: flex;
  justify-content: space-between; flex-wrap: wrap;
  gap: 16px; font-size: 13px;
}
.disclaimer-box {
  background: rgba(0,0,0,0.2); padding: 14px 16px;
  border-left: 2px solid var(--green); margin-top: 16px;
  font-size: 13px; color: #b0c2b6; line-height: 1.55;
}

/* ── MOBIL ── */
@media (max-width: 760px) {
  .container { padding: 0 20px; }
  .hero { padding: 48px 0 32px; }
  .tjanst-card-head, .tjanst-card-body, .tjanst-card-foot {
    padding-left: 20px; padding-right: 20px;
  }
  .nav-links a { padding: 6px 8px; font-size: 13px; }
  footer .footer-top { grid-template-columns: 1fr; gap: 24px; }
}
