/* ============================================
   INNSIKT PAGE STYLES
   Interactive Web Design Psychology Article
   ============================================ */

/* ============================================
   HERO SECTION
   ============================================ */

.innsikt-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 48px 80px;
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.innsikt-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-text-primary);
    margin-bottom: 24px;
}

.text-olive {
    color: #C45C4B;
}

.innsikt-hero__subtitle {
    font-size: 20px;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--color-text-secondary);
    font-size: 14px;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator svg {
    opacity: 0.6;
}

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

/* ============================================
   ARTICLE LAYOUT
   ============================================ */

.article-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

/* Seksjon base */
.article-section {
    padding: 100px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.article-section:last-of-type {
    border-bottom: none;
}

.article-section--alt {
    background: var(--color-bg-alt);
    margin: 0 -48px;
    padding: 100px 48px;
}

/* To-kolonne layout */
.article-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Reversed layout (tekst venstre, visual høyre) */
.article-section--reversed .article-section__inner {
    direction: rtl;
}

.article-section--reversed .article-section__inner > * {
    direction: ltr;
}

/* Visual kolonne */
.article-section__visual {
    position: sticky;
    top: 120px;
    align-self: start;
}

/* Tekst kolonne */
.article-section__text {
    max-width: 540px;
}

.article-section__number {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-secondary);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    opacity: 0.5;
}

.article-section__text h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 24px;
    line-height: 1.2;
}

.article-section__lead {
    font-size: 19px;
    color: var(--color-text-primary);
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 500;
}

.article-section__text p {
    font-size: 17px;
    color: var(--color-text-secondary);
    line-height: 1.75;
    margin-bottom: 20px;
}

.article-section__text p:last-of-type {
    margin-bottom: 32px;
}

/* Insight box */
.article-insight {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    margin-top: 32px;
}

.article-section--alt .article-insight {
    background: var(--color-bg);
}

.article-insight__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 58, 95, 0.1);
    border-radius: 10px;
    color: #1E3A5F;
}

.article-insight p {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

.article-insight strong {
    color: var(--color-text-primary);
}

/* ============================================
   SECTION 1: BLINK TEST (50ms)
   ============================================ */

.blink-test {
    max-width: 100%;
    margin: 0 auto;
}

.blink-test__demo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.blink-mockup {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: opacity 0.05s ease;
}

.blink-mockup__header {
    padding: 10px 14px;
    background: #F5F5F5;
    border-bottom: 1px solid #E5E5E5;
}

.blink-mockup__dots {
    display: flex;
    gap: 5px;
}

.blink-mockup__dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #DDD;
}

