:root {
    --snow-white: #e8eaed;
    --energetic-red: #e40046;
    --cobalt-blue: #1f2a44;
    --cobalt-light: #2a3756;
    --cobalt-dark: #161e32;
    --text-primary: #1a1a2e;
    --text-secondary: #4a4a6a;
    --text-light: #c8ccd4;
    --bg-light: #f7f8fa;
    --bg-white: #ffffff;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
}

.header.scrolled .nav-link {
    color: var(--text-primary);
}

.header.scrolled .nav-link:hover {
    color: var(--energetic-red);
}

.header.scrolled .logo {
    color: var(--cobalt-blue);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    transition: var(--transition);
}

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

.logo-img-pos {
    display: none;
}

.header.scrolled .logo-img-neg {
    display: none;
}

.header.scrolled .logo-img-pos {
    display: block;
}

.logo-icon {
    width: 48px;
    height: 32px;
}

.logo-name {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo-city {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: white;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--energetic-red);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-login {
    background: var(--energetic-red);
    color: white !important;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
}

.nav-login::after {
    display: none;
}

.nav-login:hover {
    background: #c7003c;
}

/* Kompakt nav (hamburger) — slås på av script.js når lenkene ikke får plass,
   uavhengig av fast skjermbredde. Se updateNavCompact() i script.js. */
.header.nav-compact .nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: var(--cobalt-blue);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 8px;
    transition: var(--transition);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
}

.header.nav-compact .nav.open {
    right: 0;
}

.header.nav-compact .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

.header.nav-compact .nav-link::after {
    display: none;
}

.header.nav-compact .nav-login {
    margin-top: 16px;
    text-align: center;
}

.header.nav-compact .menu-toggle {
    display: flex;
}

.header.nav-compact .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header.nav-compact .menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.header.nav-compact .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 101;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: white;
    transition: var(--transition);
    border-radius: 1px;
}

.header.scrolled .menu-toggle span {
    background: var(--cobalt-blue);
}

.header.scrolled .menu-toggle.open span {
    background: white;
}

/* Hero */
/* Page Hero (undersider) */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 700px;
}

.page-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
}

.page-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.hero-identitet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.hero-identitet-card {
    background: white;
    border: 1px solid #e8eaed;
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    text-align: left;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}

.hero-identitet-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.hero-identitet-card h3 {
    color: var(--cobalt-blue);
    font-size: 18px;
    margin-bottom: 8px;
}

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

/* Cost cards */
.cost-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.cost-card {
    background: white;
    border: 1px solid #e8eaed;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
}

.cost-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--cobalt-blue);
    margin-bottom: 8px;
}

.cost-amount {
    font-size: 28px;
    font-weight: 900;
    color: var(--energetic-red);
    margin-bottom: 4px;
}

.cost-card p {
    font-size: 13px;
    color: var(--text-secondary);
}

.cost-card-light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.cost-card-light h3 { color: white; }
.cost-card-light .cost-amount { color: white; }
.cost-card-light p { color: rgba(255, 255, 255, 0.7); }

/* Education page */
.edu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.edu-main h3, .edu-program h3 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.edu-main p { color: rgba(255, 255, 255, 0.8); margin-bottom: 12px; }
.edu-main ul { list-style: none; padding: 0; }
.edu-main li { color: rgba(255, 255, 255, 0.7); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 14px; }

.edu-cards { display: flex; flex-direction: column; gap: 12px; }
.edu-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.edu-card strong { color: var(--energetic-red); font-size: 16px; min-width: 32px; }
.edu-card span { color: rgba(255, 255, 255, 0.8); font-size: 14px; }
.edu-hours { margin-left: auto; font-size: 12px !important; font-weight: 600; color: rgba(255, 255, 255, 0.5) !important; }

.info-text p { font-size: 16px; color: rgba(255, 255, 255, 0.8); margin-bottom: 16px; max-width: 600px; }
.info-text ul { list-style: none; padding: 0; }
.info-text li { color: rgba(255, 255, 255, 0.7); padding: 6px 0; font-size: 14px; }
.info-text li::before { content: '→ '; color: var(--energetic-red); }

/* Instagram grid */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ig-card {
    display: block;
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.ig-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.ig-card:hover img { transform: scale(1.05); }

.ig-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}

.ig-card:hover .ig-overlay { opacity: 1; }

.ig-overlay span {
    color: white;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
}

.instagram-open-bar {
    grid-column: 1 / -1;
    text-align: center;
}

.instagram-open-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: var(--transition);
}

.instagram-open-link:hover {
    border-color: var(--energetic-red);
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .cost-grid { grid-template-columns: 1fr; max-width: 280px; }
    .edu-grid { grid-template-columns: 1fr; }
    .hero-identitet-grid { grid-template-columns: 1fr; }
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
    .page-hero { padding: 120px 0 60px; }
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 80px;
    box-sizing: border-box;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--cobalt-dark) 0%, var(--cobalt-blue) 40%, #2d4a6f 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    transform: rotate(-15deg);
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(22, 30, 50, 0.6), transparent);
}

