/* ============================================================
   BANKEYE — Global Stylesheet
   Palette: #006CE2 (blue) | #00162D / #000000 (dark bg)
             #118D81 / #23D1AD (teal/indikator) | #E5E7EB (text)
   ============================================================ */

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

:root {
    --blue:        #006CE2;
    --blue-dark:   #0055B3;
    --bg-body:     #00162D;
    --bg-deep:     #000000;
    --bg-card:     #0F1B2D;
    --bg-card2:    #071524;
    --border:      #1F2A3A;
    --teal:        #118D81;
    --teal-light:  #23D1AD;
    --accent:      #13B2A1;
    --text:        #E5E7EB;
    --text-muted:  rgba(229,231,235,0.6);
    --radius-lg:   16px;
    --radius-md:   12px;
    --radius-sm:   8px;
    --shadow-card: 0 8px 32px rgba(0,0,0,0.28);
    --shadow-glow: 0 0 60px rgba(35,209,173,0.14), 0 0 100px rgba(59,130,246,0.08);
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-body);
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; }

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.text-center { text-align: center; }
.text-blue   { color: var(--blue); }
.text-teal   { color: var(--teal-light); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(0, 22, 45, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s ease;
}
.nav-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 0 48px;
    height: 64px;
    display: flex; align-items: center; gap: 32px;
}
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-size: 20px; font-weight: 800;
    color: #fff; letter-spacing: -0.5px;
    flex-shrink: 0;
}
.nav-logo-icon {
    width: 32px; height: 32px;
    background: var(--blue);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; color: #fff;
}
.nav-links {
    display: flex; align-items: center; gap: 4px;
    flex: 1;
}
.nav-link {
    padding: 7px 13px;
    font-size: 13px; font-weight: 500;
    color: rgba(229,231,235,0.7);
    border-radius: 7px;
    transition: color 0.15s, background 0.15s;
    white-space: nowrap;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav-link.active { color: var(--blue); }

/* Bankeye link — alltid blå */
.nav-link--bankeye { color: var(--blue); }
.nav-link--bankeye:hover { color: var(--blue); background: rgba(0,108,226,0.08); }
.nav-link--bankeye.active { color: var(--blue); }

/* Indikator link — alltid teal, også når active */
.nav-link--indikator { color: var(--teal-light); }
.nav-link--indikator:hover { color: var(--teal-light); background: rgba(35,209,173,0.08); }
.nav-link--indikator.active { color: var(--teal-light); }

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-btn-ghost {
    padding: 8px 16px;
    font-size: 13px; font-weight: 600;
    color: rgba(229,231,235,0.8);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
    display: inline-flex; align-items: center;
}
.nav-btn-ghost:hover { border-color: rgba(255,255,255,0.3); color: #fff; }
.nav-btn-primary {
    padding: 8px 18px;
    font-size: 13px; font-weight: 700;
    color: #fff;
    background: var(--blue);
    border: none; border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s, transform 0.15s;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px;
}
.nav-btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }

/* Mobile hamburger */
.nav-hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
    display: block; width: 22px; height: 2px;
    background: var(--text); border-radius: 2px;
    transition: all 0.3s ease;
}
.nav-mobile {
    display: none;
    flex-direction: column;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 16px 24px 24px;
    gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link { width: 100%; padding: 10px 14px; display: block; }
.nav-mobile-divider { height: 1px; background: var(--border); margin: 8px 0; }
.nav-mobile-actions { display: flex; flex-direction: column; gap: 8px; padding-top: 4px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    padding: 80px 48px 96px;
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; gap: 64px;
}
.hero-text { flex: 1; min-width: 0; }

/* ---- Centered hero ---- */
.hero-centered {
    padding: 80px 48px 96px;
    max-width: 1200px; margin: 0 auto;
    text-align: center;
}
.hero-title--centered { text-align: center; max-width: 700px; margin-left: auto; margin-right: auto; }
.hero-subtitle--centered { text-align: center; max-width: 560px; margin-left: auto; margin-right: auto; margin-bottom: 56px; }

/* Product cards */
.hero-product-cards {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
    text-align: left;
}
.hero-product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px; padding: 32px;
    display: flex; flex-direction: column; gap: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-product-card:hover { transform: translateY(-4px); }
.hero-product-card--blue:hover { box-shadow: 0 16px 60px rgba(0,108,226,0.18); border-color: rgba(0,108,226,0.3); }
.hero-product-card--teal:hover { box-shadow: 0 16px 60px rgba(35,209,173,0.15); border-color: rgba(35,209,173,0.3); }
.hero-product-card-top { display: flex; align-items: center; justify-content: space-between; }
.hero-product-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
}
.hero-product-icon--blue { background: rgba(0,108,226,0.12); color: var(--blue); }
.hero-product-icon--teal { background: rgba(35,209,173,0.12); color: var(--teal-light); }
.hero-product-tag {
    font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; padding: 4px 10px;
    border-radius: 20px;
}
.hero-product-tag--blue { background: rgba(0,108,226,0.1); color: var(--blue); }
.hero-product-tag--teal { background: rgba(35,209,173,0.1); color: var(--teal-light); }
.hero-product-name { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; }
.hero-product-desc { font-size: 14px; line-height: 1.7; color: var(--text-muted); }
.hero-product-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.hero-product-features li { font-size: 13px; color: var(--text); display: flex; align-items: center; gap: 8px; }
.hero-product-features li i { font-size: 11px; flex-shrink: 0; }
.hero-product-img-wrap {
    border-radius: 12px; overflow: hidden;
    aspect-ratio: 16/9; margin: 4px 0;
}
.hero-product-img-wrap--blue { border: 1px solid rgba(0,108,226,0.2); box-shadow: 0 4px 20px rgba(0,108,226,0.15); }
.hero-product-img-wrap--teal { border: 1px solid rgba(35,209,173,0.2); box-shadow: 0 4px 20px rgba(35,209,173,0.12); }
.hero-product-img { width: 100%; height: 100%; object-fit: contain; background: #071524; display: block; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--blue); margin-bottom: 20px;
}
.hero-eyebrow-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--blue); flex-shrink: 0;
}
.hero-title {
    font-size: clamp(36px, 4.5vw, 60px);
    font-weight: 800; line-height: 1.12;
    letter-spacing: -2px; color: #fff;
    margin-bottom: 22px;
}
.hero-title em { font-style: normal; color: var(--blue); }
.hero-subtitle {
    font-size: 17px; font-weight: 400;
    line-height: 1.85; color: var(--text);
    opacity: 0.72; margin-bottom: 40px;
    max-width: 480px;
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-stats {
    display: flex; align-items: center; gap: 32px;
    margin-top: 48px; padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.hero-stat-value {
    font-size: 28px; font-weight: 800;
    color: #fff; letter-spacing: -1px;
}
.hero-stat-label {
    font-size: 12px; font-weight: 500;
    color: var(--text-muted); margin-top: 2px;
}

/* Hero media */
.hero-media {
    flex: 0 0 520px; position: relative; padding-bottom: 44px;
}
.hero-screenshot {
    width: 100%; border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow:
        0 32px 100px rgba(0,0,0,0.5),
        0 4px 20px rgba(0,0,0,0.25),
        0 0 0 1px rgba(0,108,226,0.15),
        0 0 90px rgba(0,108,226,0.20),
        0 0 160px rgba(0,108,226,0.12);
    background: var(--bg-card);
    aspect-ratio: 16/10; overflow: hidden;
}
.hero-badge {
    position: absolute; bottom: 8px; left: -18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px; padding: 14px 20px;
    display: flex; align-items: center; gap: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 10;
}
.hero-badge-icon {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(0,108,226,0.15);
    display: flex; align-items: center; justify-content: center;
    color: var(--blue); font-size: 17px; flex-shrink: 0;
}
.hero-badge-label {
    font-size: 10px; font-weight: 600;
    letter-spacing: 1.2px; text-transform: uppercase;
    color: var(--text); opacity: 0.5;
}
.hero-badge-value {
    font-size: 18px; font-weight: 800;
    color: var(--blue); line-height: 1;
}
.hero-badge--teal { border-color: rgba(35,209,173,0.2); }
.hero-badge-icon--teal { background: rgba(35,209,173,0.12); color: var(--teal-light); }

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero-carousel { position: relative; width: 100%; height: 100%; overflow: hidden; outline: none; }
.hero-carousel-track { position: relative; width: 100%; height: 100%; }
.hero-carousel-slide {
    position: absolute; inset: 0;
    opacity: 0; z-index: 1;
    transition: opacity 0.75s ease;
}
.hero-carousel-slide--active { opacity: 1; z-index: 2; }
.hero-carousel-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.hero-carousel-img--contain { object-fit: contain; object-position: center; background: #071524; }

/* Placeholder slides (when no images) */
.hero-carousel-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 16px; padding: 32px;
}

.hero-carousel-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 10;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 50%;
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 13px;
    cursor: pointer; opacity: 0;
    transition: opacity 0.18s ease, background 0.18s ease, transform 0.18s ease;
}
.hero-carousel-arrow--prev { left: 12px; }
.hero-carousel-arrow--next { right: 12px; }
.hero-screenshot:hover .hero-carousel-arrow { opacity: 1; }
.hero-carousel-arrow:hover { background: rgba(0,0,0,0.55); transform: translateY(-50%) scale(1.08); }

.hero-carousel-dots {
    position: absolute; bottom: 14px; left: 50%;
    transform: translateX(-50%);
    z-index: 10; display: flex; align-items: center; gap: 6px;
}
.hero-carousel-dot {
    width: 6px; height: 6px;
    border-radius: 50%; border: none;
    background: rgba(255,255,255,0.35);
    cursor: pointer; padding: 0;
    transition: width 0.25s ease, border-radius 0.25s ease, background 0.25s ease;
}
.hero-carousel-dot--active { width: 22px; border-radius: 3px; background: #fff; }

/* ============================================================
   SECTION BASE
   ============================================================ */
.section {
    padding: 80px 48px;
    max-width: 1200px; margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--blue); margin-bottom: 14px;
}
.section-eyebrow--teal { color: var(--teal-light); }
.section-title {
    font-size: clamp(26px, 3vw, 38px); font-weight: 800;
    letter-spacing: -1px; color: #fff; margin-bottom: 14px;
    line-height: 1.2;
}
.section-sub {
    font-size: 16px; font-weight: 400;
    color: var(--text-muted); line-height: 1.7;
    max-width: 560px; margin: 0 auto;
}


/* ============================================================
   LOGO CAROUSEL (auto-scroll)
   ============================================================ */
.trust-section {
    padding: 48px 0 56px;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    overflow: hidden;
}
.trust-label {
    text-align: center;
    font-size: 12px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 36px;
}
.logo-carousel-wrapper {
    position: relative;
    overflow: hidden;
    /* fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image:         linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.logo-carousel-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: logoScroll 28s linear infinite;
}
.logo-carousel-track:hover { animation-play-state: paused; }

@keyframes logoScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logo-carousel-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 44px;
    flex-shrink: 0;
}
.logo-carousel-item img {
    height: 36px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    /* Make all logos appear light/white on dark bg */
    filter: brightness(0) invert(1);
    opacity: 0.35;
    transition: opacity 0.25s ease, filter 0.25s ease;
}
.logo-carousel-item img:hover {
    opacity: 0.75;
    filter: brightness(0) invert(1);
}
.logo-carousel-item img.logo-no-filter {
    filter: none;
    opacity: 0.6;
}
.logo-carousel-item img.logo-no-filter:hover {
    filter: none;
    opacity: 1;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 36px;
    display: flex; flex-direction: column; gap: 20px;
    transition: border-color 0.2s, transform 0.2s;
}
.testimonial-card:hover {
    border-color: rgba(0,108,226,0.3);
    transform: translateY(-4px);
}
.testimonial-stars { display: flex; gap: 3px; }
.testimonial-star { color: #FBBF24; font-size: 13px; }
.testimonial-quote {
    font-size: 16px; font-weight: 400;
    line-height: 1.75; color: var(--text);
    opacity: 0.85; font-style: italic;
    flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 700; color: #fff; }
.testimonial-title { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ============================================================
   PRODUCTS
   ============================================================ */
.products-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Chartbook split section */
.chartbook-split {
    display: flex; align-items: center; gap: 64px;
    max-width: 1100px; margin: 0 auto;
}
.chartbook-img-wrap {
    flex: 0 0 480px;
    border-radius: 18px; overflow: hidden;
    border: 1px solid rgba(0,108,226,0.15);
    box-shadow: 0 24px 80px rgba(0,0,0,0.4), 0 0 60px rgba(0,108,226,0.12);
}
.chartbook-img { width: 100%; height: auto; display: block; }
.chartbook-text { flex: 1; min-width: 0; }
.product-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 36px 32px;
    display: flex; flex-direction: column; gap: 18px;
    transition: all 0.3s ease;
    position: relative; overflow: hidden;
}
.product-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--blue);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s ease;
}
.product-card--teal::before { background: linear-gradient(90deg, var(--teal), var(--teal-light)); }
.product-card:hover { border-color: rgba(0,108,226,0.25); transform: translateY(-6px); }
.product-card:hover::before { transform: scaleX(1); }
.product-card--teal:hover { border-color: rgba(35,209,173,0.25); }

.product-icon {
    width: 52px; height: 52px; border-radius: 12px;
    background: rgba(0,108,226,0.14);
    display: flex; align-items: center; justify-content: center;
    color: var(--blue); font-size: 22px;
}
.product-icon--teal {
    background: rgba(19,178,161,0.14);
    color: var(--teal-light);
}
.product-name { font-size: 20px; font-weight: 800; color: #fff; letter-spacing: -0.3px; }
.product-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; flex: 1; }
.product-features { display: flex; flex-direction: column; gap: 8px; }
.product-feature {
    display: flex; align-items: center; gap: 9px;
    font-size: 13px; color: var(--text); opacity: 0.8;
}
.product-feature-check {
    width: 18px; height: 18px; border-radius: 50%;
    background: rgba(0,108,226,0.15);
    display: flex; align-items: center; justify-content: center;
    color: var(--blue); font-size: 9px; flex-shrink: 0;
}
.product-feature-check--teal {
    background: rgba(35,209,173,0.15);
    color: var(--teal-light);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 32px; max-width: 900px; margin: 48px auto 0;
}
.pricing-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg); padding: 60px 44px 52px;
    display: flex; flex-direction: column; align-items: center; text-align: center;
    position: relative; transition: transform 0.3s ease;
}
.pricing-card--enkel {
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 8px 48px rgba(0,0,0,0.4);
}
.pricing-card--featured {
    border: 2px solid var(--blue);
    background: linear-gradient(180deg, rgba(0,123,255,0.05) 0%, rgba(10,20,30,0) 100%), linear-gradient(160deg, #0F1B2D 0%, #071524 100%);
    box-shadow: 0 0 0 1px rgba(0,108,226,0.15), 0 32px 80px rgba(0,108,226,0.18);
}
.pricing-card--enkel:hover { transform: translateY(-4px); }
.pricing-badge {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--blue); color: #fff;
    font-size: 10px; font-weight: 700; letter-spacing: 1.8px;
    text-transform: uppercase; padding: 5px 20px; border-radius: 20px;
    white-space: nowrap;
}
.pricing-name {
    font-size: 11px; font-weight: 700; color: var(--text-muted);
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 28px;
}
.pricing-price {
    font-size: 56px; font-weight: 800; color: #fff;
    letter-spacing: -2px; line-height: 1; margin-bottom: 6px;
}
.pricing-price span { font-size: 20px; font-weight: 500; color: var(--text-muted); letter-spacing: 0; }
.pricing-period { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.pricing-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 28px; max-width: 280px; }
.pricing-cta { width: 100%; justify-content: center; margin-bottom: 40px; }
.pricing-features { display: flex; flex-direction: column; gap: 20px; width: 100%; text-align: left; }
.pricing-feature {
    display: flex; align-items: center; gap: 12px;
    font-size: 14px; color: #ffffff; font-weight: 500; line-height: 1.45;
}
.pricing-feature--excluded { opacity: 0.35; color: #8899aa; font-weight: 400; }
.pricing-feature-icon {
    width: 22px; height: 22px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 9px; flex-shrink: 0;
}
.pricing-feature-icon--check {
    background: rgba(0,255,136,0.12); color: #00FF88;
    filter: drop-shadow(0 0 5px rgba(0,255,136,0.5));
}
.pricing-feature-icon--lg {
    width: 24px; height: 24px; font-size: 10px;
}
.pricing-feature-icon--x {
    background: transparent; color: rgba(148,163,184,0.5);
    font-size: 13px; font-weight: 300;
}
.pricing-feature--webapp {}
.pricing-webapp-badge {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    border-radius: 12px;
    background: rgba(0,123,255,0.20);
    color: #00BFFF;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    vertical-align: middle;
}

/* ============================================================
   NEWS
   ============================================================ */
.news-main-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
    display: grid; grid-template-columns: 1.2fr 1fr;
    margin-bottom: 28px;
    transition: border-color 0.2s, transform 0.2s;
}
.news-main-card:hover { border-color: rgba(0,108,226,0.25); transform: translateY(-3px); }
.news-main-img {
    aspect-ratio: 16/10; background: var(--bg-card2);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; position: relative;
}
.news-main-img img { width: 100%; height: 100%; object-fit: cover; }
.news-img-placeholder {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 12px; padding: 32px; width: 100%; height: 100%;
    background: linear-gradient(135deg, #071524 0%, #0F1B2D 100%);
}
.news-img-border { border: 3px solid var(--blue); border-radius: 8px; overflow: hidden; }
.news-main-body { padding: 40px; display: flex; flex-direction: column; gap: 14px; }
.news-tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--blue);
    background: rgba(0,108,226,0.12); border-radius: 20px;
    padding: 4px 12px; width: fit-content;
}
.news-main-title { font-size: 22px; font-weight: 800; color: #fff; line-height: 1.3; letter-spacing: -0.5px; }
.news-main-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.7; flex: 1; }
.news-meta { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }

