@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&display=swap');

/* =========================================
   AandelenXpress – Stylesheet
   Reset & Base
   ========================================= */

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

:root {
    --brand: #1A3B70;
    --brand-dark: #0D2351;
    --brand-light: #E6EDF5;
    --accent: #2B6CB5;
    --dark: #0F1D3A;
    --grey-dark: #2E3A4E;
    --grey-mid: #5A6A7E;
    --grey-light: #9AAABB;
    --bg-light: #F3F5FA;
    --white: #ffffff;
    --border: #C6D2E0;
    --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: var(--font);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* =========================================
   NAVBAR
   ========================================= */

/* ── Navbar – floating pill ──────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 16px 0;
    transition: padding 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* The pill wrapper */
.navbar .container {
    /* nothing extra needed */
}

.nav-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    width: 100%;
    height: 60px;
    padding: 0 20px;
    background: rgba(15,29,58,0.55);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    transition:
        background 0.35s cubic-bezier(0.4,0,0.2,1),
        border-color 0.35s cubic-bezier(0.4,0,0.2,1),
        box-shadow 0.35s cubic-bezier(0.4,0,0.2,1),
        border-radius 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* Scrolled state — frosted glass pill */
.navbar.scrolled {
    padding: 8px 0;
}
.navbar.scrolled .nav-pill {
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border-color: rgba(255,255,255,0.55);
    box-shadow: 0 8px 32px rgba(15,29,58,0.12), 0 1px 0 rgba(255,255,255,0.7) inset;
    border-radius: 100px;
}
.navbar.scrolled .nav-menu a { color: var(--dark); }
.navbar.scrolled .nav-menu a:hover { color: var(--brand); }
.navbar.scrolled .nav-top-link { color: var(--dark); }
.navbar.scrolled .logo img { filter: none; }

/* Default (on dark hero) — nav links are white */
.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 36px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    transition: filter 0.35s;
}

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

.nav-menu a {
    font-size: 0.93rem;
    font-weight: 500;
    color: rgba(255,255,255,0.88);
    transition: color 0.2s;
    white-space: nowrap;
}
.nav-menu a:hover { color: #fff; }

.btn-nav {
    background: #fff !important;
    color: var(--dark) !important;
    padding: 9px 22px !important;
    border-radius: 5px !important;
    font-weight: 700 !important;
    font-size: 0.87rem !important;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s !important;
    white-space: nowrap !important;
    letter-spacing: 0.01em !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}
.btn-nav::before { content: '+'; font-weight: 600; }
.btn-nav:hover {
    background: var(--brand) !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18) !important;
}
.navbar.scrolled .btn-nav {
    background: var(--brand) !important;
    color: #fff !important;
}
.navbar.scrolled .btn-nav:hover {
    background: var(--brand-dark) !important;
}

/* Ghost "Inloggen" nav button */
.btn-nav-ghost {
    border: 1.5px solid rgba(255,255,255,0.5) !important;
    color: rgba(255,255,255,0.88) !important;
    padding: 8px 20px !important;
    border-radius: 5px !important;
    font-weight: 600 !important;
    font-size: 0.87rem !important;
    transition: border-color 0.2s, background 0.2s, color 0.2s !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: transparent !important;
}
.btn-nav-ghost:hover {
    border-color: #fff !important;
    background: rgba(255,255,255,0.1) !important;
    color: #fff !important;
}
.navbar.scrolled .btn-nav-ghost {
    border-color: var(--border) !important;
    color: var(--dark) !important;
}
.navbar.scrolled .btn-nav-ghost:hover {
    border-color: var(--brand) !important;
    color: var(--brand) !important;
    background: var(--brand-light) !important;
}

/* ── Hamburger button ───────────────────────────── */
.nav-hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.88);
    cursor: pointer;
    border-radius: 8px;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.12); }
.navbar.scrolled .nav-hamburger { color: var(--dark); }
.navbar.scrolled .nav-hamburger:hover { background: var(--bg-light); }

/* ── Side Drawer ─────────────────────────────────── */
.nav-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.nav-drawer-overlay.open {
    opacity: 1;
    pointer-events: all;
}
.nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: #fff;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -8px 0 48px rgba(15,29,58,0.15);
}
.nav-drawer.open {
    transform: translateX(0);
}
.nav-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
}
.nav-drawer-header .logo img {
    height: 28px;
    filter: none;
}
.nav-drawer-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--bg-light);
    color: var(--dark);
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}
.nav-drawer-close:hover {
    background: var(--border);
    color: var(--dark);
}
.nav-drawer-links {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
    flex: 1;
    overflow-y: auto;
}
.nav-drawer-links a {
    display: block;
    padding: 15px 20px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s, color 0.15s;
}
.nav-drawer-links a:last-child { border-bottom: none; }
.nav-drawer-links a:hover {
    background: var(--bg-light);
    color: var(--brand);
}
.nav-drawer-cta {
    padding: 20px;
    border-top: 1px solid var(--border);
}
.nav-drawer-cta .plat-btn-primary {
    display: block;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}
.nav-drawer-login {
    color: var(--brand) !important;
    font-weight: 700 !important;
}
.nav-drawer-login:hover {
    background: var(--brand-light) !important;
    color: var(--brand-dark) !important;
}

/* ── Mega Menu ──────────────────────────────────── */
.logo { text-decoration: none; }

.nav-top-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-top-link:hover { color: var(--brand); }

.nav-caret {
    flex-shrink: 0;
    transition: transform 0.2s;
    color: inherit;
}
.has-mega.mega-open .nav-caret { transform: rotate(180deg); }

.mega-panel {
    display: none;
    position: fixed;
    top: 92px;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 2px solid var(--brand);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    z-index: 998;
    padding: 36px 0;
    animation: megaFadeIn 0.18s ease;
}
.navbar.scrolled .mega-panel { top: 76px; }
.has-mega.mega-open .mega-panel { display: block; }

@keyframes megaFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.mega-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
}

.mega-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a9bbf;
    margin: 0 0 12px 0;
}

.mega-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--dark);
    transition: background 0.15s;
    margin-bottom: 4px;
}
.mega-item:hover { background: var(--brand-light); }

.mega-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 8px;
    background: var(--brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
}

.mega-item-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.mega-item-body strong {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}
.mega-item-body span {
    font-size: 0.8rem;
    color: #5d6b8a;
    line-height: 1.4;
}

.mega-feature-card {
    background: var(--bg-light);
    border-radius: 6px;
    padding: 24px;
    border: 1px solid #dde4f3;
}
.mega-feature-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 10px 0 8px;
}
.mega-feature-card p {
    font-size: 0.85rem;
    color: #5d6b8a;
    line-height: 1.5;
    margin-bottom: 16px;
}

.mega-feature-tag {
    display: inline-block;
    background: var(--brand-light);
    color: var(--brand);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 3px;
}

.mega-cta {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color 0.2s;
}
.mega-cta:hover { color: var(--brand-dark); }

/* ── Section eyebrow badge ─────────────────────── */
.section-eyebrow {
    display: inline-block;
    background: var(--brand-light);
    color: var(--brand);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 10px;
    margin-bottom: 14px;
}

/* ── Centered section intro block ──────────────── */
.section-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}
.section-intro h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 0;
    line-height: 1.2;
    margin: 10px 0 14px;
}
.section-intro p {
    font-size: 1rem;
    color: var(--grey-mid);
    line-height: 1.7;
}

/* ── Feature list (checkmark style, matches benefits-list) ── */
.feature-list {
    list-style: none;
    margin: 0 0 28px;
}
.feature-list li {
    position: relative;
    padding-left: 24px;
    color: var(--grey-dark);
    font-size: 0.95rem;
    margin-bottom: 10px;
    line-height: 1.55;
}
.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    background: var(--brand);
    border-radius: 50%;
}

/* ── bg-light utility (alternating section backgrounds) ── */
.content-section.bg-light { background: var(--bg-light); }

/* ── Step card (standalone styled step blocks) ─── */
.step-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 32px 28px;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.step-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.07);
    border-color: var(--brand);
    transform: translateY(-2px);
}
.step-number {
    width: 48px;
    height: 48px;
    background: var(--brand);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 20px;
}
.step-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
}
.step-card p {
    font-size: 0.9rem;
    color: var(--grey-mid);
    line-height: 1.65;
}

/* ── Pricing cards ────────────────────────────── */
.pricing-section {
    padding: 80px 0;
    background: var(--white);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}
