/* ===================================
   ARTICLE PAGE CSS - BP FINANS
   Oppdatert til å matche eksisterende design
   =================================== */

/* CSS variables fra hovedsystemet */
:root {
    --primary-blue: #00A7E1;
    --primary-dark: #041C2C;
    --accent-yellow: #FFC107;
    --accent-green: #00E676;
    --accent-red: #FF5252;
    --text-white: #ffffff;
    --text-gray: rgba(255, 255, 255, 0.8);
    --text-light-gray: rgba(255, 255, 255, 0.6);
    --background-dark: #0f1419;
    --background-secondary: rgba(4, 28, 44, 0.6);
    --border-blue: rgba(0, 167, 225, 0.3);
    --shadow-blue: rgba(0, 167, 225, 0.2);
    
    /* Animation variables */
    --animation-speed: 0.4s;
    --hover-lift: -8px;
    --glow-intensity: 15px;
}

/* ===================================
   BODY OG HOVEDBAKGRUNN - MATCHER RESTEN AV SIDEN
   =================================== */
.article-page {
    background: linear-gradient(135deg, 
        #0f1419 0%, 
        #1a2332 25%, 
        #041C2C 50%, 
        #0f1419 75%, 
        #1a2332 100%);
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
}

.article-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 167, 225, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 193, 7, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 230, 118, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ===================================
   ARTICLE CONTAINER - MODERNE GLASSMORPHISM
   =================================== */
.article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

/* ===================================
   ARTICLE WRAPPER - HOVEDKORT MED GLASSMORPHISM
   =================================== */
.blog-article {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 167, 225, 0.3);
    border-radius: 25px;
    padding: 0;
    margin: 2rem 0;
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 8px 25px rgba(0, 167, 225, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.blog-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 167, 225, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 193, 7, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ===================================
   ARTICLE HEADER - MODERNE HERO SEKSJON
   =================================== */
.article-header {
    background: linear-gradient(135deg, 
        rgba(4, 28, 44, 0.9) 0%, 
        rgba(0, 167, 225, 0.15) 50%, 
        rgba(4, 28, 44, 0.9) 100%);
    padding: 3rem 2.5rem;
    margin: 0;
    position: relative;
    z-index: 2;
    border-bottom: 2px solid rgba(0, 167, 225, 0.2);
}

.article-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 167, 225, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(255, 193, 7, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.breadcrumb {
    margin-bottom: 2rem;
    text-align: left;
    position: relative;
    z-index: 3;
}

.breadcrumb a {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(0, 167, 225, 0.1);
    border: 1px solid rgba(0, 167, 225, 0.2);
    display: inline-block;
}

.breadcrumb a:hover {
    color: var(--accent-yellow);
    background: rgba(255, 193, 7, 0.15);
    border-color: rgba(255, 193, 7, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 167, 225, 0.3);
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.category {
    background: linear-gradient(135deg, var(--primary-blue), #0090c1);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(0, 167, 225, 0.4);
    position: relative;
    overflow: hidden;
}

.category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.category:hover::before {
    left: 100%;
}

.article-meta time {
    color: var(--text-light-gray);
    font-size: 0.95rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Article Title - STOR OG IMPONERENDE */
.article-header h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, 
        var(--text-white) 0%, 
        var(--primary-blue) 50%, 
        var(--accent-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 3;
    text-shadow: 0 0 30px rgba(0, 167, 225, 0.3);
}

.subtitle {
    background: linear-gradient(135deg, 
        var(--accent-yellow) 0%, 
        #FFB300 50%, 
        var(--accent-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    position: relative;
    z-index: 3;
    font-weight: 500;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
}

/* ===================================
   ARTICLE CONTENT - MODERNE STYLING
   =================================== */
.article-content {
    padding: 3rem 2.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.article-content .lead {
    font-size: 1.4rem;
    color: var(--text-white);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, 
        rgba(0, 167, 225, 0.12) 0%, 
        rgba(0, 167, 225, 0.06) 100%);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(0, 167, 225, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 167, 225, 0.2);
}

.article-content .lead::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-blue), var(--accent-green));
    border-radius: 2px;
}

.article-content h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    font-weight: 600;
    margin: 3rem 0 1.5rem;
    line-height: 1.3;
    position: relative;
    padding-left: 1rem;
}

.article-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: linear-gradient(180deg, var(--primary-blue), var(--accent-yellow));
    border-radius: 2px;
}

.article-content h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem;
}

.article-content p {
    margin-bottom: 1.8rem;
}

.article-content strong {
    color: var(--text-white);
    font-weight: 600;
}

.article-content em {
    color: var(--accent-yellow);
    font-style: italic;
}

/* ===================================
   MODERNE BOKSER - GLASSMORPHISM DESIGN
   =================================== */
.highlight-box {
    background: linear-gradient(135deg, 
        rgba(255, 193, 7, 0.15) 0%, 
        rgba(255, 193, 7, 0.08) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 193, 7, 0.4);
    border-radius: 20px;
    padding: 2rem;
    margin: 2.5rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.2);
    transition: all var(--animation-speed) ease;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.2), transparent);
    transition: left 0.6s ease;
}

