/* =========================================================
   GLOWGYM V2 – GEMENSAM STIL
   ========================================================= */

:root {
    --bg: #060507;
    --bg-soft: #110811;
    --text: #ffffff;
    --muted: #d9cbd4;
    --accent: #ff6aa2;
    --accent-strong: #ff1493;
    --stroke: rgba(255, 106, 162, 0.32);
    --card: rgba(255, 255, 255, 0.065);
    --radius: 18px;
    --max-width: 1280px;
    --header-height: 105px;
    --shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
}

/* Grundinställningar */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background:
        radial-gradient(circle at 12% 8%, rgba(255, 106, 162, 0.22), transparent 30%),
        radial-gradient(circle at 88% 22%, rgba(255, 20, 147, 0.13), transparent 30%),
        linear-gradient(145deg, #050405 0%, #10070e 45%, #1b0915 100%);
    background-attachment: fixed;
}

img,
video {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 950px;
    margin-bottom: 22px;
    font-size: clamp(3rem, 6.1vw, 6.6rem);
    line-height: 0.97;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

h1 span {
    color: var(--accent);
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 4.1rem);
    line-height: 1;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(255, 106, 162, 0.09);
}

h3 {
    font-size: 1.45rem;
}

.container {
    width: min(var(--max-width), calc(100% - 40px));
    margin-inline: auto;
}

/* =========================================================
   HEADER OCH MENY
   ========================================================= */
.header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 106, 162, 0.28);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.08));
    transition: 0.25s ease;
}

.header.isScrolled {
    position: fixed;
    background: linear-gradient(90deg, rgba(5, 4, 5, 0.97), rgba(28, 8, 21, 0.96));
    backdrop-filter: blur(14px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
}

/* =========================================================
   HEADER - FASTA POSITIONER
   ========================================================= */

.header__inner {
    position: relative;

    width: 1280px;
    max-width: calc(100% - 40px);

    height: var(--header-height);
    min-height: var(--header-height);

    margin: 0 auto;

    display: flex;
    align-items: center;
}


/* =========================
   LOGGA
   ========================= */

.brand {
    position: absolute;
    left: 0;
    top: 50%;

    display: flex;
    align-items: center;

    width: 230px;

    transform: translateY(-50%);

    text-decoration: none;
}


.logo {
    display: block;

    width: 150px;
    height: auto;

    max-width: none;

    transform: scale(2);
    transform-origin: left center;

    transition: transform 0.25s ease;
}


.logo:hover {
    transform: scale(2.05);
}


/* =========================
   MENY
   ========================= */

.nav {
    position: absolute;
    right: 0;
    top: 50%;

    display: flex;
    align-items: center;

    gap: 18px;

    transform: translateY(-50%);
}


.nav a {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #ffffff;
    text-decoration: none;

    font-size: 0.95rem;
    font-weight: 900;

    line-height: 1;

    letter-spacing: 0.045em;
    text-transform: uppercase;

    white-space: nowrap;
}


.nav a:hover,
.nav a.active,
.navShop {
    color: var(--accent);
}
.nav a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -7px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--accent-strong));
    transition: right 0.22s ease;
}
/* BLI MEDLEM */

.nav .btn {
    white-space: nowrap;
    flex-shrink: 0;
}

.nav a:not(.btn):hover::after,
.nav a.active:not(.btn)::after {
    right: 0;
}

.navToggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.navToggle span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 6px auto;
    background: #ffffff;
}

/* =========================================================
   KNAPPAR
   ========================================================= */
.btn {
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-weight: 950;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    box-shadow: 0 12px 30px rgba(255, 20, 147, 0.22);
    transition: 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow: 0 16px 38px rgba(255, 20, 147, 0.32);
}

.btn--small {
    min-height: 44px;
    padding-inline: 17px;
    font-size: 0.78rem;
}

.btn--ghost {
    border-color: rgba(255, 106, 162, 0.48);
    background: rgba(255, 106, 162, 0.065);
}

.btn--ghost:hover {
    background: rgba(255, 106, 162, 0.14);
}