.news-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.news-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
    display: flex; flex-direction: column;
    transition: border-color 0.2s, transform 0.2s;
}
.news-card:hover { border-color: rgba(0,108,226,0.25); transform: translateY(-4px); }
.news-card-img {
    aspect-ratio: 16/9; background: var(--bg-card2);
    overflow: hidden; position: relative;
}
.news-card-img img { width: 100%; height: 100%; object-fit: cover; }
.news-card-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.news-card-title { font-size: 16px; font-weight: 700; color: #fff; line-height: 1.4; }
.news-card-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.65; flex: 1; }

/* ============================================================
   CTA STRIP / TRIAL
   ============================================================ */
.cta-strip {
    margin: 0 0 0 0;
    border-radius: var(--radius-lg); padding: 64px 56px;
    background: linear-gradient(135deg, #003d80 0%, var(--blue) 50%, #0055B3 100%);
    display: flex; align-items: center; justify-content: space-between; gap: 40px;
    position: relative; overflow: hidden;
}
.cta-strip::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(35,209,173,0.15) 0%, transparent 60%);
    pointer-events: none;
}
.cta-strip-text { position: relative; }
.cta-strip-title { font-size: 28px; font-weight: 800; color: #fff; letter-spacing: -0.5px; margin-bottom: 8px; }
.cta-strip-sub { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.6; max-width: 480px; }
.cta-strip-actions { display: flex; flex-direction: column; gap: 16px; flex-shrink: 0; position: relative; }

/* Trial Form */
.trial-section {
    padding: 80px 48px;
    background: linear-gradient(180deg, transparent 0%, rgba(0,108,226,0.04) 100%);
    border-top: 1px solid rgba(255,255,255,0.04);
}
.trial-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 20px; padding: 52px 56px;
    max-width: 680px; margin: 0 auto;
    text-align: center;
    box-shadow: 0 0 0 1px rgba(0,108,226,0.1), var(--shadow-card);
}
.trial-title { font-size: 30px; font-weight: 800; color: #fff; letter-spacing: -0.8px; margin-bottom: 12px; }
.trial-sub { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 36px; }
.trial-form { display: flex; flex-direction: column; gap: 14px; text-align: left; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 12px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.5px; }
.form-input {
    background: var(--bg-card2); border: 1px solid var(--border);
    border-radius: 10px; padding: 13px 16px;
    font-size: 14px; color: var(--text); font-family: inherit;
    outline: none; transition: border-color 0.15s, box-shadow 0.15s;
}
.form-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,108,226,0.12); }
.form-input::placeholder { color: rgba(229,231,235,0.3); }
.form-submit {
    margin-top: 6px; padding: 15px;
    background: var(--blue); color: #fff;
    border: none; border-radius: 10px;
    font-size: 15px; font-weight: 700; font-family: inherit;
    cursor: pointer; transition: background 0.15s, transform 0.15s;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { background: var(--blue-dark); transform: translateY(-2px); }
.form-hint { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 8px; }

/* ============================================================
   BUTTONS (Global)
   ============================================================ */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    border-radius: 10px; font-family: inherit;
    font-size: 14px; font-weight: 700; cursor: pointer;
    transition: all 0.2s ease; text-decoration: none;
    border: none; padding: 13px 26px;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,108,226,0.3); }