.blink-mockup__dots span:first-child { background: #FF5F56; }
.blink-mockup__dots span:nth-child(2) { background: #FFBD2E; }
.blink-mockup__dots span:last-child { background: #27CA40; }

.blink-mockup__content {
    padding: 16px;
    min-height: 180px;
}

/* Good mockup */
.blink-mockup--good .blink-mockup__hero {
    margin-bottom: 16px;
}

.blink-mockup--good .blink-mockup__headline {
    height: 18px;
    width: 70%;
    background: #1A1A1A;
    border-radius: 4px;
    margin-bottom: 10px;
}

.blink-mockup--good .blink-mockup__subtext {
    height: 10px;
    width: 85%;
    background: #E5E5E5;
    border-radius: 3px;
    margin-bottom: 12px;
}

.blink-mockup--good .blink-mockup__cta {
    height: 28px;
    width: 80px;
    background: #1E3A5F;
    border-radius: 6px;
}

.blink-mockup--good .blink-mockup__cards {
    display: flex;
    gap: 8px;
}

.blink-mockup--good .blink-mockup__card {
    flex: 1;
    height: 50px;
    background: #F5F5F5;
    border-radius: 6px;
    border: 1px solid #E5E5E5;
}

/* Bad mockup - cluttered */
.blink-mockup__content--cluttered {
    position: relative;
}

.blink-mockup__mess {
    position: absolute;
    background: #CCC;
    border-radius: 4px;
}

.blink-mockup__mess:nth-child(1) { width: 60%; height: 16px; top: 16px; left: 16px; background: #FF6B6B; }
.blink-mockup__mess--2 { width: 40%; height: 12px; top: 40px; left: 16px; }
.blink-mockup__mess--3 { width: 80%; height: 8px; top: 60px; left: 16px; }
.blink-mockup__mess--4 { width: 30%; height: 24px; top: 78px; left: 16px; background: #4CAF50; }
.blink-mockup__mess--5 { width: 40%; height: 24px; top: 78px; right: 16px; background: #2196F3; }
.blink-mockup__mess--6 { width: 85%; height: 40px; top: 112px; left: 16px; background: repeating-linear-gradient(45deg, #FFD700, #FFD700 10px, #FFA500 10px, #FFA500 20px); }
.blink-mockup__mess--7 { width: 45%; height: 28px; top: 160px; left: 16px; background: #E91E63; border-radius: 14px; }

/* Controls */
.blink-test__controls {
    text-align: center;
}

.blink-test__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #1E3A5F;
    color: white;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.blink-test__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(30, 58, 95, 0.3);
}

.blink-test__hint {
    margin-top: 12px;
    font-size: 13px;
    color: var(--color-text-secondary);
}

/* Flash state */
.blink-mockup.flash {
    opacity: 0;
}

/* ============================================
   SECTION 2: COLOR PSYCHOLOGY
   ============================================ */

.color-demo {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.color-demo__preview {
    /* Removed sticky for compact layout */
}

.color-mockup {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.color-mockup__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: var(--preview-bg, #F8FAFC);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.4s ease;
}

.color-mockup__logo {
    width: 28px;
    height: 28px;
    background: var(--preview-primary, #1E3A5F);
    border-radius: 6px;
    transition: background 0.4s ease;
}

.color-mockup__nav {
    display: flex;
    gap: 12px;
}

.color-mockup__nav span {
    width: 50px;
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.color-mockup__hero {
    padding: 32px 20px;
    text-align: center;
    background: var(--preview-bg, #F8FAFC);
    transition: background 0.4s ease;
}

.color-mockup__headline {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--preview-primary, #1E3A5F);
    margin-bottom: 10px;
    transition: color 0.4s ease;
}

.color-mockup__text {
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    font-size: 14px;
}

.color-mockup__cta {
    display: inline-block;
    padding: 10px 24px;
    background: var(--preview-accent, #2563EB);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.color-mockup__features {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background: white;
}

.color-mockup__feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.color-mockup__feature-icon {
    width: 32px;
    height: 32px;
    background: var(--preview-accent, #2563EB);
    border-radius: 6px;
    opacity: 0.2;
    transition: background 0.4s ease;
}

.color-mockup__feature span {
    font-size: 11px;
    color: var(--color-text-secondary);
}

/* Palette Grid - Compact */
.color-demo__palettes h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    margin-bottom: 16px;
}

.palette-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.palette-btn {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: white;
    border: 2px solid #E5E5E5;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.palette-btn:hover {
    border-color: #CCC;
    transform: translateX(2px);
}

.palette-btn.active {
    border-color: #1E3A5F;
    background: rgba(30, 58, 95, 0.02);
}

.palette-colors {
    display: flex;
    gap: 3px;
}

.palette-colors span {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.palette-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--color-text-primary);
}

.palette-desc {
    display: none;
}

/* Color Palettes */
.color-mockup[data-palette="trust"] {
    --preview-primary: #1E3A5F;
    --preview-accent: #2563EB;
    --preview-bg: #F8FAFC;
}

.color-mockup[data-palette="energy"] {
    --preview-primary: #DC2626;
    --preview-accent: #F97316;
    --preview-bg: #FEF3C7;
}

.color-mockup[data-palette="nature"] {
    --preview-primary: #166534;
    --preview-accent: #22C55E;
    --preview-bg: #F0FDF4;
}

.color-mockup[data-palette="luxury"] {
    --preview-primary: #1C1917;
    --preview-accent: #A16207;
    --preview-bg: #FFFBEB;
}

.color-mockup[data-palette="creative"] {
    --preview-primary: #7C3AED;
    --preview-accent: #EC4899;
    --preview-bg: #FDF4FF;
}

.color-mockup[data-palette="calm"] {
    --preview-primary: #475569;
    --preview-accent: #94A3B8;
    --preview-bg: #F8FAFC;
}

/* ============================================
   SECTION 3: TYPOGRAPHY SHOWCASE
   ============================================ */

.typo-showcase {
    max-width: 100%;
    margin: 0;
}

.typo-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
    border-bottom: 1px solid #E5E7EB;
    align-items: center;
}

.typo-row:last-child {
    border-bottom: none;
}

.typo-example {
    font-size: 22px;
    color: #1A1A1A;
    line-height: 1.3;
}

.typo-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.typo-category {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1E3A5F;
    font-family: 'Inter', sans-serif;
}

.typo-fonts {
    font-size: 13px;
    color: #9CA3AF;
    font-family: 'Inter', sans-serif;
}

.typo-fonts--warning {
    color: #DC2626;
}

/* Advarsel for dårlige fonter */
.typo-row--warning {
    background: #FEF2F2;
    margin: 0 -16px;
    padding: 20px 16px;
    border-radius: 10px;
    border-bottom: none;
}

/* ============================================
   SECTION 4: VISUAL HIERARCHY
   ============================================ */

.hierarchy-demo {
    max-width: 100%;
    margin: 0 auto;
}

.hierarchy-comparison {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.hierarchy-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.hierarchy-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 10px;
    border-radius: 16px;
    margin-bottom: 16px;
}

.hierarchy-card--no .hierarchy-label {
    background: rgba(239, 68, 68, 0.1);
    color: #DC2626;
}

.hierarchy-card--yes .hierarchy-label {
    background: rgba(34, 197, 94, 0.1);
    color: #166534;
}

.hierarchy-mockup {
    min-height: 140px;
    padding: 16px;
    background: #FAFAFA;
    border-radius: 8px;
    margin-bottom: 12px;
}

/* Flat hierarchy */
.hierarchy-mockup--flat {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-content: flex-start;
}

.hier-item {
    padding: 6px 12px;
    background: #E5E5E5;
    border-radius: 4px;
    font-size: 13px;
    color: var(--color-text-secondary);
}

/* Structured hierarchy */
.hierarchy-mockup--structured {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.hier-h1 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-primary);
}

.hier-subtitle {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin: 0;
}

.hier-cta {
    padding: 8px 20px;
    background: #1E3A5F;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
}

.hier-grid {
    display: flex;
    gap: 14px;
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid #E5E5E5;
    width: 100%;
}

.hier-grid span {
    font-size: 12px;
    color: var(--color-text-secondary);
}

.hierarchy-verdict {
    font-size: 13px;
    color: #DC2626;
    font-style: italic;
}

.hierarchy-verdict--good {
    color: #16A34A;
}

/* ============================================
   SECTION 5: WHITESPACE
   ============================================ */

.whitespace-demo {
    max-width: 100%;
    margin: 0 auto;
}

.whitespace-slider-container {
    margin-bottom: 24px;
    text-align: center;
}

.whitespace-slider-container label {
    display: block;
    font-weight: 500;
    margin-bottom: 14px;
    font-size: 15px;
}

.whitespace-slider {
    width: 100%;
    max-width: 100%;
    height: 8px;
    -webkit-appearance: none;
    background: #E5E5E5;
    border-radius: 4px;
    outline: none;
}

.whitespace-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    background: #1E3A5F;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.whitespace-labels {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    margin: 10px auto 0;
    font-size: 12px;
    color: var(--color-text-secondary);
}

.whitespace-preview {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 20px;
}

.whitespace-mockup {
    padding: var(--ws-padding, 28px);
    text-align: center;
    transition: padding 0.3s ease;
}

.ws-headline {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: var(--ws-gap, 14px);
    transition: margin 0.3s ease;
}

.ws-text {
    color: var(--color-text-secondary);
    margin-bottom: var(--ws-gap, 20px);
    line-height: var(--ws-line-height, 1.6);
    font-size: 14px;
    transition: all 0.3s ease;
}

.ws-button {
    padding: 10px 24px;
    background: #1E3A5F;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

/* Readability indicator */
.whitespace-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.indicator-label {
    font-size: 13px;
    color: var(--color-text-secondary);
}

.indicator-bar {
    width: 120px;
    height: 8px;
    background: #E5E5E5;
    border-radius: 4px;
    overflow: hidden;
}

.indicator-fill {
    height: 100%;
    background: #22C55E;
    border-radius: 4px;
    transition: width 0.3s ease, background 0.3s ease;
    width: 70%;
}

.indicator-value {
    font-size: 13px;
    font-weight: 600;
    min-width: 55px;
}

/* ============================================
   SECTION 6: ELEVATION / SHADOWS
   ============================================ */

.elevation-demo {
    max-width: 100%;
}

.elevation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.elevation-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.elevation-card--0 {
    box-shadow: none;
    border: 1px solid #E5E5E5;
}

.elevation-card--2 {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.elevation-card--8 {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
}

.elevation-card--16 {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12), 0 4px 10px rgba(0, 0, 0, 0.08);
}

.elevation-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1E3A5F;
    margin-bottom: 8px;
}

.elevation-card p {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin: 0;
}

/* ============================================
   SECTION 7: MICRO-INTERACTIONS
   ============================================ */

.micro-demo {
    max-width: 100%;
    margin: 0 auto;
}

.micro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.micro-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.micro-card h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    margin-bottom: 16px;
}

.micro-example {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.micro-card p {
    font-size: 12px;
    color: var(--color-text-secondary);
    margin: 0;
}

/* Micro buttons */
.micro-btn {
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
    border: none;
}

.micro-btn--static {
    background: #E5E5E5;
    color: var(--color-text-primary);
}

.micro-btn--animated {
    background: #1E3A5F;
    color: white;
    transition: all 0.2s ease;
}

.micro-btn--animated:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.35);
}

/* Loading button */
.micro-btn--loading {
    position: relative;
    background: #1E3A5F;
    color: white;
    min-width: 110px;
}

.micro-btn--loading .btn-loader {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.micro-btn--loading.loading .btn-text {
    visibility: hidden;
}

.micro-btn--loading.loading .btn-loader {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Success button */
.micro-btn--success {
    position: relative;
    background: #1E3A5F;
    color: white;
    min-width: 110px;
    transition: all 0.3s ease;
}

.micro-btn--success .btn-check {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.micro-btn--success.success {
    background: #22C55E;
}

.micro-btn--success.success .btn-text {
    visibility: hidden;
}

.micro-btn--success.success .btn-check {
    display: block;
}

/* Input */
.micro-input {
    padding: 10px 14px;
    border: 2px solid #E5E5E5;
    border-radius: 6px;
    font-size: 13px;
    outline: none;
    transition: all 0.2s ease;
    width: 150px;
}

.micro-input:focus {
    border-color: #1E3A5F;
    box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.1);
}

/* ============================================
   SECTION 8: SOCIAL PROOF
   ============================================ */

.social-demo {
    max-width: 100%;
    margin: 0 auto;
}

.social-comparison {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.social-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.social-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 10px;
    border-radius: 16px;
    margin-bottom: 16px;
}

.social-card--without .social-label {
    background: rgba(239, 68, 68, 0.1);
    color: #DC2626;
}

.social-card--with .social-label {
    background: rgba(34, 197, 94, 0.1);
    color: #166534;
}

.social-mockup {
    background: #FAFAFA;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 12px;
    min-height: auto;
}

.social-mockup h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 6px;
}

.social-mockup p {
    color: var(--color-text-secondary);
    font-size: 13px;
    margin-bottom: 14px;
}

.social-badges {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
}

.badge {
    padding: 3px 8px;
    background: rgba(34, 197, 94, 0.1);
    color: #166534;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
}

.social-testimonial {
    background: white;
    border-left: 3px solid #1E3A5F;
    padding: 10px 14px;
    margin-bottom: 12px;
    font-style: italic;
}

.social-testimonial p {
    margin: 0;
    font-size: 12px;
}

.social-logos {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 11px;
    color: var(--color-text-secondary);
}

.social-logos span {
    padding: 5px 10px;
    background: #E5E5E5;
    border-radius: 4px;
}

.social-cta {
    display: block;
    width: 100%;
    padding: 10px;
    background: #1E3A5F;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    text-align: center;
}

/* Meter */
.social-meter {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--color-text-secondary);
}

.meter-fill {
    width: 80px;
    height: 6px;
    background: #E5E5E5;
    border-radius: 3px;
    overflow: hidden;
}

.meter-fill::after {
    content: '';
    display: block;
    height: 100%;
    border-radius: 3px;
}

.meter-fill--low::after {
    width: 30%;
    background: #EF4444;
}

.meter-fill--high::after {
    width: 90%;
    background: #22C55E;
}

/* ============================================
   SECTION 9: CTA DESIGN
   ============================================ */

.cta-demo {
    max-width: 100%;
    margin: 0 auto;
}

.cta-comparison {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.cta-example {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.cta-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 10px;
    border-radius: 16px;
    margin-bottom: 16px;
}

.cta-example--bad .cta-label {
    background: rgba(239, 68, 68, 0.1);
    color: #DC2626;
}

.cta-example--medium .cta-label {
    background: rgba(251, 191, 36, 0.1);
    color: #B45309;
}

.cta-example--good .cta-label {
    background: rgba(34, 197, 94, 0.1);
    color: #166534;
}

/* Demo CTAs */
.demo-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 16px;
    transition: all 0.2s ease;
    border: none;
    font-size: 14px;
}

.demo-cta--weak {
    background: #F0F0F0;
    color: #999;
}

.demo-cta--ok {
    background: #E5E5E5;
    color: var(--color-text-primary);
}

.demo-cta--strong {
    background: #1E3A5F;
    color: white;
}

.demo-cta--strong:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.3);
}

/* CTA Issues list */
.cta-issues {
    list-style: none;
    text-align: left;
    font-size: 12px;
    padding: 0;
    margin: 0;
}

.cta-issues li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: var(--color-text-secondary);
    border-bottom: 1px solid #F0F0F0;
}

.cta-issues li:last-child {
    border-bottom: none;
}

.cta-issues li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #EF4444;
}

.cta-issues--neutral li::before {
    content: '~';
    color: #F59E0B;
}

.cta-issues--good li::before {
    content: '✓';
    color: #22C55E;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.innsikt-final-cta {
    padding: 120px 48px;
    background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
    text-align: center;
}

.final-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.final-overline {
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: #1E3A5F;
    margin-bottom: 20px;
}

.innsikt-final-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
}

.innsikt-final-cta p {
    font-size: 18px;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.final-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: #1E3A5F;
    color: white;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.final-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(30, 58, 95, 0.35);
}

.final-reassurance {
    margin-top: 20px;
    font-size: 14px;
    color: var(--color-text-secondary);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
    .article-content {
        padding: 0 32px;
    }

    .article-section__inner {
        gap: 48px;
    }

    .article-section--alt {
        margin: 0 -32px;
        padding: 80px 32px;
    }
}

@media (max-width: 768px) {
    .innsikt-hero {
        padding: 100px 24px 60px;
        min-height: auto;
    }

    .article-content {
        padding: 0 24px;
    }

    .article-section {
        padding: 60px 0;
    }

    .article-section--alt {
        margin: 0 -24px;
        padding: 60px 24px;
    }

    .article-section__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* På mobil: visual alltid først, uansett reversed */
    .article-section--reversed .article-section__inner {
        direction: ltr;
    }

    .article-section__visual {
        position: static;
        order: 1;
    }

    .article-section__text {
        order: 2;
        max-width: 100%;
    }

    .article-section__text h2 {
        font-size: 28px;
    }

    .article-section__lead {
        font-size: 17px;
    }

    .article-section__text p {
        font-size: 16px;
    }

    /* Blink test mobile */
    .blink-test__demo {
        grid-template-columns: 1fr;
    }

    /* Palette grid mobile */
    .palette-grid {
        grid-template-columns: 1fr;
    }

    /* Elevation grid mobile */
    .elevation-grid {
        grid-template-columns: 1fr;
    }

    /* Micro grid mobile */
    .micro-grid {
        grid-template-columns: 1fr;
    }

    .innsikt-final-cta {
        padding: 80px 24px;
    }
}

@media (max-width: 480px) {
    .innsikt-hero h1 {
        font-size: 32px;
    }

    .article-section__text h2 {
        font-size: 26px;
    }

    .micro-example {
        flex-direction: column;
        gap: 10px;
    }

    .micro-input {
        width: 100%;
    }
}