.pricing-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
}
.pricing-card.featured {
    border-color: var(--brand);
    border-width: 2px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.pricing-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 10px;
    white-space: nowrap;
}
.pricing-name {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--brand);
    margin-bottom: 10px;
}
.pricing-price {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 4px;
}
.pricing-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--grey-mid);
}
.pricing-desc {
    font-size: 0.875rem;
    color: var(--grey-mid);
    margin: 12px 0 24px;
    flex: 1;
    line-height: 1.6;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}
.pricing-features li {
    font-size: 0.875rem;
    color: var(--dark);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}
.pricing-features li::before {
    content: "✓";
    color: var(--brand);
    font-weight: 700;
    flex-shrink: 0;
}
.pricing-card .btn-primary {
    display: block;
    text-align: center;
    margin-top: auto;
}

/* ── Includes grid ────────────────────────────── */
.includes-section {
    padding: 80px 0;
    background: var(--bg-light);
}
.includes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
}
.includes-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 22px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: box-shadow 0.2s;
}
.includes-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.05); }
.includes-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 6px;
    background: var(--brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    flex-shrink: 0;
}
.includes-item h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}
.includes-item p {
    font-size: 0.82rem;
    color: var(--grey-mid);
    line-height: 1.5;
}

/* ── FAQ accordion ────────────────────────────── */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}
.faq-list { margin-top: 40px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--font);
}
.faq-icon {
    font-size: 1.4rem;
    color: var(--brand);
    flex-shrink: 0;
    transition: transform 0.2s;
    line-height: 1;
}
.faq-answer {
    display: none;
    font-size: 0.92rem;
    color: var(--grey-mid);
    line-height: 1.7;
    padding-bottom: 22px;
    max-width: 720px;
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── Contact page ─────────────────────────────── */
.contact-section { padding: 80px 0; background: var(--white); }
.contact-info-block > div > h2 { margin: 8px 0 0; }
.contact-info-block > div > p { color: var(--grey-mid); margin-top: 8px; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    margin-top: 56px;
    align-items: start;
}
.contact-info-block { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 18px; }
.contact-item-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 6px;
    background: var(--brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
}
.contact-item-body h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
}
.contact-item-body p { font-size: 0.875rem; color: var(--grey-mid); }
.contact-item-body a { color: var(--brand); font-weight: 600; }
.contact-item-body a:hover { text-decoration: underline; }
.contact-hours {
    background: var(--bg-light);
    border-radius: 6px;
    padding: 20px 24px;
    border: 1px solid var(--border);
}
.contact-hours h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}
.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--grey-mid);
    padding: 5px 0;
    border-bottom: 1px solid var(--border);
}
.hours-row:last-child { border-bottom: none; }
.hours-row strong { color: var(--dark); }
.demo-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 40px 36px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.05);
}
.demo-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}
.demo-card > p {
    font-size: 0.875rem;
    color: var(--grey-mid);
    margin-bottom: 28px;
    line-height: 1.6;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 0; }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--dark);
    background: var(--white);
    font-family: var(--font);
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; font-size: 1rem; padding: 14px; }

.form-consent {
    margin-top: 4px;
    margin-bottom: 18px;
}

.form-consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #2D3748;
    line-height: 1.45;
    margin-bottom: 0;
}

.form-consent-label input[type="checkbox"] {
    width: auto;
    min-width: 18px;
    height: 18px;
    margin: 2px 0 0;
    padding: 0;
    border: 1.5px solid var(--border);
    border-radius: 4px;
    flex-shrink: 0;
    appearance: auto;
    box-shadow: none;
}

.form-consent-label span a {
    color: var(--brand);
    text-decoration: underline;
}

/* ── Responsive: subpage specific ── */
@media (max-width: 900px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .includes-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }

    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 28px;
    }

    .testimonials-header-left h2 {
        font-size: 2rem;
    }

    .testimonials-header-right {
        width: 100%;
        padding-bottom: 0;
    }

    .reviews-pill {
        width: 100%;
        white-space: normal;
        flex-wrap: wrap;
    }
}

/* ── Subpage hero ───────────────────────────────── */
.page-hero {
    background: var(--dark);
    padding: 140px 0 80px;
    color: #fff;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(26,59,112,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.page-hero .eyebrow {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.85);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 10px;
    margin-bottom: 18px;
}
.page-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.page-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26,59,112,0.18);
    border: 1px solid rgba(43,108,181,0.35);
    border-radius: 3px;
    padding: 6px 18px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8AAED8;
}
.page-hero h1 em {
    font-style: normal;
    color: #A8C5E0;
}
.page-hero-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 6px;
}
.page-hero h1 {
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.15;
    max-width: 680px;
    margin: 0 auto 18px;
}
.page-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    line-height: 1.65;
    margin: 0 auto;
}

/* =========================================
   HERO
   ========================================= */

.hero {
    position: relative;
    overflow: hidden;
    background: #111;
}

.hero-video {
    position: relative;
}

.hero-video img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    filter: brightness(0.55);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.hero-text {
    padding: 0 48px;
    max-width: 640px;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 10px;
.page-hero::after {
    content: '';
    position: absolute;
    right: -40px;
    bottom: -24px;
    width: 420px;
    height: 300px;
    background: url('assets/portal-dashboard.svg') center/contain no-repeat;
    opacity: 0.22;
    pointer-events: none;
}
    margin-bottom: 20px;
}

.artikel-hero::after {
    content: '';
    position: absolute;
    right: -20px;
    bottom: -36px;
    width: 450px;
    height: 330px;
    background: url('assets/hero-dashboard.svg') center/contain no-repeat;
    opacity: 0.18;
    pointer-events: none;
}
.hero-text p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.82);
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.7;
}

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

.btn-ghost {
    display: inline-block;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
    padding: 11px 28px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
}

.btn-primary {
    display: inline-block;
    background: var(--brand);
    color: var(--white);
    padding: 13px 30px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
    background: var(--brand-dark);
    transform: translateY(-1px);
}

/* =========================================
   CONTENT SECTIONS  (alternating rows)
   ========================================= */

.content-section {
    padding: 80px 0;
    background: var(--white);
}

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

.content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.content-row.reverse {
    direction: rtl;
}

.content-row.reverse > * {
    direction: ltr;
}

.content-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.badge {
    display: inline-block;
    background: var(--brand-light);
    color: var(--brand-dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.content-text h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.content-text > p {
    font-size: 1rem;
    color: var(--grey-mid);
    line-height: 1.75;
    margin-bottom: 24px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 28px;
}

.benefits-list li {
    position: relative;
    padding-left: 24px;
    color: var(--grey-dark);
    font-size: 0.95rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

.benefits-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    background: var(--brand);
    border-radius: 50%;
}

.btn-secondary {
    display: inline-block;
    border: 2px solid var(--brand);
    color: var(--brand);
    background: transparent;
    padding: 11px 26px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: var(--brand);
    color: var(--white);
}

/* =========================================
   THREE COLUMN FEATURE SECTION
   ========================================= */

.features-three {
    padding: 80px 0;
    background: var(--white);
}

.features-three h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 48px;
    letter-spacing: -0.5px;
}

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

.feature-box {
    background: var(--bg-light);
    border-radius: 6px;
    padding: 36px 28px;
}

.feature-number {
    width: 36px;
    height: 36px;
    background: var(--brand);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Process steps */
/* ===== OPR PROCESS SECTION ===== */
.opr-process {
    padding: 96px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.opr-process::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(26,59,112,0.01) 0%, transparent 70%);
    pointer-events: none;
}

.opr-process-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.opr-process-tag {
    display: inline-block;
    background: rgba(26,59,112,0.08);
    border: 1px solid rgba(26,59,112,0.18);
    color: var(--brand);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 10px;
    margin-bottom: 18px;
}

.opr-process-head h2 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.01em;
    margin-bottom: 14px;
    line-height: 1.1;
}

.opr-process-head h2 em {
    font-style: normal;
    color: var(--brand);
}

.opr-process-head p {
    color: var(--text-muted, #6B7A99);
    font-size: 1rem;
    line-height: 1.65;
}

.opr-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.opr-process-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, rgba(26,59,112,0.2), rgba(43,108,181,0.5), rgba(26,59,112,0.2));
    z-index: 0;
}

.opr-process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.opr-process-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--brand);
    border: 2px solid rgba(43,108,181,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 6px var(--bg-light), 0 4px 20px rgba(0,0,0,0.15);
}

.opr-process-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px 22px;
    width: 100%;
    transition: border-color 0.25s, box-shadow 0.25s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.opr-process-card:hover {
    border-color: rgba(26,59,112,0.3);
    box-shadow: 0 6px 24px rgba(0,0,0,0.07);
}

.opr-process-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--brand-light);
    border: 1px solid rgba(26,59,112,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    margin-bottom: 16px;
}