.btn-outline {
    background: transparent; color: var(--text);
    border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-teal { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%); color: #fff; }
.btn-teal:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(35,209,173,0.25); }
.btn-white { background: #fff; color: var(--blue); }
.btn-white:hover { opacity: 0.92; transform: translateY(-1px); }
.btn-sm { padding: 9px 18px; font-size: 13px; border-radius: 8px; }
.btn-lg { padding: 16px 32px; font-size: 15px; border-radius: 12px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #000; border-top: 1px solid rgba(255,255,255,0.06);
    padding: 64px 48px 40px;
}
.footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px; padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 800; color: #fff; }
.footer-logo-icon {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--blue); display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: #fff;
}
.footer-tagline { font-size: 13px; color: var(--text-muted); line-height: 1.65; max-width: 280px; }
.footer-col-title { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 13px; color: rgba(229,231,235,0.55); transition: color 0.15s; }
.footer-link:hover { color: #fff; }
.footer-link--teal { color: rgba(35,209,173,0.7); }
.footer-link--teal:hover { color: var(--teal-light); }
.footer-link--blue { color: rgba(0,108,226,0.8); }
.footer-link--blue:hover { color: var(--blue); }
.footer-contact { font-size: 13px; color: rgba(229,231,235,0.55); display: flex; flex-direction: column; gap: 9px; }
.footer-contact a { transition: color 0.15s; }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
    max-width: 1200px; margin: 0 auto;
    padding-top: 28px;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 12px; color: rgba(229,231,235,0.3);
    flex-wrap: wrap; gap: 12px;
}

