/* Om oss - Komplett ny design */

/* Main Profile Section */
.main-profile-section {
    min-height: 100vh;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(4, 28, 44, 0.95) 0%, rgba(2, 17, 27, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

.main-profile-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 167, 225, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(0, 167, 225, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.profile-layout {
    display: grid;
    grid-template-columns: 250px 450px 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    min-height: 80vh;
    align-items: start; /* Sikrer at alle starter på samme høyde */
}

/* Navigation Menu */
.nav-menu {
    position: sticky;
    top: 0; /* Endret fra 2rem til 0 for å starte på samme høyde */
    width: 250px;
    margin-right: auto;
    margin-left: 0;
}

.profile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-start;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
    text-align: left;
    background: linear-gradient(145deg, rgba(4, 28, 44, 0.6) 0%, rgba(2, 17, 27, 0.8) 100%);
    border: 1px solid rgba(0, 167, 225, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 250px;
    width: 250px;
    height: 56px;
    justify-content: flex-start;
    box-sizing: border-box;
}

.nav-item:hover {
    background: linear-gradient(145deg, rgba(0, 167, 225, 0.15) 0%, rgba(0, 167, 225, 0.1) 100%);
    color: #00A7E1;
    border-color: rgba(0, 167, 225, 0.4);
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 167, 225, 0.15);
}

.nav-item.active {
    background: linear-gradient(145deg, rgba(0, 167, 225, 0.2) 0%, rgba(0, 167, 225, 0.15) 100%);
    color: #00A7E1;
    border-color: rgba(0, 167, 225, 0.5);
    font-weight: 600;
    box-shadow: 0 6px 25px rgba(0, 167, 225, 0.2);
}

/* Profile Card */
.profile-card {
    background: linear-gradient(145deg, rgba(4, 28, 44, 0.9) 0%, rgba(2, 17, 27, 0.95) 100%);
    border-radius: 20px;
    padding: 1rem;
    border: 1px solid rgba(0, 167, 225, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0; /* Endret fra 2rem til 0 for å starte på samme høyde */
    height: fit-content;
    min-height: 500px;
}

.profile-image {
    margin-bottom: 0.5rem;
    text-align: center;
}

.profile-photo {
    width: 290px;
    height: 380px;
    border-radius: 16px;
    object-fit: cover;
    object-position: center 20%;
    border: 3px solid rgba(0, 167, 225, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.profile-info h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #00A7E1;
    margin-bottom: 0.2rem;
    line-height: 1.2;
}

.profile-info .title {
    font-size: 1.1rem;
    color: rgba(0, 167, 225, 0.8);
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: lowercase;
}

.profile-info .description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.credential {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.2rem;
    background: rgba(0, 167, 225, 0.08);
    border: 1px solid rgba(0, 167, 225, 0.2);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.credential::before {
    content: '🎓';
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.credential:hover {
    background: rgba(0, 167, 225, 0.15);
    border-color: rgba(0, 167, 225, 0.4);
    transform: translateY(-2px);
}

/* Skjult innhold */
.profile-expanded,
.story-full {
    display: none;
}

.profile-expanded.visible,
.story-full.visible {
    display: block;
    animation: fadeInContent 0.4s ease;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-expanded .credentials {
    margin-top: 1.5rem;
}

/* Profile & Story Actions */
.profile-actions,
.story-actions {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 167, 225, 0.1);
}

.profile-read-more-btn,
.story-read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(0, 167, 225, 0.1);
    color: #00A7E1;
    border: 1px solid rgba(0, 167, 225, 0.3);
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.profile-read-more-btn:hover,
.story-read-more-btn:hover {
    background: rgba(0, 167, 225, 0.2);
    border-color: rgba(0, 167, 225, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 167, 225, 0.2);
}

.profile-read-more-btn .arrow-icon,
.story-read-more-btn .arrow-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.profile-read-more-btn.expanded .arrow-icon,
.story-read-more-btn.expanded .arrow-icon {
    transform: rotate(180deg);
}

.story-actions {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 167, 225, 0.1);
}

/* Content Sections */
.content-sections {
    background: linear-gradient(145deg, rgba(4, 28, 44, 0.9) 0%, rgba(2, 17, 27, 0.95) 100%);
    border-radius: 20px;
    border: 1px solid rgba(0, 167, 225, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    min-height: 500px;
    height: fit-content;
    padding: 1.75rem;
    position: relative;
}

.content-section {
    display: none;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

.content-section.active {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInContent 0.4s ease;
}

.content-section h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #00A7E1;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.content-section h4 {
    color: #00A7E1;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.content-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-style: italic;
}

/* Intro Box */
.intro-box {
    background: rgba(0, 167, 225, 0.05);
    border-left: 4px solid rgba(0, 167, 225, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.intro-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Experience List */
.experience-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1.2rem 0 1.5rem 0;
}

.experience-item {
    padding: 0.6rem 1rem;
    background: rgba(0, 167, 225, 0.1);
    border: 1px solid rgba(0, 167, 225, 0.2);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.experience-item:hover {
    background: rgba(0, 167, 225, 0.15);
    border-color: rgba(0, 167, 225, 0.4);
    transform: translateY(-2px);
}

/* Mistake Cards */
.mistake-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
    margin: 2rem 0;
}

.mistake-card {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(185, 28, 28, 0.05));
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 12px;
    padding: 1.2rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.mistake-card:hover {
    transform: translateY(-2px);
    border-color: rgba(220, 38, 38, 0.4);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(185, 28, 28, 0.08));
}

.mistake-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    filter: grayscale(0.3);
    opacity: 0.9;
}

.mistake-content h5 {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.mistake-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 0.5rem 0;
}

.mistake-content p:last-child {
    margin-bottom: 0;
}

/* Puzzle Pieces */
.puzzle-pieces {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.puzzle-pieces li {
    padding: 0.75rem 1rem 0.75rem 0.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    background: rgba(0, 167, 225, 0.05);
    border-left: 3px solid rgba(0, 167, 225, 0.3);
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
}

.puzzle-pieces li:hover {
    background: rgba(0, 167, 225, 0.1);
    border-left-color: rgba(0, 167, 225, 0.6);
    transform: translateX(5px);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.team-member {
    background: rgba(4, 28, 44, 0.4);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 167, 225, 0.2);
}

.team-member h4 {
    color: #00A7E1;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-member .role {
    color: rgba(0, 167, 225, 0.8);
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.team-member p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Technology Section */
.tech-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tech-feature {
    background: rgba(0, 167, 225, 0.08);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 167, 225, 0.2);
    transition: all 0.3s ease;
}

.tech-feature:hover {
    background: rgba(0, 167, 225, 0.12);
    transform: translateY(-4px);
}

.tech-feature h4 {
    color: #00A7E1;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tech-feature p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.value-card {
    background: rgba(34, 197, 94, 0.08);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(34, 197, 94, 0.12);
    transform: translateY(-4px);
}

.value-card h4 {
    color: #22C55E;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Statistics Section */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.comparison-item {
    background: rgba(4, 28, 44, 0.6);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 167, 225, 0.2);
    text-align: center;
}

.comparison-item h4 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.big-stat {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.big-stat.green { color: #00E676; }
.big-stat.blue { color: #00A7E1; }
.big-stat.gray { color: #94A3B8; }

.comparison-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.disclaimer-box {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.disclaimer-box p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.9rem;
}

/* Timeline Section */
.vision-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-item {
    background: rgba(4, 28, 44, 0.4);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #00A7E1;
    position: relative;
}

.timeline-item h4 {
    color: #00A7E1;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

/* Responsibility Section */
.responsibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.responsibility-card {
    background: rgba(168, 85, 247, 0.08);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    transition: all 0.3s ease;
}

.responsibility-card:hover {
    background: rgba(168, 85, 247, 0.12);
    transform: translateY(-4px);
}

.responsibility-card h4 {
    color: #A855F7;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.responsibility-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Methodology Section */
.methodology-section {
    padding: 4rem 0;
    background-color: rgba(4, 28, 44, 0.3);
}

.methodology-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #00A7E1;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.method-card {
    background: linear-gradient(145deg, rgba(0, 167, 225, 0.14), rgba(0, 167, 225, 0.08));
    border: 1px solid rgba(0, 167, 225, 0.35);
    border-radius: 15px;
    padding: 1.3rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(0, 167, 225, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.method-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 167, 225, 0.06), transparent 60%);
    pointer-events: none;
}

.method-card:hover::before {
    opacity: 1;
}

.method-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 167, 225, 0.5);
    box-shadow: 0 16px 38px rgba(0, 167, 225, 0.25);
}

.method-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 167, 225, 0.28), rgba(0, 167, 225, 0.18));
    border: 2px solid rgba(0, 167, 225, 0.5);
    font-size: 1.8rem;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 20px rgba(0, 167, 225, 0.35), inset 0 2px 8px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.method-card:hover .method-icon {
    transform: scale(1.1);
}

.method-card h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 0.8rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.method-card p {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Metodikk introduksjon og filosofi */
.methodology-intro {
    max-width: 1000px;
    margin: 0 auto 2rem;
    padding: 0 1rem;
}

.philosophy-lead {
    font-size: 1.15rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
    margin-bottom: 1.6rem;
    padding: 1.3rem 1.6rem;
    background: linear-gradient(135deg, rgba(0, 167, 225, 0.08), rgba(0, 167, 225, 0.03));
    border-radius: 12px;
    border: 1px solid rgba(0, 167, 225, 0.2);
}

.problem-intro {
    font-size: 1.03rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    margin: 1.6rem 0 1.2rem;
    padding: 0 1rem;
}

.philosophy-problems {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.6rem 0;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 1.4rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.12), rgba(220, 38, 38, 0.08));
    border: 1px solid rgba(220, 38, 38, 0.35);
    border-left: 4px solid rgba(220, 38, 38, 0.7);
    border-radius: 10px;
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.88);
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.15);
}

.problem-item:hover {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.16), rgba(220, 38, 38, 0.10));
    border-color: rgba(220, 38, 38, 0.5);
    transform: translateX(6px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.25);
}

