/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a5c3a;
    --primary-dark: #14472d;
    --primary-light: #2d7a50;
    --primary-subtle: #ecf7f0;
    --accent: #3b9b62;
    --green: #2d7a50;
    --green-subtle: #ecf7f0;
    --red: #ef4444;
    --orange: #f59e0b;
    --bg: #ffffff;
    --bg-soft: #f8faf9;
    --bg-dark: #122a1e;
    --bg-dark-card: #1a3a2a;
    --text: #1a2e23;
    --text-secondary: #2a3f32;
    --text-muted: #4a6355;
    --text-faint: #8a9f92;
    --text-light: #d4e0d9;
    --border: #dce8e1;
    --border-light: #edf3ef;
    --gradient: linear-gradient(135deg, var(--primary), var(--accent));
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.03);
    --shadow-xl: 0 20px 50px -12px rgba(0,0,0,0.12);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

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

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}

/* Navbar on dark hero */
.hero-centered ~ .navbar,
.navbar:not(.scrolled) {
    /* handled by hero-centered styles below */
}

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

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar.scrolled .logo {
    color: var(--text);
}

.logo-icon {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.logo-svg {
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-tagline {
    font-size: 0.65rem;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    display: block;
    line-height: 1;
    margin-top: 1px;
}

.navbar.scrolled .logo-tagline {
    color: var(--text-faint);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-cta {
    padding: 10px 24px;
    font-size: 0.85rem;
    color: white;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: none;
}

.nav-cta:hover {
    background: rgba(255,255,255,0.25);
    box-shadow: none;
}

.navbar.scrolled .nav-cta {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 14px rgba(26, 92, 58, 0.25);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 4px;
}

.menu-toggle span {
    width: 26px;
    height: 2.5px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

.navbar.scrolled .menu-toggle span {
    background: var(--text);
}

/* Slide-out menu */
.slide-menu {
    position: fixed;
    top: 12px;
    right: 12px;
    bottom: 12px;
    width: 340px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 2000;
    border-radius: 20px;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    transform: translateX(calc(100% + 24px));
    opacity: 0;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}

.slide-menu.open {
    transform: translateX(0);
    opacity: 1;
}

.slide-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.2);
    backdrop-filter: blur(2px);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.slide-menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.slide-menu-inner {
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    min-height: 100%;
}

.slide-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-soft);
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    padding: 8px;
    border-radius: 10px;
    transition: all 0.2s;
}

.slide-menu-close:hover {
    background: var(--border);
    color: var(--text);
}

.slide-menu-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.slide-menu-label {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-faint);
    margin-bottom: 6px;
    padding-left: 2px;
}

.slide-menu-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 10px 12px;
    transition: all 0.2s;
    border-radius: 10px;
    border-bottom: none;
}

.slide-menu-link:hover {
    color: var(--primary);
    background: var(--primary-subtle);
}

.slide-menu-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

@media (max-width: 768px) {
    .slide-menu {
        top: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        border-radius: 0;
    }

    .nav-cta {
        display: none;
    }
}

/* === Sticky CTA bar === */
.sticky-bar {
    position: fixed;
    top: -60px;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--bg-dark);
    color: white;
    padding: 12px 0;
    transition: top 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.sticky-bar.visible {
    top: 0;
}

.sticky-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sticky-bar-text {
    font-size: 0.88rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 16px;
}

.sticky-bar-text span {
    color: var(--text-faint);
}

.sticky-bar .btn-primary {
    padding: 8px 24px;
    font-size: 0.85rem;
    border-radius: 8px;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(26, 92, 58, 0.25);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 92, 58, 0.3);
}

.btn-secondary {
    background: var(--bg);
    color: var(--text);
    border: 1px solid var(--border);
}

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

.btn-outline-light {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.25);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.btn-full { width: 100%; }

/* === Hero === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #122a1e 0%, #1a3d2b 50%, #f8faf9 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(45, 122, 80, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
}

.hero-centered .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-centered .hero-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-centered .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.hero-service-cards {
    margin-top: 40px;
    width: 100%;
    max-width: 900px;
}

.hero h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: white;
}

.gradient-text {
    color: rgba(255,255,255,0.5);
    -webkit-text-fill-color: rgba(255,255,255,0.5);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin-bottom: 28px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
}

/* Social proof bar */
.social-proof-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.social-proof-bar .proof-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.social-proof-bar .proof-check {
    color: #5cc98a;
    font-weight: 700;
}

