/* ===================================
   Marketingtec - Stylesheet
   Digital synlighet for SMB
   =================================== */

/* CSS Variables */
:root {
    /* Colors */
    --color-primary: #1a365d;
    --color-primary-light: #2c5282;
    --color-primary-dark: #0f2744;
    --color-accent: #dd6b20;
    --color-accent-light: #ed8936;
    --color-accent-dark: #c05621;
    
    --color-text: #2d3748;
    --color-text-light: #4a5568;
    --color-text-muted: #718096;
    
    --color-bg: #ffffff;
    --color-bg-alt: #f7fafc;
    --color-bg-dark: #1a202c;
    
    --color-border: #e2e8f0;
    --color-border-light: #edf2f7;
    
    /* Typography */
    --font-heading: 'DM Serif Display', Georgia, serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    
    /* Container */
    --container-max: 1200px;
    --container-padding: 1.5rem;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-primary-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

strong {
    font-weight: 600;
    color: var(--color-primary-dark);
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
}

.btn-primary {
    background: var(--color-accent);
    color: white;
    box-shadow: 0 4px 14px rgba(221, 107, 32, 0.3);
}

.btn-primary:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(221, 107, 32, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

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

.btn-light {
    background: white;
    color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Links */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--color-accent);
    transition: gap var(--transition-base);
}

.link-arrow:hover {
    gap: 0.75rem;
}

.link-arrow svg {
    transition: transform var(--transition-base);
}

.link-arrow:hover svg {
    transform: translateX(4px);
}

/* ===================================
   Header & Navigation
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
}

/* Transparent header on homepage over dark hero image */
.header.header-transparent {
    background: transparent;
    backdrop-filter: none;
    border-bottom-color: transparent;
}

.header.header-transparent .nav-link {
    color: #ffffff;
}

.header.header-transparent .nav-link:hover,
.header.header-transparent .nav-link.active {
    color: var(--color-accent);
}

.header.header-transparent .nav-cta {
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff !important;
}

.header.header-transparent .nav-cta:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.header.header-transparent .logo-svg {
    filter: brightness(0) invert(1);
}

.header.header-transparent .hamburger,
.header.header-transparent .hamburger::before,
.header.header-transparent .hamburger::after {
    background: #ffffff;
}

.header.header-transparent.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom-color: var(--color-border-light);
}

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

.header.header-transparent.scrolled .nav-link:hover,
.header.header-transparent.scrolled .nav-link.active {
    color: var(--color-primary);
}

.header.header-transparent.scrolled .nav-cta {
    border-color: var(--color-primary);
    color: var(--color-primary) !important;
}

.header.header-transparent.scrolled .logo-svg {
    filter: none;
}

.header.header-transparent.scrolled .hamburger,
.header.header-transparent.scrolled .hamburger::before,
.header.header-transparent.scrolled .hamburger::after {
    background: var(--color-text);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--color-primary-dark);
    flex-shrink: 0;
}

.logo-svg {
    height: 45px;
    width: 245px;
    display: block;
    object-fit: contain;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: white;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    border-radius: var(--radius-md);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--color-text);
    transition: color var(--transition-fast);
    position: relative;
    padding-bottom: 4px;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

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

.nav-cta {
    padding: 0.625rem 1.25rem;
    background: var(--color-accent);
    color: white !important;
    border-radius: var(--radius-md);
}

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