.btn--block {
    width: 100%;
}

/* =========================================================
   STARTSIDANS VIDEO
   ========================================================= */

.videoHero {
    position: relative;

    min-height: calc(100vh - var(--header-height));

    display: flex;
    align-items: center;

    overflow: hidden;

    padding: 70px 0 90px;

    border-bottom: 1px solid rgba(255, 106, 162, 0.28);

    background: #080808;
}


/* VIDEON I BAKGRUND */

.videoHero__video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center 50%;

    z-index: 0;
}


/* MÖRK TONING OVANPÅ VIDEON */

.videoHero__overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        radial-gradient(
            circle at 78% 35%,
            rgba(255, 20, 147, 0.12),
            transparent 40%
        ),
        linear-gradient(
            to right,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(5, 0, 4, 0.70) 45%,
            rgba(15, 0, 10, 0.40) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.12),
            rgba(0, 0, 0, 0.12) 60%,
            rgba(0, 0, 0, 0.70)
        );
}


/* TEXT, KNAPPAR OCH ERBJUDANDE */

.videoHero__content {
    position: relative;
    z-index: 2;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.heroText {
    max-width: 700px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.12rem;
}

.heroButtons,
.buttonRow {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.scrollHint {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 17px;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.scrollHint span {
    display: block;
    color: var(--accent);
    font-size: 1.2rem;
}

/* =========================================================
   SEKTIONER OCH LAYOUT
   ========================================================= */
.section {
    position: relative;
    padding: 88px 0;
}

.section:nth-of-type(even) {
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 106, 162, 0.11), transparent 32%),
        linear-gradient(135deg, rgba(17, 7, 14, 0.94), rgba(35, 9, 26, 0.82));
}

.section--dark {
    border-top: 1px solid rgba(255, 106, 162, 0.15);
    border-bottom: 1px solid rgba(255, 106, 162, 0.15);
    background:
        radial-gradient(circle at 85% 20%, rgba(255, 20, 147, 0.17), transparent 34%),
        radial-gradient(circle at 10% 80%, rgba(255, 106, 162, 0.11), transparent 34%),
        linear-gradient(135deg, #090608, #210b19);
}

.section--contact {
    background:
        radial-gradient(circle at 78% 20%, rgba(255, 20, 147, 0.2), transparent 38%),
        linear-gradient(135deg, #0b070a, #260b1c);
}

.introGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.introText {
    color: var(--muted);
    font-size: 1.08rem;
}

.textLink {
    color: var(--accent);
    font-weight: 900;
    text-decoration: none;
}

.featureGrid,
.cards3,
.pricingGrid,
.valuesGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.valuesGrid {
    grid-template-columns: repeat(4, 1fr);
}

.splitSection {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 52px;
    align-items: center;
}

.splitContent p,
.featureCard p,
.infoCard p,
.classCard p,
.priceCard li,
.sectionHead p {
    color: var(--muted);
}

.splitContent p {
    font-size: 1.06rem;
}

.sectionHead {
    max-width: 720px;
    margin-bottom: 34px;
}

/* =========================================================
   KORT OCH PANELER
   ========================================================= */
.featureCard,
.infoCard,
.classCard,
.priceCard,
.contactForm,
.notice {
    padding: 28px;
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 106, 162, 0.035));
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.featureCard:hover,
.infoCard:hover,
.classCard:hover,
.priceCard:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 106, 162, 0.68);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.35), 0 0 35px rgba(255, 106, 162, 0.14);
}

.featureNumber,
.classCard > span {
    color: var(--accent);
    font-weight: 950;
    letter-spacing: 0.14em;
}

.imagePanel {
    min-height: 440px;
    overflow: hidden;
    border: 1px solid rgba(255, 106, 162, 0.4);
    border-radius: var(--radius);
    background: linear-gradient(135deg, #1d0e18, #3a1227);
    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.35), 0 0 35px rgba(255, 106, 162, 0.1);
}

.imagePanel img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
}

