/* ========================================
   CSS RESET & VARIABLES
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --deep-navy: #0f1729;
    --navy-mid: #1e293b;
    --electric-blue: #2563eb;
    --vivid-cyan: #06b6d4;
    --warm-orange: #f97316;
    --orange-light: #fb923c;
    --success-green: #10b981;
    --soft-white: #f8fafc;
    --pure-white: #ffffff;
    --slate-gray: #64748b;
    --dark-slate: #1e293b;
    --border-light: #e2e8f0;
    --gradient-hero: linear-gradient(135deg, #0f1729 0%, #1e3a5f 50%, #0f1729 100%);
    --gradient-accent: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    --gradient-cta: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    --shadow-card: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-card-hover: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --shadow-cta: 0 4px 14px 0 rgba(249,115,22,0.4);
    --radius-btn: 12px;
    --radius-card: 16px;
    --radius-pill: 9999px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark-slate);
    background: var(--soft-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(36px, 5vw, 64px); font-weight: 800; }
h2 { font-size: clamp(28px, 3.5vw, 40px); }
h3 { font-size: clamp(20px, 2vw, 24px); }

.lead {
    font-size: clamp(18px, 1.5vw, 20px);
    line-height: 1.5;
    color: var(--slate-gray);
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 300ms var(--ease);
}

.nav.scrolled {
    background: rgba(15, 23, 41, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.nav.nav-solid {
    background: rgba(15, 23, 41, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

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

.nav-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--pure-white);
}

.nav-logo span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    font-weight: 500;
    transition: color 200ms var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--pure-white);
}

.nav-cta {
    background: var(--gradient-cta);
    color: var(--pure-white) !important;
    padding: 10px 24px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-cta);
    transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px 0 rgba(249,115,22,0.5);
}

.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    margin: 5px 0;
    transition: all 300ms var(--ease);
}

/* ========================================
   NAV DROPDOWN
   ======================================== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown > a svg {
    transition: transform 200ms var(--ease);
}

.nav-dropdown:hover > a svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%);
    width: 340px;
    background: rgba(15, 23, 41, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-card);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 200ms var(--ease), transform 200ms var(--ease);
    transform: translateX(-50%) translateY(8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Invisible bridge between nav item and dropdown to prevent hover gap */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 16px;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    transition: background 200ms var(--ease);
    color: rgba(255,255,255,0.8);
}

.dropdown-menu a:hover {
    background: rgba(255,255,255,0.08);
}

.dropdown-menu a svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--vivid-cyan);
}

.dropdown-menu a div {
    display: flex;
    flex-direction: column;
}

.dropdown-menu a strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--pure-white);
}

.dropdown-menu a span {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    margin-top: 2px;
}

/* Hide dropdown on mobile */
@media (max-width: 768px) {
    .dropdown-menu {
        display: none;
    }

    .nav-dropdown > a svg {
        display: none;
    }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-cta);
    color: var(--pure-white);
    padding: 16px 32px;
    border-radius: var(--radius-btn);
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-cta);
    transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px 0 rgba(249,115,22,0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--pure-white);
    padding: 16px 32px;
    border-radius: var(--radius-btn);
    font-size: 16px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 200ms var(--ease);
}

.btn-secondary:hover {
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.05);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--electric-blue);
    padding: 16px 32px;
    border-radius: var(--radius-btn);
    font-size: 16px;
    font-weight: 600;
    border: 1px solid var(--electric-blue);
    cursor: pointer;
    transition: all 200ms var(--ease);
}

.btn-outline:hover {
    background: var(--electric-blue);
    color: var(--pure-white);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    background: var(--gradient-hero);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 96px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6,182,212,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 64px;
}

.hero-portrait {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.hero-portrait img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 4px solid rgba(255,255,255,0.15);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37,99,235,0.15);
    border: 1px solid rgba(37,99,235,0.3);
    color: var(--vivid-cyan);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
    letter-spacing: 0.02em;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero h1 {
    color: var(--pure-white);
    margin-bottom: 24px;
    min-height: 2.4em;
}