/* ============================================================
   DEMO MODAL
   ============================================================ */
.demo-modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.6);
    display: none; align-items: center; justify-content: center;
    z-index: 9999; opacity: 0; transition: opacity 0.22s ease;
    padding: 24px;
}
.demo-modal-overlay--visible { opacity: 1; }
.demo-modal {
    position: relative;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 20px; padding: 44px 48px;
    max-width: 480px; width: 100%;
    box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,108,226,0.15);
    text-align: center;
    transform: translateY(20px); transition: transform 0.22s ease;
}
.demo-modal-overlay--visible .demo-modal { transform: translateY(0); }
.demo-modal-close {
    position: absolute; top: 14px; right: 16px;
    background: none; border: none; cursor: pointer;
    color: var(--text-muted); font-size: 18px; padding: 6px;
    border-radius: 6px; transition: color 0.15s;
}
.demo-modal-close:hover { color: #fff; }
.demo-modal-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: var(--blue); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin: 0 auto 22px;
}
.demo-modal-title { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.demo-modal-body { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 26px; }
.demo-modal-form { display: flex; gap: 8px; margin-bottom: 10px; }
.demo-modal-input {
    flex: 1; background: #111827; border: 1px solid var(--border);
    border-radius: 10px; padding: 12px 16px;
    font-size: 14px; color: var(--text); font-family: inherit;
    outline: none; transition: border-color 0.15s;
}
.demo-modal-input:focus { border-color: var(--blue); }
.demo-modal-submit {
    flex-shrink: 0; background: var(--blue); color: #fff;
    border: none; border-radius: 10px; padding: 12px 20px;
    font-size: 13px; font-weight: 700; cursor: pointer; font-family: inherit;
    display: inline-flex; align-items: center; gap: 6px;
    transition: background 0.15s, transform 0.15s;
}
.demo-modal-submit:hover:not(:disabled) { background: var(--blue-dark); transform: translateY(-1px); }
.demo-modal-hint { font-size: 12px; color: var(--text-muted); margin: 0; }
.demo-result {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px 20px; border-radius: 10px; font-size: 14px; font-weight: 600;
    margin-top: 10px;
}
.demo-result--ok { background: rgba(34,197,94,0.1); color: #22c55e; border: 1px solid rgba(34,197,94,0.2); }
.demo-result--err { background: rgba(239,68,68,0.1); color: #ef4444; border: 1px solid rgba(239,68,68,0.2); }

/* ============================================================
   FEAT-* (Indikator product page — imported from spec)
   ============================================================ */
.feat-breadcrumb {
    display: flex; align-items: center; gap: 8px;
    padding: 20px 48px 0;
    font-size: 13px; font-weight: 500; color: var(--text);
}
.feat-breadcrumb a {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--blue); text-decoration: none;
    font-weight: 700; font-size: 13px; transition: opacity 0.15s;
}
.feat-breadcrumb a:hover { opacity: 0.75; }
.feat-breadcrumb-sep { opacity: 0.35; }
.feat-breadcrumb span:last-child { opacity: 0.5; }

.feat-hero {
    display: flex; align-items: center; gap: 64px;
    padding: 56px 48px 64px;
    max-width: 1200px; margin: 0 auto;
}
.feat-hero-text { flex: 1; min-width: 0; }
.feat-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
    text-transform: uppercase; color: var(--accent); margin-bottom: 20px;
}
.feat-hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.feat-hero-title { font-size: clamp(32px, 4vw, 52px); font-weight: 800; line-height: 1.15; letter-spacing: -1px; color: var(--text); margin: 0 0 20px; }
.feat-hero-title em { font-style: normal; color: var(--accent); }
.feat-hero-body { font-size: 16px; font-weight: 400; line-height: 1.9; color: var(--text); opacity: 0.75; margin: 0 0 36px; max-width: 440px; }
.feat-hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.feat-hero-media { flex: 0 0 460px; position: relative; }
.feat-hero-media--badged { padding-bottom: 24px; }
.feat-hero-screenshot {
    width: 100%; border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 24px 80px rgba(0,0,0,0.38), 0 4px 16px rgba(0,0,0,0.18), 0 0 0 1px rgba(35,209,173,0.10), 0 0 80px rgba(35,209,173,0.18), 0 0 140px rgba(59,130,246,0.10);
    background: var(--bg-card); aspect-ratio: 16/9; overflow: hidden;
    position: relative;
}
.feat-hero-badge {
    position: absolute; bottom: -16px; left: -16px;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 12px; padding: 12px 18px;
    display: flex; align-items: center; gap: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.14);
    z-index: 10;
}
.feat-hero-badge--outside {
    position: absolute;
    bottom: 8px;
    left: -16px;
    z-index: 10;
}
.feat-hero-badge-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(19,178,161,0.12);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 20px; flex-shrink: 0;
}
.feat-hero-badge-label { font-size: 10px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: var(--text); opacity: 0.5; }
.feat-hero-badge-value { font-size: 17px; font-weight: 800; color: var(--accent); line-height: 1; }

.feat-carousel { position: absolute; inset: 0; overflow: hidden; outline: none; }
.feat-carousel-track { position: relative; width: 100%; height: 100%; }
.feat-carousel-slide { position: absolute; inset: 0; opacity: 0; z-index: 1; transition: opacity 0.70s ease; }
.feat-carousel-slide--active { opacity: 1; z-index: 2; }
.feat-carousel-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.feat-carousel-img--contain { object-fit: contain; object-position: center; background: #071524; }
.feat-carousel-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
    background: rgba(0,0,0,0.30); backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.14); border-radius: 50%;
    width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 13px; cursor: pointer; opacity: 0;
    transition: opacity 0.18s ease, background 0.18s ease, transform 0.18s ease;
}
.feat-carousel-arrow--prev { left: 10px; }
.feat-carousel-arrow--next { right: 10px; }
.feat-hero-screenshot:hover .feat-carousel-arrow { opacity: 1; }
.feat-carousel-arrow:hover { background: rgba(0,0,0,0.50); transform: translateY(-50%) scale(1.08); }
.feat-carousel-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; align-items: center; gap: 6px; }
.feat-carousel-dot { width: 6px; height: 6px; border-radius: 50%; border: none; background: rgba(255,255,255,0.40); cursor: pointer; padding: 0; transition: width 0.25s ease, border-radius 0.25s ease, background 0.25s ease; }
.feat-carousel-dot--active { width: 20px; border-radius: 3px; background: #ffffff; }

.feat-section { padding: 64px 48px; max-width: 1200px; margin: 0 auto; }
.feat-visual { padding: 0 48px 64px; max-width: 1200px; margin: 0 auto; }
.feat-section-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.feat-section-eyebrow::before { content: ''; display: inline-block; width: 4px; height: 14px; background: var(--accent); border-radius: 2px; flex-shrink: 0; }
.feat-section-eyebrow span { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); }
.feat-section-title { font-size: 28px; font-weight: 800; letter-spacing: -0.5px; color: var(--text); margin: 0 0 8px; line-height: 1.2; }
.feat-section-sub { font-size: 15px; font-weight: 400; color: var(--text); opacity: 0.6; margin: 0 auto 40px; line-height: 1.65; max-width: 560px; text-align: center; }