.shopBanner {
    padding: 70px 0;
    border-top: 1px solid rgba(255, 106, 162, 0.35);
    border-bottom: 1px solid rgba(255, 106, 162, 0.35);
    background:
        radial-gradient(circle at 14% 50%, rgba(255, 106, 162, 0.3), transparent 35%),
        radial-gradient(circle at 88% 30%, rgba(255, 20, 147, 0.2), transparent 34%),
        linear-gradient(135deg, #180812, #3a0d29 48%, #10070d);
}

.shopBanner__inner,
.contactStrip,
.ctaPanel,
.scheduleBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.contactStrip,
.ctaPanel,
.scheduleBox {
    padding: 36px;
    border: 1px solid rgba(255, 106, 162, 0.34);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 90% 10%, rgba(255, 20, 147, 0.16), transparent 35%),
        linear-gradient(135deg, rgba(255, 106, 162, 0.11), rgba(255, 255, 255, 0.025));
    box-shadow: var(--shadow);
}

.shopBanner h2,
.contactStrip h2,
.ctaPanel h2 {
    margin-bottom: 10px;
}

/* =========================================================
   UNDERSIDORNAS TOPPSEKTION
   ========================================================= */
.pageHero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: flex-end;
    padding: calc(var(--header-height) + 95px) 0 75px;
    border-bottom: 1px solid rgba(255, 106, 162, 0.28);
    background-position: center;
    background-size: cover;
}

.pageHero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 35%, rgba(255, 20, 147, 0.18), transparent 38%),
        linear-gradient(to right, rgba(0, 0, 0, 0.92), rgba(35, 6, 25, 0.55), rgba(255, 20, 147, 0.08)),
        linear-gradient(to top, rgba(14, 5, 11, 0.96), transparent 70%);
}

.pageHero .container {
    position: relative;
    z-index: 1;
}

.pageHero--about {
    background-image: url("images/om-oss-hero.jpg");
}

.pageHero--membership {
    background-image: url("images/medlemskap-hero.jpg");
}

.pageHero--classes {
    background-image: url("images/grupptraning-hero.jpg");
}

.pageHero--relax {
    background-image: url("images/relax-hero.jpg");
}

.pageHero--contact {
    background-image: url("images/kontakt-hero.jpg");
}

/* =========================================================
   MEDLEMSKAP OCH FAQ
   ========================================================= */
.pricingGrid {
    align-items: stretch;
}

.priceCard {
    position: relative;
    display: flex;
    flex-direction: column;
}

.priceCard--featured {
    border: 2px solid var(--accent);
    transform: translateY(-10px);
    background:
        radial-gradient(circle at 80% 5%, rgba(255, 20, 147, 0.2), transparent 36%),
        linear-gradient(145deg, rgba(255, 106, 162, 0.14), rgba(255, 255, 255, 0.055));
}

.popular {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--accent);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.priceTop {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.price {
    display: flex;
    align-items: end;
    gap: 8px;
    margin: 18px 0;
}

.price strong {
    font-size: 4.2rem;
    line-height: 0.8;
}

.price span {
    color: var(--muted);
}

.priceCard ul {
    flex: 1;
    margin-bottom: 28px;
    padding-left: 20px;
}

.faq {
    max-width: 900px;
}

.faqItem {
    margin-bottom: 12px;
    padding: 20px 18px;
    border: 1px solid rgba(255, 106, 162, 0.23);
    border-radius: 12px;
    background: rgba(255, 106, 162, 0.035);
}

.faqItem[open] {
    border-color: rgba(255, 106, 162, 0.58);
    background: rgba(255, 106, 162, 0.075);
}

.faqItem summary {
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 900;
}

.faqItem p {
    padding-top: 12px;
    color: var(--muted);
}

/* =========================================================
   GRUPPTRÄNING
   ========================================================= */
.tagRow {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tagRow b {
    padding: 7px 10px;
    border: 1px solid var(--stroke);
    border-radius: 999px;
    color: #ffd9e9;
    font-size: 0.75rem;
    background: rgba(255, 106, 162, 0.09);
}

.scheduleBox {
    align-items: flex-start;
}

.scheduleRows {
    min-width: min(100%, 580px);
}

.scheduleRows > div {
    display: grid;
    grid-template-columns: 1fr 0.6fr 1.2fr;
    gap: 16px;
    padding: 17px 0;
    border-bottom: 1px solid var(--stroke);
}

.scheduleRows span {
    color: var(--accent);
}

/* =========================================================
   KONTAKTSIDA
   ========================================================= */
.contactGrid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 44px;
}

.contactCards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 28px 0;
}

