/* ============================================
   REGION.CSS - Tillväxtinitiativet Regionssidor
   Gemensam bas för Botkyrka, Nyköping, Kalmar, Väsby
   
   Färgtema kan överridas per region genom att sätta
   CSS-variabler i en <style> block på respektive sida
   ============================================ */

/* ============================================
   THEME VARIABLES (Blått tema - default för regioner)
   Dessa kan överridas per region i HTML-filen
   ============================================ */
:root {
    /* Region theme colors - Blue as default */
    --region-primary: #55dde0;
    --region-primary-dark: #3bc4c7;
    --region-primary-darker: #2a9ea0;
    --region-primary-light: #7be8ea;
    --region-primary-pale: #e8fafa;
    --region-primary-glow: rgba(85, 221, 224, 0.4);
    
    /* Purple for links to central site */
    --purple-primary: #381374;
    --purple-light: #4a1c96;
    --purple-dark: #2a0f58;
    
    /* Override global color system with region theme */
    --color-primary: var(--region-primary-darker);
    --color-primary-dark: var(--region-primary-dark);
    --color-primary-light: var(--region-primary-light);
    --color-accent: var(--region-primary);
    --color-accent-light: var(--region-primary-light);
    --color-accent-dark: var(--region-primary-dark);
    
    /* Region-specific off-white */
    --off-white: #f7fefe;
    
    /* Shadows with blue tint */
    --shadow-color: 85, 221, 224;
    --shadow-sm: 0 2px 8px rgba(var(--shadow-color), 0.08);
    --shadow-md: 0 8px 24px rgba(var(--shadow-color), 0.12);
    --shadow-lg: 0 16px 48px rgba(var(--shadow-color), 0.16);
    --shadow-xl: 0 24px 64px rgba(var(--shadow-color), 0.2);
}

/* ============================================
   NAVIGATION OVERRIDES (Region style)
   ============================================ */
.nav--region {
    border-bottom: 1px solid rgba(85, 221, 224, 0.1);
}

.nav--region.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.nav--region .nav__logo {
    height: 30px;
}

.nav--region .nav__logo img {
    height: 28px;
    width: auto;
}

.nav--region .nav__link::after {
    background: var(--region-primary);
    border-radius: 2px;
}

.nav--region .nav__link:hover {
    color: var(--region-primary-darker);
}

.nav--region .nav__link--parent {
    color: var(--purple-primary);
}

.nav--region .nav__link--parent:hover {
    color: var(--purple-light);
}

.nav--region .nav__link--parent::after {
    background: var(--purple-primary);
}

.nav--region .nav__cta {
    background: linear-gradient(135deg, var(--region-primary) 0%, var(--region-primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 16px var(--region-primary-glow);
}

.nav--region .nav__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--region-primary-glow);
    background: linear-gradient(135deg, var(--region-primary) 0%, var(--region-primary-dark) 100%);
}

/* Mobile menu CTA for region pages */
.mobile-menu__cta .btn--primary {
    background: linear-gradient(135deg, var(--region-primary) 0%, var(--region-primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 16px var(--region-primary-glow);
}

.mobile-menu__cta .btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--region-primary-glow);
}

/* ============================================
   BREADCRUMBS (Region style)
   ============================================ */
.hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 3;
}

.hero__breadcrumb a {
    color: var(--region-primary-darker);
}

.hero__breadcrumb a:hover {
    text-decoration: underline;
}

/* Breadcrumb inside page-hero */
.page-hero .hero__breadcrumb {
    margin-bottom: var(--space-lg);
}

/* ============================================
   HERO SECTION (Region style)
   ============================================ */
.hero--region {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    padding: calc(80px + var(--space-2xl)) 0 var(--space-2xl);
    overflow: hidden;
    background: linear-gradient(180deg, var(--region-primary-pale) 0%, var(--white) 100%);
}

.hero--region .hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(85, 221, 224, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(85, 221, 224, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero--region .hero__wire-t {
    position: absolute;
    top: 5%;
    right: -8%;
    width: 55%;
    max-width: 650px;
    opacity: 0.07;
    animation: floatWire 25s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatWire {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(3deg); }
}

.hero--region .hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.hero--region .hero__text {
    max-width: 560px;
}

.hero--region .hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--white);
    border: 1px solid rgba(85, 221, 224, 0.3);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--region-primary-darker);
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-sm);
    animation: fadeInUp 0.8s ease forwards;
}