.philosophy-belief {
    font-size: 1.08rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
    margin-top: 1.8rem;
    padding: 1.4rem 1.7rem;
    background: linear-gradient(135deg, rgba(0, 167, 225, 0.12), rgba(0, 167, 225, 0.06));
    border: 1px solid rgba(0, 167, 225, 0.3);
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0, 167, 225, 0.18);
    position: relative;
    overflow: hidden;
}

.philosophy-belief::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 167, 225, 0.5), transparent);
}

.principles-heading {
    text-align: center;
    font-size: 1.45rem;
    color: var(--primary-blue);
    margin: 2.5rem 0 1rem;
    font-weight: 600;
}

.principles-intro {
    font-size: 1.03rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    margin: 1rem 0 2rem;
    padding: 0 1rem;
}

/* Metodikk konklusjon */
.methodology-conclusion {
    max-width: 1000px;
    margin: 2.5rem auto 0;
    padding: 0 1rem;
}

.conclusion-highlight {
    background: linear-gradient(135deg, rgba(0, 167, 225, 0.14), rgba(0, 167, 225, 0.08));
    border: 1px solid rgba(0, 167, 225, 0.4);
    border-left: 4px solid rgba(0, 167, 225, 0.7);
    border-radius: 12px;
    padding: 1.5rem 1.8rem;
    margin-bottom: 1.2rem;
    box-shadow: 0 10px 26px rgba(0, 167, 225, 0.2);
    position: relative;
    overflow: hidden;
}