.contactCards article {
    padding: 20px;
    border: 1px solid rgba(255, 106, 162, 0.33);
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 106, 162, 0.04));
}

.contactCards span {
    display: block;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.contactForm {
    display: grid;
    gap: 8px;
}

.contactForm label {
    display: grid;
    gap: 8px;
    font-weight: 900;
}

.contactForm input,
.contactForm textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--stroke);
    border-radius: 10px;
    color: #ffffff;
    font: inherit;
    outline: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 106, 162, 0.035));
}

.contactForm input:focus,
.contactForm textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(255, 106, 162, 0.15);
}

.formError {
    min-height: 18px;
    color: #ff9ac4;
    font-weight: 800;
}

.formNote {
    color: var(--muted);
    font-size: 0.82rem;
}

.mapSection iframe {
    display: block;
    width: 100%;
    height: 430px;
    border: 0;
    filter: grayscale(0.25);
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    z-index: 100;
    transform: translateX(-50%);
    padding: 14px 20px;
    border: 1px solid var(--stroke);
    border-radius: 999px;
    background: #180c15;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    font-weight: 900;
}

.notice {
    max-width: 900px;
    margin: auto;
    background: rgba(255, 106, 162, 0.08);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    padding: 55px 0 22px;
    border-top: 1px solid rgba(255, 106, 162, 0.32);
    background:
        radial-gradient(circle at 15% 0%, rgba(255, 106, 162, 0.13), transparent 35%),
        linear-gradient(145deg, #040304, #160811);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 35px;
}

.footer h3 {
    margin-bottom: 10px;
    font-size: 1rem;
}

.footer p,
.footer a {
    color: var(--muted);
}

.footer__grid > div > a:not(.brand) {
    display: block;
    margin: 5px 0;
    text-decoration: none;
}

.footer a:hover {
    color: var(--accent);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 38px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom p {
    margin: 0;
}

/* =========================================================
   ANIMATIONER
   ========================================================= */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.isVisible {
    opacity: 1;
    transform: none;
}

[hidden] {
    display: none !important;
}

/* =========================================================
   RESPONSIV DESIGN
   ========================================================= */
@media (max-width: 600px) {
    .nav {
        gap: 13px;
    }

    .nav a {
        font-size: 0.74rem;
    }

    .featureGrid,
    .pricingGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .valuesGrid {
        grid-template-columns: repeat(2, 1fr);
    }
    .logo {
    height: 48px;
    max-width: 170px;
}
}

@media (max-width: 850px) {

    .header__inner {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .brand {
        position: static;
        width: auto;
        transform: none;
    }
    .navToggle {
        display: block;
    }

    .nav {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 20px;
        right: 20px;
        padding: 14px;
        flex-direction: column;
        align-items: stretch;
        border: 1px solid var(--stroke);
        border-radius: 14px;
        background:
            radial-gradient(circle at 90% 10%, rgba(255, 20, 147, 0.18), transparent 36%),
            rgba(13, 6, 11, 0.98);
        box-shadow: 0 24px 65px rgba(0, 0, 0, 0.5);
    }

    .nav.isOpen {
        display: flex;
    }

    .nav a {
        padding: 11px;
    }

    .nav a:not(.btn)::after {
        display: none;
    }

    .introGrid,
    .splitSection,
    .contactGrid {
        grid-template-columns: 1fr;
    }

    .cards3,
    .featureGrid,
    .pricingGrid {
        grid-template-columns: 1fr;
    }

    .priceCard--featured {
        transform: none;
    }

    .shopBanner__inner,
    .contactStrip,
    .ctaPanel,
    .scheduleBox {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .videoHero {
        min-height: 72vh;
    }

    .pageHero {
        min-height: 48vh;
    }
}

@media (max-width: 600px) {
    .container {
        width: min(100% - 28px, var(--max-width));
    }

    .section {
        padding: 62px 0;
    }

    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.15rem;
    }

    .videoHero {
        padding-bottom: 75px;
    }

    .contactCards,
    .valuesGrid,
    .footer__grid {
        grid-template-columns: 1fr;
    }

    .footer__bottom {
        flex-direction: column;
    }

    .scheduleRows {
        min-width: 100%;
    }

    .scheduleRows > div {
        grid-template-columns: 1fr;
    }

    .imagePanel,
    .imagePanel img {
        min-height: 320px;
    }
}
    /* =========================
   PROVVECKA POPUP
========================= */

.trialPopup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.trialPopup.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.trialPopup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(5px);
}

.trialPopup__box {
    position: relative;
    z-index: 2;

    width: min(520px, 100%);
    max-height: 90vh;
    overflow-y: auto;

    padding: 42px 38px;

    background:
        linear-gradient(
            145deg,
            rgba(38, 12, 27, 0.98),
            rgba(12, 5, 10, 0.99)
        );

    border: 1px solid rgba(235, 75, 153, 0.35);
    border-radius: 22px;

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.55),
        0 0 40px rgba(235, 75, 153, 0.08);

    color: #fff;
}

.trialPopup__close {
    position: absolute;
    top: 14px;
    right: 16px;

    width: 38px;
    height: 38px;

    border: 0;
    background: transparent;
    color: #fff;

    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.trialPopup__eyebrow {
    margin: 0 0 10px;

    color: #f45c9f;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.trialPopup h2 {
    margin: 0 0 14px;

    font-size: clamp(34px, 6vw, 54px);
    line-height: 0.95;
    text-transform: uppercase;
}

.trialPopup h2 span {
    display: block;
    color: #f45c9f;
}

.trialPopup__text {
    margin: 0 0 26px;

    color: rgba(255, 255, 255, 0.8);

    font-size: 16px;
    line-height: 1.6;
}

.trialPopup__form {
    display: grid;
    gap: 15px;
}

.trialPopup__form label {
    display: grid;
    gap: 7px;

    color: #fff;

    font-size: 13px;
    font-weight: 700;
}

.trialPopup__form input[type="text"],
.trialPopup__form input[type="tel"],
.trialPopup__form input[type="email"],
.trialPopup__form input[type="date"] {
    width: 100%;
    padding: 14px 15px;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;

    background: rgba(255, 255, 255, 0.06);
    color: #fff;

    outline: none;

    font: inherit;
}

.trialPopup__form input:focus {
    border-color: #f45c9f;
    box-shadow: 0 0 0 3px rgba(244, 92, 159, 0.1);
}

.trialPopup__form input::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.trialPopup__consent {
    grid-template-columns: auto 1fr !important;
    align-items: start;

    margin-top: 4px;

    font-weight: 400 !important;
    line-height: 1.4;
}

.trialPopup__consent input {
    margin-top: 3px;
}

.trialPopup__submit {
    margin-top: 5px;

    padding: 15px 18px;

    border: 0;
    border-radius: 10px;

    background: linear-gradient(135deg, #f45c9f, #d93483);
    color: #fff;

    font-weight: 900;
    letter-spacing: 0.04em;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.trialPopup__submit:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 28px rgba(244, 92, 159, 0.25);
}

.trialPopup__small {
    margin: 15px 0 0;

    text-align: center;

    color: rgba(255, 255, 255, 0.45);

    font-size: 12px;
}

@media (max-width: 600px) {
    .trialPopup__box {
        padding: 36px 22px 26px;
        border-radius: 16px;
    }

    .trialPopup h2 {
        font-size: 38px;
    }
}
/* =========================
   ERBJUDANDERAD UNDER MENYN
========================= */

.offerBar {
    position: relative;
    z-index: 40;

    width: 100%;

    /* Flytta raden under huvudmenyn */
    margin-top: var(--header-height);

    background:
        linear-gradient(
            90deg,
            #13070f,
            #3b1029 50%,
            #13070f
        );

    border-top: 1px solid rgba(255, 106, 162, 0.25);
    border-bottom: 1px solid rgba(255, 106, 162, 0.35);

    transform: translateY(-100%);
    opacity: 0;

    transition:
        transform 0.45s ease,
        opacity 0.45s ease;
}

.offerBar.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.offerBar__inner {
    width: min(1280px, calc(100% - 40px));
    min-height: 52px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;

    position: relative;
}

.offerBar__text {
    display: flex;
    align-items: center;
    gap: 12px;

    color: #fff;

    font-size: 0.95rem;
}

.offerBar__text strong {
    color: #ff6aa2;
    font-weight: 950;
    letter-spacing: 0.04em;
}

.offerBar__text span {
    color: rgba(255, 255, 255, 0.82);
}

.offerBar__button {
    min-height: 38px;
    padding: 0 17px;

    border: 1px solid #ff6aa2;
    border-radius: 7px;

    background: #ff6aa2;
    color: #fff;

    font-weight: 900;
    font-size: 0.78rem;

    cursor: pointer;

    transition: 0.2s ease;
}

.offerBar__button:hover {
    background: #ff1493;
    transform: translateY(-1px);
}

.offerBar__close {
    position: absolute;
    right: 0;

    border: 0;
    background: transparent;

    color: rgba(255, 255, 255, 0.7);

    font-size: 25px;

    cursor: pointer;
}

.offerBar__close:hover {
    color: #fff;
}

@media (max-width: 700px) {

    .offerBar__inner {
        padding: 10px 36px 10px 0;
        gap: 10px;
    }

    .offerBar__text {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;

        font-size: 0.78rem;
    }

    .offerBar__button {
        flex-shrink: 0;
        padding: 0 12px;
        font-size: 0.7rem;
    }
}
/* =========================================================
   HERO – STORT ÖPPNINGSERBJUDANDE
   ========================================================= */

.heroCampaign {
    width: min(760px, 100%);

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

    margin-top: 24px;
    padding: 20px 22px;

    border: 1px solid rgba(255, 106, 162, 0.55);
    border-radius: 14px;

    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(255, 106, 162, 0.16),
            transparent 45%
        ),
        linear-gradient(
            135deg,
            rgba(255, 106, 162, 0.10),
            rgba(255, 20, 147, 0.04)
        );

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.32),
        0 0 32px rgba(255, 106, 162, 0.10);
}


/* JUST NU */

.heroCampaign__badge {
    flex-shrink: 0;

    padding: 8px 11px;

    border-radius: 7px;

    background: linear-gradient(
        135deg,
        var(--accent),
        var(--accent-strong)
    );

    color: #ffffff;

    font-size: 0.7rem;
    font-weight: 950;

    letter-spacing: 0.06em;
}


/* 299 */

.heroCampaign__price {
    flex-shrink: 0;

    display: flex;
    align-items: flex-end;
    gap: 5px;

    color: #ffffff;
}

.heroCampaign__price strong {
    color: var(--accent);

    font-size: 3rem;
    line-height: 0.8;

    font-weight: 950;
}

.heroCampaign__price span {
    font-size: 0.85rem;
    font-weight: 950;
}


/* TEXT */

.heroCampaign__content {
    flex: 1;

    display: flex;
    flex-direction: column;

    gap: 4px;
}

.heroCampaign__content strong {
    color: #ffffff;

    font-size: 0.95rem;
    font-weight: 950;

    letter-spacing: 0.04em;
}

.heroCampaign__content span {
    color: rgba(255, 255, 255, 0.75);

    font-size: 0.83rem;
    line-height: 1.4;
}


/* KNAPP */

.heroCampaign__button {
    flex-shrink: 0;

    min-height: 44px;

    padding: 0 16px;

    border: 0;
    border-radius: 8px;

    background: var(--accent);

    color: #ffffff;

    font-size: 0.75rem;
    font-weight: 950;

    cursor: pointer;

    transition: 0.2s ease;
}

.heroCampaign__button:hover {
    background: var(--accent-strong);
    transform: translateY(-2px);
}


/* MOBIL */

@media (max-width: 700px) {

    .heroCampaign {
        align-items: flex-start;
        flex-direction: column;

        gap: 14px;
    }

    .heroCampaign__price strong {
        font-size: 2.6rem;
    }

    .heroCampaign__button {
        width: 100%;
    }

}
/* GLOWGYM BILDSPEL */

.gymSlider {
    position: relative;
    overflow: hidden;
}

.gymSlider__slides {
    position: absolute;
    inset: 0;
}

.gymSlider__image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0;
    transition: opacity 0.5s ease;
}

