/* ==========================================================================
   Ovanta.nl — stylesheet
   Kleuren afgeleid van het logo (lichtgroen -> donkergroen triquetra)
   ========================================================================== */

:root {
    /* Kleur */
    --bg:            #0A130E;
    --bg-soft:       #0E1912;
    --surface:       #131F17;
    --surface-2:     #182619;
    --border:        #22331F;
    --border-soft:   #1B2A20;
    --text:          #EAF2E9;
    --text-muted:    #9DB6A6;
    --text-faint:    #6C8577;

    --green-light:   #86C271;
    --green-mid:     #57A464;
    --green-deep:    #2C8A51;
    --green-darker:  #1B5C38;

    --gradient-brand: linear-gradient(120deg, var(--green-light) 0%, var(--green-deep) 100%);

    /* Typografie */
    --font-display: "Space Grotesk", "Segoe UI", sans-serif;
    --font-body: "Inter", "Segoe UI", sans-serif;

    /* Layout */
    --wrap: 1160px;
    --radius-s: 8px;
    --radius-m: 14px;
    --radius-l: 22px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.15;
    margin: 0 0 .5em;
    font-weight: 600;
    letter-spacing: -0.01em;
}
p { margin: 0 0 1em; color: var(--text-muted); }
p:last-child { margin-bottom: 0; }

.wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 28px;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    background: var(--green-deep);
    color: #06120B;
    padding: 10px 16px;
    border-radius: var(--radius-s);
    z-index: 999;
}
.skip-link:focus {
    left: 16px;
    top: 16px;
}

:focus-visible {
    outline: 2px solid var(--green-light);
    outline-offset: 3px;
    border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
    background: var(--gradient-brand);
    color: #06120B;
}
.btn-primary:hover { filter: brightness(1.08); }
.btn-ghost {
    background: transparent;
    border-color: var(--border);
    color: var(--text);
}
.btn-ghost:hover { border-color: var(--green-mid); background: var(--surface); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(10, 19, 14, 0.86);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-soft);
}
.site-header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 74px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.brand__mark { width: 34px; height: 34px; object-fit: contain; }
.brand__name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
}
.brand__dot { color: var(--green-light); }

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}
.main-nav a {
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 0.93rem;
    color: var(--text-muted);
    transition: color .15s ease, background .15s ease;
}
.main-nav a:hover { color: var(--text); background: var(--surface); }
.main-nav a.is-active { color: var(--text); background: var(--surface-2); }
.main-nav__cta {
    margin-left: 6px;
    background: var(--gradient-brand) !important;
    color: #06120B !important;
    font-weight: 600;
}
.main-nav__cta:hover { filter: brightness(1.08); }

.menu-toggle-input { display: none; }
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 110px;
    border-bottom: 1px solid var(--border-soft);
}
.hero::before {
    content: "";
    position: absolute;
    inset: -20% -10% auto auto;
    width: 640px;
    height: 640px;
    background: radial-gradient(circle, rgba(134,194,113,0.16) 0%, rgba(134,194,113,0) 70%);
    pointer-events: none;
}
.hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-light);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 18px;
}
.hero h1 {
    font-size: clamp(2.4rem, 4.6vw, 3.6rem);
    color: var(--text);
    max-width: 14ch;
}
.hero h1 .grad {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero__lede {
    font-size: 1.12rem;
    max-width: 46ch;
    margin-bottom: 30px;
}
.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 42px;
}
.hero__stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}
.hero__stat b {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text);
}
.hero__stat span {
    color: var(--text-faint);
    font-size: 0.88rem;
}

.hero__art {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero__art img {
    width: min(360px, 80%);
    filter: drop-shadow(0 30px 60px rgba(44, 138, 81, 0.25));
}
.hero__art-ring {
    position: absolute;
    inset: 0;
    border: 1px dashed var(--border);
    border-radius: 50%;
    margin: auto;
    width: 78%;
    height: 78%;
}

/* ---------- Section basics ---------- */
.section {
    padding: 88px 0;
}
.section--tight { padding: 64px 0; }
.section--soft { background: var(--bg-soft); }
.section-head {
    max-width: 640px;
    margin: 0 0 48px;
}
.section-head h2 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    color: var(--text);
}
.section-head p { font-size: 1.05rem; }

/* ---------- Diensten grid (homepage) ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-m);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color .2s ease, background .2s ease;
}
.service-card:hover {
    border-color: var(--green-mid);
    background: var(--surface-2);
}
.service-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-soft);
    color: var(--green-light);
    border: 1px solid var(--border);
}
.service-card h3 {
    font-size: 1.15rem;
    color: var(--text);
}
.service-card p { font-size: 0.95rem; }
.service-card__link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--green-light);
}

/* ---------- Waarom Ovanta (features) ---------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.feature {
    padding: 4px 0;
}
.feature__icon {
    color: var(--green-light);
    margin-bottom: 14px;
}
.feature h3 {
    font-size: 1.02rem;
    color: var(--text);
}
.feature p { font-size: 0.93rem; }

/* ---------- Over ons ---------- */
.about {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: start;
}
.about__label {
    color: var(--green-light);
    font-family: var(--font-display);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}
.about h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.about-facts {
    display: grid;
    gap: 22px;
}
.about-fact {
    border-left: 2px solid var(--green-deep);
    padding-left: 18px;
}
.about-fact b {
    display: block;
    font-family: var(--font-display);
    color: var(--text);
    font-size: 1.05rem;
    margin-bottom: 4px;
}
.about-fact p { font-size: 0.93rem; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    padding: 64px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: "";
    position: absolute;
    inset: auto auto -60% 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(134,194,113,0.14), transparent 70%);
}
.cta-band h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 14px;
    position: relative;
}
.cta-band p {
    max-width: 50ch;
    margin: 0 auto 28px;
    position: relative;
}
.cta-band .btn { position: relative; }

