/* multiverk_home.css — Múltíverk heimasíða */

/* ── FONTS ── */
/* Syne + Instrument Sans loaded via <link> in EJS head */

/* ── RESET ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Instrument Sans', sans-serif;
    background: #f8f6f1;
    color: #1a1a18;
    line-height: 1.6;
}

/* ── HERO ── */
.mv-hero {
    background: #1a1a18;
    padding: 64px 40px 0;
    overflow: hidden;
}

.mv-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    padding-bottom: 48px;
}

.mv-hero-left,
.mv-hero-right {
    min-width: 0;
}

.mv-hero-right {
    padding-top: 0;
    max-width: 600px;
}

.mv-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #7ab648;
    margin-bottom: 20px;
}

.mv-hero h1 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 6vw, 4rem);
    line-height: 1;
    color: #e8e4d8;
    letter-spacing: -0.5px;
    word-break: break-word;
    overflow-wrap: break-word;
}

.mv-hero h1 em {
    font-style: normal;
    color: #7ab648;
}

.mv-hero-desc {
    font-size: 0.9rem;
    color: rgba(232, 228, 216, 0.55);
    line-height: 1.7;
    margin-bottom: 28px;
}

.mv-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mv-pill {
    background: rgba(122, 182, 72, 0.12);
    border: 1px solid rgba(122, 182, 72, 0.3);
    color: #7ab648;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 5px 13px;
    border-radius: 100px;
    letter-spacing: 0.2px;
}

/* ── HERO DIAGRAM ── */
.mv-hero-diagram {
    margin-top: 40px;
    width: 100%;
    overflow: hidden;
}

.mv-hero-diagram svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ── STATS BAR ── */
.mv-stats-bar {
    background: #7ab648;
    padding: 16px 40px;
    display: flex;
    align-items: center;
}

.mv-stat {
    flex: 1;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0 16px;
}

.mv-stat:last-child {
    border-right: none;
}

.mv-stat-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
    line-height: 1;
}

.mv-stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 3px;
}

/* ── LAYOUT ── */
.mv-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ── SECTIONS ── */
.mv-section {
    padding: 64px 0 48px;
}

.mv-section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #7ab648;
    margin-bottom: 8px;
}

.mv-section-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2rem);
    letter-spacing: -0.5px;
    color: #1a1a18;
    margin-bottom: 36px;
}

/* ── SERVICE CARDS ── */
.mv-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.mv-service-card {
    background: #fff;
    border: 1px solid #e2dfd6;
    border-radius: 20px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
}

.mv-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: #7ab648;
    transform: scaleX(0);
    transition: transform 0.25s ease;
    transform-origin: left;
}

.mv-service-card:hover::before {
    transform: scaleX(1);
}

.mv-service-card:hover {
    border-color: #c0d9a8;
    transform: translateY(-2px);
}

.mv-card-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    background: #f0f7ea;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7ab648;
    font-size: 1rem;
}

.mv-card-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: #edeae2;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.mv-service-card h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a18;
    margin-bottom: 10px;
}

.mv-service-card p {
    font-size: 0.85rem;
    color: #6b6b62;
    line-height: 1.65;
}

/* ── CONTACT SECTION ── */
.mv-contact-section {
    margin-bottom: 56px;
}

.mv-contact-inner {
    background: #1a1a18;
    border-radius: 24px;
    padding: 44px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.mv-contact-desc {
    font-size: 0.87rem;
    color: rgba(232, 228, 216, 0.5);
    line-height: 1.6;
    margin-top: 14px;
}

.mv-contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.mv-avatar {
    width: 52px;
    height: 52px;
    background: #7ab648;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.mv-person-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #e8e4d8;
    margin-bottom: 2px;
}

.mv-person-title {
    font-size: 0.75rem;
    font-weight: 500;
    color: #7ab648;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.mv-person-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(232, 228, 216, 0.6);
    margin-bottom: 6px;
}

.mv-person-detail i {
    color: rgba(122, 182, 72, 0.7);
    font-size: 0.85rem;
    width: 14px;
}

.mv-person-detail a {
    color: rgba(232, 228, 216, 0.6);
    text-decoration: none;
    transition: color 0.15s;
}

.mv-person-detail a:hover {
    color: #7ab648;
}

/* ── CERTIFICATIONS ── */
.mv-certs-section {
    padding-bottom: 64px;
}

.mv-certs-grid {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.mv-cert-chip {
    background: #fff;
    border: 1px solid #e2dfd6;
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 200px;
}

.mv-cert-dot {
    width: 8px;
    height: 8px;
    background: #7ab648;
    border-radius: 50%;
    flex-shrink: 0;
}

.mv-cert-chip span {
    font-size: 0.82rem;
    font-weight: 500;
    color: #3a3a34;
}

/* ── FOOTER ── */
.mv-footer {
    background: #1a1a18;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mv-footer-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: rgba(232, 228, 216, 0.4);
}

.mv-footer-logo span {
    color: #7ab648;
}

.mv-footer p {
    font-size: 0.75rem;
    color: rgba(232, 228, 216, 0.25);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .mv-hero {
        padding: 48px 20px 0;
    }

    .mv-hero-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .mv-hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .mv-contact-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 32px 24px;
    }

    .mv-container {
        padding: 0 20px;
    }

    .mv-stats-bar {
        padding: 16px 20px;
    }

    .mv-footer {
        padding: 20px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}
