/* ============================================
   KÖRKORTSCENTER: style.css (Dark Mode)
   Färgsystem: Trafikljus-accenter (grön/gul/röd)
   Bakgrund: Svart (#0A) varvat med mörkgrå (#16)
   ============================================ */

/* ============================================
   TYPSNITT: Inter via SENZAI CDN
   GDPR-säkert, inga tredjepartsanrop
   ============================================ */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('https://cdn.senzai.se/fonts/inter/Inter-Regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('https://cdn.senzai.se/fonts/inter/Inter-Medium.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('https://cdn.senzai.se/fonts/inter/Inter-SemiBold.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('https://cdn.senzai.se/fonts/inter/Inter-Bold.woff2') format('woff2');
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    /* === BAKGRUNDER === */
    --bg:            #0A0A0A;   /* Huvudbakgrund, näst-svart */
    --bg-alt:        #161616;   /* För section-alt rytm */
    --bg-card:       #1F1F1F;   /* Kort, förhöjda element */

    /* === TEXT === */
    --text:          #F5F5F5;   /* Primär text, bruten vit */
    --text-secondary:#A8A8A8;   /* Sekundär */
    --text-muted:    #707070;   /* Muted, fotnoter */
    --white:         #FFFFFF;   /* Ren vit för rubriker */

    /* === RAMAR === */
    --border:        #2A2A2A;   /* Subtila ramar mot mörk bg */

    /* === TRAFIKLJUS-ACCENTER === */
    --green:         #4ADE80;   /* Primär accent, "gå", knappar */
    --green-hover:   #22C55E;
    --green-light:   rgba(74, 222, 128, 0.12);

    --yellow:        #FACC15;   /* Highlight, stjärnor */
    --yellow-light:  rgba(250, 204, 21, 0.12);

    --red:           #EF4444;   /* Emphasis, "Mest populär" */
    --red-light:     rgba(239, 68, 68, 0.12);

    /* === BAKÅTKOMPATIBILITET === */
    /* Gamla namn pekar på nya, så befintlig kod fortsätter fungera */
    --navy:          var(--bg);
    --navy-light:    var(--bg-alt);
    --orange:        var(--green);
    --orange-hover:  var(--green-hover);
    --orange-light:  var(--green-light);
    --off-white:     var(--bg-alt);

    /* === DIMENSIONER === */
    --radius: 10px;
    --radius-lg: 14px;
    --max-width: 1140px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}


/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
}

.nav.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
    color: var(--text);
}

.nav-logo img {
    height: 36px;
    width: auto;
}

.nav-logo .logo-icon {
    width: 32px; height: 32px;
    background: var(--green);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color 0.2s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0; right: 0;
    height: 2px;
    background: var(--green);
    border-radius: 1px;
}

.nav-cta {
    background: var(--green);
    color: #0A0A0A;
    border: none;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
    background: var(--green-hover);
    transform: translateY(-1px);
}

/* Hamburger (mobil) */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
}

.nav-hamburger span {
    width: 22px; height: 2px;
    background: var(--text);
    border-radius: 1px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobil-meny */
.nav-mobile {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    z-index: 99;
    padding: 24px;
    flex-direction: column;
    gap: 8px;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
    font-size: 18px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.nav-mobile .nav-cta {
    margin-top: 16px;
    text-align: center;
    font-size: 16px;
    padding: 14px;
}


/* ============================================
   HERO
   ============================================ */
.hero {
    background: var(--bg);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.78);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    right: -100px; top: -100px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(74, 222, 128, 0.06);
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    left: -150px; bottom: -200px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(250, 204, 21, 0.04);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: var(--green-light);
    color: var(--green);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}

.hero h1 {
    color: var(--white);
    font-size: 48px;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 18px;
    max-width: 560px;
}

.hero h1 span {
    color: var(--yellow);
}

.hero-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}