.nav-cta:hover {
    background: var(--color-accent-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary-dark);
    transition: all var(--transition-base);
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .header {
        z-index: 99999 !important;
    }
    
    .header .nav .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
        padding: 100px 2rem 2rem 2rem;
        background-color: #ffffff !important;
        background: #ffffff !important;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 99998 !important;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }
    
    .header .nav .nav-menu.active {
        transform: translateX(0);
        background-color: #ffffff !important;
        background: #ffffff !important;
    }
    
    .nav-menu li {
        background-color: #ffffff !important;
        width: 100%;
    }
    
    .header .nav .nav-menu .nav-link {
        display: block;
        padding: 1rem 0;
        font-size: 1.25rem;
        border-bottom: 1px solid var(--color-border-light);
        background-color: #ffffff !important;
        color: var(--color-text);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .header .nav .nav-menu .nav-cta {
        margin-top: 1rem;
        text-align: center;
        background-color: var(--color-accent) !important;
    }
    
    .nav-toggle[aria-expanded="true"] .hamburger {
        background: transparent;
    }
    
    .nav-toggle[aria-expanded="true"] .hamburger::before {
        top: 0;
        transform: rotate(45deg);
    }
    
    .nav-toggle[aria-expanded="true"] .hamburger::after {
        top: 0;
        transform: rotate(-45deg);
    }
    
    .logo-svg {
        height: 32px;
        width: auto;
    }
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: #ffffff;
}

/* === Hero with Image === */
.hero.hero-with-image {
    min-height: auto;
    padding: 0;
    flex-direction: column;
    align-items: stretch;
    background: #0a0a0a;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.hero-text-overlay {
    position: relative;
    background: #0a0a0a;
    padding: 3.5rem 0 4rem;
    margin-top: -2px;
}

.hero-text-overlay::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #0a0a0a);
    pointer-events: none;
}

.hero.hero-with-image .hero-content {
    max-width: 800px;
}

.hero.hero-with-image .hero-title {
    color: #ffffff;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.15;
    margin-bottom: 1.25rem;
    animation: fadeInUp 0.6s ease 0.1s forwards;
    opacity: 0;
}

.hero.hero-with-image .hero-title .highlight {
    color: var(--color-accent);
}

.hero.hero-with-image .hero-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

.hero.hero-with-image .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0;
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
}

.btn-secondary-light {
    border-color: rgba(255, 255, 255, 0.4) !important;
    color: #ffffff !important;
}

.btn-secondary-light:hover {
    border-color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

@media (max-width: 640px) {
    .hero-image-wrapper {
        max-height: 50vh;
    }
    
    .hero-text-overlay {
        padding: 2.5rem 0 3rem;
    }
    
    .hero-text-overlay::before {
        height: 60px;
        top: -60px;
    }
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.1;
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease 0.1s forwards;
    opacity: 0;
}

.hero-title .highlight {
    color: var(--color-accent);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    animation: fadeInUp 0.6s ease 0.4s forwards;
    opacity: 0;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary);
}

.trust-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
    .hero:not(.hero-with-image) {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-trust {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .trust-divider {
        display: none;
    }
    
    .trust-item {
        flex: 1;
        min-width: 80px;
    }
}

/* ===================================
   Problem/Solution Section
   =================================== */
.problem-section {
    padding: var(--space-3xl) 0;
    background: var(--color-bg);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.section-title {
    margin-bottom: 1.5rem;
}

.section-text {
    color: var(--color-text-light);
    font-size: 1.125rem;
}

.problem-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.visual-card {
    width: 100%;
    padding: 2rem;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.visual-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.visual-card.accent {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: white;
    border: none;
}

.visual-card.accent h3,
.visual-card.accent p {
    color: white;
}

.visual-card.accent .visual-icon {
    color: rgba(255, 255, 255, 0.9);
}

.visual-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.visual-card h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.visual-card p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    margin: 0;
}

.visual-plus {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-accent);
}

@media (max-width: 900px) {
    .problem-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .problem-visual {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .visual-card {
        flex: 1;
        min-width: 250px;
        max-width: 350px;
    }
}

/* ===================================
   Services Preview
   =================================== */
.services-preview {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-alt);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.section-subtitle {
    color: var(--color-text-light);
    font-size: 1.125rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

@media (max-width: 1100px) {
    .services-grid.services-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-border);
    line-height: 1;
}

.service-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    padding-right: 3rem;
}

.service-desc {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    margin-bottom: 1.5rem;
}

.service-features li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
}

.service-link {
    font-weight: 600;
    color: var(--color-accent);
    transition: color var(--transition-fast);
}

.service-link:hover {
    color: var(--color-accent-dark);
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .services-grid.services-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Why Section
   =================================== */
.why-section {
    padding: var(--space-3xl) 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-point {
    display: flex;
    gap: 1rem;
}

.why-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(221, 107, 32, 0.1);
    color: var(--color-accent);
    border-radius: var(--radius-md);
}

.why-point h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.why-point p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    margin: 0;
}