.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 193, 7, 0.3);
}

.highlight-box:hover::before {
    left: 100%;
}

.highlight-box h3 {
    color: var(--accent-yellow);
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.strategy-box {
    background: linear-gradient(135deg, 
        rgba(0, 167, 225, 0.15) 0%, 
        rgba(0, 167, 225, 0.08) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(0, 167, 225, 0.4);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 167, 225, 0.25);
}

.strategy-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 167, 225, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.strategy-box h3 {
    color: var(--primary-blue);
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.strategy-box p {
    position: relative;
    z-index: 2;
}

/* Blockquote - MODERNE STYLING */
blockquote {
    background: linear-gradient(135deg, 
        rgba(255, 193, 7, 0.12) 0%, 
        rgba(255, 193, 7, 0.06) 100%);
    backdrop-filter: blur(10px);
    border: none;
    border-left: 4px solid var(--accent-yellow);
    margin: 2.5rem 0;
    padding: 2rem 2.5rem;
    border-radius: 0 15px 15px 0;
    position: relative;
    font-style: italic;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.2);
}

blockquote p {
    color: var(--text-white);
    font-size: 1.3rem;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

blockquote::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 25px;
    font-size: 5rem;
    color: var(--accent-yellow);
    opacity: 0.6;
    font-family: serif;
}

/* ===================================
   INVESTMENT SHOWCASE - PREMIUM DESIGN
   =================================== */
.investment-showcase {
    background: linear-gradient(135deg, 
        rgba(4, 28, 44, 0.95) 0%, 
        rgba(0, 167, 225, 0.1) 50%, 
        rgba(4, 28, 44, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 3px solid rgba(0, 167, 225, 0.5);
    border-radius: 30px;
    padding: 3.5rem;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.4),
        0 10px 30px rgba(0, 167, 225, 0.3);
}

.investment-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 167, 225, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 230, 118, 0.08) 0%, transparent 50%);
    animation: ambient-glow 8s ease-in-out infinite;
    pointer-events: none;
}

.investment-showcase h3 {
    color: var(--primary-blue);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 20px rgba(0, 167, 225, 0.5);
}

.showcase-subtitle {
    text-align: center;
    color: var(--text-light-gray);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 2.5rem 0;
    position: relative;
    z-index: 2;
}

.investment-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 2.5rem;
    transition: all var(--animation-speed) ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.investment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.investment-card:hover {
    transform: translateY(var(--hover-lift)) scale(1.02);
    border-color: rgba(0, 167, 225, 0.4);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 8px 25px rgba(0, 167, 225, 0.3);
}

.investment-card:hover::before {
    left: 100%;
}

.investment-card.highlight {
    border-color: var(--accent-yellow);
    background: linear-gradient(135deg, 
        rgba(255, 193, 7, 0.2) 0%, 
        rgba(255, 193, 7, 0.08) 100%);
}

.investment-card.highlight::after {
    content: '🚀';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    animation: rocket-pulse 2s ease-in-out infinite;
}

@keyframes rocket-pulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.15) rotate(10deg); }
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.company-logo {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary-blue), #0090c1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 6px 20px rgba(0, 167, 225, 0.4);
}