.conclusion-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 167, 225, 0.6), transparent);
}

.conclusion-highlight::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 167, 225, 0.08), transparent 60%);
    pointer-events: none;
}

.conclusion-highlight h4 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 0.9rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.conclusion-highlight p {
    font-size: 1.08rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    position: relative;
    z-index: 1;
}

.conclusion-honesty {
    padding: 1.3rem 1.6rem;
    background: linear-gradient(135deg, rgba(4, 28, 44, 0.7), rgba(4, 28, 44, 0.5));
    border: 1px solid rgba(0, 167, 225, 0.25);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.conclusion-honesty p {
    font-size: 1.03rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1rem;
}

.conclusion-honesty p:last-child {
    margin-bottom: 0;
}

.conclusion-honesty em {
    color: rgba(255, 193, 7, 0.95);
    font-style: italic;
}

.final-statement {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    border-top: 2px solid rgba(0, 167, 225, 0.3);
    padding-top: 1rem;
    margin-top: 1rem;
}

/* Results Section */
.results-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(2, 17, 27, 0.95) 0%, rgba(4, 28, 44, 0.9) 100%);
    position: relative;
}

.results-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 167, 225, 0.08) 0%, transparent 70%),
        radial-gradient(circle at 70% 70%, rgba(0, 167, 225, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.results-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.stat-box {
    background: linear-gradient(145deg, rgba(4, 28, 44, 0.9) 0%, rgba(2, 17, 27, 0.95) 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(0, 167, 225, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(0, 167, 225, 0.8), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.stat-box:hover::before {
    transform: translateX(100%);
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 167, 225, 0.4);
    box-shadow: 0 20px 50px rgba(0, 167, 225, 0.15);
}

.big-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.big-number.green {
    color: #00E676;
}

.big-number.blue {
    color: #00A7E1;
}

.comparison {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 500;
}

/* Final CTA Section */
.final-cta {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, rgba(0, 167, 225, 0.08) 0%, rgba(4, 28, 44, 0.9) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 2px solid rgba(0, 167, 225, 0.3);
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(0, 167, 225, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 167, 225, 0.08), transparent);
    border-radius: 16px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 167, 225, 0.15);
}

.cta-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 167, 225, 0.3);
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    min-width: 180px;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #00A7E1 0%, #0084B3 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 167, 225, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 167, 225, 0.4);
    background: linear-gradient(135deg, #0084B3 0%, #00A7E1 100%);
}

.btn-secondary {
    background: transparent;
    color: #00A7E1;
    border: 2px solid #00A7E1;
}

.btn-secondary:hover {
    background: rgba(0, 167, 225, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 167, 225, 0.2);
}

/* Expanded Sections - Identisk styling som main-profile-section */
.expanded-profile-section,
.expanded-story-section {
    min-height: 50vh;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(4, 28, 44, 0.95) 0%, rgba(2, 17, 27, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

.expanded-profile-section::before,
.expanded-story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 167, 225, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(0, 167, 225, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.expanded-profile-section .container,
.expanded-story-section .container {
    position: relative;
    z-index: 1;
}

.expanded-profile-section h2,
.expanded-story-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00A7E1;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.expanded-profile-section .description,
.expanded-story-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
}

.expanded-story-section h4 {
    color: #00A7E1;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.expanded-profile-section .credentials {
    margin-top: 2rem;
}

/* Expanded Profile Styling */
.profile-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-style: italic;
    text-align: center;
}

.profile-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(4, 28, 44, 0.6) 0%, rgba(2, 17, 27, 0.8) 100%);
    border-radius: 15px;
    border: 1px solid rgba(0, 167, 225, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.profile-section h3 {
    color: #00A7E1;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(0, 167, 225, 0.3);
    padding-bottom: 0.5rem;
}

.profile-section h4 {
    color: #00A7E1;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.profile-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.profile-section strong {
    color: #00A7E1;
    font-weight: 600;
}

/* Competence Grid */
.competence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.competence-area {
    background: rgba(0, 167, 225, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 167, 225, 0.2);
}

.skill-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skill-list li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding-left: 1.5rem;
}

.skill-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #00A7E1;
    font-size: 0.8rem;
}

