/* SpoedOnline — Professional healthcare website */

:root {
    --color-primary: #0066a1;
    --color-primary-dark: #004d7a;
    --color-primary-light: #e8f4fc;
    --color-accent: #00a896;
    --color-accent-dark: #008f7f;
    --color-text: #1a2332;
    --color-text-muted: #5a6578;
    --color-bg: #ffffff;
    --color-bg-alt: #f7f9fc;
    --color-border: #e2e8f0;
    --color-white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 102, 161, 0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --transition: 0.25s ease;
    --space-section: 6rem;
    --space-block: 3rem;
    --space-grid: 2.5rem;
    --space-photo: 1.5rem;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
}

main {
    overflow-x: hidden;
}

section {
    padding: var(--space-section) 0;
}

section + section {
    margin-top: 0;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 72px;
    position: relative;
    gap: 1rem;
}

.logo {
    grid-column: 1;
    justify-self: start;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-primary);
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.header-inner nav {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-self: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    transition: color var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--color-primary);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.25rem;
    background: var(--color-primary);
    color: white !important;
    border-radius: 8px;
    font-weight: 600;
    transition: background var(--transition), transform var(--transition);
}

.nav-cta:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
}

.header-actions {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.lang-switcher {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.lang-switcher-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.lang-select {
    padding: 0.45rem 0.65rem;
    border: 1px solid var(--color-border, #e2e8f0);
    border-radius: 8px;
    background: white;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    min-width: 4rem;
}

.lang-select:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.menu-toggle {
    grid-column: 3;
    justify-self: end;
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary {
    background: var(--color-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--color-primary);
    border: 2px solid var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    background: var(--color-primary-light);
}

.btn-accent {
    background: var(--color-accent);
    color: white;
}

.btn-block {
    width: 100%;
}

.split-heading {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.split-text {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.table-scroll-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 3rem;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    scrollbar-width: thin;
}

.table-scroll-wrap .comparison-table {
    margin-top: 0;
    border: none;
    min-width: 640px;
}

.table-scroll-hint {
    display: none;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 0.75rem;
}

/* Hero */
.hero {
    position: relative;
    padding: 6rem 0 7rem;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fc 50%, #f7f9fc 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 168, 150, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.hero h1 span {
    color: var(--color-primary);
}

.hero-text {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    padding: 0.5rem;
}

.hero-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 0.5rem;
}

.hero-image-wrap img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.hero-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 0.35rem;
}

.hero-image-badge {
    position: absolute;
    bottom: 1.75rem;
    left: 1.75rem;
    right: 1.75rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: var(--shadow-md);
}

.hero-image-badge img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1;
    flex-shrink: 0;
}

.hero-image-badge strong {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text);
}

.hero-image-badge span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Stock photos */
.photo-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    margin-bottom: var(--space-photo);
}

.feature-card.has-photo {
    padding: 0;
    overflow: hidden;
}

.feature-card.has-photo .feature-card-body {
    padding: 2rem 2.25rem 2.5rem;
}

.feature-card.has-photo .photo-card {
    margin-bottom: 0;
}

.feature-card.has-photo .photo-card img {
    aspect-ratio: 16/9;
}

.step-card.has-photo .step-photo {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 1.75rem;
}

.step-card.has-photo .step-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.photo-card:hover img {
    transform: scale(1.05);
}

.step-card.has-photo::before {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    margin: 0;
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.step-card.has-photo .step-photo {
    flex-shrink: 0;
}

/* Gallery strip */
.gallery-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-grid);
    margin-top: 1rem;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 240px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Page header with photo */
.page-header.has-photo {
    position: relative;
    background: none;
    padding: 7rem 0 5rem;
    overflow: hidden;
    margin-bottom: 0;
}

.page-header.has-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 77, 122, 0.88) 0%, rgba(0, 102, 161, 0.82) 100%);
    z-index: 1;
}

.page-header.has-photo .page-header-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-header.has-photo .page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header.has-photo .container {
    position: relative;
    z-index: 2;
}

