/* ============================================================
   Global Motive — Stylesheet
   ============================================================ */

:root {
    --primary: #1B3A6B;
    --primary-dark: #0F2847;
    --primary-mid: #1B3A6B;
    --primary-light: #2A5298;
    --accent: #3B82F6;
    --accent-hover: #2563EB;
    --accent-glow: rgba(59,130,246,0.15);
    --electric: #3B82F6;
    --dark: #0A0E17;
    --dark-800: #111827;
    --dark-700: #1F2937;
    --dark-600: #374151;
    --text: #1F2937;
    --text-light: #6B7280;
    --text-muted: #9CA3AF;
    --border: #E5E7EB;
    --border-light: #F3F4F6;
    --light: #F8FAFC;
    --lighter: #FAFBFC;
    --white: #FFFFFF;
    --success: #10B981;
    --danger: #EF4444;
    --warning: #F59E0B;
    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 28px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
    --shadow-2xl: 0 24px 64px rgba(0,0,0,0.16);
    --transition: all 0.25s cubic-bezier(.4,0,.2,1);
    --transition-slow: all 0.45s cubic-bezier(.4,0,.2,1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: var(--text); line-height: 1.6; background: var(--white); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
a { color: var(--electric); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; }

/* === CONTAINER === */
.container { max-width: 1600px; margin: 0 auto; padding: 0 2.5rem; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 2rem; }
.container-lg { max-width: 1600px; margin: 0 auto; padding: 0 2.5rem; }

/* === GRID === */
.grid { display: grid; gap: 1.75rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .grid-2 { grid-template-columns: 1fr; }
    .container, .container-sm, .container-lg { padding: 0 1.25rem; }
}

/* === UTILITIES === */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.5rem; }
.mb-3 { margin-bottom: 2.5rem; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
    background: var(--dark);
    color: rgba(255,255,255,0.9);
    font-size: 0.8rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.topbar-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.topbar-left span,
.topbar-left a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    font-weight: 400;
}
.topbar-left a:hover { color: var(--accent); text-decoration: none; }
.topbar-left .topbar-icon { width: 14px; height: 14px; opacity: 0.6; }
.topbar-right {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.topbar-right a {
    color: rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px; height: 30px;
    border-radius: 50%;
    transition: var(--transition);
}
.topbar-right a:hover {
    color: var(--accent);
    background: rgba(59,130,246,0.08);
    text-decoration: none;
}
.topbar-right svg { width: 13px; height: 13px; fill: currentColor; }

@media (max-width: 768px) {
    .topbar-left { gap: 1rem; }
    .topbar-left span:nth-child(n+3) { display: none; }
}
@media (max-width: 480px) {
    .topbar { display: none; }
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
    background: var(--white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    position: relative;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 28px; width: auto; }
.logo:hover { opacity: 0.85; text-decoration: none; }

.nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.nav a:not(.btn) {
    color: var(--text);
    font-weight: 500;
    font-size: 0.88rem;
    padding: 0.5rem 1.15rem;
    border-radius: 0;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}
.nav a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.15rem;
    right: 1.15rem;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}
.nav a:not(.btn):hover {
    color: var(--primary);
    background: transparent;
    text-decoration: none;
}
.nav a:not(.btn):hover::after {
    transform: scaleX(1);
}
.nav a:not(.btn).active {
    color: var(--primary);
    background: transparent;
    font-weight: 600;
}
.nav a:not(.btn).active::after {
    transform: scaleX(1);
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}
.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.dropdown-arrow {
    font-size: 0.65rem;
    transition: var(--transition);
}
.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 1000;
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown-menu a {
    display: block;
    padding: 0.6rem 1rem;
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: var(--radius);
    transition: var(--transition);
    text-decoration: none;
}
.nav-dropdown-menu a:hover {
    background: var(--light);
    color: var(--primary);
}
.nav-dropdown-menu a.nav-dropdown-sub {
    padding-left: 1.75rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Megamenu */
.nav-mega {
    position: static;
}
.nav-mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 1000px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem 1.75rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 1000;
}
.nav-mega:hover .nav-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-mega:hover .dropdown-arrow {
    transform: rotate(180deg);
}
.nav-mega-col {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.nav-mega-heading {
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary) !important;
    padding: 0.35rem 0.5rem !important;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0.35rem;
    border-radius: 0 !important;
}
.nav-mega-link {
    display: block;
    padding: 0.4rem 0.5rem;
    font-size: 0.85rem;
    color: var(--text);
    border-radius: var(--radius);
    text-decoration: none;
    transition: var(--transition);
}
.nav-mega-link:hover {
    background: var(--light);
    color: var(--primary);
}

.nav .nav-divider {
    width: 1px;
    height: 22px;
    background: var(--border);
    margin: 0 0.65rem;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.5rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--text);
    padding: 0.5rem;
    border-radius: var(--radius);
}
.mobile-toggle:hover { background: var(--light); }

@media (max-width: 1024px) {
    .mobile-toggle { display: block; }
    .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        z-index: 99;
    }
    .nav.open { display: flex; }
    .nav .nav-divider { display: none; }
    .nav a:not(.btn) { width: 100%; padding: 0.75rem 1rem; border-radius: var(--radius); }
    .nav a:not(.btn)::after { display: none; }
    .nav a:not(.btn).active { background: var(--light); }
    .nav a:not(.btn):hover { background: var(--light); }
    .nav-dropdown { width: 100%; }
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 1rem;
        background: transparent;
    }
    .nav-dropdown-menu a { padding: 0.5rem 1rem; }
    .nav-mega { width: 100%; }
    .nav-mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 1rem;
        background: transparent;
        display: block;
        max-width: none;
    }
    .nav-mega-heading { padding: 0.5rem 1rem !important; }
    .nav-mega-link { padding: 0.4rem 1.5rem; }
    .header-cta { width: 100%; margin: 0.5rem 0 0; gap: 0.5rem; }
    .header-cta .btn { flex: 1; }
}

