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

:root {
    --black: #FAFAFA;
    --black-light: #D8CFC4;
    --black-card: #FFFFFF;
    --white: #1A1A1A;
    --white-bright: #1F4D3B;
    --muted: #56524C;
    --muted-light: #35332F;
    --accent: #1F4D3B;
    --accent-soft: #D8CFC4;
    --accent-dim: rgba(198, 168, 91, 0.16);
    --accent-glow: rgba(198, 168, 91, 0.22);
    --accent-contrast: #FFFFFF;
    --gold: #C6A85B;
    --border: rgba(31, 77, 59, 0.12);
    --border-light: rgba(31, 77, 59, 0.18);
    --radius-sm: 3px;
    --radius-md: 5px;
    --radius-lg: 8px;
}


html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--muted) transparent;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
    .hero-video { display: none; }
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

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

/* Skip link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--accent);
    color: var(--accent-contrast);
    padding: 0.5rem 1rem;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    z-index: 10002;
    font-size: 0.875rem;
    text-decoration: none;
}
.skip-link:focus { top: 0; }

/\* ===== Scroll Progress ===== */
.scroll-progress { display: none; }

/\* ===== Reveal Animations ===== */
.m-reveal,
.m-reveal-delay-1,
.m-reveal-delay-2,
.m-reveal-delay-3,
.js-ready .m-reveal,
.js-ready .m-reveal.visible,
.js-ready .m-reveal-delay-1,
.js-ready .m-reveal-delay-2,
.js-ready .m-reveal-delay-3 {
    opacity: 1;
    transform: none;
    transition: none;
}

/* ===== Focus ===== */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ===== Navigation ===== */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9999;
    padding: 1.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--black-card);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    font-family: 'Inter', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.03em;
    text-transform: lowercase;
}
.nav-logo:hover { text-decoration: none; }

.logo-yh {
    font-weight: 800;
    text-transform: none;
}

.logo-icon {
    display: inline-block;
    vertical-align: -0.15em;
    margin-right: 0.4rem;
}

.logo-deved {
    font-size: 0.55rem;
    font-weight: 400;
    color: var(--muted);
    letter-spacing: 0.04em;
    text-transform: none;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.logo-mark {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    margin-left: 0.2em;
    vertical-align: super;
}

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

.nav-links a {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--muted-light);
    text-decoration: none;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); text-decoration: none; }

.nav-cta {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-contrast);
    background: var(--accent);
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-cta:hover {
    box-shadow: 0 4px 20px var(--accent-glow);
    text-decoration: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

@media (max-width: 1024px) {
    .site-nav { padding: 1.25rem 1.5rem; }
    .nav-toggle { display: flex; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        padding: 1.5rem;
        background: var(--black-card);
        border-bottom: 1px solid var(--border);
        gap: 0;
    }
    .nav-menu.nav-open { display: flex; }
    .nav-links { flex-direction: column; gap: 0; width: 100%; }
    .nav-links a { display: block; padding: 0.75rem 0; font-size: 0.95rem; border-bottom: 1px solid var(--border); }
    .nav-links li:last-child a { border-bottom: none; }
    .nav-cta { margin-top: 1rem; text-align: center; display: block; }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    font-family: inherit;
}
.btn:hover { text-decoration: none; }

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--accent);
    color: var(--accent-contrast);
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-cta:hover {
    transform: none;
    box-shadow: 0 8px 40px var(--accent-glow);
    text-decoration: none;
}
.btn-cta svg { transition: none; }
.btn-cta:hover svg { transform: none; }

.btn-primary { background: var(--accent); color: var(--accent-contrast); }
.btn-primary:hover { box-shadow: 0 4px 20px var(--accent-glow); }

.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; }

/* ===== Section Labels ===== */
.section-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    text-align: center;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    text-align: center;
    color: var(--white);
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

/* ===== Hero ===== */
.hero-section {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 1.5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #FAFAFA 0%, #F2EEE8 100%);
}

.hero-section::before { display: none; }

.hero-cards { display: none; }

.hero-card { display: none; }

/* Hero split layout */
.hero-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    width: 100%;
    max-width: 1240px;
    align-items: center;
}