.company-details h4 {
    color: var(--text-white);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.year {
    color: var(--text-light-gray);
    font-size: 0.95rem;
    font-weight: 500;
}

.card-content {
    text-align: center;
}

.current-value {
    margin-bottom: 2rem;
}

.currency {
    color: var(--text-light-gray);
    font-size: 1rem;
    font-weight: 500;
}

.amount {
    color: var(--accent-green);
    font-size: 2.5rem;
    font-weight: 700;
    margin-left: 0.5rem;
    text-shadow: 0 0 25px rgba(0, 230, 118, 0.4);
    animation: counter-glow 3s ease-in-out infinite;
}

@keyframes counter-glow {
    0%, 100% { text-shadow: 0 0 25px rgba(0, 230, 118, 0.4); }
    50% { text-shadow: 0 0 35px rgba(0, 230, 118, 0.7); }
}

.growth-bar {
    background: rgba(255, 255, 255, 0.1);
    height: 10px;
    border-radius: 5px;
    margin: 1.5rem 0;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
}

.growth-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-yellow));
    border-radius: 5px;
    width: 0%;
    transition: width 2.5s ease-out;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.5);
}

.growth-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.growth-percent {
    color: var(--accent-yellow);
    font-weight: 600;
    font-size: 0.95rem;
}

.annual-return {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ===================================
   SHOWCASE SUMMARY - PREMIUM RESULTAT
   =================================== */
.showcase-summary {
    background: linear-gradient(135deg, 
        rgba(0, 230, 118, 0.2) 0%, 
        rgba(0, 167, 225, 0.15) 100%);
    backdrop-filter: blur(15px);
    border: 3px solid var(--accent-green);
    border-radius: 25px;
    padding: 3rem;
    margin-top: 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 230, 118, 0.3);
}

.showcase-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 230, 118, 0.15) 0%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.total-investment h4 {
    color: var(--text-white);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.total-value {
    position: relative;
    z-index: 2;
    margin: 2rem 0;
}

.total-value span:first-child {
    color: var(--text-light-gray);
    font-size: 1.2rem;
    font-weight: 500;
}

.total-amount {
    color: var(--accent-green);
    font-size: 3.5rem;
    font-weight: 700;
    margin-left: 0.5rem;
    text-shadow: 0 0 40px rgba(0, 230, 118, 0.6);
    animation: total-glow 2s ease-in-out infinite;
}

@keyframes total-glow {
    0%, 100% { 
        text-shadow: 0 0 40px rgba(0, 230, 118, 0.6);
        transform: scale(1);
    }
    50% { 
        text-shadow: 0 0 50px rgba(0, 230, 118, 0.9);
        transform: scale(1.02);
    }
}

.total-growth {
    color: var(--accent-yellow);
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* ===================================
   INSIGHT CARDS - MODERNE DESIGN
   =================================== */
.insight-list {
    margin: 3.5rem 0;
}

.insight-item {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, 
        rgba(0, 167, 225, 0.1) 0%, 
        rgba(0, 167, 225, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 167, 225, 0.3);
    border-radius: 25px;
    padding: 2.5rem;
    transition: all var(--animation-speed) ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 167, 225, 0.2);
}

.insight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 167, 225, 0.15), transparent);
    transition: left 0.6s ease;
}

.insight-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 50px rgba(0, 167, 225, 0.3);
}

.insight-item:hover::before {
    left: 100%;
}