.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat-grid-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 28px 26px; display: flex; flex-direction: column; gap: 14px; transition: all 0.3s ease-in-out; }
.feat-grid-card:hover { border-color: #23d1ad; box-shadow: 0 12px 40px rgba(35,209,173,0.14); transform: translateY(-5px); }
.feat-grid-icon { width: 48px; height: 48px; border-radius: 10px; background: rgba(19,178,161,0.12); display: flex; align-items: center; justify-content: center; color: #23d1ad; font-size: 25px; flex-shrink: 0; transition: background 0.25s ease, color 0.25s ease; }
.feat-grid-title { font-size: 18px; font-weight: 700; color: var(--text); line-height: 1.3; }
.feat-grid-body { font-size: 13px; font-weight: 400; color: rgba(229,231,235,0.88); line-height: 1.65; }
.feat-grid-body li { padding: 5px 0; }
.feat-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.feat-tag {
    font-size: 11px; font-weight: 600;
    padding: 4px 10px; border-radius: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(229,231,235,0.6);
    letter-spacing: 0.3px;
}

.feat-feature-split { display: grid; grid-template-columns: 5fr 6fr; gap: 40px; align-items: center; margin-top: 8px; }
.feat-feature-split.feat-feature-split--reverse { grid-template-columns: 6fr 5fr; }
.feat-feature-split-text { text-align: left; }
.feat-feature-split-text .feat-section-sub { text-align: left; margin-left: 0; margin-right: 0; line-height: 1.85; margin-bottom: 28px; }
.feat-feature-split-text .feat-section-title,
.feat-feature-split-text .feat-section-eyebrow { text-align: left; }
.feat-feature-split-img {
    border-radius: 16px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07); backdrop-filter: blur(2px);
    box-shadow: 0 16px 56px rgba(0,0,0,0.36), 0 4px 16px rgba(0,0,0,0.18), 0 0 0 1px rgba(35,209,173,0.10), 0 0 60px rgba(35,209,173,0.16), 0 0 100px rgba(59,130,246,0.08);
}
.feat-feature-split-img img { width: 100%; display: block; border-radius: 16px; }

.feat-feature-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.feat-feature-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text); line-height: 1.6; }
.feat-feature-list-icon { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: rgba(35,209,173,0.15); display: flex; align-items: center; justify-content: center; color: #23d1ad; font-size: 10px; margin-top: 1px; }

/* kdemo */
.kdemo-wrap { border: none !important; background: none !important; box-shadow: none !important; padding: 0; }
.kdemo-panel { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; font-family: Inter, sans-serif; user-select: none; height: 360px; display: flex; flex-direction: column; box-shadow: 0 16px 56px rgba(0,0,0,0.36), 0 4px 16px rgba(0,0,0,0.18), 0 0 0 1px rgba(35,209,173,0.10), 0 0 60px rgba(35,209,173,0.16), 0 0 100px rgba(59,130,246,0.08); }
.kdemo-header { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: 13px; font-weight: 600; color: var(--text); flex-shrink: 0; }
.kdemo-header-right { display: flex; align-items: center; gap: 7px; font-size: 12px; opacity: 0.6; }
.kdemo-county-row { display: flex; align-items: center; gap: 9px; padding: 10px 16px; font-size: 13px; color: var(--text); border-bottom: 1px solid var(--border); flex-shrink: 0; transition: background 0.25s ease, box-shadow 0.25s ease; }
.kdemo-county-name { font-weight: 700; font-size: 13px; }
.kdemo-county-row--dim { opacity: 0.42; }
.kdemo-county-row--active { background: rgba(35,209,173,0.07); box-shadow: inset 3px 0 0 var(--teal-light); }
.kdemo-chevron { font-size: 9px; opacity: 0.5; width: 10px; flex-shrink: 0; transition: transform 0.3s cubic-bezier(0.4,0,0.2,1); }
.kdemo-badge { margin-left: auto; font-size: 12px; font-weight: 700; color: var(--teal-light); opacity: 0; transition: opacity 0.2s ease; }
.kdemo-badge--visible { opacity: 1; }
.kdemo-items { max-height: 0; overflow: hidden; transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1); background: rgba(0,0,0,0.15); flex-shrink: 0; }
.kdemo-items--open { max-height: 220px; }
.kdemo-items-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; padding: 6px 10px 10px 14px; gap: 2px 0; }
.kdemo-item { display: flex; align-items: center; gap: 7px; padding: 7px 6px; font-size: 12px; color: var(--text); opacity: 0; transform: translateY(4px); transition: opacity 0.22s ease, transform 0.22s ease, background 0.18s ease; border-radius: 5px; }
.kdemo-item--visible { opacity: 0.82; transform: translateY(0); }
.kdemo-item--selected { opacity: 1; background: rgba(35,209,173,0.10); }
.kdemo-check { width: 15px; height: 15px; border: 1.5px solid rgba(255,255,255,0.25); border-radius: 3px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 8px; color: #fff; transition: transform 0.15s cubic-bezier(0.4,0,0.2,1), background 0.15s ease, border-color 0.15s ease; }
.kdemo-check--checked { background: var(--teal-light); border-color: var(--teal-light); }
.kdemo-check i { opacity: 0; transition: opacity 0.12s ease; }
.kdemo-check--checked i { opacity: 1; }

.feat-cta-strip { margin: 0 48px 64px; border-radius: 16px; padding: 48px; background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.feat-cta-strip-title { font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -0.3px; margin: 0 0 6px; }
.feat-cta-strip-sub { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.75); margin: 0; }
.feat-cta-strip--teal { background: linear-gradient(135deg, #1ab899 0%, #0d8a72 100%); }

/* feat btn aliases */
.feat-btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--blue); color: #fff; border: none; border-radius: 10px; padding: 13px 26px; font-size: 13px; font-weight: 700; letter-spacing: 0.2px; cursor: pointer; text-decoration: none; transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease; }
.feat-btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,108,226,0.3); }
.feat-btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--text); border: 1px solid var(--border); border-radius: 10px; padding: 12px 22px; font-size: 13px; font-weight: 600; cursor: pointer; text-decoration: none; transition: border-color 0.2s ease, color 0.2s ease; }
.feat-btn-secondary:hover { border-color: var(--blue); color: var(--blue); }
.feat-btn-white { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--blue); border: none; border-radius: 10px; padding: 13px 26px; font-size: 13px; font-weight: 700; cursor: pointer; white-space: nowrap; text-decoration: none; transition: opacity 0.15s, transform 0.15s; flex-shrink: 0; }
.feat-btn-white:hover { opacity: 0.92; transform: translateY(-1px); }

/* ============================================================
   BANKEYE PAGE — BLUE VARIANTS
   ============================================================ */
.feat-hero-eyebrow--blue { color: var(--blue); }
.feat-hero-eyebrow-dot--blue { background: var(--blue); }
.feat-hero-em--blue,
.feat-hero-title .feat-hero-em--blue { color: var(--blue); }