@media (min-width: 769px) {
    .hero-split {
        grid-template-columns: 1fr 1.15fr;
        gap: 4rem;
        text-align: left;
    }
    .hero-split .hero-sub { margin: 0; }
    .hero-split .hero-actions { justify-content: flex-start; }
    .hero-split .hero-label { text-align: left; }
}

.hero-inner { max-width: 100%; }

/* Video */
.hero-video-wrap { width: 100%; align-self: center; }

.hero-video-container {
    position: relative;
    width: 100%;
}

.hero-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    object-fit: cover;
    display: block;
    max-height: 520px;
}

.hero-video-mute-btn {
    position: absolute;
    bottom: 0.85rem;
    right: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 500;
    font-family: inherit;
    padding: 0.35rem 0.75rem 0.35rem 0.55rem;
    cursor: pointer;
    transition: background 0.2s;
}

.hero-video-mute-btn:hover {
    background: rgba(0,0,0,0.75);
}

.hero-video-placeholder {
    aspect-ratio: 16 / 9;
    background: #EBE6DF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    cursor: pointer;
}

.hero-video-play {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px; /* optisk centrering av play-triangeln */
}

.hero-video-label {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.hero-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--white-bright);
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--muted-light);
    max-width: 520px;
    margin: 0 auto;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.hero-secondary {
    font-size: 0.95rem;
    color: var(--muted-light);
    text-decoration: none;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}
.hero-secondary:hover {
    color: var(--white);
    border-color: var(--muted);
    text-decoration: none;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3.5rem;
    max-width: 600px;
}

.hero-tag {
    font-size: 0.78rem;
    color: var(--white-bright);
    padding: 0.4rem 1rem;
    background: rgba(198, 168, 91, 0.16);
    border: 1px solid var(--border);
    border-radius: 100px;
    white-space: nowrap;
}

/* ===== Intro ===== */
.intro-section {
    padding: 5rem 1.5rem;
    position: relative;
    background: var(--black);
}

.intro-section::before { display: none; }

.intro-inner { position: relative; z-index: 1; }

.intro-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.intro-split {
    max-width: 1000px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: left;
}

.intro-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-image {
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    aspect-ratio: 3/2;
}

