/* RESET & BASE */
* {
  box-sizing: border-box;
}


body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: #f5f6f8;
  color: #111;
}
h1 {
  font-size: clamp(2.2rem, 3.4vw, 3.2rem);
  line-height: 1.05;
  margin: 18px 0 12px;
}

h2 {
  font-size: 1.35rem;
  margin: 10px 0 14px;
}

.tagline {
  font-size: 16px;
  color: #555;
  margin-bottom: 36px;
}

.card:hover {
  transform: translateY(-1px);
}

.page{
  max-width: 1040px;   /* lagom på laptop */
  margin: 0 auto;      /* centrerar */
  padding: 32px 20px;  /* luft på sidorna */
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}
a.link {
  color: #1a73e8;
}

a.link:hover {
  opacity: 0.85;
}
.card {
  background: #fff;
  border: 1px solid #e6e8ee;
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  border-color: #d8dbe3;
}
.card-title {
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 6px;
}

.card-desc {
  margin: 0 0 12px;
  color: #555;
  font-size: 14px;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #111;
  color: #fff;
}

.eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #777;
    margin-bottom: 12px;
}


/* LAYOUT */
.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 20px;
}
.supporting {
    font-size: 1rem;
    color: #555;
    margin-top: -10px;
}


/* HEADER */




.header {
  background: #000;
  border-bottom: 1px solid #1f1f1f;
}
.header-inner {
  max-width: 960px;
  margin: auto;
  padding: 1rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav a {
  color: #cfcfcf;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 10px;
}

.nav a:hover {
  background: #111;
  color: #fff;
}

.logo img {
  height: 36px;
  width: auto;
  display: block;
}
.header-inner {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 28px;
}


.site-footer {
  font-size: 13px;
  color: #777;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #111;      /* same as header background */
}


.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* NAV DESKTOP */
.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  color: #ccc;
  text-decoration: none;
  font-size: 15px;
}

.nav a:hover {
  color: #fff;
}
.nav a {
  color: #ddd;
  text-decoration: none;
  font-size: 15px;
  padding: 8px 10px;
  border-radius: 8px;
}

.nav a:hover {
  background: #111;
  color: #fff;
}


/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #000;
    padding: 20px;
    flex-direction: column;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 12px 0;
    font-size: 18px;
  }
}

/* CONTENT */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 1.5rem;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.card {
  padding: 18px;
  border-radius: 16px;
  min-height: 180px;   /* istället för att växa jättemycket */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card .btn {
  width: 100%;
  padding: 12px 14px;
  border-radius: 999px;
  font-size: 0.95rem;
}
.card p {
  margin-top: 6px;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.35;
}



/* FOOTER */
.site-footer {
  border-top: 1px solid #ddd;
  margin-top: 3rem;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.9rem;
}
.logo img {
  height: 44px !important;
  width: auto !important;
  max-height: 44px !important;
  display: block;
}

.card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 22px;
  border-radius: 14px;
}

.card a {
  font-weight: 600;
  text-decoration: none;
}
/* ===== Bundles / Transfer Pages ===== */

.hero {
  padding: 10px 0 22px;
}

.hero h1 {
  font-size: 38px;
  line-height: 1.1;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}


@media (max-width: 980px) {
  .cards { grid-template-columns: 1fr; }
    .page { padding: 22px 16px; }

}

.card {
  background: #fff;
  border: 1px solid #e6e8ee;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.08);
  border-color: #d8dbe3;
}

.card-top {
  margin-bottom: 10px;
}

.card-title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.card-desc {
  margin: 0;
  color: #555;
  font-size: 14px;
}

.card-list {
  margin: 14px 0 18px;
  padding-left: 18px;
  color: #444;
  font-size: 14px;
}

.card-list li {
  margin: 6px 0;
}

.card-cta {
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #111;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.card-cta:hover {
  opacity: 0.92;
}

.card-featured {
  border-color: #cfd5e3;
  box-shadow: 0 14px 34px rgba(0,0,0,0.10);
}

.badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}

.disclaimer {
  margin-top: 18px;
  color: #666;
  font-size: 13px;
}
.trust-line {
  font-size: 12.5px;
  line-height: 1.35;
  color: #777;
  margin: 6px 0 14px;
  pointer-events: none;   /* makes it feel non-interactive */
}


.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 18px;
}

.trust-pill {
  background: none;
  border: 0;
  padding: 0;
  font-weight: 400;
  cursor: default;
}
.card-cta {
  cursor: pointer;
}

p, span {
  cursor: default;
}


.disclaimer {
  font-size: 13px;
  line-height: 1.45;
  color: #666;
  margin: 18px 0 0;
}

@media (max-width: 480px) {
  .subline { font-size: 14px; }
  .trust-pill { font-size: 12px; padding: 6px 9px; }
  .disclaimer { font-size: 12.5px; }
}

@media (max-width: 480px) {

  .cards {
    gap: 12px;
  }

  .card {
    padding: 14px;
    min-height: auto;   /* IMPORTANT */
  }

  .card-title {
    font-size: 17px;
    margin-bottom: 4px;
  }

  .card-desc {
    font-size: 13.5px;
    margin-bottom: 8px;
  }

  .card-cta {
    padding: 10px 12px;
    font-size: 14px;
  }
  .info-card {
    padding: 20px;
}

.info-card h3 {
    font-size: 1.1rem;
}

.info-card p {
    font-size: 0.95rem;
    color: #666;
}

}
/* ===== OVERRIDES (paste at very bottom) ===== */

/* Page centering */
.page{
  max-width: 1040px;
  margin: 0 auto;
  padding: 32px 20px;
}

/* Headings (use clamp, override fixed 44px h1) */
h1{
  font-size: clamp(2.2rem, 3.4vw, 3.2rem);
  line-height: 1.05;
  margin: 18px 0 12px;
  letter-spacing: -0.02em;
}

h2{
  font-size: 1.35rem;
  margin: 10px 0 14px;
}

/* Cards layout */
.cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

/* Card sizing + reduce "heavy" feel */
.card{
  background: #fff;
  border: 1px solid #e6e8ee;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  min-height: 180px;
}

/* Titles & text inside cards */
.card-title{
  font-size: 17px;
  margin: 0 0 6px;
}

.card-desc, .card p{
  color: #666;
  font-size: 0.95rem;
  line-height: 1.35;
}

/* CTA button (your actual button class) */
.card-cta{
  margin-top: auto;
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.card-cta:hover{
  opacity: 0.92;
}

/* Responsive */
@media (max-width: 980px){
  .cards{ grid-template-columns: 1fr; }
  .page{ padding: 22px 16px; }
}

@media (max-width: 480px){
  .cards{ gap: 12px; }
  .card{
    padding: 14px;
    min-height: auto;
  }
}
h1 {
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}
.cta-after-video{
  margin: 32px auto;
  text-align: center;
}

.cta-text{
  font-size: 1rem;
  margin-bottom: 12px;
  color: #555;
}

.cta-primary{
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.cta-primary:hover{
  background: #222;
}