/* Hero screenshot: blå glow i stedet for teal */
.feat-hero--blue .feat-hero-screenshot {
    box-shadow: 0 24px 80px rgba(0,0,0,0.38), 0 4px 16px rgba(0,0,0,0.18),
                0 0 0 1px rgba(0,108,226,0.12),
                0 0 80px rgba(0,108,226,0.20),
                0 0 140px rgba(0,108,226,0.10);
}
/* Hero badge verdi: blå farge */
.feat-hero--blue .feat-hero-badge-value { color: var(--blue); }
.feat-hero--blue .feat-hero-badge-icon { background: rgba(0,108,226,0.22); color: var(--blue); font-size: 20px; width: 44px; height: 44px; border-radius: 10px; border: 1px solid rgba(0,108,226,0.25); }

.feat-section-eyebrow--blue::before { background: var(--blue); }
.feat-section-eyebrow--blue span { color: var(--blue); }

.feat-grid-card--blue:hover { border-color: var(--blue); box-shadow: 0 12px 40px rgba(0,108,226,0.18); }
.feat-grid-icon--blue { background: rgba(0,108,226,0.12); color: var(--blue); }
.feat-grid-card--blue:hover .feat-grid-icon--blue { background: rgba(0,108,226,0.24); color: #5aabff; }

.feat-feature-list-icon--blue { background: rgba(0,108,226,0.14); color: var(--blue); }

/* Feature split images: blå glow i stedet for teal */
.feat-feature-split-img--blue {
    box-shadow: 0 16px 56px rgba(0,0,0,0.36), 0 4px 16px rgba(0,0,0,0.18),
                0 0 0 1px rgba(0,108,226,0.12),
                0 0 60px rgba(0,108,226,0.18),
                0 0 100px rgba(0,108,226,0.08);
}

.feat-btn-primary--blue { background: var(--blue); }
.feat-btn-primary--blue:hover { background: var(--blue-dark); box-shadow: 0 8px 24px rgba(0,108,226,0.3); }
.feat-btn-primary--teal { background: var(--teal-light); color: #071524; }
.feat-btn-primary--teal:hover { background: #1ab99a; box-shadow: 0 8px 24px rgba(35,209,173,0.3); }

/* ---- Demo video ---- */
.video-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 16px 56px rgba(0,0,0,0.40),
                0 0 0 1px rgba(0,108,226,0.10),
                0 0 60px rgba(0,108,226,0.12);
    background: var(--bg-card);
    aspect-ratio: 16 / 9;
}
.video-player {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}
.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(0, 10, 22, 0.55);
    backdrop-filter: blur(2px);
    transition: opacity 0.3s ease;
    cursor: pointer;
}
.video-overlay--hidden {
    opacity: 0;
    pointer-events: none;
}
.video-play-btn {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--blue);
    border: none;
    color: #fff;
    font-size: 22px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    padding-left: 4px;
    box-shadow: 0 0 0 12px rgba(0,108,226,0.18), 0 8px 32px rgba(0,108,226,0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.video-play-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 0 16px rgba(0,108,226,0.14), 0 12px 40px rgba(0,108,226,0.5);
}
.video-overlay-text { text-align: center; }
.video-overlay-title {
    font-size: 14px; font-weight: 700; color: #fff; letter-spacing: 0.2px;
}
.video-overlay-sub {
    font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 3px;
}
@media (max-width: 600px) {
    .video-play-btn { width: 56px; height: 56px; font-size: 18px; }
}

/* ---- Pricing data banner ---- */
.pricing-data-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
    padding: 20px 28px;
    border-radius: 12px;
    background: rgba(0,108,226,0.05);
    border: 1px solid rgba(0,108,226,0.14);
}
.pricing-data-banner-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: rgba(0,108,226,0.12);
    display: flex; align-items: center; justify-content: center;
    color: var(--blue); font-size: 16px; flex-shrink: 0;
}
.pricing-data-banner-body { flex: 1; min-width: 0; }
.pricing-data-banner-title {
    font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 3px;
}
.pricing-data-banner-desc {
    font-size: 13px; color: var(--text); opacity: 0.55; margin: 0; line-height: 1.55;
}
.pricing-data-banner-btn {
    display: inline-flex; align-items: center; gap: 7px;
    white-space: nowrap; flex-shrink: 0;
    font-size: 13px; font-weight: 700; color: var(--blue);
    background: rgba(0,108,226,0.10);
    border: 1px solid rgba(0,108,226,0.22);
    border-radius: 8px; padding: 10px 18px;
    text-decoration: none;
    transition: background 0.18s ease, box-shadow 0.18s ease;
}
.pricing-data-banner-btn:hover {
    background: rgba(0,108,226,0.18);
    box-shadow: 0 4px 16px rgba(0,108,226,0.18);
}
@media (max-width: 700px) {
    .pricing-data-banner { flex-direction: column; align-items: flex-start; }
    .pricing-data-banner-btn { width: 100%; justify-content: center; }
}

/* ============================================================
   VALUE UNIVERSE — KPI BENTO GRID
   ============================================================ */

/* Live metrics strip */
.kpi-metrics-strip {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(0,108,226,0.06);
    border: 1px solid rgba(0,108,226,0.14);
    border-radius: 10px;
    padding: 0;
    margin-bottom: 32px;
    overflow: hidden;
    height: 44px;
}
.kpi-metrics-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue);
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0 18px;
    height: 100%;
    border-right: 1px solid rgba(0,108,226,0.18);
}
.kpi-metrics-dot {
    width: 6px; height: 6px; border-radius: 50%; background: #22c55e; flex-shrink: 0;
    animation: kpiPulse 1.8s ease-in-out infinite;
}
@keyframes kpiPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.75)} }
.kpi-metrics-track {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}
.kpi-metrics-track::before,
.kpi-metrics-track::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 48px;
    z-index: 2;
    pointer-events: none;
}
.kpi-metrics-track::before { left: 0;  background: linear-gradient(to right, #00162D, transparent); }
.kpi-metrics-track::after  { right: 0; background: linear-gradient(to left,  #00162D, transparent); }
.kpi-metrics-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    white-space: nowrap;
    animation: kpiScroll 32s linear infinite;
}
.kpi-metrics-inner:hover { animation-play-state: paused; }
@keyframes kpiScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.kpi-metric-item {
    font-size: 12px;
    font-weight: 500;
    color: rgba(229,231,235,0.55);
    white-space: nowrap;
}
.kpi-metric-item span { color: var(--blue); font-weight: 700; margin-left: 4px; }
.kpi-metric-up   { color: #22c55e !important; font-weight: 700; margin-left: 4px; }
.kpi-metric-down { color: #ef4444 !important; font-weight: 700; margin-left: 4px; }
.kpi-metric-flat { color: rgba(229,231,235,0.45) !important; font-weight: 700; margin-left: 4px; }
.kpi-metric-cta  { color: var(--blue) !important; font-weight: 700; letter-spacing: 0.2px; }
.kpi-metric-sep { color: rgba(229,231,235,0.18); font-size: 14px; }

/* Bento grid */
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}
.kpi-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    cursor: default;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.kpi-card:hover {
    border-color: rgba(0,108,226,0.45);
    box-shadow: 0 12px 40px rgba(0,108,226,0.12);
    transform: translateY(-4px);
}

/* Wide card (Lønnsomhet) */
.kpi-card--wide {
    grid-column: span 2;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    background: linear-gradient(135deg, #0F1B2D 0%, #071524 100%);
}
.kpi-card--wide::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,108,226,0.14) 0%, transparent 70%);
    pointer-events: none;
}
.kpi-card--wide .kpi-card-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    min-width: 0;
}
.kpi-card-deco {
    flex-shrink: 0;
    align-self: flex-end;
    padding-left: 28px;
    opacity: 0.55;
    transition: opacity 0.25s ease;
}
.kpi-card:hover .kpi-card-deco { opacity: 0.9; }

/* Full-width card (Marked & ESG) */
.kpi-card--full {
    grid-column: span 3;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    padding: 22px 28px;
}
.kpi-card--full .kpi-card-desc { max-width: 440px; }
.kpi-card--full .kpi-pills { margin-top: 0; }

/* Card elements */
.kpi-card-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: rgba(0,108,226,0.12);
    display: flex; align-items: center; justify-content: center;
    color: var(--blue);
    font-size: 18px;
    flex-shrink: 0;
    transition: background 0.25s ease;
}
.kpi-card:hover .kpi-card-icon { background: rgba(0,108,226,0.22); }
.kpi-card--full .kpi-card-icon { width: 48px; height: 48px; font-size: 20px; }

