/* ============================================================
   Verturn – Stylesheet
   Brand colors: #4CAF50 | #333 | #45a049 | #81C784
   ============================================================ */

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

:root {
    --green:       #4CAF50;
    --green-light: #81C784;
    --green-dark:  #45a049;
    --dark:        #333;
    --dark-90:     #1e2a1f;
    --light:       #f4f4f9;
    --white:       #ffffff;
    --text:        #2b2b2b;
    --muted:       #666;
    --shadow:      0 4px 24px rgba(51, 51, 51, 0.10);
    --shadow-lg:   0 12px 48px rgba(51, 51, 51, 0.16);
    --radius:      16px;
    --radius-sm:   10px;
    --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

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

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(76, 175, 80, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(76, 175, 80, 0.55);
}

.btn-ghost {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.45);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.22);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ── Section headers ── */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.7;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(51, 51, 51, 0.08);
    padding: 14px 0;
}

.nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 40px;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links li a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.88);
    transition: var(--transition);
    letter-spacing: 0.01em;
}

.navbar.scrolled .nav-links li a {
    color: var(--dark);
}

.nav-links li a:hover { opacity: 0.7; }

.navbar.scrolled .nav-links li a:hover {
    color: var(--green);
    opacity: 1;
}

.nav-cta {
    background: linear-gradient(135deg, var(--green), var(--green-dark)) !important;
    color: var(--white) !important;
    padding: 9px 20px;
    border-radius: 50px;
    font-weight: 600 !important;
    box-shadow: 0 4px 14px rgba(76, 175, 80, 0.35);
    opacity: 1 !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(76, 175, 80, 0.5) !important;
}

/* ============================================================
   HERO – gecentreerd met ghost-tekst en circulaire glow
   ============================================================ */