.opr-process-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.opr-process-card p {
    font-size: 0.875rem;
    color: #6B7A99;
    line-height: 1.65;
}

@media (max-width: 900px) {
    .opr-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .opr-process-grid::before { display: none; }
}

@media (max-width: 540px) {
    .opr-process-grid {
        grid-template-columns: 1fr;
    }
}

/* Partners bar */
.partners-bar {
    padding: 32px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.partners-bar p {
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--grey-light);
    margin-bottom: 20px;
}

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

.partner-placeholder {
    height: 28px;
    width: 100px;
    background: var(--border);
    border-radius: 4px;
    opacity: 0.6;
}

/* Stats bar */
.stats-bar {
    background: var(--brand-dark);
    padding: 48px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 6px;
}

.stat-item p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.feature-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-box p {
    font-size: 0.93rem;
    color: var(--grey-mid);
    line-height: 1.7;
}

/* =========================================
   TESTIMONIALS
   ========================================= */

/* =========================================
    TESTIMONIALS – KIYOH WIDGET
    ========================================= */

.testimonials-section {
    padding: 72px 0 0;
    background: var(--white);
    overflow: hidden;
}

/* Header row */
.testimonials-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 48px;
    padding: 0 24px;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand);
    margin-bottom: 14px;
}

.eyebrow-dot {
    width: 10px;
    height: 10px;
    background: var(--brand);
    border-radius: 50%;
    flex-shrink: 0;
}

.testimonials-header-left h2 {
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.15;
    letter-spacing: -1px;
    margin: 0;
}

.testimonials-header-right {
    flex-shrink: 0;
    padding-bottom: 6px;
}

.reviews-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid var(--border);
    border-radius: 4px;
    padding: 10px 18px;
    font-size: 0.88rem;
    white-space: nowrap;
    background: var(--white);
}

.reviews-text {
    color: var(--grey-dark);
    font-weight: 500;
}

.reviews-stars {
    color: #F4B942;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.reviews-score {
    background: var(--brand);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 4px 12px;
    border-radius: 10px;
}

.kiyoh-section {
    padding-bottom: 88px;
}

.kiyoh-pill {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.kiyoh-widget {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 20px;
    align-items: center;
}

.kiyoh-summary {
    min-height: 286px;
    padding: 18px 14px 16px;
    border-radius: 2px;
    background: #fff;
    box-shadow: none;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
}

.kiyoh-summary-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.kiyoh-rating-ring {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at center, #ffffff 0 49%, transparent 50%),
        conic-gradient(from 148deg, #ff5a2f 0deg 24deg, #ff8f1f 24deg 48deg, #ffe21b 48deg 120deg, #cfe50f 120deg 210deg, #78c92e 210deg 272deg, #ffdb17 272deg 360deg);
}

.kiyoh-rating-value {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #111;
}

.kiyoh-summary-stars {
    color: #f6b21b;
    font-size: 1.25rem;
    letter-spacing: 2px;
    line-height: 1;
}

.kiyoh-summary p {
    margin: 0;
    color: #333;
    line-height: 1.25;
    font-size: 0.98rem;
}

.kiyoh-brand-row {
    margin-top: 4px;
}

.kiyoh-brand-word {
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #111;
    text-transform: lowercase;
}

.kiyoh-carousel-wrap {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    gap: 16px;
    align-items: center;
}

.kiyoh-review-list {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 2px 0 10px;
}

.kiyoh-review-list::-webkit-scrollbar {
    display: none;
}

.kiyoh-review-card {
    min-height: 128px;
    flex: 0 0 calc((100% - 36px) / 3);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    padding: 10px 12px 8px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #222;
    scroll-snap-align: start;
}

.kiyoh-review-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.kiyoh-review-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #222;
}

.kiyoh-review-stars {
    color: #f6b21b;
    font-size: 0.95rem;
    letter-spacing: 1px;
    line-height: 1;
    white-space: nowrap;
}

.kiyoh-review-card p {
    margin: 0;
    color: #222;
    line-height: 1.35;
    font-size: 0.96rem;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.kiyoh-review-date {
    margin-top: auto;
    text-align: right;
    color: #333;
    font-size: 0.74rem;
    font-style: italic;
    font-weight: 600;
}

.kiyoh-arrow {
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    color: #7ac90f;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.kiyoh-arrow:disabled {
    opacity: 0.25;
    cursor: default;
}

/* =========================================
   CTA SECTION
   ========================================= */

.cta-section {
    padding: 80px 0;
    background: var(--brand);
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.88;
    margin-bottom: 32px;
}

.btn-large {
    background: var(--white);
    color: var(--brand);
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
}

.btn-large:hover {
    opacity: 0.92;
    transform: translateY(-2px);
}

/* =========================================
   FOOTER
   ========================================= */

.footer {
    background: var(--white);
    color: var(--dark);
    padding: 60px 0 28px;
    border-top: 1px solid var(--border);
}

.footer img {
    filter: none !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}
.footer-brand p {
    font-size: 0.875rem;
    color: var(--grey-mid);
    line-height: 1.6;
    margin: 0;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 16px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.9rem;
    color: var(--grey-mid);
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--brand);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--grey-mid);
}

.footer-info p {
    font-size: 0.82rem;
    color: var(--grey-mid);
}

/* =========================================
   RESPONSIVE
   ========================================= */

/* ── Nav: tighten spacing at medium widths ──────── */
@media (max-width: 1200px) {
    .nav-pill   { gap: 16px; padding: 0 16px; }
    .nav-content { gap: 20px; }
    .nav-menu   { gap: 16px; }
    .nav-menu a { font-size: 0.85rem; }
    .btn-nav-ghost { padding: 7px 14px !important; font-size: 0.82rem !important; }
}

@media (max-width: 1024px) {
    .kiyoh-widget {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .kiyoh-carousel-wrap {
        grid-template-columns: 1fr;
    }

    .kiyoh-arrow {
        display: none;
    }

    .kiyoh-review-list {
        gap: 14px;
    }

    .kiyoh-review-card {
        flex-basis: 100%;
    }

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

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

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

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

/* ── Tablet kiyoh overrides (600–1024px) ──────────────────────────── */
@media (min-width: 600px) and (max-width: 1024px) {
    /* Smaller heading so pill fits next to it */
    .testimonials-header-left h2 {
        font-size: 1.85rem;
        letter-spacing: -0.5px;
    }

    /* Vertically center pill next to the shorter heading */
    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    /* Allow pill to wrap at this width */
    .reviews-pill {
        white-space: normal;
        flex-wrap: wrap;
        width: auto;
    }

    /* Summary as compact horizontal bar instead of tall vertical block */
    .kiyoh-summary {
        flex-direction: row;
        min-height: auto;
        padding: 20px 28px;
        justify-content: flex-start;
        text-align: left;
        gap: 28px;
        align-items: center;
    }

    .kiyoh-summary-top {
        flex-shrink: 0;
        width: auto;
    }

    .kiyoh-rating-ring {
        width: 72px;
        height: 72px;
    }

    .kiyoh-rating-value {
        font-size: 1.45rem;
    }

    .kiyoh-brand-row {
        display: none; /* hide "kiyoh" text to keep bar compact */
    }

    /* Show 2 cards per row on tablet */
    .kiyoh-review-card {
        flex: 0 0 calc((100% - 14px) / 2);
    }

    /* Show arrows on tablet */
    .kiyoh-carousel-wrap {
        grid-template-columns: 36px 1fr 36px;
    }

    .kiyoh-arrow {
        display: block;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .nav-hamburger {
        display: flex;
    }
    .nav-content {
        width: 100%;
        gap: 0;
    }
    .nav-content .logo {
        flex: 1;
    }

    /* On mobile: drop the floating pill, use full-width glass bar */
    .navbar {
        padding: 0;
    }
    .navbar .container {
        padding: 0;
        max-width: 100%;
    }
    .nav-pill {
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: none;
        border-bottom: 1px solid rgba(255,255,255,0.12);
        padding: 0 20px;
        height: 64px;
    }
    .navbar.scrolled {
        padding: 0;
    }
    .navbar.scrolled .nav-pill {
        border-radius: 0;
        border-bottom-color: rgba(15,29,58,0.08);
    }

    .hero-video img {
        height: 380px;
    }

    .hero-text {
        padding: 0 24px;
    }

    .hero-text h1 {
        font-size: 1.9rem;
    }

    .content-row,
    .content-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 32px;
    }

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

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

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

    .pricing-card {
        padding: 28px 20px;
    }

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

@media (max-width: 480px) {
    .testimonials-header {
        padding: 0 18px;
    }

    .kiyoh-widget {
        padding: 0 18px;
    }

    .kiyoh-summary,
    .kiyoh-review-card {
        padding: 20px;
    }

    .testimonials-header-left h2 {
        font-size: 2rem;
    }

    .kiyoh-widget {
        padding: 0 18px;
    }

    .kiyoh-review-card {
        flex-basis: 82vw;
    }

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

    .hero-text h1 {
        font-size: 1.6rem;
    }
}

/* ── Trust ticker ─────────────────────────────── */
.trust-ticker {
    background: var(--brand);
    overflow: hidden;
    padding: 14px 0;
    border-top: none;
}
.ticker-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: ticker-scroll 32s linear infinite;
}
.trust-ticker:hover .ticker-track {
    animation-play-state: paused;
}
@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.92);
    letter-spacing: 0.02em;
    padding: 0 40px;
}
.ticker-item::before {
    content: "✓";
    color: #ffffff;
    font-weight: 600;
    font-size: 0.75rem;
}
.ticker-sep {
    color: rgba(255,255,255,0.35);
    padding: 0 4px;
    user-select: none;
}