/* Service cards with photo */
.service-card.has-photo {
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.service-card.has-photo .service-photo {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-card.has-photo .service-body {
    padding: 2rem 2.25rem 2.5rem;
}

.service-card.has-photo .service-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card.has-photo:hover .service-photo img {
    transform: scale(1.05);
}

/* Team grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-grid);
}

.team-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all var(--transition);
    text-align: center;
}

.team-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.team-card-photo {
    aspect-ratio: 1;
    overflow: hidden;
}

.team-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.team-card-info {
    padding: 1.75rem 2rem 2rem;
}

.team-card-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.team-card-info p {
    font-size: 0.875rem;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-card-info span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.about-visual {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-left: 1rem;
}

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.contact-photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-md);
}

.contact-photo img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    padding: 1.5rem 0;
}

.split-section-photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin: 1rem;
}

.split-section-photo img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.platform-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.65rem;
    margin-bottom: 1.5rem;
}

.platform-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
    border: 1px solid rgba(0, 102, 161, 0.15);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.platform-tag:hover {
    background: white;
    border-color: var(--color-primary);
    transform: translateY(-1px);
}

/* Pricing */
.spoed-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: white;
    padding: 4rem 0;
    margin: 0;
}

.spoed-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.spoed-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.spoed-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: #38bdf8;
}

.spoed-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: #38bdf8;
}

.spoed-price .suffix {
    font-size: 0.95rem;
    opacity: 0.7;
    margin-left: 0.5rem;
}

.spoed-details h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.spoed-details p {
    opacity: 0.85;
    max-width: 520px;
}

.spoed-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.spoed-tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: var(--space-grid);
    align-items: stretch;
    margin-top: 1rem;
}

.pricing-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
    position: relative;
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured::before {
    content: 'Populair';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.3rem 1rem;
    border-radius: 50px;
}

.pricing-card-header {
    margin-bottom: 1.5rem;
}