.hero-split {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
    max-width: 1200px;
    color: white;
}

.hero-text {
    flex: 1;
    text-align: center;
    min-width: 0;
}

.hero-image {
    flex: 1;
    position: relative;
    min-height: 420px;
    border-radius: 16px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: opacity 1.5s ease;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--energetic-red);
    color: white;
    border: 2px solid var(--energetic-red);
}

.btn-primary:hover {
    background: #c7003c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(228, 0, 70, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.btn-large {
    padding: 18px 40px;
    font-size: 17px;
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--cobalt-blue);
    color: white;
}

.section-dark .section-tag {
    color: var(--energetic-red);
}

.section-dark .section-title {
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--energetic-red);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--cobalt-blue);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.section-dark .section-desc {
    color: var(--text-light);
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.about-card {
    background: white;
    border: 1px solid #e8eaed;
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.about-icon {
    width: 48px;
    height: 48px;
    background: rgba(228, 0, 70, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.about-icon svg {
    width: 24px;
    height: 24px;
    color: var(--energetic-red);
}

.about-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--cobalt-blue);
}

.about-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Vision */
.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.vision-quote {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--cobalt-blue);
    border-left: 4px solid var(--energetic-red);
    padding-left: 24px;
}

.vision-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.vision-desc strong {
    color: var(--energetic-red);
}

.principles h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--cobalt-blue);
}

.principles-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.principles-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.section-dark .vision-quote { color: white; }
.section-dark .vision-desc { color: var(--text-light); }
.section-dark .principles h3 { color: white; }
.section-dark .principles-list li { color: var(--text-light); }

.principle-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(228, 0, 70, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.principle-icon svg {
    width: 18px;
    height: 18px;
    color: var(--energetic-red);
}

/* Goals */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.goal-card {
    padding: 32px;
    border-radius: 16px;
    color: white;
    position: relative;
    overflow: hidden;
}

.goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 0 0 0 100%;
}

.goal-number {
    font-size: 40px;
    font-weight: 900;
    opacity: 0.3;
    margin-bottom: 12px;
}

.goal-card p {
    font-size: 15px;
    line-height: 1.6;
}

.goal-purple { background: linear-gradient(135deg, #8b2fc9, #a855f7); }
.goal-teal { background: linear-gradient(135deg, #0d9488, #2dd4bf); }
.goal-green { background: linear-gradient(135deg, #16a34a, #4ade80); }
.goal-blue { background: linear-gradient(135deg, var(--cobalt-blue), #3b5998); }

/* Organization */
.org-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.org-text p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.org-members h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.org-members ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.org-members li {
    font-size: 14px;
    color: var(--text-light);
    padding-left: 16px;
    position: relative;
}

.org-members li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--energetic-red);
}

.org-chart {
    display: flex;
    align-items: center;
    gap: 24px;
}

.org-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.org-side h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    color: var(--text-light);
}

.org-box {
    background: rgba(228, 0, 70, 0.1);
    border: 1px solid rgba(228, 0, 70, 0.2);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: white;
}

.org-top {
    background: rgba(228, 0, 70, 0.2);
    border-color: var(--energetic-red);
}

.org-connector {
    width: 2px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    margin: 4px 0;
}

.org-row {
    display: flex;
    gap: 12px;
}

.org-small {
    font-size: 12px;
    padding: 8px 16px;
}

.org-arrow {
    flex-shrink: 0;
}

.org-arrow svg {
    width: 48px;
    height: 24px;
    color: rgba(255, 255, 255, 0.3);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.team-card {
    background: white;
    border: 1px solid #e8eaed;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.team-avatar {
    width: 72px;
    height: 72px;
    background: var(--cobalt-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    margin: 0 auto 16px;
}

.team-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--cobalt-blue);
    margin-bottom: 16px;
}

.team-rolle {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.team-photo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    display: block;
}

/* Team Modal */
.team-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 200;
}

.team-overlay.open {
    display: block;
}

.team-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    padding: 40px;
    width: 90%;
    max-width: 460px;
    max-height: 85vh;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
    z-index: 201;
    text-align: center;
}

.team-modal.open {
    display: flex;
    flex-direction: column;
}

.team-modal-img {
    margin-bottom: 16px;
}

.team-modal-img img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    display: block;
}

.team-modal-img .team-avatar {
    margin: 0 auto;
}

.team-modal h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--cobalt-blue);
    margin-bottom: 4px;
}

.team-modal-rolle {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 20px;
}

.team-modal-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: left;
    margin-bottom: 24px;
}

.team-modal-list {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
    padding-right: 6px;
    -webkit-overflow-scrolling: touch;
}

.team-modal-list li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    padding-left: 14px;
    position: relative;
}

.team-modal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--energetic-red);
}

.team-modal-list li:last-child {
    border-bottom: none;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.focus-item {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.focus-item:hover {
    background: var(--cobalt-blue);
    color: white;
    transform: translateY(-2px);
}

/* Fokus Modal */
.fokus-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 200;
}

.fokus-overlay.open {
    display: block;
}

.fokus-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    padding: 40px;
    width: 90%;
    max-width: 460px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
    z-index: 201;
    text-align: center;
}