@media (min-width: 769px) {
    .intro-split {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
    .intro-split .intro-text { display: flex; flex-direction: column; justify-content: center; }
}

.intro-lead {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

.intro-text p {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 400;
}

/* ===== Om YH-stöd ===== */
.about-section {
    padding: 5rem 1.5rem;
    background: var(--black-light);
}

.about-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-header { max-width: 720px; }

.about-team {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 600px) {
    .about-team {
        grid-template-columns: 1fr;
    }
}

.about-person { display: flex; flex-direction: column; gap: 1rem; }

.about-person-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.about-person-info strong {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.about-person-title {
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 0.25rem;
}

.about-person-bio {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0.5rem 0 0.75rem;
}

.about-person-info a {
    font-size: 0.9rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.about-person-info a:hover { color: var(--white); }

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.about-image-wrap { width: 100%; }

.about-image-placeholder {
    aspect-ratio: 4 / 3;
    background: #E3DDD7;
    border: 1px dashed var(--border-light);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--muted);
    font-size: 0.82rem;
}

.about-image {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    object-position: center top;
    aspect-ratio: 1 / 1;
    display: block;
}

.about-text { display: flex; flex-direction: column; }

.about-text .section-label { text-align: left; margin-bottom: 0.75rem; }

.about-headline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 400;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.about-text p {
    font-size: 0.97rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 1rem;
}

/* ===== Proof / Varför vi ===== */
.proof-section {
    padding: 5rem 1.5rem;
    position: relative;
    background: #F2EEE8;
}

.proof-section::before { display: none; }

.proof-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.proof-card {
    background: var(--black-card, #fff);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: border-color 0.2s;
}

.proof-card:hover {
    border-color: var(--accent);
}

.proof-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.proof-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.proof-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65;
}

@media (min-width: 769px) {
    .proof-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1025px) {
    .proof-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ===== Services ===== */
.services-section {
    padding: 5rem 1.5rem;
    position: relative;
    background: var(--black);
}

.services-section::before { display: none; }

.services-inner { position: relative; z-index: 1; }

.services-inner { max-width: 1100px; margin: 0 auto; }

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.service-card {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.service-card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 24px rgba(139, 101, 69, 0.08);
}

.service-icon {
    color: var(--accent);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 400;
}

/* ===== Service Examples ===== */
.service-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: 1rem;
}
.service-examples span {
    font-size: 0.7rem;
    color: var(--white-bright);
    background: rgba(198, 168, 91, 0.18);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 500;
}

/* ===== Tool Section ===== */
.tool-section {
    padding: 5rem 1.5rem;
    border-top: 1px solid var(--border);
}

.tool-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.tool-headline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    font-weight: 400;
}

.tool-content > p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.tool-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.tool-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.tool-feature-icon {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.tool-feature strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.tool-feature p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
}

.tool-note {
    font-size: 0.85rem;
    color: var(--muted-light);
    font-style: italic;
}

/* Tool mockup */
.tool-mockup {
    background: var(--black-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.tool-mockup-bar {
    display: flex;
    gap: 6px;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
}

.tool-mockup-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-light);
}

.tool-mockup-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.tool-mockup-stat {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem;
}

.tool-mockup-label {
    font-size: 0.78rem;
    color: var(--muted);
    width: 100%;
}

.tool-mockup-value {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 400;
}

.tool-mockup-progress {
    flex: 1;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.tool-mockup-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== Pricing (enskilda insatser) ===== */
.pricing-section {
    padding: 5rem 1.5rem;
    position: relative;
    background: #F2EEE8;
}

.pricing-section::before { display: none; }

.pricing-inner { position: relative; z-index: 1; }

.pricing-inner { max-width: 1100px; margin: 0 auto; }

.pricing-intro {
    text-align: center;
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 600px;
    margin: -2.5rem auto 3rem;
    line-height: 1.7;
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.pricing-card {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.pricing-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.pricing-desc {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.pricing-features li {
    font-size: 0.85rem;
    color: var(--muted-light);
    padding-left: 1.25rem;
    position: relative;
}

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.6;
}

.pricing-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 2rem;
}

/* ===== Packages (månadspaket) ===== */
.packages-section {
    padding: 5rem 1.5rem;
    border-top: 1px solid var(--border);
}

.packages-inner { max-width: 1100px; margin: 0 auto; }

.packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.package-card {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
}

.package-featured {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold), 0 8px 32px rgba(198, 168, 91, 0.12);
}

.package-badge {
    position: absolute;
    top: -0.7rem;
    left: 1.5rem;
    background: var(--accent);
    color: var(--accent-contrast);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.package-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.package-price {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    color: var(--white);
    font-weight: 500;
    letter-spacing: -0.02em;
}

.package-price span {
    font-size: 0.9rem;
    color: var(--muted);
    font-weight: 400;
}

.package-hours {
    font-size: 0.85rem;
    color: var(--gold);
    margin-top: 0.25rem;
    margin-bottom: 1rem;
}

.package-desc {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.package-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex: 1;
}

.package-features li {
    font-size: 0.85rem;
    color: var(--muted-light);
    padding-left: 1.5rem;
    position: relative;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.8rem;
}

/* ===== How It Works ===== */
.how-section {
    padding: 5rem 1.5rem;
    position: relative;
    background: #F2EEE8;
}

.how-section::before { display: none; }

.how-inner { position: relative; z-index: 1; }

.how-inner { max-width: 1100px; margin: 0 auto; }

.how-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.how-step {
    background: var(--black);
    padding: 2.5rem 2rem;
    transition: background 0.4s;
}
.how-step:hover { background: var(--black-card); }

.how-step-num {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.7;
    line-height: 1;
    margin-bottom: 1.25rem;
}

.how-step h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.how-step p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 400;
}

/* ===== Value / Pricing ===== */
.value-section {
    padding: 5rem 1.5rem;
    background: var(--black-light);
    border-top: 1px solid var(--border);
}

.value-inner { max-width: 900px; margin: 0 auto; text-align: center; }

.value-headline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
.value-headline em { color: var(--accent); font-style: italic; }

.value-sub {
    font-size: 1.05rem;
    color: var(--muted-light);
    max-width: 520px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
    font-weight: 400;
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-bottom: 3.5rem;
}

.value-item {
    background: var(--black-light);
    padding: 2rem 1.5rem;
    transition: background 0.3s;
}
.value-item:hover { background: var(--black-card); }

.value-item-icon { color: var(--accent); margin-bottom: 0.75rem; }

.value-item h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 0.4rem;
    font-weight: 400;
}

.value-item p {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 400;
}

.value-includes {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.value-tag {
    font-size: 0.82rem;
    color: var(--muted-light);
    padding: 0.45rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-weight: 400;
}
.value-tag svg { display: inline; vertical-align: -2px; margin-right: 4px; color: var(--accent); }

/* ===== FAQ ===== */
.faq-section { padding: 5rem 1.5rem; }

.faq-inner { max-width: 720px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-item:first-child { border-top: 1px solid var(--border-light); }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.125rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    color: var(--muted-light);
    min-height: 44px;
}
.faq-question:hover { color: var(--white); }

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.2s ease;
    color: var(--muted);
}
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }

.faq-answer { padding-bottom: 1.25rem; }
.faq-answer p {
    color: var(--muted);
    font-size: 0.9375rem;
    line-height: 1.65;
    max-width: 600px;
}

/* ===== Contact ===== */
.contact-section {
    padding: 5rem 1.5rem;
    position: relative;
    background: var(--black);
}

.contact-section::before { display: none; }

.contact-inner { position: relative; z-index: 1; }

.contact-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}
.contact-info > p { color: var(--muted); font-size: 1rem; line-height: 1.65; margin-bottom: 1.5rem; max-width: 400px; }