/* ============================================================
   DEMO BANNER
   ============================================================ */
.demo-banner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    pointer-events: none;
}
.demo-banner .container {
    display: flex;
    justify-content: flex-end;
}
.demo-banner-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--primary);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.45rem 1rem;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    transition: background 0.2s ease;
    pointer-events: all;
}
.demo-banner-link:hover {
    background: var(--primary-light);
    text-decoration: none;
    color: #ffffff;
}
.demo-banner-link svg {
    flex-shrink: 0;
}
@media (max-width: 1024px) {
    .demo-banner .container { justify-content: center; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.6rem;
    border-radius: 99px;
    font-weight: 600;
    font-size: 0.88rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    letter-spacing: 0.01em;
    white-space: nowrap;
    line-height: 1.4;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); box-shadow: 0 4px 20px rgba(13,33,55,0.3); }
.btn-accent { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: var(--white); box-shadow: 0 4px 12px rgba(59,130,246,0.35); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-white { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-white:hover { background: var(--lighter); color: var(--primary); box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.btn-round { border-radius: 50px; padding: 0.75rem 2rem; }
.btn-square { border-radius: 0; }
.btn-ghost { background: rgba(255,255,255,0.08); color: var(--white); border-color: rgba(255,255,255,0.15); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); color: var(--white); }
.btn-danger { background: var(--danger); color: var(--white); border-color: var(--danger); }
.btn-danger:hover { background: #E8434F; }
.btn-sm { padding: 0.35rem 0.95rem; font-size: 0.8rem; }
.btn-lg { padding: 0.85rem 2.5rem; font-size: 0.95rem; }
.btn-xl { padding: 1rem 3rem; font-size: 1rem; }
.btn-block { display: flex; width: 100%; }
.btn-icon { padding: 0.6rem; }
.btn-arrow::after { content: ' \2192'; font-weight: 400; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    background: var(--primary);
    color: var(--white);
    padding: 6rem 0 7rem;
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1619642751034-765dfdf7c58e?w=1600&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--white);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
    pointer-events: none;
    z-index: 1;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
}
.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.7;
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
    font-weight: 400;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-small { padding: 4rem 0 5rem; min-height: auto; }
.hero-small h1 { font-size: 2.5rem; margin-bottom: 0.75rem; }
.hero-small p { opacity: 0.65; font-size: 1rem; }

@media (max-width: 768px) {
    .hero { padding: 4rem 0 5rem; min-height: auto; }
    .hero::after { height: 50px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-small h1 { font-size: 1.8rem; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .hero::after { height: 35px; }
}

/* ============================================================
   DOMAIN CHECKER
   ============================================================ */
.domain-checker-bar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem 2rem;
    max-width: 640px;
    margin: 2.5rem auto 0;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.domain-form {
    display: flex;
    gap: 0;
    border-radius: 99px;
    border: 2px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}
.domain-form:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}
.domain-form input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    border: none;
    font-size: 0.95rem;
    outline: none;
    font-family: inherit;
    background: var(--white);
    color: var(--text);
}
.domain-form input::placeholder { color: var(--text-muted); }
.domain-form button {
    padding: 0.85rem 2rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    white-space: nowrap;
}
.domain-form button:hover { background: var(--primary-dark); }

.domain-extensions {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 0.75rem;
}
.domain-extensions span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-bar-inline {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 1.25rem;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}
.trust-item .trust-check {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
}

@media (max-width: 640px) {
    .domain-checker-bar { padding: 1.25rem; margin: 2rem auto 0; }
    .domain-form { flex-direction: column; border-radius: var(--radius-md); }
    .domain-form button { border-radius: 0; }
    .trust-bar-inline { gap: 1rem; }
    .trust-item { font-size: 0.75rem; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 5.5rem 0; }
.section-dark { background: var(--dark); color: var(--white); }
.section-light { background: var(--light); }
.section-primary { background: var(--primary); color: var(--white); }
.section-accent { background: var(--accent); color: var(--dark); }

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 0.65rem;
    color: var(--dark);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
}
.section-dark .section-title,
.section-primary .section-title { color: var(--white); }

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.5); }
.section-primary .section-subtitle { color: rgba(255,255,255,0.6); }