.fokus-modal.open {
    display: block;
}

.fokus-modal-icon {
    width: 56px;
    height: 56px;
    background: rgba(228, 0, 70, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.fokus-modal-icon svg {
    width: 28px;
    height: 28px;
    color: var(--energetic-red);
}

.fokus-modal h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--cobalt-blue);
    margin-bottom: 12px;
}

.fokus-modal p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.fokus-modal-close {
    background: var(--cobalt-blue);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: var(--transition);
}

.fokus-modal-close:hover {
    background: var(--cobalt-light);
}

.focus-item svg {
    width: 28px;
    height: 28px;
    color: var(--energetic-red);
}

.focus-item span {
    font-size: 13px;
    font-weight: 600;
}

/* Sponsors */
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.sponsor-card {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.sponsor-card:hover {
    border-color: rgba(228, 0, 70, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.sponsor-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.sponsor-open-bar {
    text-align: center;
    margin-top: 20px;
}

.sponsor-open-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: 2px dashed rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    background: var(--bg-light);
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.sponsor-open-link:hover {
    border-color: var(--energetic-red);
    background: var(--bg-white);
}

.sponsor-cta {
    font-size: 13px;
    font-weight: 600;
    color: var(--energetic-red);
}

.sponsor-logo {
    max-height: 80px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
}

.sponsor-tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.sponsor-tier-card {
    background: white;
    border: 1px solid #e8eaed;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.sponsor-tier-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.sponsor-tier-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(228, 0, 70, 0.1);
    color: var(--energetic-red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.sponsor-tier-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--cobalt-blue);
    margin-bottom: 8px;
}

.sponsor-tier-price {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 20px;
}

.sponsor-tier-list {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sponsor-tier-list li {
    font-size: 14px;
    color: var(--text-secondary);
    padding-left: 18px;
    position: relative;
}

.sponsor-tier-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--energetic-red);
}

.hero-sponsors-bar {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-top: 32px;
}

.hero-sponsors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    align-items: center;
    justify-items: center;
    gap: 24px 40px;
    opacity: 0.7;
}

.hero-sponsor-logo {
    height: 80px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(1.1);
}

.hero-sponsor-name {
    color: white;
    font-size: 18px;
    font-weight: 700;
}

/* Arrangementer (bli-kjent.html) */
.event-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.event-card {
    flex: 0 1 340px;
    background: white;
    border: 1px solid #e8eaed;
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.event-date {
    font-size: 17px;
    font-weight: 800;
    color: var(--energetic-red);
}

.event-date::first-letter { text-transform: uppercase; }

.event-place {
    font-size: 14px;
    font-weight: 600;
    color: var(--cobalt-blue);
}

.event-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
}

.event-card { cursor: pointer; }

.event-card:focus-visible { outline: 3px solid var(--energetic-red); outline-offset: 2px; }

.event-title {
    font-size: 19px;
    font-weight: 800;
    color: var(--cobalt-blue);
}

.event-more {
    font-size: 14px;
    font-weight: 700;
    color: var(--energetic-red);
    margin-top: 4px;
}

/* Arrangement-popup (bygger på .fokus-modal) */
.arr-modal {
    max-width: 620px;
    max-height: 85vh;
    overflow-y: auto;
    text-align: left;
}

.arr-modal .section-tag { margin-bottom: 8px; }

.arr-modal-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #e8eaed;
}

.arr-modal-body { color: var(--text-secondary); font-size: 15px; line-height: 1.7; }
.arr-modal .arr-modal-body p { margin: 0 0 14px; }
.arr-modal-body ul, .arr-modal-body ol { margin: 0 0 14px 20px; }
.arr-modal-body li { margin-bottom: 4px; }
.arr-modal-body strong { color: var(--text-primary); }
.arr-modal-body a { color: var(--energetic-red); }

.arr-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

@media (max-width: 480px) {
    .arr-modal { padding: 28px 22px; }
}

.event-empty {
    text-align: center;
    color: var(--text-secondary);
}

.section-dark .event-empty { color: var(--text-light); }

@media (max-width: 768px) {
    .event-card { flex-basis: 100%; }
}

/* CTA */
.section-cta {
    background: linear-gradient(135deg, var(--cobalt-dark) 0%, var(--cobalt-blue) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: var(--cobalt-dark);
    color: var(--text-light);
    padding: 60px 0 30px;
}

.footer-inner {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer .logo {
    color: white;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-light);
    max-width: 300px;
}

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

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--energetic-red);
}

.footer-col p {
    font-size: 14px;
}

.footer-bottom {
    margin-top: 40px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .org-layout {
        grid-template-columns: 1fr;
    }

    .org-chart {
        flex-direction: column;
    }

    .org-arrow {
        transform: rotate(90deg);
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-split {
        flex-direction: column-reverse;
        gap: 32px;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-image {
        min-height: 250px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 60px 0;
    }

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

    .team-modal {
        padding: 24px;
        max-height: 90vh;
    }
}