.why-image {
    display: flex;
    justify-content: center;
}

.why-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-border-light) 100%);
    border-radius: var(--radius-lg);
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

/* Problem section intro image */
.problem-intro {
    margin-bottom: var(--space-2xl);
    text-align: center;
}

.problem-hero-img {
    width: 100%;
    max-width: 900px;
    height: 220px;
    object-fit: cover;
    object-position: center 20%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .why-image {
        order: -1;
    }
    
    .why-img {
        max-width: 300px;
    }
    
    .image-placeholder {
        max-width: 300px;
        aspect-ratio: 1;
    }
    
    .problem-hero-img {
        height: 200px;
    }
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    color: white;
    margin-bottom: 1rem;
}

.cta-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* ===================================
   Footer
   =================================== */
.footer {
    padding: var(--space-2xl) 0 var(--space-lg);
    background: var(--color-bg-dark);
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 1rem;
}

.footer-brand .logo-svg {
    height: 20px;
    width: auto;
}

.footer-brand .logo-mark {
    background: white;
    color: var(--color-primary);
}

.footer-tagline {
    font-size: 0.9375rem;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.875rem;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ===================================
   Tjenester Page
   =================================== */
.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

.page-hero-content {
    max-width: 700px;
}

.page-hero .hero-badge {
    animation: none;
    opacity: 1;
}

.page-hero .hero-title {
    animation: none;
    opacity: 1;
    margin-bottom: 1rem;
}

.page-hero .hero-subtitle {
    animation: none;
    opacity: 1;
    margin-bottom: 0;
}

/* Service Detail Sections */
.service-detail {
    padding: var(--space-2xl) 0;
}

.service-detail:nth-child(even) {
    background: var(--color-bg-alt);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.service-detail-content h2 {
    margin-bottom: 1rem;
}

.service-detail-content > p {
    color: var(--color-text-light);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.analysis-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.analysis-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.service-detail:nth-child(even) .analysis-point {
    background: var(--color-bg);
}

.point-number {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--color-accent);
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
}

.point-content h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.point-content p {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin: 0;
}

.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    padding: 2.5rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.service-detail:nth-child(even) .sidebar-card {
    background: var(--color-bg);
}

.sidebar-card h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
}

.sidebar-card ul {
    margin-bottom: 1.75rem;
}

.sidebar-card li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.875rem;
    color: var(--color-text-light);
}

.sidebar-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 600;
}

.sidebar-card .btn {
    width: 100%;
}

/* v22-2: økt luft mellom sidebar-card og bilde */
.service-sidebar > .sidebar-image,
.sidebar-image {
    width: 100%;
    height: auto;
    margin-top: 4rem !important;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: block;
}

@media (max-width: 900px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .service-sidebar {
        position: static;
    }
    
    .analysis-points {
        grid-template-columns: 1fr;
    }
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.service-detail:nth-child(even) .feature-item {
    background: var(--color-bg);
}

.feature-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(26, 54, 93, 0.08);
    color: var(--color-primary);
    border-radius: var(--radius-md);
}

.feature-content h4 {
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature-content p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    margin: 0;
}

/* ===================================
   Om Meg Page
   =================================== */
.about-intro {
    padding: var(--space-2xl) 0;
}

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

.about-image {
    position: sticky;
    top: 100px;
}

.about-image .image-placeholder {
    aspect-ratio: 3/4;
}

.about-image .profile-image {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: block;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.125rem;
    color: var(--color-text-light);
}

.about-content p.lead {
    font-size: 1.25rem;
    color: var(--color-text);
}

.experience-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.highlight-item {
    text-align: center;
}