/* Legacy compat */
.features, .services-preview, .cta { padding: 4rem 0; }
.cta { background: var(--light); }
.page-header { background: var(--primary); color: var(--white); padding: 3rem 0; text-align: center; }
.page-header h1 { font-size: 2.2rem; color: var(--white); font-weight: 800; }
.page-header p { color: rgba(255,255,255,0.6); margin-top: 0.5rem; }
.content-section { padding: 3rem 0; }
.content-block h2 { margin: 1.5rem 0 0.75rem; color: var(--dark); }
.content-block ul { padding-left: 1.5rem; list-style: disc; }
.content-block ul li { margin-bottom: 0.4rem; }
.category-title { margin: 2rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--border); color: var(--dark); }

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--accent);
}
.feature-card .icon {
    width: 50px; height: 50px;
    border-radius: var(--radius-md);
    background: var(--light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin: 0 auto 1.25rem;
    border: 1px solid var(--border);
}
.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}
.feature-card p {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.65;
}

.section-dark .feature-card {
    background: var(--dark-700);
    border-color: var(--dark-600);
}
.section-dark .feature-card:hover { border-color: var(--accent); }
.section-dark .feature-card h3 { color: var(--white); }
.section-dark .feature-card p { color: rgba(255,255,255,0.55); }
.section-dark .feature-card .icon { background: var(--dark-600); border-color: rgba(255,255,255,0.06); color: var(--accent); }