.hero h1 .gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typewriter-cursor {
    display: inline;
    font-weight: 300;
    color: var(--accent);
    animation: blink 0.8s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.hero .lead {
    color: rgba(255,255,255,0.6);
    margin-bottom: 48px;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 72px;
    padding-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat { text-align: left; }

.hero-stat .stat-number {
    font-size: 36px;
    color: var(--pure-white);
    display: block;
}

.hero-stat .stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
}

/* ========================================
   PAGE HEADER (for non-home pages)
   ======================================== */
.page-header {
    background: var(--gradient-hero);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.page-header h1 {
    color: var(--pure-white);
    margin-bottom: 16px;
    font-size: clamp(32px, 4vw, 52px);
}

.page-header .lead {
    color: rgba(255,255,255,0.6);
}

.page-header .hero-badge {
    margin-bottom: 24px;
}

/* ========================================
   TRUST BAR
   ======================================== */
.trust-bar {
    background: var(--pure-white);
    padding: 48px 0;
    border-bottom: 1px solid var(--border-light);
}

.trust-bar-inner { text-align: center; }

.trust-bar p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slate-gray);
    margin-bottom: 32px;
    font-weight: 500;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    opacity: 0.4;
}

.trust-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-slate);
}

/* ========================================
   SECTIONS
   ======================================== */
.section { padding: 96px 0; }

.section-dark {
    background: var(--deep-navy);
    color: var(--pure-white);
}

.section-alt { background: var(--soft-white); }

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-header .lead { margin-top: 16px; }

/* ========================================
   SERVICE CARDS
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--pure-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    padding: 40px 32px;
    transition: all 300ms var(--ease);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 300ms var(--ease);
}

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

.service-card:hover::before { opacity: 1; }

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(37,99,235,0.1) 0%, rgba(6,182,212,0.1) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--electric-blue);
}

.service-card h3 { margin-bottom: 12px; }

.service-card p {
    color: var(--slate-gray);
    font-size: 15px;
    line-height: 1.6;
}

/* Service detail card (diensten page) */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 64px 0;
    border-bottom: 1px solid var(--border-light);
}

.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }

.service-detail-content h3 {
    font-size: clamp(24px, 2.5vw, 32px);
    margin-bottom: 16px;
}

