/* === Marketing / SaaS landing page styles === */
:root {
    --m-primary: #0b1226;
    --m-primary-2: #1a2547;
    --m-accent: #00d4a8;
    --m-accent-dark: #00a886;
    --m-text: #1f2937;
    --m-muted: #6b7280;
    --m-bg-soft: #f7f9fc;
    --m-border: #e5e7eb;
}

body.marketing {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--m-text);
    background: #ffffff;
    padding-top: 76px;
    -webkit-font-smoothing: antialiased;
}

.text-accent { color: var(--m-accent); }
.bg-accent { background: var(--m-accent); }

.btn-accent {
    background: var(--m-accent);
    border-color: var(--m-accent);
    color: #fff;
    font-weight: 600;
}
.btn-accent:hover {
    background: var(--m-accent-dark);
    border-color: var(--m-accent-dark);
    color: #fff;
}
.btn-accent-lg { padding: 0.85rem 1.6rem; font-size: 1.05rem; }

/* === Navbar === */
.navbar-marketing {
    background: rgba(11, 18, 38, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.navbar-marketing .navbar-brand {
    color: #fff;
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}
.navbar-marketing .nav-link {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}
.navbar-marketing .nav-link:hover,
.navbar-marketing .nav-link.active { color: #fff; }
.navbar-marketing .btn-outline-light {
    border-color: rgba(255,255,255,0.3);
    font-weight: 600;
}

/* === Hero === */
.hero-section {
    background: linear-gradient(135deg, var(--m-primary) 0%, var(--m-primary-2) 100%);
    color: #fff;
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute; top:0; left:0; right:0; bottom:0;
    background-image: radial-gradient(circle at 20% 30%, rgba(0,212,168,0.15) 0%, transparent 50%),
                      radial-gradient(circle at 80% 70%, rgba(0,212,168,0.10) 0%, transparent 50%);
    pointer-events: none;
}
.hero-section .container { position: relative; z-index: 1; }
.hero-eyebrow {
    display: inline-block;
    background: rgba(0, 212, 168, 0.15);
    color: var(--m-accent);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 212, 168, 0.3);
}
.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}
.hero-title span { color: var(--m-accent); }
.hero-lead {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    max-width: 580px;
}
.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; margin-top: 3rem; }
.hero-stat-num { font-size: 2rem; font-weight: 800; color: var(--m-accent); display: block; }
.hero-stat-label { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

.hero-visual {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

/* === Sections === */
.section { padding: 5rem 0; }
.section-soft { background: var(--m-bg-soft); }
.section-dark { background: var(--m-primary); color: #fff; }
.section-eyebrow {
    color: var(--m-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: block;
}
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
.section-lead {
    font-size: 1.15rem;
    color: var(--m-muted);
    max-width: 720px;
}
.section-dark .section-lead { color: rgba(255,255,255,0.7); }

/* === Feature cards === */
.feature-card {
    background: #fff;
    border: 1px solid var(--m-border);
    border-radius: 14px;
    padding: 2rem;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(11,18,38,0.08);
    border-color: var(--m-accent);
}
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--m-accent) 0%, var(--m-accent-dark) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
}
.feature-title { font-weight: 700; font-size: 1.15rem; margin-bottom: 0.6rem; }
.feature-desc { color: var(--m-muted); font-size: 0.95rem; line-height: 1.6; }

/* === Pricing === */
.price-card {
    background: #fff;
    border: 2px solid var(--m-border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    height: 100%;
    text-align: center;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.price-card.featured {
    border-color: var(--m-accent);
    transform: scale(1.03);
    box-shadow: 0 24px 50px rgba(0,212,168,0.18);
    position: relative;
}
.price-card.featured::before {
    content: 'Mest populær';
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--m-accent); color:#fff; padding: 0.3rem 1rem;
    border-radius: 100px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.price-name { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.3rem; }
.price-amount { font-size: 2.6rem; font-weight: 800; color: var(--m-primary); margin: 0.8rem 0; }
.price-amount small { font-size: 1rem; color: var(--m-muted); font-weight: 500; }
.price-features { list-style: none; padding: 0; text-align: left; margin: 1.8rem 0; }
.price-features li {
    padding: 0.4rem 0;
    color: var(--m-text);
    display: flex; align-items: flex-start; gap: 0.6rem;
}
.price-features li i { color: var(--m-accent); margin-top: 0.2rem; flex-shrink: 0; }
.price-features li.disabled { color: #9ca3af; }
.price-features li.disabled i { color: #d1d5db; }

/* === Forms === */
.form-card {
    background: #fff;
    border: 1px solid var(--m-border);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(11,18,38,0.06);
}

/* === CTA === */
.cta-section {
    background: linear-gradient(135deg, var(--m-accent) 0%, var(--m-accent-dark) 100%);
    color: #fff;
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
}
.cta-section h2 { font-weight: 800; font-size: 2rem; margin-bottom: 1rem; }
.cta-section p { font-size: 1.1rem; opacity: 0.95; margin-bottom: 1.8rem; }

/* === Footer === */
.footer-marketing {
    background: var(--m-primary);
    color: rgba(255,255,255,0.7);
}
.footer-marketing h5, .footer-marketing h6 { color: #fff; }
.footer-marketing a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    line-height: 2;
}
.footer-marketing a:hover { color: var(--m-accent); }

/* === Responsive === */
@media (max-width: 991px) {
    .navbar-marketing .navbar-collapse {
        background: var(--m-primary);
        margin: 1rem -1rem -0.5rem;
        padding: 1rem;
        border-radius: 0 0 12px 12px;
    }
    .hero-section { padding: 3.5rem 0; }
    .price-card.featured { transform: none; }
    .price-card.featured:hover { transform: translateY(-4px); }
}