.hero--region .hero__badge-icon {
    width: 18px;
    height: 18px;
    background: var(--region-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero--region .hero__badge-icon svg {
    width: 10px;
    height: 10px;
    color: var(--gray-900);
}

.hero--region .hero__title {
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.hero--region .hero__title-highlight {
    color: var(--region-primary-darker);
}

.hero--region .hero__description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero--region .hero__features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero--region .hero__feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.hero--region .hero__feature-icon {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--region-primary), var(--region-primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero--region .hero__feature-icon svg {
    width: 12px;
    height: 12px;
    color: var(--gray-900);
}

.hero--region .hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

/* Region buttons override */
.hero--region .btn--primary {
    background: linear-gradient(135deg, var(--region-primary) 0%, var(--region-primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 8px 24px var(--region-primary-glow);
}

.hero--region .btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px var(--region-primary-glow);
}

.hero--region .btn--secondary {
    background: var(--white);
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
}

.hero--region .btn--secondary:hover {
    border-color: var(--region-primary);
    color: var(--region-primary-darker);
    background: var(--region-primary-pale);
}

/* ============================================
   HERO FORM CARD
   ============================================ */
.hero__form-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(85, 221, 224, 0.15);
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
    position: relative;
    overflow: hidden;
    scroll-margin-top: calc(80px + var(--space-xl));
}

.hero__form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--region-primary), var(--region-primary-dark));
}

.form__header {
    margin-bottom: var(--space-lg);
}

.form__subtitle {
    font-size: 0.9375rem;
    color: var(--gray-500);
}

/* Region form overrides */
.hero--region .form__input:focus {
    border-color: var(--region-primary);
    box-shadow: 0 0 0 4px rgba(85, 221, 224, 0.15);
}

.hero--region .form__submit {
    background: linear-gradient(135deg, var(--region-primary) 0%, var(--region-primary-dark) 100%);
    color: var(--white);
    font-weight: 700;
    box-shadow: 0 4px 16px var(--region-primary-glow);
}

.hero--region .form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--region-primary-glow);
}

/* ============================================
   STATS STRIP
   ============================================ */
.stats-strip {
    background: linear-gradient(135deg, var(--region-primary-pale) 0%, var(--white) 100%);
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(85, 221, 224, 0.2);
    border-bottom: 1px solid rgba(85, 221, 224, 0.2);
}

.stats-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 50% 80% at 20% 50%, rgba(85, 221, 224, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 80% 50%, rgba(85, 221, 224, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stats-strip__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    text-align: center;
}

.stats-strip__item {
    padding: var(--space-md);
    position: relative;
}

.stats-strip__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 1px;
    background: rgba(85, 221, 224, 0.3);
}

.stats-strip__number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--region-primary-darker);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stats-strip__label {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin-top: var(--space-xs);
}

/* ============================================
   SERVICES SECTION (Region style)
   ============================================ */
.services--region {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.services--region .section__label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.8125rem;
    padding: 6px 14px;
    background: var(--region-primary-pale);
    border-radius: var(--radius-full);
    color: var(--region-primary-darker);
}

.services--region .section__header {
    max-width: 640px;
}

.services--region .section__title {
    font-weight: 800;
}

.services--region .section__description {
    font-size: 1.0625rem;
}

.services--region .service-card {
    border: 1px solid var(--region-primary);
    border-radius: var(--radius-xl);
}

.services--region .service-card::before {
    height: 3px;
    background: linear-gradient(90deg, var(--region-primary), var(--region-primary-dark));
}

.services--region .service-card:hover {
    border-color: var(--region-primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.services--region .service-card__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--region-primary-pale) 0%, var(--white) 100%);
    border: 1px solid rgba(85, 221, 224, 0.2);
    border-radius: var(--radius-lg);
}

.services--region .service-card__icon svg {
    width: 26px;
    height: 26px;
    color: var(--region-primary-darker);
}

.services--region .service-card__title {
    font-size: 1.25rem;
}

.services--region .service-card__description {
    font-size: 0.9375rem;
    margin-bottom: var(--space-lg);
}

.services--region .service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--region-primary-darker);
}

.services--region .service-card__link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

.services--region .service-card__link:hover svg {
    transform: translateX(4px);
}

/* ============================================
   CASES SECTION (Region style)
   ============================================ */
.cases--region {
    padding: var(--space-3xl) 0;
    background: var(--gray-50);
}

.cases--region .cases__view-all {
    color: var(--region-primary-darker);
    border-color: var(--region-primary);
}

.cases--region .cases__view-all:hover {
    background: var(--region-primary);
    color: var(--white);
}