/* ── Blog section ─────────────────────────────── */
.blog-section {
    padding: 88px 0;
    background: var(--white);
}
.blog-intro {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 56px;
}
.blog-eyebrow {
    display: inline-block;
    background: var(--brand-light);
    color: var(--brand);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 3px;
    margin-bottom: 16px;
}
.blog-intro h2 {
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 12px;
}
.blog-accent { color: var(--brand); }
.blog-intro p {
    font-size: 1rem;
    color: var(--grey-mid);
    line-height: 1.65;
}
.blog-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: start;
}
/* Featured card */
.blog-featured {
    border-radius: 10px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(15, 29, 58, 0.28) 0%, rgba(15, 29, 58, 0.78) 100%),
        var(--blog-featured-image, url('/assets/blog-featured.jpg')) center/cover no-repeat,
        #0F1D3A;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 28px;
}
.blog-featured::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.66) 0%, rgba(0,0,0,0.08) 62%, transparent 100%);
    pointer-events: none;
    border-radius: 10px;
}
.blog-featured-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: 444px;
}
.blog-featured-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: auto;
}
.blog-featured-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.blog-tag {
    background: rgba(255,255,255,0.18);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(4px);
}
.blog-featured-arrow {
    color: rgba(255,255,255,0.65);
    font-size: 1.3rem;
    text-decoration: none;
    line-height: 1;
    transition: color 0.2s, transform 0.2s;
}
.blog-featured-arrow:hover { color: #fff; transform: translate(2px, -2px); }
.blog-featured-body { margin-top: auto; padding-top: 24px; }
.blog-featured-body h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.28;
    margin-bottom: 10px;
}
.blog-featured-body > p {
    font-size: 0.875rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.18);
}
.blog-featured-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.2);
}
.blog-author-avatar {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-featured-author > div strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
}
.blog-featured-author > div span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.88);
}
.blog-readmore {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand);
    text-decoration: none;
    transition: opacity 0.2s;
}
.blog-readmore:hover { opacity: 0.75; }
.blog-featured-author .blog-readmore {
    margin-left: auto;
    color: rgba(255,255,255,0.85);
}
.blog-featured-author .blog-readmore:hover { color: #fff; opacity: 1; }
/* Side articles */
.blog-side { display: flex; flex-direction: column; padding-top: 8px; }
.blog-side-item { padding: 24px 0; }
.blog-side-item:first-child { padding-top: 0; }
.blog-side-thumb {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid var(--border);
}
.blog-side-category {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}
.blog-side-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 8px;
}
.blog-side-item p {
    font-size: 0.875rem;
    color: var(--grey-mid);
    line-height: 1.6;
    margin-bottom: 14px;
}
.blog-divider {
    border: none;
    border-top: 1.5px solid var(--border);
    margin: 0;
}
.blog-side-footer { padding-top: 28px; }
.blog-side-footer .btn-primary { display: inline-block; }

@media (max-width: 900px) {
    .blog-layout { grid-template-columns: 1fr; }
    .blog-featured { min-height: 340px; }
}

/* ══════════════════════════════════════════
   Platform page
   ══════════════════════════════════════════ */

/* Hero */
.plat-hero {
    background: var(--dark);
    padding: 130px 0 0;
    overflow: hidden;
    position: relative;
}
.plat-hero::before {
    content: '';
    position: absolute;
    top: -160px;
    right: -120px;
    width: 640px;
    height: 640px;
    background: radial-gradient(circle, rgba(26,59,112,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.plat-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.plat-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26,59,112,0.25);
    border: 1px solid rgba(26,59,112,0.45);
    color: #8AAED8;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 5px 14px;
    border-radius: 3px;
    margin-bottom: 20px;
}
.plat-hero-eyebrow span {
    width: 6px; height: 6px;
    background: #8AAED8;
    border-radius: 50%;
    display: inline-block;
}
.plat-hero-text h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: 0;
}
.plat-hero-text h1 em {
    font-style: normal;
    color: #A8C5E0;
}
.plat-hero-text p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.62);
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 440px;
}
.plat-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.plat-btn-primary {
    background: var(--brand);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
}
.plat-btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); }
.plat-btn-ghost {
    color: rgba(255,255,255,0.8);
    font-size: 0.92rem;
    font-weight: 600;
    padding: 13px 24px;
    border-radius: 10px;
    border: 1.5px solid rgba(255,255,255,0.18);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
    display: inline-block;
}
.plat-btn-ghost:hover { border-color: rgba(255,255,255,0.45); color: #fff; }
.plat-hero-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
}
.plat-trust-dots { display: flex; gap: 4px; }
.plat-trust-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #1A3B70;
}
.plat-trust-dot:nth-child(2) { background: #2B6CB5; }
.plat-trust-dot:nth-child(3) { background: #8AAED8; }

/* Mockup */
.plat-mockup-wrap {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding-top: 24px;
}
.plat-mockup {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px 16px 0 0;
    overflow: hidden;
    width: 100%;
    max-width: 560px;
    box-shadow: 0 -24px 80px rgba(0,0,0,0.15);
}
.plat-mockup-bar {
    background: rgba(255,255,255,0.08);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.plat-mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.plat-mockup-dot:nth-child(1) { background: rgba(255,100,100,0.6); }
.plat-mockup-dot:nth-child(2) { background: rgba(255,200,0,0.6); }
.plat-mockup-dot:nth-child(3) { background: rgba(80,200,120,0.6); }
.plat-mockup-url {
    flex: 1;
    background: rgba(255,255,255,0.07);
    border-radius: 6px;
    height: 22px;
    margin: 0 12px;
    display: flex;
    align-items: center;
    padding: 0 10px;
}
.plat-mockup-url span {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.35);
}
.plat-mockup-screen {
    height: 320px;
    background: #0F1D3A;
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.plat-screen-row {
    display: flex;
    gap: 10px;
}
.plat-screen-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 10px;
    padding: 14px;
    flex: 1;
}
.plat-screen-card-label {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}
.plat-screen-card-val {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
}
.plat-screen-card-sub {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.4);
    margin-top: 2px;
}
.plat-screen-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.62rem;
    font-weight: 600;
    color: #6EE0A0;
    margin-top: 4px;
}
.plat-screen-badge::before {
    content: '▲';
    font-size: 0.5rem;
}
.plat-screen-list { display: flex; flex-direction: column; gap: 7px; margin-top: 4px; }
.plat-screen-list-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.6);
}
.plat-screen-list-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}
.plat-screen-list-dot.green { background: #6EE0A0; }
.plat-screen-list-dot.blue  { background: #2B6CB5; }
.plat-screen-list-dot.amber { background: #FBBF24; }
.plat-screen-bar {
    height: 5px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 8px;
}
.plat-screen-bar-fill {
    height: 100%;
    border-radius: 4px;
    background: var(--brand);
}

/* Integration strip */
.plat-integrations {
    background: #f9fafb;
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
}
.plat-integrations-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.plat-int-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--grey-mid);
    white-space: nowrap;
    letter-spacing: 0.02em;
}
.plat-int-logos {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.plat-int-logo {
    font-size: 0.8rem;
    font-weight: 700;
    color: #b0b8c8;
    letter-spacing: -0.01em;
    white-space: nowrap;
    text-transform: uppercase;
}

/* Feature grid */
.plat-features {
    padding: 88px 0;
    background: var(--white);
}
.plat-features-intro {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 56px;
}
.plat-features-intro h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 12px;
}
.plat-features-intro p {
    font-size: 1rem;
    color: var(--grey-mid);
    line-height: 1.65;
}
.plat-feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.plat-feat-card {
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 28px 24px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.plat-feat-card:hover {
    border-color: var(--brand);
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}
.plat-feat-icon {
    width: 44px;
    height: 44px;
    background: var(--brand-light);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    margin-bottom: 16px;
}
.plat-feat-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.3;
}
.plat-feat-card p {
    font-size: 0.865rem;
    color: var(--grey-mid);
    line-height: 1.6;
}

/* Dark showcase section */
.plat-dark {
    background: var(--dark);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}
.plat-dark::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26,59,112,0.04) 0%, transparent 70%);
    pointer-events: none;
}
.plat-dark-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.plat-dark-tag {
    display: inline-block;
    background: rgba(26,59,112,0.3);
    border: 1px solid rgba(26,59,112,0.5);
    color: #8AAED8;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.plat-dark-text h2 {
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.plat-dark-text h2 em {
    font-style: normal;
    color: #2B6CB5;
}
.plat-dark-text > p {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 32px;
}
.plat-dark-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}
.plat-dark-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
}
.plat-dark-list li::before {
    content: '';
    width: 18px;
    height: 18px;
    min-width: 18px;
    background: rgba(26,59,112,0.4);
    border: 1px solid rgba(43,108,181,0.5);
    border-radius: 50%;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%234A9EE8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}