/* ============================================
   KNAPPAR
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: #0A0A0A;
    border: none;
    padding: 14px 30px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
    background: var(--green-hover);
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 14px 24px;
    border-radius: var(--radius);
    font-size: 15px;
    transition: background 0.2s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    padding: 14px 30px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 500;
    transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
    border-color: var(--green);
    background: var(--bg-card);
}


/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--border);
}

.stat-item {
    padding: 24px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-number {
    font-size: 28px;
    font-weight: 600;
    color: var(--text);
}

.stat-number span {
    color: var(--yellow);
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}


/* ============================================
   SEKTIONER (generellt)
   ============================================ */
.section {
    padding: 80px 0;
    background: var(--bg);
}

.section-alt {
    background: var(--bg-alt);
}

.section-dark {
    background: var(--bg-card);
}

.section-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}


/* ============================================
   STEG-KORT (Så funkar det)
   ============================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-card {
    padding: 28px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    background: var(--bg-card);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.step-card:hover {
    transform: translateY(-3px);
    border-color: var(--green);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.step-num {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--green);
    color: #0A0A0A;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 700;
    margin: 0 auto 16px;
}

.step-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}


/* ============================================
   PRISKORT
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.price-card {
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--bg-card);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.price-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.price-card.featured {
    border: 2px solid var(--green);
}

.price-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 18px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.price-tier {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.price-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin: 6px 0 16px;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
}

.price-amount span {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 400;
}

.price-old {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-top: 4px;
}

.price-divider {
    height: 1px;
    background: var(--border);
    margin: 20px 0;
}

.price-feature {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-feature .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--border);
    flex-shrink: 0;
}

.price-card.featured .dot {
    background: var(--green);
}

.price-btn {
    display: block;
    width: 100%;
    margin-top: 24px;
    padding: 12px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    transition: background 0.2s, border-color 0.2s;
}

.price-btn:hover {
    background: var(--bg-alt);
    border-color: var(--green);
}

.price-card.featured .price-btn {
    background: var(--green);
    color: #0A0A0A;
    border-color: var(--green);
    font-weight: 600;
}

.price-card.featured .price-btn:hover {
    background: var(--green-hover);
}


/* ============================================
   VARFÖR OSS (ikongrid)
   ============================================ */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-card {
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--bg-card);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.why-card:hover {
    transform: translateY(-2px);
    border-color: var(--green);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.why-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius);
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon svg {
    width: 22px; height: 22px;
    stroke: var(--green);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}


/* ============================================
   OMDÖMEN / RECENSIONER
   ============================================ */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--bg-card);
}

.review-stars {
    color: var(--yellow);
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 14px;
}

.review-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.review-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}


/* ============================================
   CTA-SEKTION
   ============================================ */
.cta-section {
    background: var(--bg-card);
    padding: 72px 0;
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-section h2 {
    color: var(--white);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 12px;
}

.cta-section p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 56px 0 32px;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 12px;
}

.footer h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.2s;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.footer-contact svg {
    width: 16px; height: 16px;
    stroke: var(--text-muted);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--green);
}


/* ============================================
   REVEAL-ANIMATIONER (scroll)
   ============================================ */
body.reveal-ready .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

body.reveal-ready .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

body.reveal-ready .reveal-child > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

body.reveal-ready .reveal-child.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger för barn */
body.reveal-ready .reveal-child.visible > *:nth-child(1) { transition-delay: 0s; }
body.reveal-ready .reveal-child.visible > *:nth-child(2) { transition-delay: 0.1s; }
body.reveal-ready .reveal-child.visible > *:nth-child(3) { transition-delay: 0.2s; }
body.reveal-ready .reveal-child.visible > *:nth-child(4) { transition-delay: 0.3s; }
body.reveal-ready .reveal-child.visible > *:nth-child(5) { transition-delay: 0.4s; }
body.reveal-ready .reveal-child.visible > *:nth-child(6) { transition-delay: 0.5s; }


