/* =========================================================
   Svensons Hälsocenter – modern rebuild
   Färgschema: grönt #7eba27 + teal #7EBEC5
   ========================================================= */

:root {
  --green:        #7eba27;
  --green-dark:   #6aa01f;
  --green-light:  #92cc63;
  --green-soft:   #eef6e1;
  --teal:         #7ebec5;
  --teal-dark:    #5da4ac;
  --teal-soft:    #e6f3f5;
  --ink:          #23262a;
  --ink-2:        #363839;
  --bg:           #ffffff;
  --bg-soft:      #f6f9f1;
  --muted:        #6c7480;
  --line:         #e7ebe2;
  --white:        #ffffff;

  --radius:       18px;
  --radius-lg:    28px;
  --radius-sm:    12px;
  --shadow-sm:    0 2px 10px rgba(35,38,42,.06);
  --shadow:       0 14px 40px rgba(35,38,42,.10);
  --shadow-lg:    0 30px 70px rgba(35,38,42,.16);
  --shadow-green: 0 16px 36px rgba(126,186,39,.30);

  --maxw:         1180px;
  --ease:         cubic-bezier(.16,.8,.3,1);

  --font-head: "Outfit", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.1; font-weight: 700; color: var(--ink); }

/* ---------- layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--soft { background: var(--bg-soft); }
.section--ink { background: var(--ink-2); color: #d9ddd6; }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  font-size: .78rem; color: var(--green-dark);
  background: var(--green-soft);
  padding: 7px 16px; border-radius: 100px; margin-bottom: 18px;
}
.section--ink .eyebrow { background: rgba(126,186,39,.16); color: var(--green-light); }
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

.section-title { font-size: clamp(2rem, 4vw, 3.1rem); letter-spacing: -.02em; margin-bottom: 18px; }
.section-title--sm { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.section-lead { font-size: 1.12rem; color: var(--muted); max-width: 60ch; }
.section--ink .section-lead { color: #b9c0b6; }
.text-center { text-align: center; }
.text-center .section-lead { margin-inline: auto; }
.head-block { max-width: 64ch; margin-bottom: 54px; }
.head-block.text-center { margin-inline: auto; }

.grad-text {
  background: linear-gradient(100deg, var(--green) 0%, var(--teal-dark) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 15px 30px; border-radius: 100px; cursor: pointer;
  border: 2px solid transparent; transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary { background: var(--green); color: #fff; box-shadow: var(--shadow-green); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 22px 44px rgba(126,186,39,.42); background: var(--green-dark); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--green); color: var(--green-dark); }
.btn--white { background: #fff; color: var(--ink); }
.btn--white:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn--teal { background: var(--teal-dark); color: #fff; }
.btn--teal:hover { transform: translateY(-3px); background: var(--teal); box-shadow: 0 22px 44px rgba(94,164,172,.4); }
.btn--lg { padding: 18px 38px; font-size: 1.08rem; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding: 18px 0;
}
.header.scrolled {
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 6px 24px rgba(35,38,42,.07);
  padding: 10px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 44px; height: 44px; border-radius: 50%; box-shadow: 0 4px 14px rgba(126,186,39,.3); }
.brand-text { font-family: var(--font-head); font-weight: 700; font-size: 1.18rem; line-height: 1; color: #fff; transition: color .4s; }
.brand-text small { display: block; font-size: .62rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; opacity: .8; margin-top: 4px; }
.header.scrolled .brand-text { color: var(--ink); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: var(--font-head); font-weight: 500; font-size: .98rem; color: #fff;
  padding: 9px 15px; border-radius: 100px; transition: color .25s, background .25s; position: relative;
}
.header.scrolled .nav-links a { color: var(--ink-2); }
.nav-links a:hover { color: var(--green); }
.header.scrolled .nav-links a:hover { background: var(--green-soft); color: var(--green-dark); }
.nav-links a.active { color: var(--green); }
.header.scrolled .nav-links a.active { background: var(--green-soft); color: var(--green-dark); }
.nav-cta { margin-left: 8px; }
.nav-actions { display: flex; align-items: center; gap: 12px; }

.burger {
  display: none; width: 46px; height: 46px; border-radius: 12px; border: none; cursor: pointer;
  background: rgba(255,255,255,.14); position: relative;
}
.header.scrolled .burger { background: var(--green-soft); }
.burger span { position: absolute; left: 12px; right: 12px; height: 2.5px; background: #fff; border-radius: 3px; transition: .3s var(--ease); }
.header.scrolled .burger span { background: var(--ink); }
.burger span:nth-child(1) { top: 16px; } .burger span:nth-child(2) { top: 22px; } .burger span:nth-child(3) { top: 28px; }
body.menu-open .burger span:nth-child(1) { top: 22px; transform: rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--ink-2);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 6px;
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu a { font-family: var(--font-head); font-weight: 600; font-size: 1.7rem; color: #fff; padding: 12px; transition: color .25s, transform .25s; }
.mobile-menu a:hover { color: var(--green-light); }
.mobile-menu .btn { margin-top: 18px; font-size: 1.1rem; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 22s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1.06) translate(0,0); } to { transform: scale(1.16) translate(-2%, -2%); } }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(35,38,42,.86) 0%, rgba(35,38,42,.55) 46%, rgba(94,164,172,.32) 100%);
}
.hero-inner { padding-top: 120px; padding-bottom: 48px; max-width: 760px; margin-top: auto; }
.hero h1 { font-size: clamp(2.7rem, 7vw, 5.4rem); letter-spacing: -.025em; color: #fff; margin-bottom: 22px; }
.hero h1 .grad-text { background: linear-gradient(100deg, var(--green-light), var(--teal)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p { font-size: 1.22rem; max-width: 54ch; color: #e7ebe2; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  padding: 8px 18px; border-radius: 100px; font-size: .9rem; font-weight: 500; backdrop-filter: blur(6px);
}
.hero-badge .heart { color: var(--green-light); }

.hero-stats {
  position: relative; z-index: 1; margin-top: auto; width: 100%;
  background: rgba(255,255,255,.08); border-top: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(10px);
}
.hero-stats .container { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; padding-block: 22px; }
.hero-stats .stat { text-align: center; }
.hero-stats .stat b { font-family: var(--font-head); font-size: clamp(1.5rem,3vw,2.2rem); display: block; color: #fff; }
.hero-stats .stat span { font-size: .82rem; letter-spacing: .04em; color: #dfe4db; text-transform: uppercase; }

.scroll-cue { display: none; }
.scroll-cue-x { position: absolute; left: 50%; bottom: 110px; transform: translateX(-50%); z-index: 2; opacity: .85; }
.scroll-cue span { display: block; width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.7); border-radius: 14px; position: relative; }
.scroll-cue span::after { content: ""; position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; background: #fff; border-radius: 3px; transform: translateX(-50%); animation: scrolldot 1.6s infinite; }
@keyframes scrolldot { 0% { opacity: 0; top: 7px; } 40% { opacity: 1; } 80% { opacity: 0; top: 22px; } }

/* secondary page hero */
.page-hero { position: relative; padding: 170px 0 80px; color: #fff; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, var(--ink-2) 0%, #2c3a3c 60%, var(--teal-dark) 130%); }
.page-hero::after { content: ""; position: absolute; right: -120px; top: -120px; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(126,186,39,.4), transparent 65%); z-index: -1; }
.page-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); color: #fff; letter-spacing: -.02em; margin-bottom: 16px; }
.page-hero p { font-size: 1.15rem; color: #d8ddd4; max-width: 60ch; }
.breadcrumb { font-size: .9rem; color: #aeb6ab; margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--green-light); }

/* =========================================================
   CARDS / GRIDS
   ========================================================= */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: transparent; }
.card .ico {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: var(--green-soft); color: var(--green-dark); margin-bottom: 20px;
}
.card .ico svg { width: 28px; height: 28px; }
.card.teal .ico { background: var(--teal-soft); color: var(--teal-dark); }
.card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 1rem; }