.kpi-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}
.kpi-card-desc {
    font-size: 13px;
    color: var(--text);
    opacity: 0.62;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

/* Pills */
.kpi-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.kpi-pill {
    display: inline-block;
    padding: 4px 11px;
    border-radius: 20px;
    background: rgba(0,108,226,0.09);
    border: 1px solid rgba(0,108,226,0.16);
    color: rgba(229,231,235,0.55);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.kpi-card:hover .kpi-pill {
    background: rgba(0,108,226,0.18);
    border-color: rgba(0,108,226,0.38);
    color: #e0eeff;
    box-shadow: 0 0 10px rgba(0,108,226,0.18);
}

/* Standardiserte Data USP card */
.kpi-usp-card {
    display: flex;
    align-items: center;
    gap: 28px;
    background: linear-gradient(135deg, rgba(0,108,226,0.09) 0%, rgba(0,85,179,0.05) 100%);
    border: 1px solid rgba(0,108,226,0.22);
    border-radius: 14px;
    padding: 32px 36px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}
.kpi-usp-card::before {
    content: '';
    position: absolute;
    bottom: -60px; right: -60px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,108,226,0.10) 0%, transparent 70%);
    pointer-events: none;
}
.kpi-usp-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(0,108,226,0.15);
    display: flex; align-items: center; justify-content: center;
    color: var(--blue);
    font-size: 22px;
    flex-shrink: 0;
}
.kpi-usp-body { flex: 1; min-width: 0; }
.kpi-usp-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.3px;
    margin: 0 0 6px;
}
.kpi-usp-desc {
    font-size: 14px;
    color: var(--text);
    opacity: 0.62;
    line-height: 1.75;
    margin: 0;
    max-width: 520px;
}
.kpi-usp-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}
.kpi-usp-badge {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(229,231,235,0.7);
}
.kpi-usp-badge-icon {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: rgba(0,108,226,0.15);
    display: flex; align-items: center; justify-content: center;
    color: var(--blue);
    font-size: 9px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1100px) {
    .kpi-card--wide { grid-column: span 2; }
    .kpi-card--full { flex-direction: column; align-items: flex-start; gap: 16px; }
    .kpi-card-deco { display: none; }
}
@media (max-width: 900px) {
    .kpi-grid { grid-template-columns: repeat(2, 1fr); }
    .kpi-card--wide { grid-column: span 2; }
    .kpi-card--full { grid-column: span 2; }
    .kpi-usp-card { flex-direction: column; align-items: flex-start; }
    .kpi-usp-badges { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 600px) {
    .kpi-grid { grid-template-columns: 1fr; }
    .kpi-card--wide,
    .kpi-card--full { grid-column: span 1; flex-direction: column; }
    .kpi-metrics-strip { display: none; }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up--visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .hero { flex-direction: column; gap: 48px; padding: 56px 32px 72px; }
    .hero-media { flex: none; width: 100%; }
    .hero-centered { padding: 56px 32px 72px; }
    .hero-product-cards { grid-template-columns: 1fr; }
    .feat-hero { flex-direction: column; gap: 40px; }
    .feat-hero-media { flex: none; width: 100%; }
    .feat-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .chartbook-split { flex-direction: column; gap: 40px; }
    .chartbook-img-wrap { flex: none; width: 100%; }
}
@media (max-width: 1024px) {
    .feat-feature-split { grid-template-columns: 1fr; gap: 32px; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
    .news-main-card { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .nav-inner { padding: 0 24px; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .nav-actions .nav-btn-ghost { display: none; }
    .hero { padding: 40px 24px 60px; }
    .section { padding: 60px 24px; }
    .trial-card { padding: 36px 28px; }
    .cta-strip { flex-direction: column; text-align: center; padding: 40px 28px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .footer { padding: 48px 24px 32px; }
    .footer-inner { grid-template-columns: 1fr; }
    .feat-hero, .feat-section, .feat-visual { padding-left: 24px; padding-right: 24px; }
    .feat-cta-strip { margin-left: 24px; margin-right: 24px; flex-direction: column; text-align: center; padding: 32px 24px; }
    .feat-grid { grid-template-columns: 1fr; }
    .feat-breadcrumb { padding: 16px 24px 0; }
}

/* ============================================================
   MODULES GRID — BANKEYE MONITOR
   ============================================================ */

/* Card overrides — scoped to module cards only */
.feat-grid-card.module-card {
    padding: 24px 24px 0;
    overflow: hidden;
    gap: 10px;
}

/* Min-height on body ensures images align at the same line across all cards in a row */
.module-card .feat-grid-body {
    min-height: 64px;
}

/* Image container — bleeds to all card edges */
.module-img-placeholder {
    margin: 14px -24px 0;
    width: calc(100% + 48px);
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.module-img-placeholder img {
    width: 100%; height: 100%; display: block;
    aspect-ratio: 16/9;
    object-fit: cover; object-position: top;
    transition: transform 0.35s ease;
    cursor: zoom-in;
}

/* Gradient overlay fades image into card background */
.module-img-placeholder::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 38%;
    background: linear-gradient(to bottom, transparent, rgba(15,27,45,0.72));
    pointer-events: none;
    z-index: 1;
}

/* Hover zoom — card overflow:hidden clips it within the card */
.module-card:hover .module-img-placeholder img {
    transform: scale(1.04);
}

.module-img-placeholder-inner {
    background: rgba(0,108,226,0.05);
    border: 1px dashed rgba(0,108,226,0.20);
    border-radius: 10px;
    aspect-ratio: 16/9;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 8px;
    color: rgba(0,108,226,0.22);
    font-size: 20px;
    transition: border-color 0.2s ease, color 0.2s ease;
}
.feat-grid-card--blue:hover .module-img-placeholder-inner {
    border-color: rgba(0,108,226,0.38);
    color: rgba(0,108,226,0.38);
}
.module-img-label {
    font-size: 9px; font-weight: 700;
    letter-spacing: 1.8px; text-transform: uppercase;
    color: rgba(229,231,235,0.18);
}

/* ============================================================
   SCREENSHOT GALLERY — SE LØSNINGEN I PRAKSIS
   ============================================================ */
.screenshot-scroll-wrap {
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,108,226,0.25) transparent;
    padding-bottom: 8px;
}
.screenshot-scroll-wrap::-webkit-scrollbar { height: 3px; }
.screenshot-scroll-wrap::-webkit-scrollbar-track { background: transparent; }
.screenshot-scroll-wrap::-webkit-scrollbar-thumb { background: rgba(0,108,226,0.25); border-radius: 2px; }
.screenshot-scroll-track { display: flex; gap: 14px; width: max-content; }
.screenshot-scroll-item {
    width: 500px; flex-shrink: 0;
    background: var(--bg-card);
    border: 1px solid rgba(0,108,226,0.12);
    border-radius: 14px; aspect-ratio: 16/10;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 12px;
    position: relative; overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
.screenshot-scroll-item:hover {
    border-color: rgba(0,108,226,0.28);
    box-shadow: 0 8px 32px rgba(0,108,226,0.10);
    transform: translateY(-2px);
}
.screenshot-scroll-item::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 30%, rgba(0,108,226,0.06) 0%, transparent 65%);
    pointer-events: none;
}
.screenshot-scroll-icon { font-size: 28px; color: rgba(0,108,226,0.18); position: relative; z-index: 1; }
.screenshot-scroll-name {
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: rgba(229,231,235,0.22);
    position: relative; z-index: 1;
}
.screenshot-scroll-img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top;
    position: absolute; inset: 0; display: block;
}
.screenshot-scroll-item--has-img .screenshot-scroll-name {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
    padding: 24px 14px 12px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: rgba(255,255,255,0.8);
}
@media (max-width: 768px) { .screenshot-scroll-item { width: 300px; } }

/* ============================================================
   HVA DU FÅR INKLUDERT
   ============================================================ */
.included-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.included-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px; padding: 32px 28px;
    display: flex; flex-direction: column;
    position: relative; overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.included-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--blue), rgba(0,108,226,0.3));
    border-radius: 16px 16px 0 0;
}
.included-card:hover {
    border-color: rgba(0,108,226,0.28);
    box-shadow: 0 12px 40px rgba(0,108,226,0.10);
}
.included-card-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--blue); background: rgba(0,108,226,0.08);
    border: 1px solid rgba(0,108,226,0.16);
    border-radius: 6px; padding: 4px 10px;
    margin-bottom: 20px; width: fit-content;
}
.included-card-icon {
    width: 52px; height: 52px; border-radius: 12px;
    background: rgba(0,108,226,0.12);
    display: flex; align-items: center; justify-content: center;
    color: var(--blue); font-size: 22px; margin-bottom: 18px; flex-shrink: 0;
}
.included-card-title {
    font-size: 20px; font-weight: 800; color: var(--text);
    letter-spacing: -0.3px; margin-bottom: 10px; line-height: 1.2;
}
.included-card-desc {
    font-size: 14px; color: var(--text); opacity: 0.6;
    line-height: 1.75; margin-bottom: 24px;
}
.included-card-features { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.included-card-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text); opacity: 0.78; line-height: 1.6; }
.included-card-feature-icon {
    flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
    background: rgba(0,108,226,0.12);
    display: flex; align-items: center; justify-content: center;
    color: var(--blue); font-size: 9px; margin-top: 2px;
}
.included-card-img {
    margin-top: 24px;
    background: rgba(0,108,226,0.04);
    border: 1px dashed rgba(0,108,226,0.16);
    border-radius: 10px; aspect-ratio: 16/9;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 8px;
    overflow: hidden;
}
.included-card-img img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top;
    display: block; border-radius: 10px;
}
.included-card-img i { font-size: 22px; color: rgba(0,108,226,0.18); }
.included-card-img span {
    font-size: 9px; font-weight: 700; letter-spacing: 1.8px;
    text-transform: uppercase; color: rgba(229,231,235,0.16);
}
@media (max-width: 900px) { .included-grid { grid-template-columns: 1fr; } }