.cases--region .case-card {
    box-shadow: var(--shadow-sm);
    border: none;
}

.cases--region .case-card:hover {
    box-shadow: var(--shadow-lg);
}

.cases--region .case-card__link {
    color: var(--region-primary-darker);
}

/* ============================================
   QUOTE SECTION (Region style)
   ============================================ */
.quote-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a2a3a 100%);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 60% 50% at 10% 90%, rgba(85, 221, 224, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 90% 20%, rgba(85, 221, 224, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.quote-section__wire {
    position: absolute;
    top: -15%;
    right: -10%;
    width: 45%;
    opacity: 0.06;
    filter: brightness(0) invert(1);
}

.quote-section__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--space-2xl);
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.quote-section .quote__author {
    text-align: center;
}

.quote-section .quote__author-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto var(--space-md);
    border: 3px solid var(--region-primary);
    box-shadow: 0 8px 32px rgba(85, 221, 224, 0.3);
}

.quote-section .quote__author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-section .quote__author-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
}

.quote-section .quote__author-title {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: var(--space-xs);
}

.quote-section .quote__text-wrapper {
    position: relative;
}

.quote-section .quote__mark {
    position: absolute;
    font-size: 6rem;
    font-weight: 700;
    color: var(--region-primary);
    opacity: 0.4;
    top: -30px;
    left: -20px;
    line-height: 1;
}

.quote-section .quote__text {
    font-size: 1.375rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--white);
    font-style: italic;
}

/* ============================================
   PARTNERS SECTION
   ============================================ */
/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
    padding: var(--space-3xl) 0;
    background: var(--gray-50);
    overflow-x: hidden;
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.team-card {
    text-align: center;
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
    transition: var(--transition-base);
}

.team-card:hover {
    border-color: var(--region-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.team-card__image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto var(--space-md);
    border: 3px solid var(--region-primary-pale);
}

.team-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter var(--transition-base);
}

.team-card:hover .team-card__image img {
    filter: grayscale(0%);
}

.team-card__name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
}

.team-card__role {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--region-primary-darker);
    margin-bottom: var(--space-sm);
}

.team-card__bio {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.team__subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-lg);
}

.team__grid--compact {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.team__grid--five {
    grid-template-columns: repeat(5, 1fr);
}

.team-card--simple {
    padding: var(--space-md);
}

.team-card--simple .team-card__image {
    width: 80px;
    height: 80px;
}

.team-card--simple .team-card__name {
    font-size: 1.0625rem;
}

.team-card--simple .team-card__role {
    font-size: 0.875rem;
    margin-bottom: 0;
}

.team-card--more {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    background: var(--region-primary-pale);
    border: 2px dashed var(--region-primary);
    min-height: 160px;
}

.team-card--more:hover {
    background: var(--white);
}

.team-card__more-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--region-primary-darker);
}

.team__divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
    margin: var(--space-2xl) 0;
}

.team__cta {
    text-align: center;
    margin-top: var(--space-2xl);
}

.team__cta .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.team__cta .btn svg {
    width: 18px;
    height: 18px;
    transition: var(--transition-fast);
}

.team__cta .btn:hover svg {
    transform: translateX(4px);
}

/* ============================================
   PARTNERS SECTION
   ============================================ */
.partners {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.partners__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-lg);
}

.partner-card {
    text-align: center;
    padding: var(--space-lg);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
}

.partner-card:hover {
    background: var(--region-primary-pale);
    transform: translateY(-4px);
}

.partner-card__image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto var(--space-md);
    background: var(--gray-200);
}