.gymSlider__image.active {
    opacity: 1;
}

/* PILAR */

.gymSlider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    z-index: 5;

    width: 48px;
    height: 48px;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.55);
    color: white;

    font-size: 32px;
    line-height: 1;

    cursor: pointer;

    backdrop-filter: blur(6px);

    transition: 0.2s ease;
}

.gymSlider__arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.gymSlider__arrow--left {
    left: 18px;
}

.gymSlider__arrow--right {
    right: 18px;
}

/* PRICKAR */

.gymSlider__dots {
    position: absolute;

    left: 50%;
    bottom: 18px;

    transform: translateX(-50%);

    z-index: 5;

    display: flex;
    gap: 8px;
}

.gymSlider__dot {
    width: 9px;
    height: 9px;

    padding: 0;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.45);

    cursor: pointer;

    transition: 0.2s ease;
}

.gymSlider__dot.active {
    width: 24px;
    border-radius: 10px;

    background: var(--accent);
}
/* =========================
   299 KR ERBJUDANDE
========================= */

.membershipPromo {
    padding: 30px 0 45px;
}

.membershipOffer {
    min-height: 230px;
    padding: 40px 55px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;

    border: 2px solid #ff5fa2;
    border-radius: 28px;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(255, 20, 147, 0.20),
            transparent 35%
        ),
        linear-gradient(
            110deg,
            rgba(92, 12, 55, 0.85),
            rgba(28, 7, 21, 0.95)
        );

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.35),
        0 0 35px rgba(255, 20, 147, 0.08);
}