.contact-people {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

.contact-person {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
}

.contact-person-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    flex-shrink: 0;
}

.contact-person-details {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.contact-person-details strong {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.contact-person-details span {
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 0.35rem;
}

.contact-person-details address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.contact-person-details address a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s;
}

.contact-person-details address a:hover { opacity: 0.75; }

/* Form */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.375rem; color: var(--muted-light); }

.form-control {
    width: 100%;
    padding: 0.625rem 0.875rem;
    font-size: 0.9375rem;
    font-family: inherit;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: var(--black);
    color: var(--white);
    transition: border-color 0.15s, box-shadow 0.15s;
}
.form-control:focus {
    outline: 2px solid var(--accent);
    outline-offset: -1px;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim);
}
.form-control::placeholder { color: var(--muted); opacity: 0.5; }

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

.contact-form {
    background: var(--black-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.form-message { margin-bottom: 1rem; font-size: 0.875rem; display: none; }
.form-message--success { display: block; color: #34d399; }
.form-message--error { display: block; color: #f87171; }

/* ===== Insikter hero ===== */
.insikter-hero {
    padding: 7rem 1.5rem 4rem;
    background: var(--black);
    border-bottom: 1px solid var(--border);
}

.insikter-hero-inner {
    max-width: 760px;
    margin: 0 auto;
}

.insikter-headline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0.75rem 0 1.25rem;
}

.insikter-sub {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 600px;
}

/* ===== Insikter filter + grid ===== */
.insikter-section {
    padding: 4rem 1.5rem 5rem;
    background: var(--black);
}

.insikter-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.insikter-filter {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.filter-btn {
    padding: 0.45rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: inherit;
    border: 1px solid var(--border-light);
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.filter-btn:hover {
    border-color: var(--accent);
    color: var(--white);
}

.filter-btn.filter-active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.insikter-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .insikter-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
    .insikter-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== Article card ===== */
.article-card {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: border-color 0.2s, transform 0.2s;
}

.article-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.article-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.article-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.article-tag--analys  { background: rgba(31,77,59,0.12); color: #1a5c3f; }
.article-tag--tips    { background: rgba(79,70,229,0.10); color: #3730a3; }
.article-tag--nyheter { background: rgba(180,100,20,0.10); color: #92400e; }

.article-date {
    font-size: 0.8rem;
    color: var(--muted);
}

.article-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin: 0;
}

.article-excerpt {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.65;
    flex: 1;
    margin: 0;
}

.article-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.article-author {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 500;
}

.article-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s;
}

.article-link:hover { opacity: 0.75; }

/* Tjänste-tagg (delas av alla insikter knutna till en tjänst) */
.article-tag--tjanst { background: rgba(31, 77, 59, 0.10); color: #1a5c3f; }

/* ===== Insikt-artikel (blogg) ===== */
.insikt-hero {
    padding: 7rem 1.5rem 2.5rem;
    background: var(--black);
    border-bottom: 1px solid var(--border);
}

.insikt-hero-inner { max-width: 760px; margin: 0 auto; }

.insikt-back {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: color 0.15s;
}
.insikt-back:hover { color: var(--accent); }

.insikt-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}
.insikt-meta-item { font-size: 0.85rem; color: var(--muted); }
.insikt-meta-dot {
    width: 3px; height: 3px;
    border-radius: 50%;
    background: var(--muted);
    opacity: 0.5;
}

.insikt-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 4.2vw, 3rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin: 0 0 1.25rem;
}

.insikt-lead {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--muted-light);
}

/* Brödtext / prosa */
.insikt-body {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
}
.insikt-body > * + * { margin-top: 1.5rem; }

.insikt-body p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--white);
}

.insikt-body h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white);
    line-height: 1.25;
    margin-top: 3rem;
}