/* feature gym card with image */
.gym-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 440px;
  display: flex; align-items: flex-end; color: #fff; box-shadow: var(--shadow);
  transition: transform .5s var(--ease); isolation: isolate; background: var(--ink);
}
.gym-card:hover { transform: translateY(-8px); }
.gym-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .8s var(--ease); }
.gym-card:hover img { transform: scale(1.07); }
.gym-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(20,22,24,.92) 8%, rgba(20,22,24,.45) 55%, rgba(20,22,24,.15) 100%); }
.gym-card .inner { padding: 34px; width: 100%; position: relative; z-index: 2; }
.gym-card .tag { display: inline-block; background: var(--green); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .8rem; letter-spacing: .05em; padding: 6px 14px; border-radius: 100px; margin-bottom: 14px; }
.gym-card.teal .tag { background: var(--teal-dark); }
.gym-card h3 { font-size: 1.9rem; color: #fff; margin-bottom: 14px; }
.gym-card ul { display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.gym-card li { display: flex; gap: 10px; align-items: flex-start; color: #e7ebe2; font-size: 1rem; }
.gym-card li svg { flex: none; width: 20px; height: 20px; color: var(--green-light); margin-top: 3px; }

/* split / two column */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.split-media .float-card {
  position: absolute; bottom: -26px; right: -16px; background: #fff; border-radius: var(--radius);
  padding: 20px 24px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 14px; max-width: 250px;
}
.split-media .float-card .num { font-family: var(--font-head); font-weight: 700; font-size: 2rem; color: var(--green); line-height: 1; }
.split-media .float-card small { color: var(--muted); font-size: .85rem; }
.media-frame { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.media-frame::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.4); border-radius: inherit; mix-blend-mode: overlay; pointer-events: none; }

.check-list { display: grid; gap: 14px; margin: 26px 0; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1.05rem; }
.check-list li .chk { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--green-soft); color: var(--green-dark); display: grid; place-items: center; margin-top: 2px; }
.check-list li .chk svg { width: 15px; height: 15px; }

/* =========================================================
   OPENING HOURS
   ========================================================= */
.hours-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; border: 1px solid var(--line); }
.hours-head { background: linear-gradient(120deg, var(--ink-2), #2c3a3c); color: #fff; padding: 26px 30px; }
.hours-head h3 { color: #fff; font-size: 1.4rem; }
.hours-head p { color: #c9cfc6; font-size: .95rem; margin-top: 4px; }
.hours-tag { display: inline-block; margin-top: 14px; background: var(--green); color: #fff; font-weight: 600; font-family: var(--font-head); font-size: .85rem; padding: 6px 14px; border-radius: 100px; }
.hours-list { padding: 12px 30px 24px; }
.hours-list .row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.hours-list .row:last-child { border-bottom: none; }
.hours-list .row span:first-child { font-weight: 600; font-family: var(--font-head); }
.hours-list .row span:last-child { color: var(--muted); }
.hours-list .row.muted span:last-child { color: var(--teal-dark); font-style: italic; }

/* =========================================================
   PRICING
   ========================================================= */
.price-toggle { display: inline-flex; background: var(--green-soft); padding: 6px; border-radius: 100px; margin: 0 auto 44px; gap: 4px; }
.price-toggle button { border: none; background: transparent; font-family: var(--font-head); font-weight: 600; font-size: .98rem; color: var(--green-dark); padding: 11px 24px; border-radius: 100px; cursor: pointer; transition: .3s var(--ease); }
.price-toggle button.active { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }

.price-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 26px; max-width: 860px; margin-inline: auto; }
.price-grid > .price-card:last-child:nth-child(odd) { grid-column: 1 / -1; max-width: 417px; width: 100%; margin-inline: auto; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 30px; display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s var(--ease); position: relative; }
.price-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.price-card.featured { border: 2px solid var(--green); box-shadow: var(--shadow-green); }
.price-card .ribbon { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--green); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .78rem; letter-spacing: .05em; padding: 6px 18px; border-radius: 100px; white-space: nowrap; }
.price-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.price-card .sub { color: var(--muted); font-size: .92rem; margin-bottom: 22px; min-height: 40px; }
.price-card .price { font-family: var(--font-head); font-weight: 800; font-size: 3rem; color: var(--ink); line-height: 1; letter-spacing: -.02em; }
.price-card .price small { font-size: 1rem; font-weight: 500; color: var(--muted); }
.price-card .plist { display: grid; gap: 11px; margin: 24px 0 28px; }
.price-card .plist li { display: flex; gap: 10px; font-size: .98rem; color: #4a5158; }
.price-card .plist li svg { flex: none; width: 19px; height: 19px; color: var(--green); margin-top: 3px; }
.price-card .btn { margin-top: auto; }

/* price table */
.price-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm); -webkit-overflow-scrolling: touch; }
table.price-table { width: 100%; border-collapse: collapse; min-width: 560px; background: #fff; }
table.price-table.simple { min-width: 0; }
.price-table th, .price-table td { padding: 16px 18px; text-align: center; border-bottom: 1px solid var(--line); }
.price-table thead th { background: var(--ink-2); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .92rem; }
.price-table thead th:first-child { text-align: left; border-top-left-radius: 0; }
.price-table tbody th { text-align: left; font-family: var(--font-head); font-weight: 600; color: var(--ink); background: var(--bg-soft); }
.price-table tbody tr:hover td { background: var(--green-soft); }
.price-table tbody tr:last-child td, .price-table tbody tr:last-child th { border-bottom: none; }
.price-note { font-size: .9rem; color: var(--muted); margin-top: 14px; }

/* =========================================================
   CLASSES (pass)
   ========================================================= */
.class-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.class-filters button { border: 1.5px solid var(--line); background: #fff; font-family: var(--font-head); font-weight: 500; font-size: .92rem; padding: 9px 20px; border-radius: 100px; cursor: pointer; color: var(--ink-2); transition: .25s var(--ease); }
.class-filters button:hover { border-color: var(--green); color: var(--green-dark); }
.class-filters button.active { background: var(--green); border-color: var(--green); color: #fff; }

.class-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: transform .4s var(--ease), box-shadow .4s var(--ease); display: flex; flex-direction: column; }
.class-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.class-card .cat { display: inline-block; align-self: flex-start; font-family: var(--font-head); font-weight: 600; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; margin-bottom: 14px; }
.cat.styrka { background: #fdecdf; color: #c4652a; }
.cat.kondition { background: #ffe0e3; color: #c43b50; }
.cat.rorlighet { background: var(--teal-soft); color: var(--teal-dark); }
.cat.yoga { background: #ece4f7; color: #7e57c2; }
.class-card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.class-card p { color: var(--muted); font-size: .98rem; flex-grow: 1; }

/* schedule */
.sched-day { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.sched-day h4 { background: var(--green-soft); color: var(--green-dark); padding: 14px 20px; font-size: 1.05rem; }
.sched-day .slot { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; padding: 13px 20px; border-top: 1px solid var(--line); align-items: center; }
.sched-day .slot .t { font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--ink); white-space: nowrap; }
.sched-day .slot .n { font-size: .98rem; }
.sched-day .slot .s { font-size: .8rem; color: var(--muted); background: var(--bg-soft); padding: 3px 9px; border-radius: 8px; white-space: nowrap; }
.sched-day .empty { padding: 18px 20px; color: var(--muted); font-size: .92rem; font-style: italic; }

/* =========================================================
   TEAM
   ========================================================= */
.team-card { text-align: center; }
.team-card .avatar { width: 110px; height: 110px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 2.4rem; color: #fff; box-shadow: var(--shadow-sm); }
.team-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.team-card .role { color: var(--green-dark); font-family: var(--font-head); font-weight: 600; font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 12px; }
.team-card p { color: var(--muted); font-size: .96rem; }
.team-card .mail { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: .88rem; color: var(--teal-dark); font-weight: 500; }
.team-card .mail:hover { color: var(--green-dark); }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band { position: relative; border-radius: var(--radius-lg); overflow: hidden; padding: clamp(48px, 7vw, 80px); color: #fff; text-align: center; }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(115deg, var(--green) 0%, var(--green-dark) 45%, var(--teal-dark) 120%); }
.cta-band::after { content: ""; position: absolute; right: -80px; bottom: -80px; width: 340px; height: 340px; border-radius: 50%; background: rgba(255,255,255,.12); z-index: -1; }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.92); font-size: 1.15rem; max-width: 56ch; margin: 0 auto 30px; }
.cta-band .hero-actions { justify-content: center; }

.provtra-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 44px; text-align: center; border: 1px solid var(--line); position: relative; overflow: hidden; }
.provtra-card::before { content: ""; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; background: var(--green-soft); z-index: 0; }
.provtra-card > * { position: relative; z-index: 1; }
.provtra-card .big { font-family: var(--font-head); font-weight: 800; font-size: clamp(3rem,7vw,4.6rem); color: var(--green); line-height: 1; letter-spacing: -.02em; }
.provtra-card .big small { font-size: 1.1rem; color: var(--muted); font-weight: 500; }

/* =========================================================
   GOOGLE-RECENSIONER
   (data från assets/data/reviews.json, fylls av main.js)
   ========================================================= */
:root { --star: #f5b400; }
.stars { display: inline-flex; gap: 3px; }
.stars svg { width: 20px; height: 20px; color: var(--star); }
.stars svg.off { color: var(--line); }

/* hero-bricka */
.hero-badge { vertical-align: middle; }
.hero-badge--google { background: rgba(255,255,255,.94); color: var(--ink); border-color: transparent; padding-left: 10px; margin-left: 10px; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease); }
.hero-badge--google:hover { transform: translateY(-2px); }
.hero-badge--google .g { width: 22px; height: 22px; flex: none; }
.hero-badge--google .stars svg { width: 15px; height: 15px; }
.hero-badge--google b { font-family: var(--font-head); font-weight: 700; font-size: 1rem; }
.hero-badge--google small { color: var(--muted); font-size: .84rem; }

/* sektion */
.reviews { display: grid; grid-template-columns: 340px 1fr; gap: 34px; align-items: start; }
.review-summary { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 30px; box-shadow: var(--shadow); position: sticky; top: 90px; }
.review-summary .src { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--ink-2); margin-bottom: 22px; }
.review-summary .src .g { width: 26px; height: 26px; }
.review-summary .big { font-family: var(--font-head); font-weight: 800; font-size: 4.4rem; line-height: 1; letter-spacing: -.03em; color: var(--ink); font-variant-numeric: tabular-nums; }
.review-summary .big small { font-size: 1.3rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.review-summary .stars { margin: 12px 0 8px; }
.review-summary .stars svg { width: 22px; height: 22px; }
.review-summary .count { color: var(--muted); font-size: .95rem; margin-bottom: 26px; }
.review-summary .btn { width: 100%; }
.review-summary .btn + .btn { margin-top: 10px; }
.review-summary .btn svg { width: 18px; height: 18px; }
.review-summary .updated { display: block; margin-top: 16px; font-size: .78rem; color: var(--muted); text-align: center; }

.review-track { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; gap: 14px; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s; }
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.review-card .who { display: flex; align-items: center; gap: 12px; }
.review-card .avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 1.05rem; flex: none; background: var(--green); overflow: hidden; }
.review-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-card .name { font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--ink); line-height: 1.2; }
.review-card .date { font-size: .82rem; color: var(--muted); }
.review-card .g { width: 20px; height: 20px; margin-left: auto; flex: none; }
.review-card .stars svg { width: 17px; height: 17px; }
.review-card p { color: #4a5158; font-size: .98rem; line-height: 1.6; }
.review-card p::before, .review-card p::after { color: var(--green); font-family: var(--font-head); font-weight: 800; }
.review-card p::before { content: "“"; }
.review-card p::after { content: "”"; }
.review-card.wide { grid-column: 1 / -1; }
.review-more { grid-column: 1 / -1; display: flex; justify-content: flex-end; align-items: center; gap: 14px; flex-wrap: wrap; font-size: .9rem; color: var(--muted); padding-top: 4px; }
.review-more a { color: var(--teal-dark); font-weight: 500; display: inline-flex; align-items: center; gap: 6px; }
.review-more a:hover { color: var(--green-dark); }
.review-more a svg { width: 16px; height: 16px; }

/* sidfot */
.google-strip { display: inline-flex; align-items: center; gap: 12px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 12px 16px; margin-top: 18px; color: #fff; transition: .3s var(--ease); }
.google-strip:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); color: #fff; }
.google-strip .g { width: 24px; height: 24px; flex: none; }
.google-strip .stars svg { width: 15px; height: 15px; }
.google-strip b { font-family: var(--font-head); font-size: 1.05rem; }
.google-strip small { display: block; color: #98a094; font-size: .8rem; }

@media (max-width: 980px) {
  .reviews { grid-template-columns: 1fr; }
  .review-summary { position: static; }
}
@media (max-width: 620px) {
  .review-track { grid-template-columns: 1fr; }
  .review-card.wide { grid-column: auto; }
  .hero-badge--google { margin-left: 0; margin-top: -14px; }
  .hero-badge--google small { display: none; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--ink); color: #b7beb1; padding: 72px 0 30px; }
.footer a:hover { color: var(--green-light); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; }
.footer .brand-text { color: #fff; }
.footer-col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 18px; }
.footer-col p, .footer-col li { font-size: .96rem; margin-bottom: 10px; line-height: 1.6; }
.footer-col .lead { color: #98a094; margin: 16px 0 20px; max-width: 34ch; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact svg { flex: none; width: 19px; height: 19px; color: var(--green-light); margin-top: 3px; }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: .3s var(--ease); }
.socials a:hover { background: var(--green); transform: translateY(-3px); }
.socials svg { width: 20px; height: 20px; color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .88rem; color: #8b9387; }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg img { animation: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: block; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media .float-card { right: 16px; }
  /* Hero: lägg statistik-fältet i normalt flöde så det inte överlappar knapparna */
  .hero { min-height: auto; display: block; }
  .hero-inner { padding-top: 130px; padding-bottom: 40px; }
  .hero-actions { gap: 12px; }
  .hero-actions .btn { flex: 1 1 auto; }
  .hero-stats { position: static; background: rgba(35,38,42,.55); border-top: none; }
  .hero-stats .container { grid-template-columns: repeat(2,1fr); gap: 18px 12px; padding-block: 26px; }
  .scroll-cue { display: none; }
}
@media (max-width: 760px) {
  /* Prisrutorna i en kolumn på mobil – annars blir de hoptryckta */
  .price-grid { grid-template-columns: 1fr; gap: 20px; max-width: 440px; }
  .price-grid > .price-card:last-child:nth-child(odd) { grid-column: auto; max-width: none; width: auto; }
  /* Prisväxlaren: full bredd, jämna knappar, inget klipp */
  .price-toggle { display: flex; width: 100%; flex-wrap: wrap; gap: 6px; }
  .price-toggle button { flex: 1 1 auto; padding: 11px 12px; font-size: .92rem; white-space: nowrap; }
  /* Direktbetalning: tabellpar staplas */
  .grid.grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .section { padding: 56px 0; }
  .card, .price-card, .provtra-card { padding: 26px; }
  .hero-inner { padding-top: 110px; }
  .head-block { margin-bottom: 36px; }
  /* Kompaktare breda tabeller på liten skärm (scrollar i sidled vid behov) */
  .price-table th, .price-table td { padding: 12px 12px; font-size: .92rem; }
  .price-table thead th { font-size: .8rem; white-space: nowrap; }
  table.price-table { min-width: 470px; }
  table.price-table.simple { min-width: 0; }
  /* Fade-hint på höger kant att den breda tabellen går att svepa i sidled */
  .price-table-wrap.wide { position: relative; }
  .price-table-wrap.wide::after {
    content: ""; position: absolute; top: 0; right: 0; width: 34px; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,.92));
    pointer-events: none; border-radius: 0 var(--radius) var(--radius) 0;
  }
}

/* =========================================================
   GYM I BORÅS – lokal info + FAQ
   ========================================================= */
.local-info { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(28px, 5vw, 64px); align-items: start; margin-bottom: 64px; }
.local-info .prose { color: var(--ink-2); font-size: 1.06rem; }
.local-info .prose p + p { margin-top: 14px; }
.local-facts { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 28px; position: sticky; top: 100px; }
.local-facts h3 { font-size: 1.2rem; margin-bottom: 14px; }
.local-facts dl { display: grid; grid-template-columns: auto 1fr; gap: 10px 16px; font-size: .96rem; }
.local-facts dt { font-family: var(--font-head); font-weight: 600; color: var(--ink); white-space: nowrap; }
.local-facts dd { color: var(--muted); }
.local-facts dd a { color: var(--green-dark); }
.faq { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: box-shadow .3s var(--ease), border-color .3s; }
.faq details[open] { box-shadow: var(--shadow); border-color: transparent; }
.faq summary { cursor: pointer; list-style: none; padding: 20px 56px 20px 24px; font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; position: relative; line-height: 1.35; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 24px; top: 50%; width: 10px; height: 10px; border-right: 2px solid var(--green-dark); border-bottom: 2px solid var(--green-dark); transform: translateY(-70%) rotate(45deg); transition: transform .3s var(--ease); }
.faq details[open] summary { color: var(--green-dark); }
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq .faq-body { padding: 0 24px 22px; color: var(--ink-2); }
.faq .faq-body p + p { margin-top: 10px; }
.faq .faq-body a { color: var(--green-dark); text-decoration: underline; }
@media (max-width: 860px) {
  .local-info { grid-template-columns: 1fr; margin-bottom: 48px; }
  .local-facts { position: static; }
}
@media (max-width: 620px) {
  .local-facts dl { grid-template-columns: 1fr; gap: 4px 0; }
  .local-facts dt { margin-top: 10px; }
}