.plat-dark-quote {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-left: 3px solid var(--brand);
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin-top: 8px;
}
.plat-dark-quote blockquote {
    font-size: 0.95rem;
    font-style: italic;
    color: rgba(255,255,255,0.8);
    line-height: 1.65;
    margin-bottom: 12px;
}
.plat-dark-quote cite {
    font-size: 0.8rem;
    font-style: normal;
    color: rgba(255,255,255,0.45);
    display: flex;
    align-items: center;
    gap: 8px;
}
.plat-dark-quote cite::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: rgba(255,255,255,0.25);
}
.plat-dark-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.plat-dark-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 20px 22px;
}
.plat-dark-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.plat-dark-card-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.plat-dark-card-badge {
    font-size: 0.7rem;
    font-weight: 700;
    color: #6EE0A0;
    background: rgba(110,224,160,0.12);
    padding: 3px 10px;
    border-radius: 10px;
}
.plat-dark-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.plat-dark-step {
    display: flex;
    align-items: center;
    gap: 12px;
}
.plat-dark-step-num {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    background: rgba(26,59,112,0.35);
    border: 1px solid rgba(43,108,181,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    font-weight: 600;
    color: #8AAED8;
}
.plat-dark-step-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    flex: 1;
}
.plat-dark-step-check {
    font-size: 0.75rem;
    color: #6EE0A0;
}

/* Stats strip */
.plat-stats {
    background: var(--brand);
    padding: 52px 0;
}
.plat-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.plat-stat {
    text-align: center;
    padding: 0 24px;
    border-right: 1px solid rgba(255,255,255,0.18);
}
.plat-stat:last-child { border-right: none; }
.plat-stat-val {
    font-size: 2.8rem;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 6px;
}
.plat-stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
}