.insikt-body h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-top: 2rem;
}

.insikt-body ul { list-style: none; padding-left: 0; }
.insikt-body ul li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--white);
    margin-top: 0.6rem;
}
.insikt-body ul li::before {
    content: "";
    position: absolute;
    left: 0; top: 0.62em;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--gold);
}

.insikt-body strong { font-weight: 700; color: var(--white); }
.insikt-body a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.insikt-pullquote {
    border-left: 3px solid var(--gold);
    padding: 0.5rem 0 0.5rem 1.5rem;
    margin: 2.5rem 0;
    font-size: 1.35rem;
    line-height: 1.5;
    font-weight: 500;
    color: var(--white);
    letter-spacing: -0.01em;
}

.insikt-takeaways {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 2rem;
    margin: 2.5rem 0;
}
.insikt-takeaways h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin: 0 0 1rem;
}
.insikt-takeaways ul { list-style: none; padding: 0; }
.insikt-takeaways li {
    position: relative;
    padding-left: 1.75rem;
    margin-top: 0.75rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--white);
}
.insikt-takeaways li:first-child { margin-top: 0; }
.insikt-takeaways li::before {
    content: "\2713";
    position: absolute;
    left: 0; top: 0;
    color: var(--gold);
    font-weight: 700;
}

.insikt-byline {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}
.insikt-byline-avatar {
    flex: none;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}
.insikt-byline-name { font-weight: 600; color: var(--white); font-size: 0.95rem; }
.insikt-byline-role { font-size: 0.85rem; color: var(--muted); }

.insikt-service-cta {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    background: linear-gradient(180deg, #1F4D3B 0%, #285945 100%);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    margin-top: 3rem;
}
.insikt-service-cta .section-label { text-align: left; margin-bottom: 0; color: var(--gold); }
.insikt-service-cta h2 { color: #fff; font-size: 1.5rem; margin: 0; letter-spacing: -0.02em; }
.insikt-service-cta p { color: rgba(245, 241, 232, 0.85); margin: 0; line-height: 1.6; }
.insikt-service-cta-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}
.insikt-service-cta .btn-cta { background: var(--gold); color: #2B2416; }
.insikt-service-cta .btn-cta:hover { box-shadow: 0 8px 30px rgba(198, 168, 91, 0.35); }
.insikt-service-cta .insikt-secondary {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.15s;
}
.insikt-service-cta .insikt-secondary:hover { color: var(--gold); }

/* Hela kortet klickbart i insikter-rutnätet */
.article-card--link { text-decoration: none; color: inherit; }

/* Sub-rad vid loggan i footern */
.footer-deved {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    margin: 0.4rem 0 0.6rem;
}

/* ===== Insikter preview (startsidan) ===== */
.insikter-preview-section {
    padding: 5rem 1.5rem;
    background: var(--black-light);
}

.insikter-preview-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.insikter-preview-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.insikter-preview-header .section-title { margin-bottom: 0; }

.insikter-all-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.insikter-all-link:hover { opacity: 0.75; }

.insikter-preview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .insikter-preview-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
    .insikter-preview-grid { grid-template-columns: repeat(3, 1fr); }
}

/* nav active state */
.nav-active { color: var(--accent) !important; }

/* ===== Final CTA ===== */
.final-cta {
    padding: 6rem 1.5rem;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, #1F4D3B 0%, #285945 100%);
}

.final-cta::before { display: none; }

.final-cta-content { position: relative; z-index: 1; }

.final-headline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.final-headline em { color: var(--accent); font-style: italic; }

.final-sub {
    font-size: 1.05rem;
    color: var(--muted-light);
    max-width: 440px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    font-weight: 400;
}

/* ===== Footer ===== */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 3.5rem 3rem 2.5rem;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-brand .nav-logo { display: inline-block; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.82rem; color: var(--muted); max-width: 280px; line-height: 1.6; font-weight: 400; }

.footer-links { display: flex; gap: 3rem; }

.footer-col h4 {
    font-size: 0.7rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--muted); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.85rem; color: var(--muted); text-decoration: none; font-weight: 400; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); text-decoration: none; }

