:root {
    --color-primary: #1a1a2e;
    --color-secondary: #16213e;
    --color-accent: #e94560;
    --color-accent-hover: #d63d56;
    --color-light: #f8f9fa;
    --color-text: #333;
    --color-text-light: #666;
    --color-white: #fff;
    --color-border: #e0e0e0;
    --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
    --max-width: 1200px;
    --narrow-width: 680px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-white);
}

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

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent-hover);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-primary);
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; margin-bottom: 1rem; }
h3 { font-size: 1.6rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }

p {
    margin-bottom: 1.25rem;
}

ul, ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 600;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-primary);
    transition: 0.3s;
}

.editorial-hero {
    margin-top: 70px;
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
}

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-visual::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(transparent, var(--color-white));
}

.hero-content {
    position: relative;
    margin-top: auto;
    padding: 4rem 2rem 3rem;
    max-width: var(--narrow-width);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    z-index: 1;
}

.hero-tag {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    font-size: 2.6rem;
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: var(--color-accent-hover);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

.cta-primary.large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.cta-secondary {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.cta-outline {
    display: inline-block;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.editorial-body {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.narrow-content {
    max-width: var(--narrow-width);
    margin: 0 auto;
}

.story-intro {
    padding: 4rem 0;
}

.dropcap::first-letter {
    float: left;
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 0.8;
    padding-right: 0.75rem;
    padding-top: 0.25rem;
    color: var(--color-primary);
}

.story-visual-break {
    padding: 4rem 0;
    background: var(--color-light);
    margin: 3rem -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.visual-quote {
    max-width: var(--narrow-width);
    margin: 0 auto;
    text-align: center;
}

.visual-quote blockquote {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.visual-quote cite {
    font-size: 0.95rem;
    color: var(--color-text-light);
    font-style: normal;
}

.story-chapter {
    padding: 3rem 0;
}

.story-chapter h2 {
    max-width: var(--narrow-width);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
}

.inline-image {
    margin: 2.5rem 0;
    max-width: 500px;
}

.inline-image.offset-left {
    margin-right: auto;
}

.inline-image.offset-right {
    margin-left: auto;
}

.inline-image img {
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.image-caption {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--color-text-light);
    font-style: italic;
}

.story-insight {
    padding: 3rem 0;
}

.insight-card {
    max-width: var(--narrow-width);
    margin: 0 auto;
    background: var(--color-light);
    padding: 2.5rem;
    border-left: 4px solid var(--color-accent);
}

.insight-card.dark {
    background: var(--color-primary);
    color: var(--color-white);
    border-left-color: var(--color-accent);
}

.insight-card.dark h3 {
    color: var(--color-white);
}

.insight-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.insight-card p {
    margin-bottom: 0;
}

.system-showcase {
    padding: 3rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.system-item {
    flex: 1 1 300px;
    max-width: 350px;
    padding: 2rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.system-item:hover {
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.system-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.system-item h4 {
    color: var(--color-primary);
}

.system-item p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.inline-cta {
    padding: 4rem 0;
}

.cta-box {
    max-width: var(--narrow-width);
    margin: 0 auto;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    color: var(--color-white);
}

.cta-box h3 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-box p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.testimonial-inline {
    padding: 4rem 0;
    background: var(--color-light);
    margin: 0 -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.testimonial-inline.alt {
    background: var(--color-white);
}

.testimonial-content {
    max-width: var(--narrow-width);
    margin: 0 auto;
}

.testimonial-content > p {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-weight: 600;
    color: var(--color-primary);
}

.author-role {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.services-reveal {
    padding: 5rem 2rem;
    background: var(--color-light);
}

.services-intro {
    text-align: center;
    max-width: var(--narrow-width);
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.services-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 1 1 320px;
    max-width: 380px;
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card.featured {
    border: 2px solid var(--color-accent);
    position: relative;
}

.service-card.featured::before {
    content: 'Meest gekozen';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: var(--color-white);
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
}

.service-tier {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
}

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

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

.service-price {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid var(--color-border);
    margin-top: auto;
}

.price {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-primary);
}

.price-note {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.service-select {
    width: 100%;
    padding: 1rem;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-select:hover {
    background: var(--color-accent);
}

.form-section {
    padding: 5rem 2rem;
    background: var(--color-white);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header p {
    color: var(--color-text-light);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.form-submit {
    width: 100%;
    padding: 1.25rem;
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
}

.final-push {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    text-align: center;
}

.push-content {
    max-width: var(--narrow-width);
    margin: 0 auto;
}

.push-content h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.push-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.site-footer {
    background: var(--color-primary);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 2rem 2rem;
}

.footer-main {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    color: var(--color-white);
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    max-width: 300px;
    font-size: 0.95rem;
}

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

.footer-col h4 {
    color: var(--color-white);
    font-family: var(--font-main);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.sticky-cta a {
    display: block;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(233, 69, 96, 0.4);
}

.sticky-cta a:hover {
    background: var(--color-accent-hover);
    color: var(--color-white);
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 1.5rem 2rem;
    z-index: 9999;
    display: none;
}

.cookie-banner.visible {
    display: block;
}

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 280px;
}

.cookie-content a {
    color: var(--color-accent);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background: var(--color-accent-hover);
}

.cookie-btn.reject {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.page-hero {
    margin-top: 70px;
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.7);
}

.page-hero .hero-text {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-white);
    padding: 2rem;
}

.page-hero .hero-text h1 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.page-hero .hero-text p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.about-content {
    padding: 4rem 2rem;
}

.about-story {
    padding: 3rem 0;
}

.about-insight {
    padding: 3rem 0;
}

.insight-block {
    max-width: var(--narrow-width);
    margin: 0 auto;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
}

.insight-block h3 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.insight-block p {
    margin-bottom: 0;
    opacity: 0.95;
}

.about-mission {
    padding: 3rem 0;
}

.about-values {
    padding: 4rem 0;
    max-width: var(--max-width);
    margin: 0 auto;
}

.about-values h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1 1 250px;
    padding: 2rem;
    background: var(--color-light);
    border-radius: 8px;
}

.value-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
    display: block;
}

.value-item h4 {
    margin-bottom: 0.75rem;
}

.value-item p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.about-team {
    padding: 3rem 0;
}

.team-visual {
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-visual img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-cta {
    padding: 5rem 0;
    background: var(--color-light);
    margin: 4rem -2rem 0;
    padding-left: 2rem;
    padding-right: 2rem;
}

.about-cta .cta-content {
    max-width: var(--narrow-width);
    margin: 0 auto;
    text-align: center;
}

.about-cta .cta-content p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.services-overview {
    padding: 4rem 2rem;
    text-align: center;
}

.services-intro-text {
    max-width: var(--narrow-width);
    margin: 0 auto;
}

.services-intro-text p {
    color: var(--color-text-light);
}

.services-detailed {
    padding: 0 2rem 4rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.service-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid var(--color-border);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1 1 350px;
}

.service-visual img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.service-info {
    flex: 1 1 400px;
}

.service-label {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.service-includes {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-includes li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
}

.service-includes li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.service-pricing {
    margin: 2rem 0;
}

.price-tag {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-primary);
}

.price-type {
    display: block;
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.services-extras {
    padding: 4rem 2rem;
    background: var(--color-light);
}

.services-extras h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.extras-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.extra-item {
    flex: 1 1 300px;
    max-width: 350px;
    background: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.extra-item h4 {
    margin-bottom: 0.75rem;
}

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

.extra-price {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-top: 1rem;
}

.extra-price small {
    font-family: var(--font-main);
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.services-faq {
    padding: 4rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.services-faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: var(--narrow-width);
    margin: 0 auto;
}

.faq-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.faq-item p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.services-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    text-align: center;
}

.services-cta .cta-content {
    max-width: var(--narrow-width);
    margin: 0 auto;
}

.services-cta h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.services-cta p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.contact-main {
    padding: 4rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.contact-info {
    flex: 1 1 350px;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

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

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h4 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.contact-note {
    background: var(--color-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.contact-note h4 {
    margin-bottom: 0.5rem;
}

.contact-note p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-visual {
    flex: 1 1 400px;
}

.contact-visual img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.visual-caption {
    margin-top: 1rem;
}

.visual-caption p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-style: italic;
    margin-bottom: 0;
}

.contact-map {
    padding: 0 2rem 4rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.map-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--color-white);
    padding: 1rem 1.5rem;
    border-radius: 4px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
}

.map-overlay p {
    margin: 0;
    font-weight: 600;
    color: var(--color-primary);
}

.contact-alternatives {
    padding: 4rem 2rem;
    background: var(--color-light);
}

.contact-alternatives h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.alternatives-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.alternative-card {
    flex: 1 1 280px;
    max-width: 320px;
    background: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.alternative-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
}

.alternative-card h4 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.alternative-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.thanks-hero {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
}

.thanks-content {
    max-width: 600px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-icon svg {
    color: var(--color-accent);
}

.thanks-content h1 {
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.15rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.selected-service {
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.selected-service p {
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.service-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-primary);
}

.thanks-next {
    text-align: left;
    background: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.thanks-next h3 {
    margin-bottom: 1rem;
}

.next-steps {
    margin-bottom: 0;
    padding-left: 1.25rem;
}

.next-steps li {
    color: var(--color-text-light);
}

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.thanks-extra {
    padding: 4rem 2rem;
    background: var(--color-white);
}

.extra-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.extra-content h3 {
    margin-bottom: 1rem;
}

.reflection-questions {
    text-align: left;
    background: var(--color-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.reflection-questions li {
    color: var(--color-text-light);
}

.legal-hero {
    margin-top: 70px;
    padding: 4rem 2rem;
    background: var(--color-light);
    text-align: center;
}

.legal-hero h1 {
    margin-bottom: 0.5rem;
}

.legal-hero p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-accent);
}

.legal-section h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 1.5rem;
}

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

.cookie-table th {
    background: var(--color-light);
    font-weight: 600;
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.3rem; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--color-border);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-lead {
        font-size: 1.1rem;
    }

    .visual-quote blockquote {
        font-size: 1.4rem;
    }

    .inline-image {
        max-width: 100%;
    }

    .system-showcase {
        gap: 1.5rem;
    }

    .system-item {
        flex: 1 1 100%;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .footer-links {
        gap: 2rem;
    }

    .footer-main {
        gap: 2rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .page-hero {
        height: 40vh;
        min-height: 280px;
    }

    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
    }

    .contact-grid {
        gap: 2rem;
    }

    .price-tag {
        font-size: 2rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .nav-inner {
        padding: 0.75rem 1rem;
    }

    .editorial-hero {
        min-height: 70vh;
    }

    .hero-content {
        padding: 3rem 1rem 2rem;
    }

    .editorial-body {
        padding: 0 1rem;
    }

    .story-visual-break,
    .testimonial-inline {
        margin: 2rem -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .insight-card,
    .cta-box,
    .insight-block {
        padding: 2rem 1.5rem;
    }

    .services-reveal,
    .form-section {
        padding: 3rem 1rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .final-push {
        padding: 4rem 1rem;
    }

    .site-footer {
        padding: 3rem 1rem 1.5rem;
    }

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