/* ============================================================
   PRICING CARDS
   ============================================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    align-items: start;
}
@media (max-width: 968px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: var(--transition-slow);
    position: relative;
}
.pricing-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-3px);
}
.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--primary);
}
.pricing-card.featured::before {
    content: 'Populair';
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 0.3rem 1.4rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.pricing-name { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 0.25rem; }
.pricing-desc { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1.5rem; }
.pricing-price { margin-bottom: 2rem; }
.pricing-amount { font-size: 2.75rem; font-weight: 800; color: var(--dark); letter-spacing: -0.03em; line-height: 1; }
.pricing-period { font-size: 0.85rem; color: var(--text-muted); font-weight: 400; margin-left: 0.25rem; }
.pricing-features { margin-bottom: 2rem; }
.pricing-features li {
    padding: 0.5rem 0;
    font-size: 0.88rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-bottom: 1px solid var(--border-light);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
    content: '\2713';
    color: var(--success);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.pricing-features li.excluded {
    color: var(--text-muted);
    text-decoration: line-through;
}
.pricing-features li.excluded::before {
    content: '\2717';
    color: var(--text-muted);
}

/* ============================================================
   MARKETING TABS
   ============================================================ */
.marketing-tabs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    background: var(--light);
    border-radius: var(--radius-xl);
    padding: 0.4rem;
    border: 1px solid var(--border);
}
.marketing-tab {
    padding: 0.85rem 1.75rem;
    border: none;
    background: transparent;
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}
.marketing-tab:hover {
    color: var(--primary);
}
.marketing-tab.active {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}
.marketing-panel {
    display: none;
}
.marketing-panel.active {
    display: block;
}
.marketing-panel-intro {
    text-align: center;
    margin-bottom: 2.5rem;
}
.marketing-panel-intro h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}
.marketing-panel-intro p {
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}
@media (max-width: 640px) {
    .marketing-tabs {
        flex-direction: column;
    }
    .marketing-tab {
        text-align: center;
    }
}

/* Service Blocks */
.service-block {
    display: block;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: var(--transition-slow);
}
.service-block:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.service-block-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.service-block h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}
.service-block p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.service-block-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
}

/* Content Split */
.content-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}
.content-split.reversed {
    grid-template-columns: 1fr 1.2fr;
}
.content-split.reversed .content-split-text {
    order: 2;
}
.content-split.reversed .content-split-points {
    order: 1;
}
.content-split-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}
.content-split-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}
.content-split-points {
    background: var(--light);
    border-radius: var(--radius-md);
    padding: 2rem;
    border: 1px solid var(--border);
}
.content-split-points h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.25rem;
}
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
}
.check-list li:last-child {
    border-bottom: none;
}
.check-list li::before {
    content: '\2713';
    color: var(--white);
    background: var(--success);
    font-weight: 700;
    font-size: 0.7rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Info Block (stats/highlight) */
.info-block {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    padding: 3rem;
    color: var(--white);
}
.info-block h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.info-block p {
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}
.info-block-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.info-block-stat {
    text-align: center;
}
.info-block-stat .number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}
.info-block-stat .label {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 500;
}

/* Highlight Cards */
.highlight-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.highlight-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    transition: var(--transition);
}
.highlight-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}
.highlight-card-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}
.highlight-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.4rem;
}
.highlight-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}
@media (max-width: 768px) {
    .content-split {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    .content-split.reversed .content-split-text,
    .content-split.reversed .content-split-points {
        order: unset;
    }
    .info-block-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .highlight-cards {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   ALLES-IN-EEN BANNER
   ============================================================ */
.alles-in-een-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    color: var(--white);
}
.alles-in-een-banner h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.alles-in-een-banner p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}
.alles-in-een-list {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}
.alles-in-een-list li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 500;
}
.alles-in-een-list li::before {
    content: '\2713';
    font-weight: 700;
    color: var(--accent);
}
.alles-in-een-action {
    flex-shrink: 0;
}
.alles-in-een-banner .btn-accent {
    background: var(--white);
    color: var(--primary);
    font-weight: 600;
}
.alles-in-een-banner .btn-accent:hover {
    background: var(--accent);
    color: var(--white);
}
@media (max-width: 768px) {
    .alles-in-een-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    .alles-in-een-list { justify-content: center; }
}

/* ============================================================
   WHY / SPLIT LAYOUT
   ============================================================ */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.why-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -0.025em;
}
.section-dark .why-content h2 { color: var(--white); }
.why-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 0.92rem;
}
.section-dark .why-content p { color: rgba(255,255,255,0.6); }