.service-detail-content p {
    color: var(--slate-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-detail-content ul li {
    padding: 8px 0;
    color: var(--dark-slate);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-detail-content ul li .check {
    color: var(--success-green);
    font-weight: 700;
}

.service-detail-visual {
    background: var(--gradient-hero);
    border-radius: var(--radius-card);
    padding: 48px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-visual .icon-large {
    width: 80px;
    height: 80px;
    color: rgba(255,255,255,0.15);
}

/* ========================================
   RESULTS / STATS
   ======================================== */
.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.result-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-card);
    padding: 40px 32px;
    text-align: center;
    transition: all 300ms var(--ease);
}

.result-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(37,99,235,0.3);
}

.result-card .stat-number {
    font-size: 48px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 8px;
}

.result-card .stat-label {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
}

/* Light result cards */
.result-card-light {
    background: var(--pure-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    padding: 40px 32px;
    text-align: center;
    transition: all 300ms var(--ease);
}

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

.result-card-light .stat-number {
    font-size: 48px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 8px;
}

.result-card-light .stat-label {
    font-size: 15px;
    color: var(--slate-gray);
}

/* ========================================
   PROCESS
   ======================================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--gradient-accent);
    opacity: 0.2;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 56px;
    height: 56px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--pure-white);
    position: relative;
    z-index: 1;
}

.process-step h3 { margin-bottom: 12px; }
.process-step p { color: var(--slate-gray); font-size: 15px; }

/* Process detail (werkwijze page) */
.process-detail {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    padding: 48px 0;
    border-bottom: 1px solid var(--border-light);
}

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

.process-detail-number {
    width: 72px;
    height: 72px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--pure-white);
    flex-shrink: 0;
}

.process-detail-content h3 {
    font-size: clamp(22px, 2vw, 28px);
    margin-bottom: 12px;
}

.process-detail-content p {
    color: var(--slate-gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.process-detail-content .detail-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 24px;
}

.process-detail-content .detail-list li {
    font-size: 15px;
    color: var(--dark-slate);
    display: flex;
    align-items: center;
    gap: 8px;
}

.process-detail-content .detail-list li .check {
    color: var(--success-green);
    font-weight: 700;
}

/* ========================================
   CASE STUDIES
   ======================================== */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.case-card {
    background: var(--pure-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: all 300ms var(--ease);
}

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

.case-image {
    height: 220px;
    background: var(--gradient-hero);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-image-placeholder {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: rgba(255,255,255,0.1);
}

.case-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(16,185,129,0.9);
    color: white;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
}

.case-content { padding: 32px; }
.case-content h3 { margin-bottom: 12px; }

.case-content p {
    color: var(--slate-gray);
    font-size: 15px;
    margin-bottom: 24px;
}

.case-metrics { display: flex; gap: 24px; }
.case-metric { display: flex; flex-direction: column; }

.case-metric .stat-number {
    font-size: 24px;
    color: var(--electric-blue);
}

.case-metric .stat-label {
    font-size: 13px;
    color: var(--slate-gray);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-card);
    padding: 40px 32px;
    transition: all 300ms var(--ease);
}

.testimonial-card:hover { background: rgba(255,255,255,0.08); }

.testimonial-card-light {
    background: var(--pure-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    padding: 40px 32px;
    transition: all 300ms var(--ease);
}

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

.testimonial-stars {
    color: var(--warm-orange);
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card-light .testimonial-text {
    color: var(--slate-gray);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: white;
}

.testimonial-name {
    font-weight: 600;
    color: var(--pure-white);
    font-size: 15px;
}

.testimonial-card-light .testimonial-name {
    color: var(--dark-slate);
}

.testimonial-role {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.testimonial-card-light .testimonial-role {
    color: var(--slate-gray);
}

/* ========================================
   PRICING
   ======================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--pure-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    padding: 40px 32px;
    text-align: center;
    transition: all 300ms var(--ease);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--electric-blue);
    box-shadow: 0 0 0 1px var(--electric-blue), var(--shadow-card-hover);
    transform: scale(1.02);
}

.pricing-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: white;
    padding: 6px 20px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
}

.pricing-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.pricing-desc {
    font-size: 14px;
    color: var(--slate-gray);
    margin-bottom: 24px;
}

.pricing-price { margin-bottom: 32px; }

.pricing-price .stat-number {
    font-size: 48px;
    color: var(--dark-slate);
}

.pricing-price .pricing-period {
    font-size: 15px;
    color: var(--slate-gray);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 15px;
    color: var(--dark-slate);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features .check {
    color: var(--success-green);
    font-weight: 700;
    font-size: 16px;
}

.btn-pricing {
    width: 100%;
    padding: 14px 24px;
    border-radius: var(--radius-btn);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 200ms var(--ease);
    border: none;
    font-family: inherit;
}

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

.btn-pricing-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px 0 rgba(249,115,22,0.5);
}

.btn-pricing-secondary {
    background: transparent;
    color: var(--dark-slate);
    border: 1px solid var(--border-light);
}

.btn-pricing-secondary:hover {
    border-color: var(--electric-blue);
    color: var(--electric-blue);
}

/* ========================================
   FAQ
   ======================================== */
.faq-list {
    max-width: 768px;
    margin: 0 auto;
}

.faq-item { border-bottom: 1px solid var(--border-light); }

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: var(--dark-slate);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    line-height: 1.4;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--slate-gray);
    transition: transform 300ms var(--ease);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-question::after { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms var(--ease), padding 300ms var(--ease);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--slate-gray);
    font-size: 15px;
    line-height: 1.7;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: var(--gradient-hero);
    padding: 96px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 60%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--pure-white);
    margin-bottom: 16px;
}

.cta-content .lead {
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
}

.cta-content .btn-primary {
    font-size: 18px;
    padding: 20px 40px;
}

/* ========================================
   CONTACT FORM
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-form {
    background: var(--pure-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    padding: 40px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-btn);
    font-size: 15px;
    font-family: inherit;
    color: var(--dark-slate);
    background: var(--soft-white);
    transition: border-color 200ms var(--ease);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--electric-blue);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

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

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

.contact-info-card {
    background: var(--gradient-hero);
    border-radius: var(--radius-card);
    padding: 40px;
    color: var(--pure-white);
}

.contact-info-card h3 {
    margin-bottom: 24px;
    font-size: 24px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-item .info-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item .info-icon svg {
    width: 24px;
    height: 24px;
    color: var(--vivid-cyan);
}

.contact-info-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-info-item p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
}

.contact-perks {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-perks h4 {
    margin-bottom: 16px;
    font-size: 16px;
}

.contact-perks ul {
    list-style: none;
}

.contact-perks ul li {
    padding: 6px 0;
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-perks ul li .check {
    color: var(--success-green);
    font-weight: 700;
}

/* Success message */
.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success-green);
    border-radius: var(--radius-btn);
    padding: 16px 20px;
    color: var(--success-green);
    font-weight: 500;
    margin-bottom: 24px;
}