.partner-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partner-card__name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.partner-card__role {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* ============================================
   CTA SECTION (Region style)
   ============================================ */
.cta-section--region {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, var(--region-primary-pale) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section--region .cta-section__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 60% 50% at 30% 50%, rgba(85, 221, 224, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 70% 30%, rgba(85, 221, 224, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section--region .cta-section__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section--region .cta-section__title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

.cta-section--region .cta-section__description {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.cta-section--region .cta-section__actions {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

/* CTA section buttons override */
.cta-section--region .btn--primary {
    background: linear-gradient(135deg, var(--region-primary) 0%, var(--region-primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 8px 24px var(--region-primary-glow);
}

.cta-section--region .btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px var(--region-primary-glow);
}

/* ============================================
   PAGE HERO (About pages etc)
   ============================================ */
.page-hero {
    padding: calc(80px + var(--space-3xl)) 0 var(--space-2xl);
    background: linear-gradient(180deg, var(--region-primary-pale) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.page-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 60% 50% at 20% 30%, rgba(85, 221, 224, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 80% 60%, rgba(85, 221, 224, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.page-hero__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

.page-hero__description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-600);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.about-content__title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
}

.about-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: var(--space-md);
}

.about-content a {
    color: var(--purple-primary);
    text-decoration: underline;
}

.about-content a:hover {
    color: var(--purple-light);
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.about-stat {
    background: var(--region-primary-pale);
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid rgba(85, 221, 224, 0.2);
}

.about-stat__number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--region-primary-darker);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.about-stat__label {
    font-size: 0.9375rem;
    color: var(--gray-600);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-section {
    padding: var(--space-3xl) 0;
    background: var(--gray-50);
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.how-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
    text-align: center;
}

.how-card__icon {
    width: 60px;
    height: 60px;
    background: var(--region-primary-pale);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
}

.how-card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--region-primary-darker);
}

.how-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

.how-card__text {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.how-values {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--region-primary);
}

.how-values__text {
    font-size: 1rem;
    color: var(--gray-600);
    margin: 0;
}

/* ============================================
   TEAM FULL SECTION (About page)
   ============================================ */
.team-full-section {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.team-full__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.team-full-card {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: var(--space-lg);
    background: var(--gray-50);
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
    transition: var(--transition-base);
}

.team-full-card:hover {
    border-color: var(--region-primary);
    box-shadow: var(--shadow-md);
}

.team-full-card__image {
    width: 150px;
    height: 150px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.team-full-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-full-card__name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
}

.team-full-card__role {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--region-primary-darker);
    margin-bottom: var(--space-sm);
}

.team-full-card__bio {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--gray-500);
    margin-bottom: var(--space-md);
}

.team-full-card__contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.team-full-card__contact a {
    font-size: 0.875rem;
    color: var(--gray-600);
    text-decoration: none;
    transition: var(--transition-fast);
}

.team-full-card__contact a:hover {
    color: var(--region-primary-darker);
}

/* ============================================
   PARTNERS PREVIEW SECTION
   ============================================ */
.partners-preview {
    padding: var(--space-3xl) 0;
    background: var(--gray-50);
}

.partners-preview__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.partner-preview-card {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
    text-align: center;
    transition: var(--transition-base);
}

.partner-preview-card:hover {
    border-color: var(--region-primary);
    transform: translateY(-4px);
}

.partner-preview-card__image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto var(--space-md);
}

.partner-preview-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partner-preview-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
}

.partner-preview-card__role {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--region-primary-darker);
    margin-bottom: var(--space-sm);
}

.partner-preview-card__text {
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.partners-preview__cta {
    text-align: center;
}

.partners-preview__note {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin-bottom: var(--space-md);
}

.partners-preview__cta .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

/* Link back to central site - purple styling */
.partners-preview__cta .btn--secondary {
    color: var(--purple-primary);
    border-color: var(--purple-primary);
}

.partners-preview__cta .btn--secondary:hover {
    background: var(--purple-primary);
    color: var(--white);
    border-color: var(--purple-primary);
}

/* ============================================
   NETWORK CARD - used on region "om oss" pages
   Same card style as on /natverk
   ============================================ */
.network-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.network-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    display: flex;
    gap: var(--space-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition-slow);
}

.network-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.network-card__image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--gray-100);
}

.network-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter var(--transition-base);
}

.network-card:hover .network-card__image img {
    filter: grayscale(0%);
}

.network-card__content {
    flex: 1;
}

.network-card__name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.network-card__role {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--region-primary-darker, var(--purple-primary));
    margin-bottom: var(--space-sm);
}

.network-card__bio {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: var(--space-sm);
}

.network-card__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--blue-dark);
}

.network-card__link:hover {
    text-decoration: underline;
}

/* Footer parent link - purple */
.footer__parent-link {
    color: var(--region-primary) !important;
}

.footer__parent-link:hover {
    color: var(--region-primary-light) !important;
}

/* ============================================
   RESPONSIVE - Region Pages
   ============================================ */

/* Navigation mobile breakpoint för regionssidor - högre än huvudsidan pga bredare logga och fler menylänkar */
@media (max-width: 1200px) {
    .nav--region .nav__links {
        display: none !important;
    }

    .nav--region .nav__cta {
        display: none !important;
    }

    .nav--region .nav__toggle,
    .nav--region .nav__mobile-toggle {
        display: flex !important;
    }

    .nav--region .nav__logo img {
        height: 24px !important;
    }
}