/* ============================================================
   RAPPORT GRID (Homepage)
   ============================================================ */
.report-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-top: 40px;
}
.report-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
    display: flex; flex-direction: column;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.report-card:hover {
    border-color: rgba(0,108,226,0.30);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,108,226,0.10);
}
.report-card-media {
    aspect-ratio: 16/10; overflow: hidden;
    background: var(--bg-card2);
    border-bottom: 1px solid var(--border);
}
.report-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.report-card-media-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 10px;
    background: linear-gradient(135deg, #071524, #0F1B2D);
    color: rgba(0,108,226,0.20); font-size: 30px;
}
.report-card-media-placeholder span {
    font-size: 9px; font-weight: 700; letter-spacing: 1.8px;
    text-transform: uppercase; color: rgba(229,231,235,0.14);
}
.report-card-body {
    padding: 22px 22px 24px;
    display: flex; flex-direction: column; flex: 1;
}
.report-card-format {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--blue); margin-bottom: 10px;
}
.report-card-title {
    font-size: 16px; font-weight: 700; color: var(--text);
    margin-bottom: 8px; line-height: 1.3;
}
.report-card-desc {
    font-size: 13px; color: var(--text-muted);
    line-height: 1.7; margin-bottom: 16px; flex: 1;
}
.report-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.report-card-tag {
    font-size: 10px; font-weight: 600;
    padding: 3px 9px; border-radius: 20px;
    background: rgba(0,108,226,0.07); border: 1px solid rgba(0,108,226,0.13);
    color: rgba(229,231,235,0.50);
}
@media (max-width: 1024px) {
    .report-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 768px) { .report-grid { max-width: none; } }

/* ============================================================
   PRICING — HIERARKI
   ============================================================ */
.pricing-section-label {
    font-size: 9px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: rgba(229,231,235,0.28);
    margin-bottom: 8px; margin-top: 2px;
}
.pricing-addon-divider {
    display: flex; align-items: center; gap: 8px;
    margin: 6px 0 4px;
}
.pricing-addon-divider::before,
.pricing-addon-divider::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.07); }
.pricing-addon-divider span {
    font-size: 9px; font-weight: 700; letter-spacing: 1.8px;
    text-transform: uppercase; color: rgba(229,231,235,0.22);
    white-space: nowrap;
}
.pricing-app-badge {
    display: inline;
    font-size: 11px; font-weight: 400; font-style: italic;
    color: rgba(147,197,253,0.65);
    background: none; border: none;
    padding: 0; margin-left: 3px;
    vertical-align: baseline; letter-spacing: 0.1px;
}
.pricing-feature--app { font-weight: 600; font-size: 14px; color: #ffffff; }
.pricing-feature--addon { font-size: 12.5px; opacity: 0.7; }
.pricing-feature--addon .pricing-feature-icon { width: 16px; height: 16px; font-size: 8px; }

/* ============================================================
   MODULE LIGHTBOX
   ============================================================ */
.module-lightbox {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,0.92);
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.25s ease;
}
.module-lightbox--open { opacity: 1; pointer-events: all; }
.module-lightbox img {
    max-width: 92vw; max-height: 88vh;
    border-radius: 12px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.6);
    object-fit: contain;
    display: block;
}
.module-lightbox-close {
    position: absolute; top: 20px; right: 24px;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.85); font-size: 17px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
    line-height: 1;
}
.module-lightbox-close:hover { background: rgba(255,255,255,0.20); color: #fff; }

/* ============================================================
   MODULE GRID — CTA
   ============================================================ */
.module-grid-cta {
    text-align: center; margin-top: 40px;
}
.module-grid-cta .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; font-size: 15px; font-weight: 600;
}