.why-points { list-style: none; padding: 0; margin-top: 1rem; }
.why-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 500;
}
.section-dark .why-points li { color: rgba(255,255,255,0.8); }
.why-points li::before {
    content: '\2713';
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.why-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
.why-stat-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}
.why-stat-card:hover {
    background: rgba(59,130,246,0.05);
    border-color: rgba(59,130,246,0.15);
    transform: translateY(-2px);
}
.why-stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.02em;
    line-height: 1;
}
.why-stat-card .stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.5rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.portfolio-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--dark-700), var(--dark));
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-slow);
    cursor: pointer;
}
.portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
}
.portfolio-item .portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: var(--transition-slow);
}
.portfolio-item:hover .portfolio-overlay {
    background: linear-gradient(to top, rgba(27,58,107,0.9) 0%, rgba(27,58,107,0.4) 50%, rgba(27,58,107,0.1) 100%);
}
.portfolio-item .portfolio-title {
    color: var(--white);
    font-weight: 700;
    font-size: 1.05rem;
}
.portfolio-item .portfolio-category {
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem;
    margin-top: 0.15rem;
    font-weight: 500;
}
.portfolio-item .portfolio-placeholder {
    font-size: 3rem;
    opacity: 0.12;
    color: var(--white);
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 768px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .portfolio-grid { grid-template-columns: 1fr; } }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    text-decoration: none;
    border-color: var(--accent);
}
.blog-card .blog-thumb {
    height: 190px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.15);
    font-size: 3rem;
}
.blog-card .blog-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card .blog-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: flex;
    gap: 0.75rem;
    font-weight: 500;
}
.blog-card .blog-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}
.blog-card .blog-excerpt {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
}
.blog-card .blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 1rem;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}
.blog-card .blog-link:hover { color: var(--accent-hover); gap: 0.5rem; }

@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

/* ============================================================
   BLOG CAROUSEL
   ============================================================ */
.blog-carousel-wrapper {
    position: relative;
}
.blog-carousel {
    display: flex;
    gap: 1.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    scrollbar-width: none;
}
.blog-carousel::-webkit-scrollbar { display: none; }
.blog-carousel .blog-card {
    min-width: 340px;
    max-width: 380px;
    scroll-snap-align: start;
    flex-shrink: 0;
}
.carousel-nav {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.5rem;
}
.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--primary);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.carousel-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

@media (max-width: 640px) {
    .blog-carousel .blog-card { min-width: 280px; }
}

/* ============================================================
   CTA BLOCK
   ============================================================ */
.cta-block {
    background: var(--primary);
    border-radius: var(--radius-xl);
    padding: 4rem 3rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.cta-block::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.cta-block::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(79,142,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.cta-block h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.025em;
    position: relative;
}
.cta-block p {
    font-size: 1rem;
    opacity: 0.65;
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    position: relative;
}

@media (max-width: 640px) {
    .cta-block { padding: 3rem 1.5rem; }
    .cta-block h2 { font-size: 1.5rem; }
}

/* ============================================================
   STATS ROW
   ============================================================ */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.02em;
    line-height: 1;
}
.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.4rem;
    font-weight: 600;
}

/* ============================================================
   COMPARE TABLE
   ============================================================ */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.compare-table th,
.compare-table td {
    padding: 0.9rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.88rem;
}
.compare-table thead th {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.compare-table tbody tr:hover { background: var(--lighter); }
.compare-table .check { color: var(--success); font-weight: 700; }
.compare-table .cross { color: var(--text-muted); }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    margin-top: 2rem;
}
.process-step { text-align: center; position: relative; }
.process-step .step-num {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.15rem;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 12px rgba(27,58,107,0.3);
}
.process-step h4 {
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--dark);
    font-size: 0.95rem;
}
.process-step p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process-steps { grid-template-columns: 1fr; } }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    opacity: 0.5;
    margin-top: 3rem;
    flex-wrap: wrap;
}
.trust-bar span {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 5rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}
.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 1.25rem;
    opacity: 0.85;
}
.footer-col p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
}
.footer-col h4 {
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.footer-col a {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    padding: 0.3rem 0;
    transition: var(--transition);
}
.footer-col a:hover { color: var(--accent); text-decoration: none; padding-left: 0.25rem; }
.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}
.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}