.highlight-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.highlight-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        position: static;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .experience-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Values Section */
.values-section {
    padding: var(--space-2xl) 0;
    background: var(--color-bg-alt);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.value-card h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.value-card h3::before {
    content: '';
    display: block;
    width: 4px;
    height: 24px;
    background: var(--color-accent);
    border-radius: 2px;
}

.value-card p {
    color: var(--color-text-light);
    margin: 0;
}

@media (max-width: 700px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Kontakt Page
   =================================== */
.contact-section {
    padding: var(--space-2xl) 0 var(--space-3xl);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-info > p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
}

.method-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(26, 54, 93, 0.08);
    color: var(--color-primary);
    border-radius: var(--radius-md);
}

.method-content h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.method-content p {
    color: var(--color-text-muted);
    margin: 0;
}

.method-content a {
    color: var(--color-accent);
    font-weight: 500;
}

.method-content a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form-wrapper {
    padding: 2.5rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
}

.contact-form-wrapper h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.contact-form .btn {
    width: 100%;
    margin-top: 0.5rem;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Utility Classes
   =================================== */
.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }

/* ===================================
   Cookie Consent Banner
   =================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-dark);
    color: #fff;
    padding: var(--space-md) var(--space-lg);
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    min-width: 280px;
}

.cookie-content a {
    color: var(--color-accent-light);
    text-decoration: underline;
}

.cookie-content a:hover {
    color: var(--color-accent);
}

.cookie-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: var(--space-sm) var(--space-md);
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }
    
    .cookie-content p {
        font-size: 0.85rem;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   Footer Legal Links
   =================================== */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.footer-legal {
    font-size: 0.85rem;
    margin: 0;
}

.footer-legal a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--color-accent);
}

/* ===================================
   Legal/Privacy Page Content
   =================================== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-xs);
    border-bottom: 2px solid var(--color-border-light);
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-content p {
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.legal-content li {
    margin-bottom: var(--space-xs);
    line-height: 1.6;
}

.legal-content a {
    color: var(--color-accent);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Privacy Table */
.privacy-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-md) 0;
    font-size: 0.95rem;
}

.privacy-table th,
.privacy-table td {
    padding: var(--space-sm);
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.privacy-table th {
    background: var(--color-bg-alt);
    font-weight: 600;
    color: var(--color-primary);
}

.privacy-table tr:hover td {
    background: var(--color-bg-alt);
}

@media (max-width: 600px) {
    .privacy-table {
        font-size: 0.85rem;
    }
    
    .privacy-table th,
    .privacy-table td {
        padding: var(--space-xs) var(--space-sm);
    }
}

/* Service detail images */
.service-detail-intro {
    margin-bottom: var(--space-xl);
    text-align: center;
}

.service-detail-img {
    width: 100%;
    max-width: 800px;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* Analysis levels */
.analysis-level {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    padding: 2.5rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-accent);
}

.analysis-level.level-2 {
    row-gap: 2rem;
    border-left-color: var(--color-primary);
    margin-top: 4rem;
}

.level-heading {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-primary-dark);
}

.level-desc {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.level-note {
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border-light);
    font-size: 0.9375rem;
    font-style: italic;
    color: var(--color-text-muted);
}

.sidebar-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-accent);
    margin-top: 1rem;
    margin-bottom: 0;
}

.sidebar-card + .sidebar-card {
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .service-detail-img {
        height: 180px;
    }
    
    .analysis-level {
        padding: 1.5rem;
    }
}

/* ===================================
   Innsikt Page
   =================================== */
.innsikt-section {
    padding: var(--space-3xl) 0;
}

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

.innsikt-content {
    max-width: 800px;
    margin: 0 auto;
}

.innsikt-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
}

.innsikt-content p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.innsikt-term-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.innsikt-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    color: white;
    flex-shrink: 0;
}

.innsikt-badge.seo { background: var(--color-primary); }
.innsikt-badge.aeo { background: var(--color-accent); }
.innsikt-badge.geo { background: #2f855a; }

.innsikt-tagline {
    font-size: 1.125rem !important;
    font-weight: 600;
    color: var(--color-text-muted) !important;
    margin-bottom: 1.5rem !important;
}

.innsikt-grid-2,
.innsikt-grid-3 {
    display: grid;
    gap: 1.75rem;
    margin: 2.5rem 0;
}

.innsikt-grid-2 { grid-template-columns: 1fr 1fr; }
.innsikt-grid-3 { grid-template-columns: 1fr 1fr 1fr; }

@media (max-width: 768px) {
    .innsikt-grid-2,
    .innsikt-grid-3 {
        grid-template-columns: 1fr;
    }
}

.innsikt-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-sm);
}

