/* ── Eikeland SEO — Premium Dark Theme ── */
/* Google Fonts loaded via <link> in HTML */

:root {
    --bg: #050505;
    --bg-card: #0c0c0c;
    --bg-card-hover: #111;
    --bg-elevated: #0a0a0a;
    --border: #1a1a1a;
    --border-hover: #2a2a2a;
    --text: #a0a0a0;
    --text-muted: #666;
    --text-bright: #f0f0f0;
    --accent: #60a5fa;
    --accent-hover: #93c5fd;
    --accent-glow: rgba(96, 165, 250, 0.08);
    --accent-glow-strong: rgba(96, 165, 250, 0.15);
    --green: #34d399;
    --yellow: #fbbf24;
    --radius: 12px;
    --radius-lg: 20px;
    --max-width: 1120px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #050505;
    background: var(--bg);
    color: #a0a0a0;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; display: block; }

/* ── Layout ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 780px; }
section { padding: 100px 0; position: relative; }
section:nth-child(even):not(.hero) { background: #080808; }

/* ── Topbar ── */
.topbar {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0 32px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.brand {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff !important;
    letter-spacing: -0.5px;
}
.brand span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: color var(--transition);
}
.nav-links a:hover { color: #fff; }
.cart-link { position: relative; }
.phone-link {
    color: var(--text) !important;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: color var(--transition) !important;
}
.phone-link:hover { color: var(--accent) !important; }

/* Mobile menu button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #fff;
}
.menu-toggle svg { display: block; }

/* ── Hero ── */
.hero {
    background: var(--bg);
    padding: 120px 24px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent-glow);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 32px;
    letter-spacing: 0.3px;
}
.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -2px;
    line-height: 1.08;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.hero h1 .gradient {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 1.2rem;
    color: var(--text);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.8;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Buttons ── */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    letter-spacing: 0.2px;
}
.btn-primary {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.2);
}
.btn-primary:hover {
    background: var(--accent-hover);
    color: #000;
    box-shadow: 0 0 30px rgba(96, 165, 250, 0.3);
    transform: translateY(-1px);
}
.btn-outline {
    background: transparent;
    border: 1px solid var(--border-hover);
    color: var(--text-bright);
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-glow);
}
.btn-sm { padding: 10px 22px; font-size: 0.875rem; }
.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-danger { background: #dc2626; color: #fff; }
.btn-danger:hover { background: #ef4444; }

/* ── Section headings ── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}
.section-header h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.15;
}
.section-header p { color: var(--text); font-size: 1.1rem; max-width: 580px; margin: 0 auto; line-height: 1.7; }

/* ── Stats Row ── */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 64px;
}
.stat-item {
    background: var(--bg-card);
    padding: 40px 24px;
    text-align: center;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-number .accent { color: var(--accent); }
.stat-label { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }

/* ── Service cards ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    transition: all var(--transition);
    position: relative;
}
.service-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}
.service-card.featured { border-color: rgba(96, 165, 250, 0.3); }
.service-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent-glow-strong);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.service-card h3 { font-size: 1.2rem; color: #fff; margin-bottom: 10px; font-weight: 700; }
.service-card h3 a { color: #fff; }
.service-card h3 a:hover { color: var(--accent); }
.service-card .price { font-size: 1.6rem; font-weight: 800; color: var(--accent); margin-bottom: 14px; }
.service-card .price small { font-size: 0.85rem; color: var(--text-muted); font-weight: 400; }
.service-card p { color: var(--text); font-size: 0.92rem; margin-bottom: 18px; line-height: 1.7; }
.service-card .features-list { list-style: none; margin-bottom: 24px; }
.service-card .features-list li {
    padding: 5px 0;
    color: var(--text);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.service-card .features-list li::before {
    content: "\2713";
    color: var(--green);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* ── Process / How it works ── */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    counter-reset: step;
}
.process-step {
    text-align: center;
    padding: 40px 28px;
    counter-increment: step;
    position: relative;
}
.process-step::before {
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--accent-glow-strong);
    border: 1px solid rgba(96, 165, 250, 0.2);
    color: var(--accent);
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 auto 24px;
}
.process-step h3 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 700;
}
.process-step p { font-size: 0.92rem; color: var(--text); line-height: 1.7; }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: border-color var(--transition);
}
.testimonial-card:hover { border-color: var(--border-hover); }
.testimonial-card .stars { color: var(--yellow); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote {
    font-style: normal;
    color: var(--text-bright);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.8;
}
.testimonial-card .author { color: var(--text-muted); font-size: 0.85rem; }
.testimonial-card .author strong { color: var(--text); font-weight: 600; }

/* ── Blog listing ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all var(--transition);
}
.blog-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; font-weight: 700; line-height: 1.5; }
.blog-card h3 a { color: #fff; }
.blog-card h3 a:hover { color: var(--accent); }
.blog-card .date { color: var(--text-muted); font-size: 0.82rem; margin-bottom: 10px; font-weight: 500; }
.blog-card p { color: var(--text); font-size: 0.9rem; line-height: 1.7; }

/* ── Blog post ── */
.blog-post-page { padding: 80px 0; min-height: 60vh; }
.back-link { display: inline-block; margin-bottom: 28px; color: var(--text-muted); font-size: 0.88rem; font-weight: 500; }
.back-link:hover { color: var(--accent); }
.post-content { margin-top: 28px; }
.post-content h2 { font-size: 1.6rem; color: #fff; margin: 36px 0 14px; font-weight: 700; }
.post-content h3 { font-size: 1.3rem; color: #fff; margin: 28px 0 12px; font-weight: 700; }
.post-content p { margin-bottom: 18px; color: var(--text); line-height: 1.8; }
.post-content ul, .post-content ol { margin: 0 0 18px 24px; color: var(--text); }
.post-content li { margin-bottom: 8px; line-height: 1.7; }
.post-content a { color: var(--accent); }
.post-content strong { color: var(--text-bright); }
.post-meta { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 8px; font-weight: 500; }
article h1 { font-size: 2.4rem; color: #fff; margin-bottom: 10px; letter-spacing: -1px; font-weight: 800; }

/* ── FAQ Section ── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 16px;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 0;
    font-family: inherit;
}
.faq-question h3 {
    font-size: 1.05rem;
    color: var(--text-bright);
    font-weight: 600;
    line-height: 1.5;
}
.faq-question .icon {
    color: var(--text-muted);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform var(--transition);
    flex-shrink: 0;
}
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding-top: 16px;
}
.faq-answer p { color: var(--text); font-size: 0.95rem; line-height: 1.8; }

/* ── Service detail page ── */
.service-detail { padding: 80px 0; }
.service-detail h1 { font-size: 2.6rem; color: #fff; margin-bottom: 12px; letter-spacing: -1px; font-weight: 800; }
.service-detail .price-tag { font-size: 2.2rem; font-weight: 800; color: var(--accent); margin-bottom: 28px; }
.service-detail .price-tag small { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.service-detail .description { color: var(--text); }
.service-detail .description h3 { color: #fff; margin: 32px 0 14px; font-size: 1.3rem; font-weight: 700; }
.service-detail .description ul, .service-detail .description ol { margin: 0 0 18px 24px; }
.service-detail .description li { margin-bottom: 8px; line-height: 1.7; }
.service-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    position: sticky;
    top: 88px;
}
.service-layout { display: grid; grid-template-columns: 1fr 360px; gap: 48px; }

/* ── Contact form ── */
.form-group { margin-bottom: 22px; }
.form-group label { display: block; margin-bottom: 8px; color: var(--text); font-size: 0.88rem; font-weight: 600; letter-spacing: 0.3px; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.hp { position: absolute; left: -9999px; }

/* ── Cart ── */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th, .cart-table td { padding: 18px; text-align: left; border-bottom: 1px solid var(--border); }
.cart-table th { color: var(--text-muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.cart-table td { color: var(--text); }
.cart-total { text-align: right; font-size: 1.4rem; color: #fff; margin-top: 28px; font-weight: 700; }
.cart-total span { color: var(--accent); }
.cart-empty { text-align: center; padding: 80px 0; color: var(--text-muted); }

/* ── CTA Banner ── */
.cta-banner {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 64px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.05) 0%, transparent 70%);
    pointer-events: none;
}
.cta-banner h2 { color: #fff; font-size: 2rem; margin-bottom: 16px; font-weight: 800; letter-spacing: -0.5px; position: relative; }
.cta-banner p { color: var(--text); margin-bottom: 32px; font-size: 1.05rem; position: relative; }

/* ── Footer ── */
.site-footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 48px 24px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.88rem;
}
.site-footer a { color: var(--text-muted); font-weight: 500; }
.site-footer a:hover { color: var(--accent); }
.site-footer p + p { margin-top: 8px; }

/* ── Feature grid (icon features) ── */
.features-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-icon-card {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-card);
    transition: all var(--transition);
}
.feature-icon-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}
.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent-glow-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
}
.feature-icon-card h3 { font-size: 1.05rem; color: #fff; margin-bottom: 10px; font-weight: 700; }
.feature-icon-card p { font-size: 0.9rem; color: var(--text); line-height: 1.7; }

/* ── Misc ── */
.badge { display: inline-block; padding: 4px 12px; border-radius: 6px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.3px; }
.badge-blue { background: var(--accent-glow-strong); color: var(--accent); }
.badge-green { background: rgba(52, 211, 153, 0.15); color: var(--green); }
.badge-yellow { background: rgba(251, 191, 36, 0.15); color: var(--yellow); }
.badge-red { background: rgba(239,68,68,0.15); color: #ef4444; }
.text-center { text-align: center; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .hero { padding: 80px 20px 64px; }
    .hero h1 { font-size: 2.4rem; letter-spacing: -1px; }
    .hero p { font-size: 1.05rem; }
    .section-header h2 { font-size: 1.8rem; }
    .service-layout { grid-template-columns: 1fr; }
    .nav-links {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #050505;
        flex-direction: column;
        padding: 0;
        gap: 0;
        z-index: 999;
        overflow-y: auto;
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 18px 24px; border-bottom: 1px solid var(--border); font-size: 1.1rem; color: #fff !important; }
    .nav-links a:last-child { border-bottom: none; }
    .menu-toggle { display: block; }
    .phone-link { display: none; }
    .topbar { padding: 0 16px; }
    section { padding: 64px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: 1fr; gap: 16px; }
    .features-icon-grid { grid-template-columns: 1fr; }
    .cta-banner { padding: 40px 24px; }
    .faq-question h3 { font-size: 0.95rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .stat-item { padding: 28px 16px; }
    .stat-number { font-size: 2rem; }
}
