:root {
    /* Brand Colors */
    --primary: #0061ff;
    --primary-dark: #0046b8;
    --accent: #00d1ff;
    --dark: #050b1a;
    --text: #1f2937;
    --text-light: #6b7280;

    /* Section Colors */
    --bg: #ffffff;
    --bg-alt: #f8fafc; /* Subtiel grijs */
    --border: #e2e8f0;

    /* UI Elements */
    --radius-lg: 16px;
    --radius-sm: 8px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:
        "Inter",
        -apple-system,
        sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Sections */
section {
    padding: 100px 0;
}
.bg-white {
    background-color: var(--bg);
}
.bg-alt {
    background-color: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* Navbar */
.navbar {
    height: 72px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}
.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}
.nav-links a:hover {
    color: var(--primary);
}

/* Hero */
.hero {
    padding: 120px 0 80px;
    text-align: center;
}
.hero h1 {
    font-size: 3.5rem;
    font-weight: 850;
    color: var(--dark);
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    line-height: 1.1;
}
.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto 48px;
}

/* Domain Search */
.domain-search {
    background: white;
    padding: 10px;
    border-radius: var(--radius-lg);
    display: flex;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.domain-search input {
    flex: 1;
    border: none;
    padding: 0 24px;
    font-size: 1rem;
    outline: none;
}

/* Buttons */
.btn {
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}
.btn-primary {
    background: var(--primary);
    color: white;
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}
.btn-secondary {
    background: #f3f4f6;
    color: var(--text);
}
.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}
.full-width {
    width: 100%;
    margin-top: 24px;
}

/* Grid & Cards */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-header h2 {
    font-size: 2.25rem;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.features-grid,
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card,
.price-card {
    padding: 40px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.price-card.highlight {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    position: relative;
    transform: scale(1.03);
}
.badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}
.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin: 16px 0;
}

/* Table */
.compare-container {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
table {
    width: 100%;
    border-collapse: collapse;
}
th {
    background: #f9fafb;
    padding: 24px;
    text-align: left;
    font-weight: 700;
    color: var(--dark);
}
td {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
}
.text-primary {
    color: var(--primary);
    font-weight: 600;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
details {
    background: white;
    margin-bottom: 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}
summary {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    outline: none;
}
details p {
    padding: 0 20px 20px;
    color: var(--text-light);
}

/* Footer */
footer {
    background: var(--dark);
    color: #9ca3af;
    padding: 80px 0 40px;
}
.footer-nav {
    display: flex;
    gap: 32px;
    justify-content: center;
    list-style: none;
    margin-bottom: 40px;
}
.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
}
.legal-links {
    text-align: center;
    border-top: 1px solid #1f2937;
    padding-top: 40px;
}
.legal-pages {
    margin-top: 12px;
}
.legal-pages a {
    color: #6b7280;
    text-decoration: none;
    margin: 0 12px;
    font-size: 0.85rem;
}
.legal-pages a:hover {
    color: white;
}

/* Pricing Features List */
.features-list {
    list-style: none;
    text-align: left;
    margin: 24px 0;
    padding: 0;
}

.features-list li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text);
    display: flex;
    align-items: center;
}

/* Subtiel vinkje voor de lijst */
.features-list li::before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
    margin-right: 12px;
}

.price-card p {
    color: var(--text-light);
    font-weight: 500;
}

/* Contact Page Specifics */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.contact-form-card h2 {
    margin-bottom: 24px;
    color: var(--dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
}

.contact-info {
    padding-top: 20px;
}

.info-item {
    margin-bottom: 32px;
}

.info-item h3 {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.emergency-box {
    background: #fff4f4;
    padding: 24px;
    border-radius: var(--radius-sm);
    border-left: 4px solid #ff4d4d;
}

.emergency-box h4 {
    color: #cc0000;
    margin-bottom: 8px;
}

/* Mobiele fix voor contact */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