.hero {
    min-height: 100vh;
    background: linear-gradient(160deg, #1a3a1c 0%, #2a5030 45%, #3a7040 75%, #4CAF50 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

/* Ghost achtergrond-tekst */
.hero-bg-text {
    position: absolute;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(120px, 20vw, 260px);
    font-weight: 900;
    color: rgba(255,255,255,0.04);
    letter-spacing: 0.08em;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

/* Centrale gloed */
.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(76,175,80,0.25) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 680px;
}

/* Logo met draaiende ringen */
.hero-logo-ring {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
}

.ring-1 {
    width: 160px;
    height: 160px;
    animation: spinSlow 18s linear infinite;
    border-top-color: rgba(129,199,132,0.6);
    border-right-color: transparent;
}

.ring-2 {
    width: 200px;
    height: 200px;
    animation: spinSlow 26s linear infinite reverse;
    border-bottom-color: rgba(76,175,80,0.4);
    border-left-color: transparent;
}

@keyframes spinSlow {
    to { transform: rotate(360deg); }
}

.hero-center-logo {
    width: 80px;
    height: auto;
    position: relative;
    z-index: 1;
    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

/* Pill badges */
.hero-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-pill {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 500;
    padding: 7px 18px;
    border-radius: 50px;
}

.hero-pill-accent {
    background: rgba(76,175,80,0.3);
    border-color: rgba(76,175,80,0.5);
    color: #c8e6c9;
}

.hero-title {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, var(--green-light) 0%, #c8e6c9 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

/* ============================================================
   MARQUEE TICKER
   ============================================================ */
.marquee-strip {
    background: var(--dark);
    overflow: hidden;
    padding: 14px 0;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    gap: 32px;
    align-items: center;
    animation: marquee 30s linear infinite;
}

.marquee-track span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.marquee-track .dot {
    color: var(--green);
    font-size: 18px;
    line-height: 1;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================================
   DIENSTEN INTRO – horizontale rijen
   ============================================================ */
.diensten {
    background: var(--white);
    padding: 100px 0 80px;
}

.diensten-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1.5px solid #e8f5e9;
    border-radius: var(--radius);
    overflow: hidden;
}

.dienst-row {
    display: grid;
    grid-template-columns: 72px 1fr auto auto;
    align-items: center;
    gap: 24px;
    padding: 28px 32px;
    border-bottom: 1.5px solid #e8f5e9;
    transition: var(--transition);
    color: var(--text);
    cursor: pointer;
}

.dienst-row:last-child { border-bottom: none; }

.dienst-row:hover {
    background: #f7fdf7;
}

.dienst-row-accent {
    background: linear-gradient(90deg, #f7fdf7 0%, #edf7ed 100%);
}

.dienst-row-accent:hover {
    background: linear-gradient(90deg, #edf7ed 0%, #e0f2e1 100%);
}

.dienst-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
    opacity: 0.5;
}

.dienst-row:hover .dienst-num {
    opacity: 1;
}

.dienst-body h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.dienst-body p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55;
}

.dienst-icon {
    font-size: 28px;
    opacity: 0.7;
}

.dienst-arrow {
    font-size: 20px;
    color: var(--green);
    font-weight: 700;
    transform: translateX(0);
    transition: var(--transition);
    opacity: 0;
}

.dienst-row:hover .dienst-arrow {
    transform: translateX(6px);
    opacity: 1;
}

/* ============================================================
   DIAGONALE BREAKS
   ============================================================ */
.skew-divider {
    height: 60px;
    overflow: hidden;
    line-height: 0;
}

.skew-down {
    background: var(--white);
    clip-path: polygon(0 0, 100% 0, 100% 0%, 0 100%);
    background: linear-gradient(160deg, #1a3a1c, #2a5030);
    height: 80px;
    margin-bottom: -2px;
}

.skew-up {
    background: linear-gradient(160deg, #1a3a1c, #2a5030);
    clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
    height: 80px;
    margin-top: -2px;
}

.skew-down-light {
    background: var(--white);
    clip-path: polygon(0 0, 100% 0, 100% 0%, 0 100%);
    background: var(--light);
    height: 60px;
    margin-bottom: -2px;
}

/* ============================================================
   CONSULTANCY – split layout
   ============================================================ */
.service-section {
    padding: 100px 0 80px;
    background: var(--white);
}

.skewed-section {
    background: linear-gradient(160deg, #1a3a1c 0%, #2a5030 100%);
}

.service-section-alt {
    background: var(--light);
}

.skewed-section-light {
    background: var(--light);
}

.service-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.service-split-left .section-tag {
    background: rgba(255,255,255,0.15);
    color: var(--green-light);
}

.service-split-left .section-title {
    color: var(--white);
}

.service-intro-text {
    font-size: 16px;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    margin-bottom: 28px;
}

.result-block {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    padding: 20px 24px;
    backdrop-filter: blur(8px);
}

.result-icon {
    width: 32px;
    height: 32px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.result-block strong {
    display: block;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.result-block p {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
}

/* Genummerde lijst */
.numbered-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.numbered-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.n-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: var(--green-light);
    letter-spacing: 0.05em;
    min-width: 28px;
    margin-top: 2px;
    opacity: 0.7;
}

.numbered-item h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.numbered-item p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
    background: var(--dark);
    padding: 56px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 24px 32px;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}

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

.stat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.stat-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
}

/* ============================================================
   INNOVATIE – horizontale kaarten stack
   ============================================================ */
.service-intro-center {
    max-width: 680px;
    margin: -32px auto 48px;
    text-align: center;
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75;
}

.hcard-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hcard {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    align-items: center;
    gap: 24px;
    background: var(--white);
    border: 1.5px solid #e8f5e9;
    border-radius: var(--radius);
    padding: 24px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.hcard::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--green), var(--green-light));
    transform: scaleY(0);
    transform-origin: top;
    transition: var(--transition);
}

.hcard:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateX(6px);
}

.hcard:hover::before {
    transform: scaleY(1);
}

.hcard-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hcard-icon svg {
    width: 24px;
    height: 24px;
}

.hcard-body h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.hcard-body p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

.hcard-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--green-dark);
    background: #e8f5e9;
    padding: 5px 12px;
    border-radius: 50px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ============================================================
   AI – 2-koloms grid
   ============================================================ */
.ai-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ai-card {
    background: var(--white);
    border: 1.5px solid #e0ede0;
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
}

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

.ai-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.ai-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.ai-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
}

/* ── Icon klassen ── */
.feature-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-wrap svg { width: 22px; height: 22px; }

.icon-green       { background: #e8f5e9; color: var(--green-dark); }
.icon-green-light { background: #f1f8e9; color: #558b2f; }
.icon-green-dark  { background: #dcedc8; color: #33691e; }

.feature-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--green-dark);
    background: #e8f5e9;
    padding: 4px 10px;
    border-radius: 50px;
}

/* ============================================================
   PROJECTEN
   ============================================================ */
.projecten {
    padding: 100px 0 80px;
    background: var(--white);
}

.project-card {
    border: 1.5px solid #e8f5e9;
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
}

.project-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.project-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
    background: linear-gradient(90deg, #1a3a1c, #2a5030);
    gap: 16px;
    flex-wrap: wrap;
}

.project-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
}

.project-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.project-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--green-light);
    background: rgba(129,199,132,0.15);
    border: 1px solid rgba(129,199,132,0.25);
    padding: 4px 12px;
    border-radius: 50px;
}