.innsikt-alt .innsikt-card {
    background: white;
}

.innsikt-card h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.0625rem;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
}

.innsikt-card p,
.innsikt-card li {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--color-text-light);
}

.innsikt-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.innsikt-card ul li {
    padding: 0.5rem 0 0.5rem 1.25rem;
    position: relative;
}

.innsikt-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.eeat-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--color-primary);
    color: white;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.innsikt-callout {
    margin: 2.5rem 0 1rem;
    padding: 1.75rem;
    background: #fef3e2;
    border-left: 4px solid var(--color-accent);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--color-text);
}

/* Pyramid visual */
.pyramid-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin: 2.5rem 0;
}

.pyramid-level {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    color: white;
    text-align: center;
}

.pyramid-geo {
    width: 55%;
    background: #2f855a;
}

.pyramid-aeo {
    width: 72%;
    background: var(--color-accent);
}

.pyramid-seo {
    width: 90%;
    background: var(--color-primary);
}

.pyramid-label {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.pyramid-desc {
    font-size: 0.875rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .pyramid-geo { width: 70%; }
    .pyramid-aeo { width: 85%; }
    .pyramid-seo { width: 100%; }
    
    .pyramid-level {
        flex-direction: column;
        gap: 0.25rem;
        padding: 0.75rem 1rem;
    }
}

/* Tips list */
.tips-list {
    margin: 2rem 0;
}

.tip-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border-light);
}

.tip-item:last-child {
    border-bottom: none;
}

.tip-number {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--color-accent);
    color: white;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.125rem;
}

.tip-content h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.0625rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
}

.tip-content p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--color-text-light);
    margin: 0;
}

/* CTA buttons variant */
.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    border: 2px solid white;
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: var(--transition-base);
}

.btn-outline-light:hover {
    background: white;
    color: var(--color-primary-dark);
}

/* ── AI Modenhetsmåler Section ── */
.ai-maturity-section {
    background: var(--color-primary-dark);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.ai-maturity-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid rgba(232,96,28,0.08);
    pointer-events: none;
}
.ai-maturity-section::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -30px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 2px solid rgba(232,96,28,0.06);
    pointer-events: none;
}
.ai-maturity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}
.ai-maturity-badge {
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
}
.ai-maturity-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 1.25rem;
}
.ai-maturity-title .highlight {
    color: var(--color-accent);
}
.ai-maturity-desc {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
}
.ai-maturity-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    align-items: center;
}
.ai-maturity-btn {
    display: inline-block;
    background: var(--color-accent);
    color: #fff;
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.06em;
    padding: 16px 36px;
    border-radius: 4px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s, transform 0.15s;
}
.ai-maturity-btn:hover {
    background: #d4550f;
    transform: translateY(-1px);
}
.ai-maturity-note {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.45);
    font-weight: 400;
}
.ai-maturity-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(4px);
}
.ai-maturity-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}
.ai-maturity-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-accent);
}
.ai-maturity-card-label {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
}
.ai-maturity-score {
    text-align: center;
    margin-bottom: 1.75rem;
}
.ai-maturity-score-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: #fff;
    line-height: 1;
}
.ai-maturity-score-sub {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
    margin-top: 4px;
}
.ai-maturity-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ai-maturity-bar-item {
    /* single bar row */
}
.ai-maturity-bar-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}
.ai-maturity-bar-name {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
}
.ai-maturity-bar-value {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.4);
}
.ai-maturity-bar-track {
    height: 7px;
    background: rgba(255,255,255,0.06);
    border-radius: 4px;
    overflow: hidden;
}
.ai-maturity-bar-fill {
    height: 100%;
    background: var(--color-accent);
    border-radius: 4px;
}
.ai-maturity-phase {
    text-align: center;
    margin-top: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-accent);
}

/* Mobile: stack elements vertically */
@media (max-width: 768px) {
    .ai-maturity-section {
        padding: 3.5rem 0;
    }
    .ai-maturity-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .ai-maturity-desc {
        max-width: 100%;
    }
    .ai-maturity-card {
        padding: 2rem;
    }
}