/* ============================================
   KONTAKTFORMULÄR
   ============================================ */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    color: var(--text);
    background: var(--bg-card);
    transition: border-color 0.2s, background 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--green);
    background: var(--bg-alt);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}


/* ============================================
   KURSKORT (kursöversikt)
   ============================================ */
.course-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.course-card {
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.course-card:hover {
    transform: translateY(-3px);
    border-color: var(--green);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.course-badge {
    display: inline-block;
    background: var(--green-light);
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.course-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.course-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.course-meta {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.course-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.course-features li {
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-features li .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
}

.course-buttons {
    display: flex;
    gap: 10px;
}


/* ============================================
   OM OSS: TEAM
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.team-card {
    text-align: center;
    padding: 28px 16px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--bg-card);
}

.team-avatar {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--green);
    color: #0A0A0A;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 700;
    margin: 0 auto 14px;
}

.team-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.team-card .role {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.team-card .exp {
    font-size: 12px;
    color: var(--green);
    font-weight: 600;
}


/* ============================================
   ENSKILDA TJÄNSTER (pristabell)
   ============================================ */
.services-table {
    width: 100%;
    border-collapse: collapse;
}

.services-table tr {
    border-bottom: 1px solid var(--border);
}

.services-table td {
    padding: 16px 0;
    font-size: 15px;
    color: var(--text-secondary);
}

.services-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--text);
}


/* ============================================
   RESPONSIVE
   ============================================ */
/* --- Kontaktsida tvåkolumn --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-inner > .nav-cta { display: none; }
    .nav-hamburger { display: flex; }

    .hero { padding: 110px 0 56px; }
    .hero h1 { font-size: 32px; }
    .hero-text { font-size: 15px; }

    .stats-bar { grid-template-columns: 1fr 1fr; }
    .stat-item:nth-child(2) { border-right: none; }

    .section { padding: 56px 0; }
    .section-title { font-size: 24px; }

    .steps-grid { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
    .why-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .course-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .cta-section { padding: 48px 0; }
    .cta-section h2 { font-size: 24px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 28px; }
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .btn-primary, .btn-secondary, .btn-outline { justify-content: center; }

    .stats-bar { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
    .stat-item:last-child { border-bottom: none; }

    .steps-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .cta-buttons { flex-direction: column; align-items: stretch; }
}

/* ============================================
   PAKET OCH PRISER (utökat)
   ============================================ */

/* Metallmedaljer ovanför paketnamn */
.medal-icon {
    width: 32px;
    height: 32px;
    display: block;
    margin-bottom: 14px;
}

/* Pricing grid med 5 kort, naturligt centrerat 3+2 */
.pricing-grid-5 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    align-items: stretch;
}

.pricing-grid-5 > .price-card {
    flex: 1 1 300px;
    max-width: 340px;
    min-width: 280px;
}

/* "Spara X kr" textrad under priset */
.price-save {
    font-size: 13px;
    color: var(--green);
    font-weight: 600;
    margin-top: 4px;
}

/* Intensivutbildning */
.intensiv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.intensiv-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--green);
}

.intensiv-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.intensiv-time {
    font-size: 15px;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 14px;
}

.intensiv-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Körlektionspaket-grid (3 kompakta kort) */
.lektion-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.lektion-card {
    padding: 28px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.lektion-card:hover {
    transform: translateY(-3px);
    border-color: var(--green);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.lektion-amount {
    font-size: 40px;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
}

.lektion-name {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 6px;
}

.lektion-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.lektion-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    margin-top: 16px;
}

.lektion-price span {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
}

.lektion-save {
    font-size: 13px;
    color: var(--green);
    font-weight: 600;
    margin-top: 4px;
}

/* Wrapper runt ordinarie priser-tabellen */
.services-table-wrap {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

/* Bra att veta-ruta */
.info-box {
    margin: 32px auto 0;
    padding: 24px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    max-width: 800px;
}

.info-box h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.info-box p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Responsivt för paket och priser */
@media (max-width: 900px) {
    .intensiv-grid {
        grid-template-columns: 1fr;
    }

    .lektion-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .pricing-grid-5 > .price-card {
        flex: 1 1 100%;
        max-width: 400px;
    }
}

/* Tier-färgning på paketbakgrund */
.price-card.tier-brons {
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.25), var(--bg-card) 85%);
}