.insight-number {
    background: linear-gradient(135deg, var(--primary-blue), #0090c1);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 167, 225, 0.5);
    position: relative;
    z-index: 2;
}

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

.insight-content h4 {
    color: var(--text-white);
    margin: 0 0 1.5rem 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.insight-content p {
    margin: 0;
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ===================================
   MODERNE EKSEMPEL BOKS - MER SYNLIG LILLA
   =================================== */
.modern-example {
    background: linear-gradient(135deg, 
        rgba(142, 68, 173, 0.35) 0%, 
        rgba(142, 68, 173, 0.25) 100%);
    backdrop-filter: blur(15px);
    border: 3px solid rgba(142, 68, 173, 0.8);
    border-radius: 25px;
    padding: 3rem;
    margin: 3.5rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 15px 40px rgba(142, 68, 173, 0.4),
        0 0 20px rgba(142, 68, 173, 0.3);
}

.modern-example::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(142, 68, 173, 0.25) 0%, transparent 60%);
    pointer-events: none;
}

.modern-example h3 {
    color: #E1BEE7;
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 10px rgba(142, 68, 173, 0.5);
}

.modern-example p {
    color: var(--text-gray);
    position: relative;
    z-index: 2;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ===================================
   AVSLUTTENDE SPØRSMÅL BOKS - SKARP GUL SOM MATCHER LILLA
   =================================== */
.final-questions {
    background: linear-gradient(135deg, 
        rgba(255, 193, 7, 0.25) 0%, 
        rgba(255, 193, 7, 0.15) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 193, 7, 0.7);
    border-radius: 25px;
    padding: 3rem;
    margin: 3.5rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.25);
}

.final-questions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 193, 7, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.final-questions h3 {
    color: #FFC107;
    margin-top: 0;
    margin-bottom: 2.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.final-questions ul {
    margin: 0;
    padding-left: 2.5rem;
    position: relative;
    z-index: 2;
}

.final-questions li {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.final-questions li::marker {
    color: var(--accent-yellow);
}

/* ===================================
   ANIMASJONER OG EFFEKTER
   =================================== */
@keyframes ambient-glow {
    0%, 100% { 
        opacity: 0.7;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.02);
    }
}

@keyframes card-reveal {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.investment-card.animated {
    animation: card-reveal 0.8s ease-out forwards;
}

.showcase-summary.animated {
    animation: summary-reveal 1s ease-out 0.3s forwards;
    opacity: 0;
}

@keyframes summary-reveal {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===================================
   RESPONSIVE DESIGN - MOBIL OPTIMALISERING
   =================================== */
@media (max-width: 768px) {
    .article-container {
        padding: 1rem;
    }

    .article-header {
        padding: 2.5rem 1.5rem;
    }

    .article-header h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .article-content {
        padding: 2.5rem 1.5rem;
        font-size: 1rem;
    }

    .article-content .lead {
        font-size: 1.2rem;
        padding: 2rem;
    }

    .article-content h2 {
        font-size: 1.6rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 1.5rem;
    }

    .investment-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .investment-card {
        padding: 2rem;
    }

    .amount {
        font-size: 2rem;
    }

    .total-amount {
        font-size: 2.5rem;
    }

    .insight-item {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }

    .insight-number {
        margin: 0 auto;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .investment-showcase,
    .strategy-box,
    .highlight-box,
    .modern-example,
    .final-questions,
    .showcase-summary {
        padding: 2rem;
        margin: 2.5rem 0;
    }

    .company-logo {
        width: 45px;
        height: 45px;
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .article-container {
        padding: 0.5rem;
    }

    .article-header {
        padding: 2rem 1rem;
    }

    .article-header h1 {
        font-size: 1.8rem;
    }

    .article-content {
        padding: 2rem 1rem;
    }

    .amount {
        font-size: 1.6rem;
    }

    .total-amount {
        font-size: 2rem;
    }

    .investment-showcase,
    .strategy-box,
    .highlight-box,
    .modern-example,
    .final-questions,
    .showcase-summary {
        padding: 1.5rem;
        margin: 2rem 0;
        border-radius: 20px;
    }

    .company-logo {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }

    .insight-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .blog-article {
        border-radius: 20px;
        margin: 1rem 0;
    }
}

/* ===================================
   PERFORMANCE OPTIMALISERING
   =================================== */
.investment-card,
.insight-item,
.highlight-box,
.strategy-box,
.modern-example,
.final-questions {
    will-change: transform;
}

.growth-fill {
    will-change: width;
}

.amount,
.total-amount {
    will-change: contents;
}

/* Reduser animasjoner for tilgjengelighet */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===================================
   HEADER OVERRIDE - SIKRER AT ARTICLE HEADER IKKE PÅVIRKES
   =================================== */
.article-page header {
    position: static !important;
    top: auto !important;
    background: transparent !important;
}

/* ===================================
   PRINT STYLING
   =================================== */
@media print {
    .article-page {
        background: white !important;
    }
    
    .blog-article {
        background: white !important;
        border: 1px solid #ccc !important;
        box-shadow: none !important;
    }
    
    .article-header {
        background: #f5f5f5 !important;
    }
    
    .article-header h1 {
        color: #333 !important;
        -webkit-text-fill-color: #333 !important;
    }
    
    .investment-card,
    .highlight-box,
    .strategy-box {
        background: #f9f9f9 !important;
        border: 1px solid #ddd !important;
    }
}

/* ===================================
   FOOTER JURIDISK TRYGG TEKST
   =================================== */
/* Legg til denne CSS-en hvis du trenger spesifikk footer-styling */
.footer-kolonne p {
    color: var(--text-gray);
    line-height: 1.6;
}