.footer-bottom {
    max-width: 1100px;
    margin: 2.5rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--muted);
}

/* ===== Proof Banner (detail pages) ===== */
.proof-banner {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 1.5rem 0 2.5rem;
    margin-bottom: 1rem;
}

.proof-banner-item {
    font-size: 0.85rem;
    color: var(--muted);
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--accent-dim);
    border-radius: 100px;
    background: var(--accent-dim);
}

.proof-banner-item strong {
    color: var(--gold);
    font-weight: 700;
}

/* ===== Detail Pages ===== */
.detail-hero {
    padding: 8rem 1.5rem 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #FAFAFA 0%, #F2EEE8 100%);
}

.detail-hero::before { display: none; }

.detail-content {
    position: relative;
}

.detail-section {
    margin-bottom: 0;
    padding: 4rem 0;
}

.detail-section-bg {
    position: relative;
    margin: 0 calc(-50vw + 50%);
    padding: 4rem calc(50vw - 50%);
    background: #F2EEE8;
}

.detail-section-bg::before { display: none; }

.detail-section-bg > * { position: relative; z-index: 1; }


.detail-hero-inner {
    position: relative;
    z-index: 1;
}

.detail-hero-inner {
    max-width: 720px;
    margin: 0 auto;
}

.detail-back {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--muted);
    text-decoration: none;
    margin-bottom: 2rem;
    transition: color 0.2s;
}
.detail-back:hover { color: var(--accent); text-decoration: none; }

.detail-headline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    color: var(--white-bright);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.detail-intro {
    font-size: 1.1rem;
    color: var(--muted-light);
    line-height: 1.7;
    max-width: 600px;
}

.detail-content {
    padding: 4rem 1.5rem;
}

.detail-inner {
    max-width: 800px;
    margin: 0 auto;
}

.detail-section {
    margin-bottom: 4rem;
}

.detail-section h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.detail-item {
    background: var(--black);
    padding: 2rem;
    transition: background 0.3s;
}
.detail-item:hover { background: var(--black-card); }

.detail-item h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.detail-item p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65;
}

/* detail-section-bg removed — using floating cards instead */

.detail-process {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.detail-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--black);
    padding: 2rem;
    transition: background 0.3s;
}
.detail-step:hover { background: var(--black-card); }

.detail-step-num {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    color: var(--gold);
    opacity: 0.7;
    line-height: 1;
    flex-shrink: 0;
    width: 2.5rem;
}

.detail-step h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 0.35rem;
}

.detail-step p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
}

.detail-notes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-notes li {
    font-size: 0.9rem;
    color: var(--muted-light);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.detail-notes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.6;
}

.detail-cta {
    text-align: center;
    position: relative;
    margin: 0 calc(-50vw + 50%);
    padding: 5rem calc(50vw - 50%);
    border: none;
    border-radius: 0;
    background: #F2EEE8;
}

.detail-cta::before { display: none; }

.detail-cta > * { position: relative; z-index: 1; }

.detail-cta h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.detail-cta p {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 2rem;
    line-height: 1.65;
}