.price-card.tier-silver {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.15), var(--bg-card) 85%);
}

.price-card.tier-guld {
    background: linear-gradient(135deg, rgba(241, 194, 50, 0.20), var(--bg-card) 85%);
}

.price-card.tier-platina {
    background: linear-gradient(135deg, rgba(95, 169, 224, 0.28), var(--bg-card) 85%);
}

.price-card.tier-diamant {
    background: linear-gradient(135deg, rgba(176, 127, 220, 0.28), var(--bg-card) 85%);
}

/* Hero med bild bredvid text (om-oss) */
.hero-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-image-col img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    display: block;
}

@media (max-width: 768px) {
    .hero-with-image {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ============================================
   PÅ GÅNG (startsidan)
   ============================================ */
.event-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.event-card {
    display: flex;
    gap: 18px;
    padding: 22px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    align-items: center;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.event-card:hover {
    transform: translateY(-2px);
    border-color: var(--green);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.event-card.status-fullbokad:hover {
    border-color: var(--red);
}

/* Datum-bricka (kalenderblad) */
.event-date {
    flex-shrink: 0;
    width: 64px;
    height: 72px;
    border-radius: var(--radius);
    background: var(--green-light);
    border: 1px solid rgba(74, 222, 128, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--green);
}

.event-card.status-fullbokad .event-date {
    background: var(--red-light);
    border-color: rgba(239, 68, 68, 0.3);
    color: var(--red);
}

.event-card.status-fa-platser .event-date {
    background: var(--yellow-light);
    border-color: rgba(250, 204, 21, 0.3);
    color: var(--yellow);
}

/* Framhävt kort: gul datumbricka oavsett status */
.event-card.is-framhavd .event-date {
    background: var(--yellow-light);
    border-color: rgba(250, 204, 21, 0.3);
    color: var(--yellow);
}

/* Datum okänt: neutral grå platshållare */
.event-card.is-okant .event-date {
    background: rgba(112, 112, 112, 0.12);
    border-color: rgba(112, 112, 112, 0.25);
    color: var(--text-muted);
}

.event-date-placeholder {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.event-okant-text {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 6px;
}

.event-date-day {
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
}

.event-date-month {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-top: 4px;
    font-weight: 600;
}

.event-info {
    flex: 1;
    min-width: 0;
}

.event-info h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
    line-height: 1.3;
}

.event-time {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.event-status {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.event-status.status-platser-kvar {
    background: var(--green-light);
    color: var(--green);
}

.event-status.status-fa-platser {
    background: var(--yellow-light);
    color: var(--yellow);
}

.event-status.status-fullbokad {
    background: var(--red-light);
    color: var(--red);
}

/* Teorilektioner */
.lessons-list {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    max-width: 720px;
    margin: 0 auto;
}

.lessons-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    letter-spacing: 0.3px;
}

.lesson-rows {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.lesson-row {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    align-items: center;
}

.lesson-row:last-child {
    border-bottom: none;
    padding-bottom: 4px;
}

.lesson-num {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.lesson-date {
    font-size: 14px;
    color: var(--text-secondary);
}

.lesson-time {
    font-size: 14px;
    color: var(--green);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

@media (max-width: 768px) {
    .event-highlights {
        grid-template-columns: 1fr;
    }

    .lessons-list {
        padding: 22px;
    }

    .lesson-row {
        grid-template-columns: 90px 1fr auto;
        gap: 12px;
    }

    .lesson-date {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .event-card {
        padding: 18px;
        gap: 14px;
    }

    .event-date {
        width: 56px;
        height: 64px;
    }

    .event-date-day {
        font-size: 22px;
    }
}