/* ========================================
   HIGHLIGHT CARDS (home page)
   ======================================== */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.highlight-card {
    background: var(--pure-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    padding: 32px;
    text-align: center;
    transition: all 300ms var(--ease);
}

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

.highlight-card .service-icon {
    margin: 0 auto 20px;
}

.highlight-card h3 { margin-bottom: 12px; font-size: 20px; }
.highlight-card p { color: var(--slate-gray); font-size: 15px; }

.highlight-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--electric-blue);
    transition: gap 200ms var(--ease);
}

.highlight-card .card-link:hover { gap: 10px; }

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--deep-navy);
    color: rgba(255,255,255,0.6);
    padding: 64px 0 32px;
}

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

.footer-brand p {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.6;
    max-width: 300px;
}

.footer h4 {
    color: var(--pure-white);
    font-size: 15px;
    margin-bottom: 20px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 15px; transition: color 200ms var(--ease); }
.footer-links a:hover { color: var(--pure-white); }

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

/* ========================================
   ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .services-grid,
    .testimonials-grid,
    .pricing-grid,
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .process-grid::before { display: none; }

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

    .pricing-card.featured { transform: none; }

    .service-detail { gap: 40px; }

    .contact-grid { gap: 40px; }
}

@media (max-width: 768px) {
    .section { padding: 64px 0; }

    .nav-links { display: none; }
    .nav-mobile-toggle { display: block; }

    .nav-links.mobile-open {
        display: flex !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(15, 23, 41, 0.98);
        padding: 24px;
        gap: 16px;
        border-radius: 0 0 16px 16px;
    }

    .hero { padding: 100px 0 64px; min-height: auto; }
    .hero .container { flex-direction: column; gap: 32px; text-align: center; }
    .hero-portrait img { width: 140px; height: 140px; }
    .hero .lead { margin-left: auto; margin-right: auto; }

    .hero-stats { gap: 32px; flex-wrap: wrap; }
    .hero-stat .stat-number { font-size: 28px; }

    .services-grid,
    .cases-grid,
    .testimonials-grid,
    .pricing-grid,
    .results-grid,
    .process-grid,
    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .service-detail {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .service-detail.reverse { direction: ltr; }

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

    .process-detail-content .detail-list {
        grid-template-columns: 1fr;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   COOKIE BANNER
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(15, 23, 41, 0.97);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    animation: cookieSlideUp 0.4s ease-out;
}

@keyframes cookieSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

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

.cookie-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    white-space: nowrap;
}

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

.cookie-btn-reject:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
}

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

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

@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-text p {
        font-size: 13px;
    }
}