/* Interest Grid */
.interest-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.interest-item {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.2rem;
    background: rgba(0, 167, 225, 0.1);
    border: 1px solid rgba(0, 167, 225, 0.3);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.interest-item:hover {
    background: rgba(0, 167, 225, 0.2);
    border-color: rgba(0, 167, 225, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 167, 225, 0.2);
}

/* Compact Skills in Profile Card */
.compact-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.skill-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(0, 167, 225, 0.15);
    border: 1px solid rgba(0, 167, 225, 0.4);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.skill-badge:hover {
    background: rgba(0, 167, 225, 0.25);
    border-color: rgba(0, 167, 225, 0.6);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 167, 225, 0.2);
}

/* Expanded Profile Header */
.expanded-profile-header {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(4, 28, 44, 0.6) 0%, rgba(2, 17, 27, 0.8) 100%);
    border-radius: 20px;
    border: 1px solid rgba(0, 167, 225, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.expanded-profile-image {
    flex-shrink: 0;
}

.expanded-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid rgba(0, 167, 225, 0.4);
    object-fit: cover;
    object-position: center;
    box-shadow: 0 10px 30px rgba(0, 167, 225, 0.2);
}

.expanded-profile-intro {
    flex: 1;
}

.expanded-profile-intro h2 {
    margin-bottom: 1rem;
}