/* Showcase tabs */
.plat-showcase {
    padding: 96px 0;
    background: var(--bg-light);
}
.plat-showcase-intro {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 48px;
}
.plat-showcase-intro h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 12px;
}
.plat-showcase-intro p {
    font-size: 1rem;
    color: var(--grey-mid);
    line-height: 1.65;
}
.plat-showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.plat-tab {
    padding: 8px 20px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--grey-mid);
    cursor: pointer;
    transition: all 0.2s;
}
.plat-tab:hover,
.plat-tab.active {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}
.plat-showcase-panels { position: relative; }
.plat-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.plat-panel.active { display: grid; }
.plat-panel-text h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 14px;
    line-height: 1.25;
}
.plat-panel-text p {
    font-size: 0.95rem;
    color: var(--grey-mid);
    line-height: 1.7;
    margin-bottom: 24px;
}
.plat-panel-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}
.plat-panel-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--dark);
    line-height: 1.5;
}
.plat-panel-list li::before {
    content: '';
    width: 18px;
    height: 18px;
    min-width: 18px;
    background: var(--brand-light);
    border-radius: 50%;
    margin-top: 1px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%231B45CC' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}
.plat-panel-visual {
    border-radius: 8px;
    overflow: hidden;
    border: 1.5px solid var(--border);
    box-shadow: 0 16px 56px rgba(0,0,0,0.06);
}
.plat-panel-visual img { width: 100%; display: block; }

/* Testimonial band */
.plat-quote-band {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 64px 0;
}
.plat-quote-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr 1fr;
    gap: 32px;
    align-items: center;
}
.plat-quote-stat { text-align: center; }
.plat-quote-stat-val {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--brand);
    letter-spacing: -0.03em;
    margin-bottom: 4px;
}
.plat-quote-stat-label {
    font-size: 0.82rem;
    color: var(--grey-mid);
}
.plat-quote-center { text-align: center; }
.plat-quote-center blockquote {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}
.plat-quote-center blockquote::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--brand-light);
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    font-style: normal;
}
.plat-quote-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.plat-quote-author strong { font-size: 0.9rem; color: var(--dark); }
.plat-quote-author span  { font-size: 0.8rem; color: var(--grey-mid); }
.plat-quote-stars { color: #F59E0B; font-size: 0.9rem; margin-bottom: 6px; }

@media (max-width: 900px) {
    .plat-hero-inner,
    .plat-dark-inner,
    .plat-panel.active { grid-template-columns: 1fr; }
    .plat-mockup-wrap { justify-content: center; }
    .plat-stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .plat-stat { border-right: none; }
    .plat-feat-grid { grid-template-columns: 1fr; }
    .plat-quote-inner { grid-template-columns: 1fr; text-align: center; }
    .plat-showcase-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
}


/* ============================================================
   HOMEPAGE – SAAS REDESIGN (.home-*)
   ============================================================ */

/* ----- HERO ----- */
.home-hero {
    background: var(--dark);
    position: relative;
    overflow: hidden;
    padding: 120px 0 0;
    text-align: center;
}
.home-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 700px;
    background: radial-gradient(ellipse at center, rgba(26,59,112,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.home-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    max-width: 780px;
    margin: 0 auto;
}
.home-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26,59,112,0.15);
    border: 1px solid rgba(43,108,181,0.35);
    border-radius: 3px;
    padding: 6px 18px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8AAED8;
}
.home-hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.18;
    letter-spacing: 0;
    margin: 0;
}
.home-hero h1 em {
    font-style: normal;
    color: #A8C5E0;
}
.home-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
    max-width: 540px;
}
.home-hero-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.home-hero-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}
.home-hero-avatars { display: flex; }
.home-hero-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--brand);
    border: 2px solid var(--dark);
    margin-right: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    font-weight: 700;
    color: #fff;
}
.home-hero-avatar:nth-child(2) { background: #2B6CB5; }
.home-hero-avatar:nth-child(3) { background: #8AAED8; margin-right: 0; }
.home-hero-mockup {
    width: 100%;
    max-width: 960px;
    margin: 12px auto 0;
}
.home-hero-mockup-frame {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px 16px 0 0;
    padding: 14px 14px 0;
    overflow: hidden;
}
.home-hero-mockup-bar { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.home-hero-mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.home-hero-mockup-dot:nth-child(1) { background: rgba(255,100,100,0.5); }
.home-hero-mockup-dot:nth-child(2) { background: rgba(255,200,0,0.5); }
.home-hero-mockup-dot:nth-child(3) { background: rgba(80,200,120,0.5); }
.home-hero-screen {
    background: #111827;
    border-radius: 10px 10px 0 0;
    padding: 24px;
    min-height: 260px;
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    gap: 16px;
}
.home-screen-sidebar {
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.home-screen-sidebar-logo { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.08em; color: #8AAED8; margin-bottom: 8px; text-transform: uppercase; }
.home-screen-nav-item { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.07); }
.home-screen-nav-item.active { background: rgba(26,59,112,0.5); width: 70%; }
.home-screen-main { display: flex; flex-direction: column; gap: 12px; }
.home-screen-title { height: 12px; border-radius: 4px; background: rgba(255,255,255,0.14); width: 58%; }
.home-screen-card-sm {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.home-screen-card-sm-label { font-size: 0.55rem; color: rgba(255,255,255,0.38); text-transform: uppercase; letter-spacing: 0.08em; }
.home-screen-card-sm-val { font-size: 1.15rem; font-weight: 600; color: #fff; }
.home-screen-card-sm-bar { height: 4px; border-radius: 2px; background: rgba(255,255,255,0.08); overflow: hidden; margin-top: 4px; }
.home-screen-card-sm-bar-fill { height: 100%; border-radius: 2px; background: var(--brand); }
.home-screen-list { display: flex; flex-direction: column; gap: 10px; }
.home-screen-list-row { display: flex; align-items: center; gap: 8px; }
.home-screen-list-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.home-screen-list-dot.blue   { background: #2B6CB5; }
.home-screen-list-dot.green  { background: #34D399; }
.home-screen-list-dot.yellow { background: #FBBF24; }
.home-screen-list-line { height: 7px; border-radius: 4px; background: rgba(255,255,255,0.10); flex: 1; }
.home-screen-list-badge { font-size: 0.5rem; padding: 2px 7px; border-radius: 10px; font-weight: 600; white-space: nowrap; }
.home-screen-list-badge.green  { background: rgba(52,211,153,0.15); color: #34D399; }
.home-screen-list-badge.blue   { background: rgba(43,108,181,0.15); color: #2B6CB5; }
.home-screen-list-badge.gray   { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.35); }

/* ----- LOGOS STRIP ----- */
.home-logos { background: var(--white); padding: 26px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.home-logos-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.home-logos-label { font-size: 0.75rem; font-weight: 500; color: var(--grey-mid); white-space: nowrap; flex-shrink: 0; }
.home-logos-divider { width: 1px; height: 20px; background: var(--border); flex-shrink: 0; }
.home-logos-row { display: flex; align-items: center; gap: 0; flex-wrap: wrap; flex: 1; }
.home-logo-item {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #9AAABB;
    padding: 6px 20px;
    border-right: 1px solid var(--border);
    white-space: nowrap;
    transition: color 0.2s;
}
.home-logo-item:last-child { border-right: none; }
.home-logo-item:first-child { padding-left: 0; }

/* ----- FEATURES CAPSULES ----- */
.home-features-section { background: #fff; padding: 80px 0; }
.home-features-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
    margin-bottom: 52px;
}
.home-features-top h2 {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
    letter-spacing: -0.025em;
}
.home-features-top h2 em { font-style: normal; color: var(--brand); }
.home-features-top p { font-size: 0.95rem; color: var(--grey-mid); line-height: 1.7; padding-top: 6px; }
.home-feature-caps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.home-feature-cap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 14px;
    background: var(--bg-light);
    border-radius: 14px;
    border: 1px solid var(--border);
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.home-feature-cap:hover { border-color: var(--brand); box-shadow: 0 4px 24px rgba(0,0,0,0.06); transform: translateY(-2px); }
.home-feature-cap-icon {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
}
.home-feature-cap span { font-size: 0.8rem; font-weight: 600; color: var(--dark); }

/* ----- BENTO CARDS ----- */
.home-bento { background: var(--bg-light); padding: 80px 0; }
.home-bento-intro { text-align: center; margin-bottom: 48px; }
.home-bento-intro h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 600;
    color: var(--dark);
    letter-spacing: -0.025em;
    margin-bottom: 12px;
}
.home-bento-intro p { font-size: 0.95rem; color: var(--grey-mid); max-width: 500px; margin: 0 auto; }
.home-bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.home-bento-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0,0,0,0.02);
}
.home-bento-img-placeholder {
    width: 100%;
    height: 220px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #C6D2E0;
    flex-shrink: 0;
}
.home-bento-img-placeholder span {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #C6D2E0;
}
.home-bento-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--border);
    background: var(--bg-light);
}
.home-bento-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.home-bento-card-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand); margin-bottom: 10px; display: block; }
.home-bento-card h3 { font-size: 1.1rem; font-weight: 600; color: var(--dark); line-height: 1.3; margin-bottom: 10px; }
.home-bento-card p { font-size: 0.875rem; color: var(--grey-mid); line-height: 1.65; margin-bottom: 16px; flex: 1; }
.home-bento-link { font-size: 0.82rem; font-weight: 600; color: var(--brand); text-decoration: none; margin-top: auto; transition: color 0.2s; }
.home-bento-link:hover { color: var(--brand-dark); }
.home-bento-form { background: #fff; border-radius: 6px; border: 1px solid var(--border); padding: 16px; box-shadow: 0 4px 16px rgba(0,0,0,0.05); }
.home-bento-form-label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--grey-mid); margin-bottom: 8px; }
.home-bento-form-field { height: 32px; background: var(--bg-light); border-radius: 6px; border: 1px solid var(--border); margin-bottom: 6px; }
.home-bento-form-btn   { height: 30px; background: var(--brand); border-radius: 6px; width: 100%; margin-top: 6px; }
.home-bento-dash { background: var(--dark); border-radius: 10px; padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.home-bento-dash-row { display: flex; justify-content: space-between; align-items: center; }
.home-bento-dash-label { font-size: 0.6rem; color: rgba(255,255,255,0.38); text-transform: uppercase; letter-spacing: 0.07em; }
.home-bento-dash-val   { font-size: 1.2rem; font-weight: 600; color: #fff; }
.home-bento-dash-bar   { height: 5px; border-radius: 3px; background: rgba(255,255,255,0.08); overflow: hidden; }
.home-bento-dash-bar-fill { height: 100%; border-radius: 3px; background: var(--accent); }
.home-bento-data { display: flex; flex-direction: column; gap: 10px; }
.home-bento-data-row { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; color: var(--dark); font-weight: 600; }
.home-bento-data-bar-wrap { flex: 1; height: 6px; background: var(--bg-light); border-radius: 3px; overflow: hidden; border: 1px solid var(--border); }
.home-bento-data-bar-fill { height: 100%; border-radius: 3px; }

/* ----- DARK PRODUCTIVITY SECTION ----- */
.home-dark-prod {
    background: var(--dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.home-dark-prod::before {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 640px;
    height: 640px;
    background: radial-gradient(circle, rgba(26,59,112,0.04) 0%, transparent 65%);
    pointer-events: none;
}
.home-dark-prod-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.home-dark-prod-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8AAED8;
    background: rgba(26,59,112,0.15);
    border: 1px solid rgba(43,108,181,0.25);
    border-radius: 100px;
    padding: 5px 14px;
    margin-bottom: 18px;
}
.home-dark-prod-text h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}
.home-dark-prod-text h2 em {
    font-style: normal;
    color: #A8C5E0;
}
.home-dark-prod-text > p { font-size: 0.95rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 28px; }
.home-dark-prod-quote { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 24px; }
.home-dark-prod-quote-logo { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #8AAED8; margin-bottom: 12px; display: block; }
.home-dark-prod-quote blockquote { font-size: 0.875rem; font-style: italic; color: rgba(255,255,255,0.72); line-height: 1.65; margin: 0 0 12px; }
.home-dark-prod-quote cite { font-size: 0.75rem; color: rgba(255,255,255,0.38); font-style: normal; }
.home-dark-prod-stats { display: flex; gap: 40px; margin-top: 28px; }
.home-dark-prod-stat-val { font-size: 2rem; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 4px; }
.home-dark-prod-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.38); }
.home-dark-prod-visual { display: flex; flex-direction: column; gap: 16px; }
.home-dark-prod-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10); border-radius: 8px; padding: 20px 24px; }
.home-dark-prod-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.home-dark-prod-card-title { font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.72); }
.home-dark-prod-card-badge { font-size: 0.65rem; font-weight: 600; background: rgba(52,211,153,0.15); color: #34D399; border-radius: 3px; padding: 3px 10px; }
.home-dark-prod-rows { display: flex; flex-direction: column; gap: 8px; }
.home-dark-prod-row { display: flex; align-items: center; gap: 10px; font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.home-dark-prod-row-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.home-dark-prod-row-dot.green { background: #34D399; }
.home-dark-prod-row-dot.blue  { background: #2B6CB5; }
.home-dark-prod-row-dot.gray  { background: rgba(255,255,255,0.18); }

/* ----- BLUE SOLUTIONS SECTION ----- */
.home-solutions {
    background: #0F1D3A;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.home-solutions::before {
    content: '';
    position: absolute;
    top: -180px;
    right: -180px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(43,108,181,0.3) 0%, transparent 60%);
    pointer-events: none;
}
.home-solutions-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.home-solutions-tag { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #8AAED8; background: rgba(255,255,255,0.1); border-radius: 3px; padding: 5px 14px; margin-bottom: 18px; }
.home-solutions-text h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; color: #fff; letter-spacing: -0.01em; line-height: 1.15; margin-bottom: 16px; }
.home-solutions-text > p { font-size: 0.95rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 28px; }
.home-solutions-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.home-solutions-item { display: flex; align-items: center; gap: 12px; font-size: 0.875rem; color: rgba(255,255,255,0.78); }
.home-solutions-item-icon { width: 30px; height: 30px; background: rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #8AAED8; flex-shrink: 0; }
.home-solutions-visual { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 28px; }
.home-solutions-steps { display: flex; flex-direction: column; }
.home-solutions-step { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.home-solutions-step:last-child { border-bottom: none; padding-bottom: 0; }
.home-solutions-step-num { width: 36px; height: 36px; border-radius: 50%; background: rgba(26,59,112,0.5); border: 1px solid rgba(43,108,181,0.3); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; color: #8AAED8; flex-shrink: 0; }
.home-solutions-step-body h4 { font-size: 0.875rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.home-solutions-step-body p  { font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.5; margin: 0; }

/* ----- TESTIMONIAL BAND ----- */
.home-testimonial-band { background: var(--bg-light); padding: 80px 0; }
.home-testimonial-band-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; max-width: 900px; margin: 0 auto; }
.home-testimonial-band-eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand); margin-bottom: 12px; display: block; }
.home-testimonial-band-text h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: var(--dark); letter-spacing: -0.01em; line-height: 1.2; margin-bottom: 28px; }
.home-testimonial-band-text h2 em { font-style: normal; color: var(--brand); }
.home-testimonial-band-quote { background: #fff; border-radius: 8px; border: 1px solid var(--border); padding: 28px; box-shadow: 0 8px 32px rgba(0,0,0,0.04); }
.home-testimonial-band-stars { color: #F59E0B; font-size: 0.95rem; margin-bottom: 14px; }
.home-testimonial-band-quote blockquote { font-size: 0.925rem; font-style: italic; color: var(--dark); line-height: 1.7; margin: 0 0 18px; }
.home-testimonial-band-quote cite { display: flex; align-items: center; gap: 12px; font-style: normal; }
.home-testimonial-band-av { width: 38px; height: 38px; border-radius: 50%; background: var(--brand); color: #fff; font-size: 0.7rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.home-testimonial-band-cite-text strong { font-size: 0.875rem; color: var(--dark); display: block; }
.home-testimonial-band-cite-text span   { font-size: 0.78rem; color: var(--grey-mid); }
.home-testimonial-band-visual { display: flex; flex-direction: column; gap: 16px; }
.home-testimonial-band-stat { background: #fff; border-radius: 14px; border: 1px solid var(--border); padding: 20px 24px; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; box-shadow: 0 4px 16px rgba(0,0,0,0.03); }
.home-testimonial-band-stat-val   { font-size: 2.2rem; font-weight: 900; color: var(--brand); line-height: 1; flex-shrink: 0; }
.home-testimonial-band-stat-label { font-size: 0.82rem; color: var(--grey-mid); line-height: 1.4; }

/* ----- DARK CTA BOTTOM ----- */
.home-cta-bottom {
    background: var(--dark);
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.home-cta-bottom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(26,59,112,0.04) 0%, transparent 65%);
    pointer-events: none;
}
.home-cta-bottom-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.home-cta-bottom h2 { font-size: clamp(1.8rem, 4.5vw, 3.2rem); font-weight: 700; color: #fff; letter-spacing: -0.01em; line-height: 1.1; }
.home-cta-bottom h2 em {
    font-style: normal;
    color: #A8C5E0;
}
.home-cta-subtitle { font-size: 1rem; color: rgba(255,255,255,0.5); max-width: 480px; line-height: 1.65; }
.home-cta-bottom-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }

/* ----- RESPONSIVE ----- */
@media (max-width: 900px) {
    .home-hero-screen { grid-template-columns: 1fr 1fr; gap: 12px; }
    .home-screen-sidebar { display: none; }
    .home-features-top { grid-template-columns: 1fr; gap: 24px; }
    .home-feature-caps { grid-template-columns: repeat(2, 1fr); }
    .home-bento-grid { grid-template-columns: 1fr; }
    .home-dark-prod-inner,
    .home-solutions-inner,
    .home-testimonial-band-inner { grid-template-columns: 1fr; }
    .home-dark-prod-stats { gap: 24px; flex-wrap: wrap; }
}

/* =========================================
   LOGIN PAGE
   ========================================= */
.login-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.login-brand {
    background: var(--dark);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 64px;
    position: relative;
    overflow: hidden;
}
.login-brand::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26,59,112,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.login-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 56px;
}
.login-brand-logo img {
    height: 36px;
    filter: brightness(0) invert(1);
}
.login-brand h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.login-brand h2 em {
    font-style: normal;
    color: #A8C5E0;
}
.login-brand-sub {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 360px;
}
.login-brand-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.login-brand-feat {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.75);
    font-size: 0.92rem;
}
.login-brand-feat-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(26,59,112,0.4);
    border: 1px solid rgba(43,108,181,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8AAED8;
    flex-shrink: 0;
}

.login-form-side {
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 80px 48px 60px;
}
.login-form-box {
    width: 100%;
    max-width: 400px;
}
.login-form-box h1 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.login-form-box .login-subtitle {
    color: var(--grey-mid);
    font-size: 0.95rem;
    margin-bottom: 36px;
}
.login-field {
    margin-bottom: 20px;
}
.login-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--grey-dark);
    margin-bottom: 6px;
}
.login-field input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: var(--font);
    color: var(--dark);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.login-field input:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}
.login-field input::placeholder {
    color: var(--grey-light);
}
.login-field-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}
.login-field-row label {
    margin-bottom: 0;
}
.login-forgot {
    font-size: 0.82rem;
    color: var(--brand);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}
.login-forgot:hover { color: var(--brand-dark); text-decoration: underline; }
.login-submit {
    width: 100%;
    height: 50px;
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 0.97rem;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
    letter-spacing: 0.01em;
}
.login-submit:hover {
    background: var(--brand-dark);
    box-shadow: 0 6px 20px rgba(0,0,0,0.21);
    transform: translateY(-1px);
}
.login-submit:active { transform: translateY(0); }
.login-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
    color: var(--grey-light);
    font-size: 0.82rem;
}
.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}
.login-partner-cta-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login-partner-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 340px;
    padding-left: 40px;
    padding-right: 40px;
    text-decoration: none;
    background: #0F4C2A;
}
.login-partner-cta:hover {
    background: #0B3D22;
}
.login-demo-cta {
    display: block;
    text-align: center;
    padding: 13px 20px;
    border: 1.5px solid var(--border);
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    transition: border-color 0.2s, background 0.2s;
}
.login-demo-cta:hover {
    border-color: var(--brand);
    background: var(--brand-light);
    color: var(--brand);
}
.login-footer-note {
    margin-top: 32px;
    text-align: center;
    font-size: 0.82rem;
    color: var(--grey-light);
}
.login-footer-note a {
    color: var(--brand);
    font-weight: 500;
}
.login-footer-note a:hover { text-decoration: underline; }