.project-body {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 0;
}

.project-left {
    padding: 40px 40px 40px 32px;
    border-right: 1.5px solid #e8f5e9;
}

.project-logo-wrap {
    width: 56px;
    height: 56px;
    background: #f4f9f4;
    border: 1.5px solid #e0ede0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-bottom: 16px;
}

.project-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.project-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 4px;
}

.project-tagline {
    font-size: 15px;
    color: var(--green-dark);
    font-weight: 600;
    margin-bottom: 16px;
}

.project-desc {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 580px;
}

.project-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.project-highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.55;
}

.ph-icon {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--green-dark);
    border-bottom: 2px solid #c8e6c9;
    padding-bottom: 2px;
    transition: var(--transition);
}

.project-link:hover {
    color: var(--green);
    border-color: var(--green);
}

.project-link-arrow {
    transition: var(--transition);
}

.project-link:hover .project-link-arrow {
    transform: translateX(4px);
}

.project-right {
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 36px;
    background: #fafdfb;
}

.project-tech-block h4,
.project-diensten-block h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
}

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

.tech-pill {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
    background: var(--white);
    border: 1.5px solid #d8edd8;
    padding: 5px 12px;
    border-radius: 50px;
}

.pd-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pd-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text);
}

.pd-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
}

.projecten-meer {
    text-align: center;
    margin-top: 32px;
    font-size: 14px;
    color: var(--muted);
    font-style: italic;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    padding: 100px 0;
    background: var(--white);
}

.cta-card {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border-radius: 24px;
    padding: 80px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid #c8e6c9;
}

.cta-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.cta-deco-1 {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, var(--green), transparent);
    opacity: 0.08;
    top: -120px;
    right: -80px;
}

.cta-deco-2 {
    width: 240px;
    height: 240px;
    background: var(--green-dark);
    opacity: 0.06;
    bottom: -90px;
    left: -50px;
}

/* Ghost tekst in CTA */
.cta-ghost-text {
    position: absolute;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 900;
    color: rgba(76,175,80,0.06);
    letter-spacing: 0.1em;
    bottom: -10px;
    right: 32px;
    pointer-events: none;
    user-select: none;
}

.cta-card .section-tag { position: relative; z-index: 1; }

.cta-card h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--dark);
    margin: 16px 0 16px;
    position: relative;
    z-index: 1;
}

.cta-card p {
    font-size: 17px;
    color: var(--muted);
    max-width: 500px;
    margin: 0 auto 36px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.75);
}

.footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 72px 24px 48px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
}

.footer-brand .footer-logo {
    height: 38px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 220px;
    color: rgba(255,255,255,0.5);
}

.footer-links h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--green-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 24px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.3);
}
.mail-user,
.mail-domain {
    display: block;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .project-body {
        grid-template-columns: 1fr;
    }

    .project-left {
        border-right: none;
        border-bottom: 1.5px solid #e8f5e9;
        padding: 28px 24px;
    }

    .project-right {
        padding: 28px 24px;
    }

    .service-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .hcard {
        grid-template-columns: 52px 1fr;
    }

    .hcard-tag { display: none; }

    .dienst-row {
        grid-template-columns: 48px 1fr auto;
    }

    .dienst-icon { display: none; }

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

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

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

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .nav-links { display: none; }

    .hero-pills { display: none; }

    .cta-card { padding: 48px 24px; }

    .skew-down, .skew-up, .skew-down-light { height: 40px; }
}