@media (max-width: 1024px) {
    .nav--region .nav__logo img {
        height: 22px !important;
    }

    .hero--region .hero__content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .hero--region .hero__text {
        text-align: center;
        max-width: 100%;
    }

    .hero--region .hero__features {
        align-items: center;
    }

    .hero--region .hero__cta {
        justify-content: center;
    }

    .hero__form-card {
        max-width: 480px;
        margin: 0 auto;
    }

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

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

    /* About page responsive */
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .about-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .about-stat {
        flex: 1;
        min-width: 150px;
    }

    .how-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto var(--space-2xl);
    }

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

    .partners-preview__grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .services--region .services__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .cases--region .cases__grid {
        grid-template-columns: 1fr;
    }

    .quote-section__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-lg);
    }

    .quote-section .quote__author-image {
        width: 100px;
        height: 100px;
    }

    .quote-section .quote__mark {
        position: relative;
        top: 0;
        left: 0;
        font-size: 4rem;
        display: block;
        margin-bottom: -30px;
    }

    .quote-section .quote__text {
        font-size: 1.125rem;
    }

    .partners__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team__grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .team__grid--five {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-card__bio {
        display: none;
    }
}

@media (max-width: 1024px) {
    .nav--region .nav__logo img {
        height: 22px !important;
    }
}

@media (max-width: 768px) {

    /* Hero mobile improvements */
    .hero--region {
        padding: calc(70px + var(--space-lg)) 0 var(--space-lg);
    }

    .hero--region .hero__badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .hero--region .hero__title {
        font-size: 1.75rem;
        margin-bottom: var(--space-sm);
    }

    .hero--region .hero__description {
        font-size: 1rem;
        margin-bottom: var(--space-lg);
    }

    .hero--region .hero__features {
        margin-bottom: var(--space-lg);
        gap: var(--space-xs);
    }

    .hero--region .hero__feature {
        font-size: 0.875rem;
        text-align: left;
        justify-content: flex-start;
    }

    .hero--region .hero__feature-icon {
        width: 20px;
        height: 20px;
    }

    .hero--region .hero__cta {
        flex-direction: column;
        width: 100%;
    }

    .hero--region .hero__cta .btn {
        width: 100%;
        justify-content: center;
    }

    .hero--region .hero__wire-t {
        opacity: 0.04;
        width: 80%;
        top: 0;
        right: -20%;
    }

    /* Form card mobile - wider and more accessible */
    .hero__form-card {
        padding: var(--space-md);
        border-radius: var(--radius-lg);
        margin-top: var(--space-lg);
        width: 100%;
        max-width: 100%;
    }

    .hero__form-card .form__title {
        font-size: 1.125rem;
    }

    .hero__form-card .form__subtitle {
        font-size: 0.875rem;
    }

    .hero__form-card .form__input,
    .hero__form-card .form__textarea {
        font-size: 16px; /* Prevent zoom on iOS */
    }

    .stats-strip__inner {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }

    .stats-strip__item:not(:last-child)::after {
        display: none;
    }

    .stats-strip__number {
        font-size: 2rem;
    }

    .cases--region .cases__header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-lg);
    }

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

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

    /* About page mobile */
    .page-hero__title {
        font-size: 1.75rem;
    }

    .about-stats {
        flex-direction: column;
    }

    .about-stat__number {
        font-size: 2rem;
    }

    .team-full-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .team-full-card__image {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    .team-full-card__contact {
        align-items: center;
    }

    .partners-preview__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .network-card {
        flex-direction: column;
        text-align: center;
    }

    .network-card__image {
        margin: 0 auto;
    }

    .team__grid--compact {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .team__grid--five {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .team-card {
        padding: var(--space-md);
    }

    .team-card--simple {
        padding: var(--space-sm);
    }

    .team-card__image {
        width: 70px;
        height: 70px;
    }

    .team-card--simple .team-card__image {
        width: 60px;
        height: 60px;
    }

    .team-card__name {
        font-size: 1rem;
    }

    .team-card--simple .team-card__name {
        font-size: 0.9375rem;
    }

    .team-card__role {
        font-size: 0.75rem;
    }

    .team-card--simple .team-card__role {
        font-size: 0.8125rem;
    }

    .team-card--more {
        min-height: 120px;
    }

    .team__subtitle {
        font-size: 0.875rem;
    }

    .team__divider {
        margin: var(--space-xl) 0;
    }

    .cta-section--region .cta-section__actions {
        flex-direction: column;
        align-items: center;
    }
}