/* ---------- Product / dienst pagina ---------- */
.product-hero {
    padding: 64px 0 56px;
    border-bottom: 1px solid var(--border-soft);
}
.product-hero__top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}
.product-hero__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-light);
    flex-shrink: 0;
}
.breadcrumb {
    font-size: 0.88rem;
    color: var(--text-faint);
    margin-bottom: 14px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--green-light); }
.product-hero h1 {
    font-size: clamp(2rem, 4vw, 2.7rem);
    color: var(--text);
    max-width: 20ch;
}
.product-hero__lede {
    font-size: 1.08rem;
    max-width: 60ch;
}

.product-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    padding: 64px 0;
    align-items: start;
}
.product-body h2 {
    font-size: 1.5rem;
    color: var(--text);
}
.feature-list {
    display: grid;
    gap: 14px;
}
.feature-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.98rem;
    color: var(--text);
}
.feature-list li svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--green-light);
}

/* ---------- Pakketten / pricing ---------- */
.pricing {
    padding: 20px 0 88px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.price-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-m);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
}
.price-card--populair {
    border-color: var(--green-deep);
    background: linear-gradient(180deg, rgba(134,194,113,0.06), var(--surface) 40%);
}
.price-card__badge {
    position: absolute;
    top: -13px;
    right: 28px;
    background: var(--gradient-brand);
    color: #06120B;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.78rem;
    padding: 5px 14px;
    border-radius: 999px;
}
.price-card h3 {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 4px;
}
.price-card__price {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--text);
    margin: 10px 0 4px;
}
.price-card__price span {
    font-size: 0.95rem;
    color: var(--text-faint);
    font-weight: 500;
    font-family: var(--font-body);
}
.price-card__specs {
    display: grid;
    gap: 10px;
    margin: 22px 0 28px;
    flex-grow: 1;
}
.price-card__specs li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.92rem;
    color: var(--text-muted);
}
.price-card__specs li svg { color: var(--green-mid); flex-shrink: 0; margin-top: 3px; }

/* ---------- Domein extensies tabel ---------- */
.domain-table {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-m);
    overflow: hidden;
}
.domain-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 26px;
    border-bottom: 1px solid var(--border-soft);
}
.domain-row:last-child { border-bottom: none; }
.domain-row__ext {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--text);
}
.domain-row__price { color: var(--text-muted); font-size: 0.95rem; }
.domain-row__price b { color: var(--text); font-family: var(--font-display); }

.domain-search {
    display: flex;
    gap: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 6px;
    margin-bottom: 36px;
}
.domain-search input {
    flex-grow: 1;
    background: transparent;
    border: none;
    color: var(--text);
    padding: 12px 18px;
    font-size: 0.98rem;
    font-family: var(--font-body);
}
.domain-search input:focus { outline: none; }
.domain-search input::placeholder { color: var(--text-faint); }

/* ---------- Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    padding: 64px 0 96px;
}
.contact-info li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-soft);
}
.contact-info li svg { color: var(--green-light); margin-top: 3px; flex-shrink: 0; }
.contact-info b { display: block; color: var(--text); font-family: var(--font-display); font-size: 0.95rem; }
.contact-info span { color: var(--text-muted); font-size: 0.92rem; }

.form-field { margin-bottom: 18px; }
.form-field label {
    display: block;
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.form-field input, .form-field textarea, .form-field select {
    width: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-s);
    padding: 12px 14px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.96rem;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
    outline: none;
    border-color: var(--green-mid);
}
.form-note {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-m);
    padding: 16px 18px;
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 16px;
}

/* ---------- Footer ---------- */
.site-footer {
    border-top: 1px solid var(--border-soft);
    background: var(--bg-soft);
    padding: 64px 0 0;
}
.site-footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}
.site-footer__brand {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.site-footer__mark { width: 40px; height: 40px; }
.site-footer__name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
    margin: 0;
}
.site-footer__motto {
    color: var(--text-faint);
    font-size: 0.9rem;
    margin: 4px 0 0;
}
.site-footer__heading {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text);
    font-size: 0.92rem;
    margin: 0 0 14px;
}
.site-footer__col ul { display: grid; gap: 10px; }
.site-footer__col a { color: var(--text-muted); font-size: 0.9rem; }
.site-footer__col a:hover { color: var(--green-light); }
.site-footer__meta li { color: var(--text-muted); font-size: 0.9rem; }
.site-footer__bottom {
    border-top: 1px solid var(--border-soft);
    padding: 20px 0;
}
.site-footer__bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-faint);
    text-align: center;
}

/* ---------- Responsief ---------- */
@media (max-width: 980px) {
    .hero__grid { grid-template-columns: 1fr; }
    .hero__art { order: -1; max-width: 260px; margin: 0 auto 20px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .about { grid-template-columns: 1fr; }
    .product-body { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
    .main-nav {
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--border-soft);
        flex-direction: column;
        align-items: stretch;
        padding: 10px 20px 20px;
        gap: 4px;
        display: none;
    }
    .main-nav a { padding: 12px 14px; }
    .main-nav__cta { margin-left: 0; text-align: center; }
    .menu-toggle { display: flex; }
    .menu-toggle-input:checked ~ .main-nav { display: flex; }
    .menu-toggle-input:checked ~ .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle-input:checked ~ .menu-toggle span:nth-child(2) { opacity: 0; }
    .menu-toggle-input:checked ~ .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .services-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .hero { padding: 56px 0 72px; }
    .section { padding: 56px 0; }
}