@media (max-width: 860px) {
    .login-page { grid-template-columns: 1fr; }
    .login-brand { display: none; }
    .login-form-side { padding: 40px 24px; min-height: 100vh; }
}

/* =========================================
   BLOG PAGE
   ========================================= */
.blog-page-filter-bar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(210,221,236,0.9);
    padding: 0;
    position: sticky;
    top: 74px;
    z-index: 90;
}
.blog-filter-tabs {
    display: flex;
    gap: 8px;
    padding: 10px 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.blog-filter-tabs::-webkit-scrollbar { display: none; }
.blog-filter-btn {
    flex-shrink: 0;
    border: none;
    background: transparent;
    color: var(--grey-mid);
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font);
    padding: 8px 18px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, box-shadow 0.15s;
    white-space: nowrap;
}
.blog-filter-btn:hover {
    background: var(--bg-light);
    color: var(--dark);
}
.blog-filter-btn.active {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 8px 18px rgba(26,59,112,0.24);
}

.blog-page-section {
    padding: 56px 0 88px;
    background: linear-gradient(180deg, #f1f5fb 0%, #f8fbff 55%, #ffffff 100%);
}

/* Featured card */
.blog-card-featured {
    border-radius: 16px;
    overflow: hidden;
    background: #0F1D3A;
    margin-bottom: 34px;
    padding: 42px;
    position: relative;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 22px 48px rgba(14, 34, 67, 0.22);
}
.blog-card-featured-image-wrap {
    position: absolute;
    inset: 0;
    display: block;
}
.blog-card-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.95) contrast(1.03);
}
.blog-card-featured::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,22,42,0.16) 5%, rgba(8,18,38,0.74) 68%, rgba(8,18,38,0.92) 100%);
    z-index: 0;
}
.blog-card-featured::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(43,108,181,0.25) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}
.blog-card-featured .blog-card-inner {
    position: relative;
    z-index: 2;
}
.blog-card-featured .blog-tag {
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
}
.blog-card-featured h2 {
    font-size: clamp(1.75rem, 3.2vw, 2.4rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin: 16px 0 12px;
    max-width: 640px;
    letter-spacing: -0.02em;
}
.blog-card-featured p {
    color: rgba(255,255,255,0.84);
    font-size: 1.02rem;
    line-height: 1.6;
    max-width: 560px;
    margin-bottom: 24px;
}
.blog-card-featured .blog-card-meta {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.18);
}
.blog-card-featured .blog-author-avatar {
    background: rgba(255,255,255,0.2);
}
.blog-card-featured .blog-card-meta-text strong { color: #fff; }
.blog-card-featured .blog-card-meta-text span { color: rgba(255,255,255,0.55); }
.blog-card-featured .blog-readmore { color: rgba(255,255,255,0.85); margin-left: auto; }
.blog-card-featured .blog-readmore:hover { color: #fff; }

/* Regular grid */
.blog-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.blog-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #dbe6f3;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.blog-card:hover {
    border-color: #bed3ee;
    box-shadow: 0 14px 30px rgba(15,29,58,0.12);
    transform: translateY(-4px);
}
.blog-card-media-wrap {
    display: block;
    height: 180px;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.blog-card-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}
.blog-card:hover .blog-card-media {
    transform: scale(1.03);
}
.blog-card .blog-card-inner {
    padding: 24px 24px 22px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.blog-card-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.blog-card .blog-tag {
    background: var(--brand-light);
    border: none;
    color: var(--brand);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 10px;
    letter-spacing: 0.02em;
}
.blog-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-card h3 {
    font-size: 1.14rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 10px;
}
.blog-card p {
    font-size: 0.91rem;
    color: var(--grey-mid);
    line-height: 1.65;
    margin-bottom: 20px;
    flex: 1;
}
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.blog-card .blog-author-avatar {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-card-meta-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-card-meta-text strong {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--dark);
    display: block;
}
.blog-card-meta-text span {
    font-size: 0.73rem;
    color: var(--grey-mid);
}
.blog-card .blog-readmore {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--brand);
    white-space: nowrap;
}

/* Keep featured summary text readable on dark image overlays */
.blog-card.blog-card-featured p {
    color: rgba(255,255,255,0.92);
    text-shadow: 0 1px 12px rgba(0,0,0,0.45);
}

/* Ensure featured read-more keeps high contrast on dark overlay */
.blog-card.blog-card-featured .blog-readmore {
    color: rgba(255,255,255,0.95);
    text-shadow: 0 1px 8px rgba(0,0,0,0.45);
}
.blog-card.blog-card-featured .blog-readmore:hover {
    color: #ffffff;
}

@media (max-width: 960px) {
    .blog-page-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-page-filter-bar { top: 68px; }
    .blog-card-featured { min-height: 360px; padding: 30px 24px; }
}
@media (max-width: 600px) {
    .blog-page-filter-bar { top: 62px; }
    .blog-page-grid { grid-template-columns: 1fr; }
    .blog-page-section { padding-top: 42px; }
    .blog-card-featured { min-height: 300px; padding: 22px 18px; border-radius: 12px; }
    .blog-card-featured h2 { font-size: 1.8rem; }
    .blog-card-featured p { font-size: 0.92rem; }
}

/* ===== ARTIKEL PAGES ===== */
.artikel-hero {
    background: var(--dark);
    padding: 140px 0 72px;
    position: relative;
    overflow: hidden;
}
.artikel-hero::before {
    content: '';
    position: absolute;
    top: -20%; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 500px;
    background: radial-gradient(ellipse, rgba(26,59,112,0.03) 0%, transparent 70%);
    pointer-events: none;
}
.artikel-breadcrumb {
    display: flex; gap: 6px; align-items: center;
    font-size: 0.8rem; color: rgba(255,255,255,0.45);
    margin-bottom: 20px;
}
.artikel-breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.artikel-breadcrumb a:hover { color: #8AAED8; }
.artikel-breadcrumb svg { flex-shrink: 0; opacity: 0.4; }
.artikel-hero .artikel-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.artikel-hero h1 {
    font-size: clamp(1.7rem, 3.5vw, 2.7rem);
    font-weight: 600; color: #fff;
    letter-spacing: -0.04em; line-height: 1.12;
    max-width: 820px; margin-bottom: 28px;
}
.artikel-meta { display: flex; align-items: center; gap: 12px; }
.artikel-meta-text strong { display: block; color: #fff; font-size: 0.9rem; font-weight: 600; }
.artikel-meta-text span { color: rgba(255,255,255,0.5); font-size: 0.82rem; }

.artikel-body { padding: 72px 0 96px; background: #fff; }
.artikel-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 56px; align-items: start;
}

.artikel-text p.lead,
.artikel-content p.lead {
    font-size: 1.05rem; line-height: 1.78; color: #374151;
    margin-bottom: 36px;
    border-left: 3px solid var(--brand); padding-left: 20px;
}
.artikel-text h2,
.artikel-content h2 {
    font-size: 1.3rem; font-weight: 700; color: var(--dark);
    letter-spacing: -0.02em;
    margin: 44px 0 14px;
    padding-top: 32px; border-top: 1px solid var(--border);
}
.artikel-text h2:first-of-type,
.artikel-content h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.artikel-text p,
.artikel-content p { font-size: 0.985rem; line-height: 1.78; color: #374151; margin-bottom: 18px; }
.artikel-text ul,
.artikel-text ol,
.artikel-content ul,
.artikel-content ol { padding-left: 22px; margin-bottom: 20px; }
.artikel-text ul,
.artikel-content ul { list-style: disc; }
.artikel-text ol,
.artikel-content ol { list-style: decimal; }
.artikel-text li,
.artikel-content li { font-size: 0.985rem; line-height: 1.7; color: #374151; margin-bottom: 8px; }
.artikel-text code,
.artikel-content code {
    background: var(--bg-light); border: 1px solid var(--border);
    border-radius: 4px; padding: 2px 6px;
    font-size: 0.85rem; font-family: 'Consolas','Monaco',monospace; color: #0D2351;
}
.artikel-callout {
    background: var(--brand-light);
    border-left: 3px solid var(--brand);
    border-radius: 0 12px 12px 0;
    padding: 18px 22px; margin: 28px 0;
}
.artikel-callout p { margin: 0 !important; color: #0D2351 !important; font-size: 0.9rem !important; line-height: 1.6 !important; }

.artikel-sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 20px; }
.artikel-toc {
    background: var(--bg-light); border: 1px solid var(--border);
    border-radius: 8px; padding: 22px 24px;
}
.artikel-toc h4 {
    font-size: 0.74rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--brand); margin-bottom: 14px;
}
.artikel-toc ol { padding-left: 18px; margin: 0; }
.artikel-toc li { margin-bottom: 8px; }
.artikel-toc a { font-size: 0.84rem; color: #4B5563; text-decoration: none; line-height: 1.45; transition: color 0.2s; }
.artikel-toc a:hover { color: var(--brand); }

.artikel-sidebar-cta {
    background: var(--dark); border-radius: 8px;
    padding: 26px 22px; position: relative; overflow: hidden;
}
.artikel-sidebar-cta::before {
    content: ''; position: absolute; bottom: -30%; right: -20%;
    width: 160px; height: 160px;
    background: radial-gradient(circle, rgba(26,59,112,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.artikel-sidebar-cta h4 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 10px; line-height: 1.35; position: relative; }
.artikel-sidebar-cta p { color: rgba(255,255,255,0.58); font-size: 0.83rem; line-height: 1.55; margin-bottom: 18px; position: relative; }

.artikel-related { background: var(--bg-light); padding: 72px 0 88px; border-top: 1px solid var(--border); }
.artikel-related-head { margin-bottom: 36px; }
.artikel-related-head h2 { font-size: 1.6rem; font-weight: 700; color: var(--dark); letter-spacing: -0.01em; }
.artikel-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

@media (max-width: 900px) {
    .artikel-layout { grid-template-columns: 1fr; }
    .artikel-sidebar { position: static; }
    .artikel-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .artikel-related-grid { grid-template-columns: 1fr; }
}

/* Kiyoh iframe embeds */
.kiyoh-hero-widget {
    margin-top: 14px;
}

.kiyoh-hero-widget iframe {
    display: block;
    border: 0;
    max-width: 100%;
}

.kiyoh-slider-embed {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.kiyoh-slider-embed iframe {
    display: block;
    width: 100%;
    min-width: 320px;
    max-width: 1000px;
    margin: 0 auto;
    border: 0;
}