.pricing-card-header .tier {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.pricing-card-header h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.pricing-card-header p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.pricing-amount {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.pricing-amount .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.pricing-amount .price-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 0.35rem;
}

.pricing-amount .price-custom {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
}

.pricing-features {
    flex: 1;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
    list-style: none;
}

.pricing-features li::before {
    content: '✓';
    color: var(--color-accent);
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-features li.excluded {
    opacity: 0.65;
}

.pricing-features li.excluded::before {
    content: 'ℹ';
    color: var(--color-text-muted);
}

.pricing-note {
    background: var(--color-primary-light);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: auto;
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

.pricing-note strong {
    color: var(--color-text);
}

.pricing-card .btn {
    width: 100%;
}

.pricing-card.has-photo {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card.has-photo .pricing-card-photo {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.pricing-card.has-photo .pricing-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pricing-card.has-photo:hover .pricing-card-photo img {
    transform: scale(1.05);
}

.pricing-card.has-photo .pricing-card-inner {
    padding: 2rem 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pricing-card.has-photo.featured::before {
    z-index: 2;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 3rem;
    font-size: 0.9rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.comparison-table th {
    background: var(--color-bg-alt);
    font-weight: 700;
}

.comparison-table td:first-child {
    font-weight: 600;
}

.comparison-table .check {
    color: var(--color-accent);
    font-weight: 700;
}

.comparison-table .cross {
    color: var(--color-text-muted);
}

.comparison-table .on-request {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    font-style: italic;
}

/* Hosting pricing (Hypernode-style) */
.hosting-pricing-section {
    background: var(--color-bg-alt);
}

.hosting-type-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
}

.hosting-type-tabs::-webkit-scrollbar {
    display: none;
}

.hosting-type-tab {
    flex-shrink: 0;
    padding: 0.75rem 1.5rem;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid var(--color-border);
    border-radius: 50px;
    background: white;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: all var(--transition);
}

.hosting-type-tab:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.hosting-type-tab.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.hosting-panel {
    display: none;
}

.hosting-panel.active {
    display: block;
}

.hosting-panel-desc {
    text-align: center;
    color: var(--color-text-muted);
    max-width: 640px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
}

.hosting-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    background: white;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
}

.hosting-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.hosting-table thead {
    background: var(--color-text);
    color: white;
}

.hosting-table th {
    padding: 1.1rem 1.25rem;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hosting-table td {
    padding: 1.25rem 1.25rem;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.95rem;
    vertical-align: middle;
}

.hosting-table tbody tr:last-child td {
    border-bottom: none;
}

.hosting-table tbody tr:hover {
    background: var(--color-primary-light);
}

.hosting-table tbody tr.is-popular {
    background: rgba(0, 168, 150, 0.06);
}

.hosting-plan-name strong {
    display: block;
    font-size: 1.05rem;
    color: var(--color-text);
}

.hosting-badge {
    display: inline-block;
    background: var(--color-accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    margin-bottom: 0.35rem;
}

.hosting-plan-price {
    white-space: nowrap;
}

.hosting-plan-price .price-current {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-primary);
}

.hosting-footnote {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}

.hosting-footnote a {
    color: var(--color-primary);
    text-decoration: underline;
}

.btn-sm {
    padding: 0.55rem 1.1rem;
    font-size: 0.875rem;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4.5rem;
    padding: 0 1rem;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

/* Features */
.features {
    background: var(--color-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: var(--space-grid);
}

.feature-card {
    padding: 2.25rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    transition: all var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: var(--color-primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* How it works */
.how-it-works {
    background: var(--color-bg-alt);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: var(--space-grid);
    counter-reset: step;
    align-items: stretch;
}

.step-card {
    text-align: center;
    position: relative;
    padding: 0.5rem;
}

.step-card.has-photo {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: left;
}

.step-card.has-photo h3,
.step-card.has-photo p {
    padding: 0 0.25rem;
}

.step-card.has-photo p {
    flex: 1;
}

.step-card::before {
    counter-increment: step;
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
}

.step-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    margin: 0;
}

.cta-banner h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-banner p {
    opacity: 0.9;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn-primary {
    background: white;
    color: var(--color-primary);
}

.cta-banner .btn-primary:hover {
    background: var(--color-primary-light);
}

/* Page header (inner pages) */
.page-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.page-header p {
    opacity: 0.9;
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto;
}

/* Legal pages */
.legal-content {
    max-width: 760px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 2.5rem 0 1rem;
    color: var(--color-text);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 1.5rem 0 0.75rem;
}

.legal-content p,
.legal-content li {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    margin: 0 0 1.25rem 1.25rem;
    padding-left: 0.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    list-style: disc;
}

.legal-content ol li {
    list-style: decimal;
}

.legal-content a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-meta {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.company-details {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

.company-details p {
    margin-bottom: 0.75rem;
}

.company-details p:last-child {
    margin-bottom: 0;
}

.footer-company {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 1rem;
    line-height: 1.6;
}

/* Services page */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-grid);
}

.service-card {
    display: flex;
    gap: 1.5rem;
    padding: 2.25rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
}

.service-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--color-primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* About page */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 2rem;
}

.about-content p {
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: var(--space-grid);
    margin-top: 5rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
}

.value-card .feature-icon {
    margin: 0 auto 1rem;
}

.value-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.about-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

/* Contact page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    background: var(--color-primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.form-alert {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.form-alert-success {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.form-alert-error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.contact-form {
    background: var(--color-bg-alt);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font);
    font-size: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: white;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 161, 0.1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Footer */
.site-footer {
    background: var(--color-text);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.25rem;
}

.footer-contact-note {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
}

.footer-contact-note a {
    color: white;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-contact-note a:hover {
    color: var(--color-accent);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col a {
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

/* Trust badges */
.trust-bar {
    padding: 2.75rem 0;
    background: white;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    margin: 0;
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.trust-item span:first-child {
    font-size: 1.25rem;
}

body.nav-open {
    overflow: hidden;
}

@media (max-width: 767px) {
    body.nav-open .site-header {
        box-shadow: var(--shadow-md);
    }
}

/* Tablet & kleine laptops (iPad portrait/landscape) */
@media (max-width: 1024px) {
    :root {
        --space-section: 4.5rem;
        --space-grid: 2rem;
    }

    .container {
        padding-left: max(1.5rem, env(safe-area-inset-left, 0px));
        padding-right: max(1.5rem, env(safe-area-inset-right, 0px));
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }

    .about-grid,
    .contact-grid,
    .split-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual {
        margin-left: 0;
        max-width: 560px;
        margin-inline: auto;
    }

    .split-section-photo {
        margin: 0 0 1.5rem;
        max-width: 560px;
        margin-inline: auto;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand p {
        max-width: none;
    }

    .spoed-banner-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .spoed-details p {
        max-width: none;
    }

    .spoed-tags {
        justify-content: center;
    }

    .spoed-price {
        justify-content: center;
    }

    .gallery-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .page-header.has-photo {
        padding: 5.5rem 0 4rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .table-scroll-hint {
        display: block;
    }
}

/* Mobiel */
@media (max-width: 767px) {
    :root {
        --space-section: 3.5rem;
        --space-grid: 1.5rem;
    }

    .header-inner {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0.5rem;
    }

    .logo {
        grid-column: auto;
    }

    .menu-toggle {
        display: flex;
        grid-column: auto;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-left: 0;
    }

    .header-actions {
        grid-column: auto;
        margin-left: auto;
        margin-right: 0.25rem;
        gap: 0.5rem;
    }

    .header-actions .nav-cta {
        padding: 0.5rem 0.85rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .header-inner nav {
        position: static;
        width: 0;
        flex: 0 0 0;
        overflow: visible;
    }

    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: white;
        padding: 1rem 1.25rem 1.25rem;
        gap: 0.25rem;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-md);
        max-height: calc(100dvh - 72px);
        overflow-y: auto;
    }

    .nav-list.open {
        display: flex;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list a {
        display: flex;
        align-items: center;
        min-height: 44px;
        padding: 0.5rem 0.75rem;
        font-size: 1rem;
    }

    .hero {
        padding: 3.5rem 0 4rem;
    }

    .hero-grid {
        gap: 2rem;
    }

    .hero-visual {
        order: -1;
        margin-bottom: 0.5rem;
        padding: 0;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        margin-top: 2rem;
    }

    .stat-number {
        font-size: 1.35rem;
    }

    .stat-label {
        font-size: 0.72rem;
        line-height: 1.3;
    }

    .hero-image-badge {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        padding: 0.85rem 1rem;
        gap: 0.75rem;
    }

    .hero-image-badge img {
        width: 40px;
        height: 40px;
    }

    .hero-image-badge strong {
        font-size: 0.82rem;
    }

    .hero-image-badge span {
        font-size: 0.75rem;
    }

    section {
        padding: var(--space-section) 0;
    }

    .page-header {
        padding: 3rem 0 2.5rem;
    }

    .page-header.has-photo {
        padding: 4.5rem 0 3rem;
    }

    .page-header p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
        padding: 0;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .spoed-banner {
        padding: 2.5rem 0;
    }

    .spoed-details h2 {
        font-size: 1.4rem;
    }

    .spoed-price {
        flex-wrap: wrap;
        row-gap: 0.25rem;
    }

    .spoed-price .amount {
        font-size: 2.75rem;
    }

    .spoed-price .suffix {
        width: 100%;
        margin-left: 0;
        text-align: center;
    }

    .trust-bar {
        padding: 2rem 0;
    }

    .trust-items {
        gap: 1.25rem 2rem;
        justify-content: flex-start;
    }

    .trust-item {
        font-size: 0.85rem;
    }

    .feature-card,
    .feature-card.has-photo .feature-card-body {
        padding: 1.75rem;
    }

    .pricing-card,
    .pricing-card.has-photo .pricing-card-inner {
        padding: 1.75rem;
    }

    .pricing-card.has-photo .pricing-card-inner {
        padding: 1.5rem 1.75rem 1.75rem;
    }

    .pricing-amount .price {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1.75rem;
    }

    .contact-info h2 {
        font-size: 1.5rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.85rem 1rem;
        font-size: 0.82rem;
    }

    .comparison-table .on-request {
        font-size: 0.78rem;
    }

    .hosting-type-tabs {
        flex-wrap: nowrap;
        justify-content: flex-start;
        margin-left: -0.25rem;
        margin-right: -0.25rem;
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }

    .hosting-table {
        min-width: 680px;
    }

    .hosting-table th,
    .hosting-table td {
        padding: 0.85rem 1rem;
        font-size: 0.85rem;
    }

    .hosting-plan-price .price-current {
        font-size: 1.15rem;
    }

    .btn-sm {
        padding: 0.65rem 1rem;
        font-size: 0.82rem;
        white-space: nowrap;
    }

    .platform-tags {
        gap: 0.4rem 0.5rem;
    }

    .platform-tag {
        font-size: 0.78rem;
        padding: 0.4rem 0.7rem;
    }

    .gallery-strip {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 200px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        padding: 3.5rem 0;
    }

    .cta-banner p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.75rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .value-card,
    .step-card.has-photo {
        padding: 0.25rem;
    }
}

/* Grote desktop — extra ruimte */
@media (min-width: 1280px) {
    .container {
        padding-left: max(2rem, env(safe-area-inset-left, 0px));
        padding-right: max(2rem, env(safe-area-inset-right, 0px));
    }
}