/* ===== Responsive ===== */
@media (min-width: 769px) {
    .hero-section { min-height: 100vh; padding: 8rem 2rem 6rem; }
    .intro-section { padding: 6rem 2rem; }
    .services-section, .how-section, .pricing-section, .packages-section, .faq-section, .contact-section, .tool-section { padding: 8rem 2rem; }
    .detail-hero { padding: 10rem 2rem 5rem; }
    .detail-content { padding: 5rem 2rem; }
    .detail-grid { grid-template-columns: repeat(2, 1fr); }
    .detail-grid > :last-child:nth-child(odd) { grid-column: 1 / -1; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .how-grid { grid-template-columns: repeat(2, 1fr); }
    .tool-inner { grid-template-columns: 1fr 1fr; }
    .pricing-cards { grid-template-columns: repeat(2, 1fr); }
    .packages-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-inner { grid-template-columns: 1fr 1fr; }
    .final-cta { padding: 10rem 2rem; }
}

@media (min-width: 1025px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .how-grid { grid-template-columns: repeat(4, 1fr); }
    .pricing-cards { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
    .site-footer { padding: 2.5rem 1.5rem 2rem; }
    .footer-inner { flex-direction: column; gap: 2rem; }
    .footer-links { gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

.final-cta .final-headline,
.final-cta .final-sub { color: #FFFFFF; }
.final-cta .final-headline em { color: var(--gold); }
.final-cta .btn-cta { background: var(--gold); color: #2B2416; }
.final-cta .btn-cta:hover { box-shadow: 0 4px 20px rgba(198, 168, 91, 0.28); }
.hero-tag, .service-examples span, .proof-banner-item { border-color: rgba(31,77,59,0.12); }
.proof-card:hover, .service-card:hover { box-shadow: none; }
.how-step { background: rgba(255,255,255,0.7); }
.how-step:hover { background: rgba(255,255,255,0.88); }
.site-footer { background: #F2EEE8; }
.contact-form { box-shadow: none; }

/* ===================================================================
   Videoinspirerat tema — mörkgrön hero + genomgående guldaccent
   Matchar presentationsvideon i hero (mörkgrönt + guld).
   =================================================================== */

/* Guld "Yh" i logotypen (toppstapel + prick redan guld i SVG) */
.logo-yh { color: var(--gold); }

/* Section-eyebrows i guld för en genomgående accent */
.section-label { color: var(--gold); }

/* --- Mörkgrön hero som i videon --- */
.hero-section {
    background: linear-gradient(135deg, #1F4D3B 0%, #143329 100%);
}
.hero-section .hero-headline { color: #FFFFFF; }
.hero-section .hero-sub { color: rgba(245, 241, 232, 0.82); }
.hero-section .hero-label { color: var(--gold); }
.hero-section .hero-secondary {
    color: rgba(245, 241, 232, 0.85);
    border-bottom-color: rgba(245, 241, 232, 0.28);
}
.hero-section .hero-secondary:hover {
    color: #FFFFFF;
    border-color: var(--gold);
}
.hero-section .hero-tag {
    color: #F5F1E8;
    background: rgba(198, 168, 91, 0.18);
    border-color: rgba(245, 241, 232, 0.18);
}

/* CTA-knapp i guld mot den mörka heron */
.hero-section .btn-cta {
    background: var(--gold);
    color: #2B2416;
}
.hero-section .btn-cta:hover {
    box-shadow: 0 8px 30px rgba(198, 168, 91, 0.35);
}

/* Tunn guldram + skugga så videon syns tydligt mot det gröna */
.hero-video {
    border: 1px solid rgba(198, 168, 91, 0.30);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

/* --- Genomgående guldaccenter på dekorativa element (ljusa ytor) --- */
.service-icon,
.tool-feature-icon { color: var(--gold); }
.package-features li::before { color: var(--gold); }
.pricing-features li::before { background: var(--gold); }

/* --- Mörkgrönt CTA-band på undersidor (ekar startsidans final-CTA) --- */
.detail-cta {
    background: linear-gradient(135deg, #1F4D3B 0%, #143329 100%);
}
.detail-cta h2 { color: #FFFFFF; }
.detail-cta p { color: rgba(245, 241, 232, 0.82); }
.detail-cta .btn-cta { background: var(--gold); color: #2B2416; }
.detail-cta .btn-cta:hover { box-shadow: 0 8px 30px rgba(198, 168, 91, 0.35); }

/* Samma mörkgröna gradient överallt (hero, final-CTA, detail-CTA) — som videon */
.final-cta { background: linear-gradient(135deg, #1F4D3B 0%, #143329 100%); }
