/* ==========================================================================
   Tim Travels – Webb & drift
   Ren statisk stilmall. Inga externa fonter, inga CDN-anrop.
   ========================================================================== */

:root {
  --bg:            #ffffff;
  --bg-soft:       #f5f7fa;
  --bg-deep:       #0f1e2e;
  --ink:           #1a2430;
  --ink-soft:      #4a5666;
  --ink-faint:     #6b7787;
  --line:          #e3e8ee;
  --brand:         #1f6feb;
  --brand-deep:    #1552b8;
  --brand-soft:    #eaf1fe;
  --radius:        14px;
  --radius-sm:     9px;
  --shadow:        0 1px 2px rgba(16,32,52,.06), 0 8px 24px rgba(16,32,52,.06);
  --shadow-sm:     0 1px 2px rgba(16,32,52,.05);
  --maxw:          1080px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
          Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

/* Reset ---------------------------------------------------------------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { line-height: 1.2; margin: 0 0 .4em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); font-weight: 700; }
h3 { font-size: 1.18rem; font-weight: 650; }
p  { margin: 0 0 1rem; }

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Layout --------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 84px 0; }

.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head .eyebrow {
  display: inline-block;
  font-size: .82rem;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}
.section-head p { color: var(--ink-soft); font-size: 1.08rem; margin: 0; }

/* Header --------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}
.brand:hover { text-decoration: none; }
.brand .mark {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  background: var(--brand);
  color: #fff;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 700;
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: var(--ink-soft); font-size: .95rem; font-weight: 550; }
.nav a:hover { color: var(--ink); text-decoration: none; }
.nav .btn { padding: 9px 18px; }
@media (max-width: 680px) {
  .nav a:not(.btn) { display: none; }
}

/* Buttons -------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .98rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 1px 2px rgba(21,82,184,.3), 0 6px 18px rgba(31,111,235,.25);
}
.btn-primary:hover { background: var(--brand-deep); transform: translateY(-1px); }
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: #c7d0da; background: var(--bg-soft); }

/* Hero ----------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 96px 0 88px;
  background:
    radial-gradient(1000px 480px at 78% -8%, var(--brand-soft), transparent 60%),
    linear-gradient(180deg, #fbfcfe 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
}
.hero-inner { max-width: 720px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 550;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 26px;
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: #2fbf71; }
.hero p.lead {
  font-size: clamp(1.1rem, 2.4vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 620px;
  margin: 18px 0 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 26px 40px;
  margin-top: 48px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.hero-points div { }
.hero-points strong { display: block; font-size: 1.6rem; color: var(--ink); }
.hero-points span { color: var(--ink-faint); font-size: .95rem; }

/* Cards / vad jag gör -------------------------------------------------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: #d4dde7;
}
.card .icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: var(--brand-soft);
  color: var(--brand);
  margin-bottom: 18px;
}
.card .icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: .3em; }
.card p { color: var(--ink-soft); font-size: .98rem; margin: 0; }

/* Section variants ----------------------------------------------------- */
.soft { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* För vem -------------------------------------------------------------- */
.audience {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.audience-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px;
  box-shadow: var(--shadow-sm);
}
.audience-card h3 { display: flex; align-items: center; gap: 12px; }
.audience-card h3 .badge {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--bg-deep);
  color: #fff;
}
.audience-card h3 .badge svg { width: 22px; height: 22px; }
.audience-card ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.audience-card li {
  position: relative;
  padding: 8px 0 8px 30px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}
.audience-card li:first-child { border-top: none; }
.audience-card li::before {
  content: "";
  position: absolute;
  left: 2px; top: 15px;
  width: 15px; height: 9px;
  border-left: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(-45deg);
}

/* Process -------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  counter-reset: step;
}
.step { position: relative; padding-top: 8px; }
.step .num {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.06rem; margin-bottom: .3em; }
.step p { color: var(--ink-soft); font-size: .96rem; margin: 0; }

/* Kontakt / CTA -------------------------------------------------------- */
.contact { }
.contact-card {
  background: var(--bg-deep);
  color: #fff;
  border-radius: 20px;
  padding: 58px 48px;
  text-align: center;
  background-image:
    radial-gradient(700px 300px at 20% 0%, rgba(31,111,235,.35), transparent 60%),
    radial-gradient(600px 300px at 90% 120%, rgba(31,111,235,.22), transparent 60%);
}
.contact-card h2 { color: #fff; }
.contact-card p {
  color: #b9c4d1;
  max-width: 520px;
  margin: 0 auto 28px;
  font-size: 1.08rem;
}
.contact-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.contact-card .btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.28);
}
.contact-card .btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }
.contact-mail {
  margin-top: 26px;
  font-size: .95rem;
  color: #8f9dad;
}
.contact-mail a { color: #dbe6f3; }

/* Footer --------------------------------------------------------------- */
.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-faint);
  font-size: .92rem;
}
.site-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer .brand { font-size: .98rem; }
.site-footer a { color: var(--ink-faint); }
.site-footer a:hover { color: var(--ink); }

/* Motion reduce -------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