/* Trust badges */
.trust-badges {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    font-size: 0.78rem;
    color: var(--text-faint);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.trust-badge svg {
    flex-shrink: 0;
}

/* === Trust Ticker === */
.trust-ticker {
    background: var(--bg-soft);
    padding: 14px 0;
    overflow: hidden;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 25s linear infinite;
}

.ticker-content {
    display: flex;
    gap: 40px;
    padding-right: 40px;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    white-space: nowrap;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* === Service Cards === */
.service-cards-section {
    padding: 50px 0;
    background: var(--bg);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 20px 16px;
    border-radius: 18px;
    border: none;
    background: rgba(255,255,255,0.95);
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.service-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-title {
    font-size: 1rem;
    font-weight: 700;
}

.service-card-img {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 4px;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.service-card-desc {
    font-size: 0.82rem;
    color: var(--text-faint);
}

/* Hero chat */
.chat-window {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.code-header {
    padding: 14px 18px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid var(--border);
    align-items: center;
    background: var(--bg-soft);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.dot.red { background: #ef4444; }
.dot.yellow { background: #eab308; }
.dot.green { background: #22c55e; }

.chat-title {
    margin-left: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.chat-status {
    font-size: 0.72rem;
    color: var(--green);
    margin-left: auto;
}

.chat-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.msg {
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.82rem;
    line-height: 1.5;
    max-width: 85%;
}

.msg-user {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    color: var(--text-muted);
    align-self: flex-end;
}

.msg-bot {
    background: var(--primary-subtle);
    border: 1px solid rgba(79, 70, 229, 0.12);
    color: var(--text-secondary);
    align-self: flex-start;
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 14px;
    background: var(--primary-subtle);
    border: 1px solid rgba(79, 70, 229, 0.1);
    border-radius: 12px;
    align-self: flex-start;
    width: fit-content;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: var(--primary-light);
    border-radius: 50%;
    animation: bounce 1.2s infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

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

/* Audience cards */
.choice-splitter {
    text-align: center;
    padding: 70px 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border-light);
}

.choice-splitter h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 32px;
}

.audience-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.audience-card {
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.audience-card:hover {
    transform: translateY(-4px);
}

.audience-img {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--bg-soft);
}

.audience-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.audience-label {
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.audience-arrow {
    color: var(--text-faint);
    transition: transform 0.2s;
}

.audience-card:hover .audience-arrow {
    transform: translateX(4px);
    color: var(--primary);
}

@media (max-width: 640px) {
    .audience-cards {
        grid-template-columns: 1fr;
        max-width: 320px;
    }
}

/* === Three Wins === */
.wins-section {
    padding: 80px 0;
    background: var(--bg-dark);
    color: white;
}

.wins-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.win-card {
    text-align: center;
    padding: 32px 24px;
}

.win-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.win-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 4px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.win-label {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.win-desc {
    font-size: 0.88rem;
    color: var(--text-faint);
    line-height: 1.6;
}

/* === Medvi-style product sections === */
/* === MEDVi-style Service Sections === */
.medvi-section {
    padding: 100px 0;
    background: var(--bg);
}

.medvi-section.medvi-alt {
    background: var(--bg-dark);
    color: white;
}

.medvi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.medvi-grid.medvi-reversed {
    direction: rtl;
}

.medvi-grid.medvi-reversed > * {
    direction: ltr;
}

/* Left column: hero image + checklist */
.medvi-hero-img {
    border-radius: 20px;
    overflow: hidden;
    padding: 24px 24px 0;
}

.medvi-hero-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
    display: block;
}

.medvi-included {
    margin-top: 28px;
}

.medvi-included h4 {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
}

.medvi-alt .medvi-included h4 {
    color: white;
}

/* Right column */
.product-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.medvi-alt .product-eyebrow {
    color: var(--accent);
}

.medvi-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

/* Duo images */
.medvi-duo-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}

.medvi-duo-1 {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
}

.medvi-duo-2 {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    transform: translateY(16px);
}

.medvi-sub {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.medvi-alt .medvi-sub {
    color: white;
}

.medvi-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.medvi-alt .medvi-content p {
    color: var(--text-faint);
}

/* Shared check-list */
.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    line-height: 1.5;
}

.check-list li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--green-subtle);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%232d7a50' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

.medvi-alt .check-list li::before {
    background-color: rgba(45, 122, 80, 0.2);
}

/* ROI box */
.roi-box {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.medvi-alt .roi-box {
    background: var(--bg-dark-card);
    border-color: rgba(255,255,255,0.1);
    color: var(--text-faint);
}

.roi-box strong {
    color: var(--text);
    font-weight: 700;
}

.medvi-alt .roi-box strong {
    color: white;
}

/* === Testimonials === */
.testimonials {
    padding: 100px 0;
    background: var(--bg-soft);
    border-top: 1px solid var(--border-light);
}

.review-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.review-stars {
    color: #f59e0b;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.review-stat {
    font-size: 0.92rem;
    color: var(--text-muted);
    font-weight: 500;
}

.review-stat strong {
    color: var(--text);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

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

.testimonial-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text);
}

.testimonial-role {
    font-size: 0.75rem;
    color: var(--text-faint);
}

/* === Safe AI === */
.safe-ai {
    padding: 100px 0;
}

.safe-ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.section-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2,
.section-title {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    color: var(--text);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto;
}

.safe-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.safe-point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.safe-ai-visual {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.compare-card {
    border-radius: 14px;
    padding: 24px;
}

.compare-old {
    background: rgba(239, 68, 68, 0.04);
    border: 1px solid rgba(239, 68, 68, 0.12);
}

.compare-new {
    background: var(--green-subtle);
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.compare-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.compare-label-bad { color: var(--red); }
.compare-label-good { color: var(--green); }

.compare-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.compare-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.compare-bad::before {
    content: '';
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23ef4444' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

.compare-good::before {
    content: '';
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background: rgba(16, 185, 129, 0.12);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

/* === Segments Header === */
.segments-header {
    padding: 80px 0 0;
    background: #fff;
}

/* === Audience Blocks === */
.audience-block {
    padding: 80px 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.audience-grid-reversed {
    direction: rtl;
}

.audience-grid-reversed > * {
    direction: ltr;
}

.audience-text .segment-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}

.audience-text h3 {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
    color: var(--text);
}

.audience-subline {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.audience-text .check-list {
    margin-bottom: 24px;
}

.audience-text .check-list li {
    font-size: 0.9rem;
}

.audience-pain {
    font-style: italic;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Photo Collage — MEDVi asymmetric */
.audience-collage {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 12px;
    align-items: stretch;
}

.collage-large {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.collage-large img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    display: block;
}

.collage-small-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.collage-small {
    flex: 1;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.collage-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* === Guarantee === */
.guarantee-section {
    padding: 80px 0;
}

.guarantee-card {
    background: var(--green-subtle);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 20px;
    padding: 40px 48px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.guarantee-image {
    width: 200px;
    height: 200px;
    border-radius: 16px;
    object-fit: cover;
    flex-shrink: 0;
}

/* === Pricing === */
.pricing {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.plan-weekly {
    background: var(--bg-soft);
    border-radius: 12px;
    padding: 16px 18px;
    margin: 16px 0;
}

.plan-weekly h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
    margin-bottom: 8px;
}

.plan-weekly ul {
    list-style: none;
    padding: 0;
}

.plan-weekly ul li {
    font-size: 0.82rem;
    color: var(--text-muted);
    padding: 3px 0;
    padding-left: 18px;
    position: relative;
}

.plan-weekly ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.75rem;
}

.plan-enterprise {
    border-style: dashed;
}

.plan-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px;
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.plan-card:hover {
    border-color: rgba(79, 70, 229, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.plan-card.featured {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.12);
}

.plan-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 5px 16px;
    border-radius: 100px;
    white-space: nowrap;
}

.plan-urgency {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 16px;
}

.plan-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
}

.plan-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.plan-price {
    margin-bottom: 4px;
}

.price-amount {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--text);
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.plan-note {
    font-size: 0.75rem;
    color: var(--text-faint);
    margin-bottom: 20px;
    line-height: 1.5;
}

.plan-time-save {
    background: var(--primary-subtle);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.plan-time-save strong {
    color: var(--primary);
    font-weight: 700;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.plan-features li::before {
    content: '';
    width: 16px;
    height: 16px;
    background: var(--green-subtle);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

.pricing-footnote {
    text-align: center;
    margin-top: 28px;
    font-size: 0.82rem;
    color: var(--text-faint);
}

.pricing-footnote a {
    color: var(--primary);
    text-decoration: none;
}

/* === FAQ === */
.faq {
    padding: 100px 0;
    background: var(--bg-soft);
    border-top: 1px solid var(--border-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
}

.faq-item {
    background: var(--bg);
    padding: 32px;
}

.faq-item h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.faq-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* === Human / Persoonlijk Section === */
.human-section {
    padding: 80px 0;
    background: #faf8f5;
}

.human-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.human-image {
    border-radius: 20px;
    overflow: hidden;
}

.human-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.human-content .section-eyebrow {
    margin-bottom: 12px;
}

.human-content h2 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}

.human-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.human-points {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.human-point {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
}

.human-point svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .human-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .human-image img {
        height: 280px;
    }
}

/* === Closing CTA === */
.closing {
    padding: 100px 0;
    background: var(--bg-dark);
    color: white;
}

.closing .section-header h2 {
    color: white;
}

.closing .section-header p {
    color: var(--text-faint);
}

.closing-plans {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.closing-plan {
    background: var(--bg-dark-card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 28px;
    min-width: 220px;
    max-width: 260px;
    flex: 1;
    text-align: left;
    transition: all 0.3s;
}

.closing-plan:hover {
    border-color: var(--primary-light);
    transform: translateY(-3px);
}

.closing-plan.highlighted {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.15);
}

.closing-plan h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: white;
}

.closing-price {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 4px;
    color: white;
}

.closing-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-faint);
}

.closing-note {
    font-size: 0.75rem;
    color: var(--text-faint);
    margin-bottom: 16px;
}

.closing-footnote {
    text-align: center;
    margin-top: 24px;
    font-size: 0.78rem;
    color: var(--text-faint);
}

/* === Footer === */
.footer {
    padding: 36px 0;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

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

.footer-brand {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
}

.footer p {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-faint);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.2s;
}

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

/* === Animations === */
.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* === Responsive === */
@media (max-width: 1280px) {
    .pricing-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .pricing-grid,
    .pricing-grid-4 {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .wins-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .social-proof-bar { justify-content: center; }
    .trust-badges { justify-content: center; }

    .hero-visual { display: none; }

    .service-cards { grid-template-columns: 1fr; max-width: 100%; margin: 0 auto; }
    .service-card {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        text-align: left;
        padding: 12px;
        gap: 2px 14px;
    }
    .service-card-img {
        width: 64px;
        aspect-ratio: 1;
        border-radius: 10px;
        margin-bottom: 0;
        grid-row: 1 / 3;
        grid-column: 1;
    }
    .service-card-title { font-size: 0.9rem; grid-column: 2; align-self: end; }
    .service-card-desc { font-size: 0.78rem; grid-column: 2; align-self: start; }

    .medvi-grid,
    .medvi-grid.medvi-reversed {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .medvi-visual { order: 2; }
    .medvi-content { order: 1; }

    .medvi-hero-img img {
        height: 260px;
    }

    .medvi-duo-imgs {
        grid-template-columns: 1fr 1fr;
    }

    .medvi-duo-1, .medvi-duo-2 {
        height: 140px;
    }

    .safe-ai-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .audience-grid,
    .audience-grid-reversed {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 32px;
    }

    .audience-collage {
        grid-template-columns: 1.2fr 1fr;
    }

    .collage-large img {
        min-height: 220px;
    }

    .audience-text h3 {
        font-size: 1.3rem;
    }

    .audience-block {
        padding: 56px 0;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    .guarantee-card {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

    .guarantee-image {
        width: 160px !important;
        height: 160px !important;
    }

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

    .nav-cta { display: none; }

    .closing-plans {
        flex-direction: column;
        align-items: center;
    }

    .closing-plan {
        max-width: 100%;
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    .footer-links { justify-content: center; }

    .choice-buttons { flex-direction: column; align-items: center; }

    .sticky-bar { display: none !important; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
}

/* Plan example & learn-more (tier cards) */
.plan-features {
    margin-bottom: 20px;
}
.plan-example {
    font-size: 0.84rem;
    color: var(--text-muted);
    background: rgba(59,155,98,0.05);
    border-left: 3px solid rgba(59,155,98,0.25);
    padding: 10px 14px;
    border-radius: 0 8px 8px 0;
    margin: 0 0 16px;
    line-height: 1.5;
    margin-top: auto;
}
.plan-example em { font-style: italic; }
.plan-learnmore {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    padding: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.plan-learnmore:hover { text-decoration: underline; }

/* Enterprise "Op maat" price — kleiner dan bedragen */
.plan-enterprise .price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Zorg dat alle kaartjes gelijke hoogte + netjes uitgelijnde CTAs hebben */
.plan-card .btn-full {
    margin-top: 0;
}
.plan-card .plan-note {
    margin-bottom: 20px;
}