.expanded-profile-intro .profile-intro {
    margin: 0;
    text-align: left;
}

/* Personal Story Section */
.personal-story-section {
    margin: 3rem 0;
    padding: 2.5rem;
    background: linear-gradient(145deg, rgba(4, 28, 44, 0.6) 0%, rgba(2, 17, 27, 0.8) 100%);
    border-radius: 20px;
    border: 1px solid rgba(0, 167, 225, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.personal-story-section h3 {
    color: #00A7E1;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(0, 167, 225, 0.3);
    padding-bottom: 0.5rem;
}

.personal-story-section h4 {
    color: #00A7E1;
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.personal-story-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.personal-story-section p strong {
    color: #00A7E1;
    font-weight: 600;
}

.personal-story-section p em {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.personal-story-section a {
    color: #00A7E1;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 167, 225, 0.3);
    transition: all 0.3s ease;
}

.personal-story-section a:hover {
    color: #00c4ff;
    border-bottom-color: rgba(0, 167, 225, 0.6);
}

.driver-list,
.puzzle-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.driver-list li,
.puzzle-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.driver-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #00A7E1;
    font-size: 0.8rem;
}

.puzzle-list li::before {
    content: '🧩';
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.blog-link {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 167, 225, 0.2);
    text-align: center;
    font-size: 0.95rem;
}

/* Compact Grid Layout */
.profile-grid-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    align-items: stretch;
}

.profile-section.compact {
    margin-bottom: 0;
    padding: 1.3rem 1.6rem;
    background: linear-gradient(145deg, rgba(0, 167, 225, 0.12), rgba(0, 167, 225, 0.06));
    border-radius: 12px;
    border: 1px solid rgba(0, 167, 225, 0.35);
    border-left: 4px solid rgba(0, 167, 225, 0.7);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%; /* Sikrer at boksene blir like høye i grid-raden */
}

.profile-section.compact::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 167, 225, 0.08), transparent 60%);
    pointer-events: none;
}

.profile-section.compact h3 {
    color: var(--primary-blue);
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.profile-section.compact > p {
    position: relative;
    z-index: 1;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    font-size: 0.92rem;
}

/* Role Timeline */
.role-timeline {
    margin-top: 1.5rem;
    flex: 1;
}

.role-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    background: rgba(0, 167, 225, 0.08);
    border-radius: 8px;
    border-left: 3px solid rgba(0, 167, 225, 0.4);
}

.role-period {
    font-size: 0.85rem;
    color: rgba(0, 167, 225, 0.9);
    font-weight: 600;
    min-width: 80px;
}

.role-title {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    flex: 1;
    text-align: right;
}

/* Skill Categories */
.skill-category {
    margin-bottom: 1.5rem;
}