/* VÄNSTER SIDA */

.membershipOffer__price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.membershipOffer__badge {
    display: inline-flex;
    align-items: center;

    padding: 10px 20px;

    border: 1px solid rgba(255, 95, 162, 0.55);
    border-radius: 999px;

    background: rgba(255, 20, 147, 0.15);

    color: #ff7eb6;

    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.membershipOffer__amount {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.membershipOffer__amount strong {
    color: #fff;

    font-size: clamp(4.5rem, 7vw, 7rem);
    font-weight: 950;

    line-height: 0.85;
}

.membershipOffer__amount span {
    color: #ff5fa2;

    font-size: clamp(1.8rem, 3vw, 3.2rem);
    font-weight: 950;
}


/* KNAPP */

.membershipOffer__button {
    min-width: 390px;

    padding: 26px 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            #ff62a7,
            #ff2383
        );

    color: #fff;

    font-size: 17px;
    font-weight: 950;

    text-align: center;
    text-decoration: none;

    box-shadow:
        0 12px 35px rgba(255, 20, 147, 0.30);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.membershipOffer__button:hover {
    transform: translateY(-3px) scale(1.02);

    box-shadow:
        0 18px 45px rgba(255, 20, 147, 0.45);
}


/* MOBIL */

@media (max-width: 800px) {

    .membershipOffer {
        min-height: auto;

        padding: 35px 25px;

        flex-direction: column;
        align-items: stretch;
    }

    .membershipOffer__price {
        align-items: center;
    }

    .membershipOffer__amount {
        justify-content: center;
    }

    .membershipOffer__button {
        min-width: 0;
        width: 100%;
    }
}