@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ALERTS
   ============================================================ */
.alert { padding: 0.9rem 0; font-size: 0.9rem; }
.alert-success { background: #ECFDF5; color: #065F46; border-bottom: 1px solid #A7F3D0; }
.alert-danger { background: #FEF2F2; color: #991B1B; border-bottom: 1px solid #FECACA; }
.alert-warning { background: #FFFBEB; color: #92400E; border-bottom: 1px solid #FDE68A; }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    color: var(--text);
}
.form-control {
    width: 100%;
    padding: 0.7rem 0;
    border: none;
    border-bottom: 1.5px solid var(--border);
    border-radius: 0;
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--text);
    background: transparent;
    transition: border-color 0.2s ease;
    outline: none;
}
.form-control:focus {
    border-color: var(--primary);
    box-shadow: none;
}
.form-control::placeholder { color: var(--text-muted); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; }

/* ============================================================
   CARDS (generic)
   ============================================================ */
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); border-color: var(--accent); }
.card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }
.card-price {
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}
.card-price .price-type {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 0.25rem;
}
.card-price .price-free {
    font-size: 1.2rem;
    color: var(--success);
    font-weight: 700;
}

/* ============================================================
   BADGES
   ============================================================ */
.badge { display: inline-flex; align-items: center; padding: 0.2rem 0.6rem; border-radius: 99px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.02em; }
.badge-success { background: #ECFDF5; color: #065F46; }
.badge-danger { background: #FEF2F2; color: #991B1B; }
.badge-warning { background: #FFFBEB; color: #92400E; }
.badge-info { background: #EFF6FF; color: #1E40AF; }

/* ============================================================
   FEATURE LINK
   ============================================================ */
.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 1rem;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}
.feature-link:hover { color: var(--accent-hover); gap: 0.4rem; text-decoration: none; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
}
.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: var(--accent);
}
.testimonial-stars {
    color: var(--warning);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}
.testimonial-text {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.7;
    font-style: italic;
    flex: 1;
    margin-bottom: 1.5rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.82rem;
    flex-shrink: 0;
}
.testimonial-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--dark);
}
.testimonial-role {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
    border-top: 1px solid var(--border);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.15rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    gap: 1rem;
    transition: var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-toggle {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: var(--transition);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-item.open .faq-toggle {
    transform: rotate(45deg);
    color: var(--accent);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(.4,0,.2,1), padding 0.35s cubic-bezier(.4,0,.2,1);
    padding: 0 0;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 0 1.25rem;
}
.faq-answer p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
}
.faq-answer a { font-weight: 600; color: var(--accent); }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.partner-item {
    padding: 1.15rem 2.25rem;
    border: 1px solid var(--border);
    border-radius: 99px;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-muted);
    background: var(--white);
    letter-spacing: 0.02em;
    transition: var(--transition);
}
.partner-item:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 480px;
    margin: 0 auto;
    border-radius: 99px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.12);
    transition: var(--transition);
}
.newsletter-form:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
}
.newsletter-form input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    border: none;
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form button {
    padding: 0.85rem 2rem;
    background: var(--accent);
    color: var(--white);
    border: none;
    font-weight: 700;
    font-size: 0.88rem;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.newsletter-form button:hover { background: #2563EB; }

/* ============================================================
   ADVICE BLOCK
   ============================================================ */
.advice-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.advice-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}
.advice-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.92rem;
}
.advice-content .why-points { margin-bottom: 1.5rem; }

.advice-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
.advice-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.advice-feature-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}
.advice-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.advice-feature-card h4 {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--dark);
    margin-bottom: 0.2rem;
}
.advice-feature-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .advice-block { grid-template-columns: 1fr; gap: 2rem; }
}