.skill-category h4 {
    margin: 0 0 0.75rem 0;
    font-size: 1rem;
    color: #00A7E1;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    padding: 0.4rem 0.8rem;
    background: rgba(0, 167, 225, 0.15);
    border: 1px solid rgba(0, 167, 225, 0.3);
    border-radius: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    font-weight: 500;
}

.education-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.education-item {
    padding: 0.6rem 0.8rem;
    background: rgba(0, 167, 225, 0.08);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    border-left: 2px solid rgba(0, 167, 225, 0.4);
}

/* Leadership Principles */
.leadership-principles {
    margin-top: 0.5rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.principle-item {
    display: flex;
    flex-direction: column; /* Ikon over tekst */
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 0.55rem;
    margin-bottom: 0;
    padding: 1rem 1.1rem 1.15rem;
    background: linear-gradient(135deg, rgba(0, 167, 225, 0.10), rgba(0, 167, 225, 0.05));
    border-radius: 10px;
    border: 1px solid rgba(0, 167, 225, 0.28);
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

.principle-item:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 167, 225, 0.55);
    box-shadow: 0 8px 18px rgba(0, 167, 225, 0.25);
    background: linear-gradient(135deg, rgba(0, 167, 225, 0.15), rgba(0, 167, 225, 0.07));
}

.principle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    line-height: 1;
    padding: 0.35rem 1.15rem; /* Stripe/pill */
    background: rgba(255, 255, 255, 0.22); /* Mer synlig lys stripe */
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    position: relative;
    z-index: 2;
    margin-top: 0.15rem;
    margin-bottom: 0.55rem;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.18), 0 2px 6px rgba(0, 167, 225, 0.25);
}

/* Dekorativ hvit stripe bak ikon + subtil glød */
.principle-item::before {
    content: '';
    position: absolute;
    top: 0.65rem;
    left: 0.8rem;
    right: 0.8rem;
    height: 2.6rem;
    background: linear-gradient(90deg, rgba(255,255,255,0.15), rgba(255,255,255,0.08));
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 8px;
    z-index: 1;
    pointer-events: none;
    box-shadow: inset 0 0 6px rgba(255,255,255,0.25), 0 6px 14px rgba(0,167,225,0.20);
}
.principle-item:hover::before {
    background: linear-gradient(90deg, rgba(255,255,255,0.22), rgba(255,255,255,0.12));
    border-color: rgba(255,255,255,0.28);
}

.principle-content h4 {
    margin: 0 0 0.4rem 0;
    font-size: 1.02rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.principle-content p {
    margin: 0.25rem 0 0 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}

/* Like store prinsipp-bokser side-om-side på større skjermer */
@media (min-width: 768px) {
    .leadership-principles {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem; /* Litt mer luft når de står ved siden av hverandre */
        align-items: stretch;
    }
    .leadership-principles .principle-item {
        height: 100%; /* Sørger for lik høyde */
    }
}

/* Compact Interests */
.interests-compact {
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}

.interest-category {
    margin-bottom: 0.6rem;
}

.interest-category:last-child {
    margin-bottom: 0;
}

.interest-category h4 {
    margin: 0 0 0.35rem 0;
    font-size: 0.88rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.interest-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.interest-tag {
    padding: 0.3rem 0.65rem;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.12), rgba(255, 193, 7, 0.08));
    border: 1px solid rgba(255, 193, 7, 0.35);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.15);
}

.interest-tag:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 193, 7, 0.5);
    box-shadow: 0 6px 16px rgba(255, 193, 7, 0.22);
}

/* Personal Quote */
.personal-quote {
    padding: 0.7rem 0.9rem;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.05));
    border-left: 3px solid rgba(255, 193, 7, 0.6);
    border-radius: 8px;
    margin: 0.7rem 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 6px 16px rgba(255, 193, 7, 0.12);
}

.personal-quote p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.personal-quote em {
    color: rgba(255, 193, 7, 0.95);
}

/* Vision Summary */
.vision-summary {
    padding: 0.7rem 0.9rem;
    background: linear-gradient(135deg, rgba(46, 213, 115, 0.12), rgba(46, 213, 115, 0.06));
    border-radius: 8px;
    border: 1px solid rgba(46, 213, 115, 0.3);
    border-left: 3px solid rgba(46, 213, 115, 0.6);
    margin-top: 0.7rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 6px 16px rgba(46, 213, 115, 0.15);
}

.vision-summary h4 {
    margin: 0 0 0.35rem 0;
    font-size: 0.95rem;
    color: var(--accent-green);
    font-weight: 600;
}

.vision-summary p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
    .profile-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nav-menu {
        order: 3;
        position: static;
    }
    
    .profile-nav ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .nav-item {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .nav-item:hover {
        transform: translateY(-2px);
    }
    
    .profile-card {
        position: static;
        order: 1;
    }
    
    .content-sections {
        order: 2;
    }
}

@media (max-width: 768px) {
    .team-grid,
    .tech-features,
    .values-grid,
    .comparison-grid,
    .responsibility-grid,
    .competence-grid,
    .profile-grid-compact {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .expanded-profile-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .expanded-photo {
        width: 150px;
        height: 150px;
    }
    
    .role-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .role-title {
        text-align: center;
    }
    
    .content-section {
        padding: 1.5rem;
    }
    
    .personal-story-section {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .personal-story-section h3 {
        font-size: 1.6rem;
    }
    
    .personal-story-section h4 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }
    
    .methodology-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .philosophy-problems {
        grid-template-columns: 1fr;
    }
    
    .methodology-intro,
    .methodology-conclusion {
        padding: 0 1rem;
    }
    
    .philosophy-lead,
    .philosophy-belief {
        font-size: 1.05rem;
    }
    
    .conclusion-highlight,
    .conclusion-honesty {
        padding: 1.5rem;
    }
    
    .main-profile-section {
        padding: 1rem 0;
    }
    
    .profile-photo {
        width: 280px;
        height: 380px;
    }
    
    .profile-info h2 {
        font-size: 1.8rem;
    }
    
    .profile-nav ul {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .big-number {
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .profile-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .profile-intro {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .interest-grid {
        gap: 0.6rem;
    }
    
    .interest-item {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .profile-photo {
        width: 250px;
        height: 320px;
    }
    
    .profile-card,
    .content-sections {
        padding: 1.5rem;
    }
    
    .credentials {
        gap: 0.4rem;
    }
    
    .credential {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .method-card,
    .stat-box {
        padding: 1.5rem;
    }
    
    .philosophy-lead,
    .philosophy-belief {
        font-size: 1rem;
    }
    
    .problem-item {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .principles-heading {
        font-size: 1.25rem;
    }
    
    .conclusion-highlight,
    .conclusion-honesty {
        padding: 1.25rem;
    }
    
    .conclusion-highlight h4 {
        font-size: 1.25rem;
    }
    
    .conclusion-highlight p,
    .conclusion-honesty p {
        font-size: 1rem;
    }
}

/* Accessibility & Performance */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.main-profile-section {
    will-change: transform;
}

.nav-item:focus,
.profile-read-more-btn:focus,
.story-read-more-btn:focus,
.btn:focus,
.credential:focus {
    outline: 2px solid #00A7E1;
    outline-offset: 4px;
}

.method-card:focus-within,
.stat-box:focus-within {
    border-color: rgba(0, 167, 225, 0.6);
    box-shadow: 0 0 0 2px rgba(0, 167, 225, 0.3);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* Calculation Examples */
.calculation-example {
    background: rgba(0, 167, 225, 0.05);
    border-left: 3px solid rgba(0, 167, 225, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.9);
}

.calc-year {
    font-weight: 600;
    color: #00A7E1;
    min-width: 60px;
}

.calc-detail {
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Courier New', monospace;
}

/* Comparison Table */
.comparison-table {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.comparison-row {
    background: rgba(4, 28, 44, 0.6);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 167, 225, 0.2);
    transition: all 0.3s ease;
}

.comparison-row:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 167, 225, 0.4);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.comparison-row.highlight {
    border: 2px solid rgba(0, 167, 225, 0.4);
    background: linear-gradient(135deg, rgba(0, 167, 225, 0.08), rgba(0, 167, 225, 0.04));
}

.comparison-scenario h5 {
    color: #00A7E1;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.comparison-scenario p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.growth-label {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 15px;
    color: #22C55E;
    font-weight: 600;
    font-size: 0.9rem;
}

.growth-label.highlight {
    background: rgba(0, 167, 225, 0.15);
    border-color: rgba(0, 167, 225, 0.4);
    color: #00A7E1;
}

/* Perspective List */
.perspective-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.perspective-list li {
    padding: 1rem 1.5rem;
    margin-bottom: 0.75rem;
    background: rgba(0, 167, 225, 0.05);
    border-left: 4px solid rgba(0, 167, 225, 0.3);
    border-radius: 0 8px 8px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.perspective-list li:hover {
    background: rgba(0, 167, 225, 0.1);
    border-left-color: rgba(0, 167, 225, 0.6);
    transform: translateX(5px);
}

.perspective-list li strong {
    color: #00A7E1;
    font-weight: 600;
}

/* Emphasis Box */
.emphasis-box {
    background: linear-gradient(135deg, rgba(0, 167, 225, 0.1), rgba(0, 167, 225, 0.05));
    border: 2px solid rgba(0, 167, 225, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
}

.emphasis-box em {
    color: #00A7E1;
    font-weight: 600;
}

/* Results Section specific styling */
.results-section h4 {
    color: #00A7E1;
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.results-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.results-section strong {
    color: #00A7E1;
    font-weight: 600;
}

.results-section .section-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-style: italic;
}

/* Mobile responsiveness for new elements */
@media (max-width: 768px) {
    .calculation-example {
        padding: 1rem;
    }
    
    .calc-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .comparison-row {
        padding: 1rem;
    }
    
    .comparison-scenario h5 {
        font-size: 1rem;
    }
    
    .emphasis-box {
        padding: 1rem;
        font-size: 1rem;
    }
}

/* Story Icon Dividers - ALLE verdier i PX */
.story-icon-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 41.5px 0; /* 2.6rem → 42px */
    position: relative;
    width: 100%;
}

/* Horisontal linje på hver side */
.story-icon-divider::before,
.story-icon-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent);
}

.story-icon-divider::before {
    margin-right: 24px; /* 1.5rem → 24px */
}

.story-icon-divider::after {
    margin-left: 24px; /* 1.5rem → 24px */
}

.divider-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px; /* 3.5rem → 56px */
    height: 56px; /* 3.5rem → 56px */
    font-size: 29px; /* 1.8rem → 29px */
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.25), 
        rgba(255, 255, 255, 0.15));
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    box-shadow: 
        0 4px 15px rgba(255, 255, 255, 0.2),
        0 2px 8px rgba(0, 167, 225, 0.3),
        inset 0 1px 4px rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

/* Glow effekt */
.divider-icon::before {
    content: '';
    position: absolute;
    inset: -4px; /* px er allerede her */
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.3),
        transparent 70%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.6;
    filter: blur(8px);
}

/* Hover effekt */
.story-icon-divider:hover .divider-icon {
    transform: scale(1.08);
    box-shadow: 
        0 6px 20px rgba(255, 255, 255, 0.3),
        0 3px 12px rgba(0, 167, 225, 0.4),
        inset 0 1px 4px rgba(255, 255, 255, 0.4);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .story-icon-divider {
        margin: 24px 0; /* 1.5rem → 24px */
    }
    
    .divider-icon {
        width: 48px; /* 3rem → 48px */
        height: 48px; /* 3rem → 48px */
        font-size: 24px; /* 1.5rem → 24px */
    }
    
    .story-icon-divider::before,
    .story-icon-divider::after {
        margin: 0 16px; /* 1rem → 16px */
    }
}

